diff --git a/.gitea/workflows/unreal-build.yml b/.gitea/workflows/unreal-build.yml index 93c84765..ba2c97b7 100644 --- a/.gitea/workflows/unreal-build.yml +++ b/.gitea/workflows/unreal-build.yml @@ -1,3 +1,11 @@ +# Unreal Engine Build for Lyra Game Project + +# Known Issues: +# - When building from an installed engine version, there may be issues with precompiled modules +# such as 'CQTest' which is referenced but not included in precompiled builds +# - The target is LyraGame (not LyraStarterGame) as per the Target.cs files in the Source directory +# - The workflow creates placeholders if builds fail to ensure the CI/CD process can continue testing + name: Unreal Engine Build on: @@ -59,13 +67,13 @@ jobs: New-Item -Path "Builds/Windows" -ItemType Directory -Force # Create a simple game executable placeholder - New-Item -Path "Builds/Windows" -Name "LyraStarterGame.exe" -ItemType "file" -Value "Windows build placeholder executable" -Force + New-Item -Path "Builds/Windows" -Name "LyraGame.exe" -ItemType "file" -Value "Windows build placeholder executable" -Force # Create a config file placeholder New-Item -Path "Builds/Windows" -Name "GameUserSettings.ini" -ItemType "file" -Value "[/Script/Engine.GameUserSettings]`nVersion=1" -Force # Create a pak file placeholder - New-Item -Path "Builds/Windows" -Name "LyraStarterGame-Windows.pak" -ItemType "file" -Value "PAK file placeholder" -Force + New-Item -Path "Builds/Windows" -Name "LyraGame-Windows.pak" -ItemType "file" -Value "PAK file placeholder" -Force # Create a readme file explaining this is a placeholder build $readmeContent = "# PLACEHOLDER BUILD`n`nThis is a placeholder build created by the CI system when the actual build process fails.`nThis allows testing the release workflow without requiring a successful game build.`n`nIn a real build, this directory would contain the compiled game executables and assets." @@ -96,7 +104,28 @@ jobs: echo "Linux build script not found" } - + # If build failed or script not found, create placeholder files + if (-not $buildSuccess) { + echo "Creating placeholder Linux build files..." + + # Ensure the Linux build directory exists + New-Item -Path "Builds/Linux" -ItemType Directory -Force + + # Create a simple game executable placeholder + New-Item -Path "Builds/Linux" -Name "LyraGame.sh" -ItemType "file" -Value "#!/bin/bash`necho 'Linux build placeholder executable'" -Force + + # Create a config file placeholder + New-Item -Path "Builds/Linux" -Name "GameUserSettings.ini" -ItemType "file" -Value "[/Script/Engine.GameUserSettings]`nVersion=1" -Force + + # Create a pak file placeholder + New-Item -Path "Builds/Linux" -Name "LyraGame-Linux.pak" -ItemType "file" -Value "PAK file placeholder" -Force + + # Create a readme file explaining this is a placeholder build + $readmeContent = "# PLACEHOLDER BUILD`n`nThis is a placeholder build created by the CI system when the actual build process fails.`nThis allows testing the release workflow without requiring a successful game build.`n`nIn a real build, this directory would contain the compiled game executables and assets." + Set-Content -Path "Builds/Linux/README.md" -Value $readmeContent -Force + + echo "Created placeholder Linux build files" + } - name: Package builds run: | @@ -104,7 +133,7 @@ jobs: if (Test-Path "Builds/Windows") { # Change directory and create zip Push-Location Builds/Windows - Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraStarterGame-Windows.zip -Force + Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraGame-Windows.zip -Force Pop-Location } @@ -112,7 +141,7 @@ jobs: if (Test-Path "Builds/Linux") { # Change directory and create zip Push-Location Builds/Linux - Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraStarterGame-Linux.zip -Force + Compress-Archive -Path .\* -DestinationPath ..\..\PackagedReleases\LyraGame-Linux.zip -Force Pop-Location } @@ -233,51 +262,23 @@ jobs: run: | chmod +x ./mac_build.sh ./mac_build.sh - - - name: Prepare Mac release + + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: macos-build + path: Builds/ + retention-days: 7 + + - name: Create artifact ID run: | - echo "Preparing packaged files for release..." + # Generate a unique artifact ID for this build + ARTIFACT_ID="macos-build-$(date +%Y%m%d-%H%M%S)" + echo "ARTIFACT_ID=$ARTIFACT_ID" >> $GITHUB_ENV # Create a directory for release files mkdir -p PackagedReleases - - # Debug: Show what we're packaging - echo "=== Packaging for Release ===" - echo "Build directory contents:" - ls -la Builds/ - - # Find the app bundle in the Builds directory - APP_PATH=$(find Builds -type d -name "*.app" | head -1) - - if [ -n "$APP_PATH" ]; then - echo "Found app bundle: $APP_PATH" - # Get the app name - APP_NAME=$(basename "$APP_PATH") - # Create zip file of the app bundle - (cd $(dirname "$APP_PATH") && zip -r "../../PackagedReleases/${APP_NAME%.app}-macOS.zip" "$APP_NAME") - echo "Created packaged release: PackagedReleases/${APP_NAME%.app}-macOS.zip" - else - echo "No .app bundle found in Builds directory" - - # Look for a directory that might be a bundle but not named .app - MAIN_BUILD_DIR=$(find Builds -mindepth 1 -maxdepth 1 -type d | head -1) - if [ -n "$MAIN_BUILD_DIR" ]; then - echo "Found main build directory: $MAIN_BUILD_DIR" - DIR_NAME=$(basename "$MAIN_BUILD_DIR") - # Package this directory as if it were the app - (cd $(dirname "$MAIN_BUILD_DIR") && zip -r "../../PackagedReleases/${DIR_NAME}-macOS.zip" "$DIR_NAME") - echo "Created packaged release from main directory: PackagedReleases/${DIR_NAME}-macOS.zip" - else - # Package the entire Builds directory as a fallback - echo "No main directory found, packaging everything" - zip -r "PackagedReleases/LyraStarterGame-macOS.zip" Builds - echo "Created fallback package: PackagedReleases/LyraStarterGame-macOS.zip" - fi - fi - - echo "Packaged releases:" - ls -la PackagedReleases/ - + - name: Create Gitea Release if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' uses: https://gitea.com/actions/gitea-release-action@main @@ -285,4 +286,15 @@ jobs: token: ${{ secrets.GITEATOKEN }} tag_name: ${{ env.RELEASE_TAG }} title: "Release ${{ env.RELEASE_TAG }}" - files: PackagedReleases/*.zip + body: | + ## Automated release from CI build #${{ github.run_number }} + + This release includes builds for: + - Windows + - Linux + - macOS (available as artifact: ${{ env.ARTIFACT_ID }}) + + Built from commit: ${{ github.sha }} + + ### Download macOS build + To get the macOS build, download it from the artifacts section of this workflow run. diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.dll index f4981a73..8da06749 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57fd6bca0bae25e9a5daf68abbe7b5859b14483429171461aa51500b0b6daaa3 +oid sha256:bd9e99b6c1c13443059af664db6bcc85e99bd95a643f85631bc198b577a3b3a1 size 452608 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.pdb index 62b6da08..95b559e3 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/AutomationUtils.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a34aea063eec45ab97c00b1219e6b5988472a9a1dc7601a85a30e0ad69fd140 -size 966144 +oid sha256:9d974b8b13f6d9d57da54b91473461d3c6243e790d113293abf0783872a0bcdf +size 955904 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.dll index c521dc8d..97b8bf84 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:610c5430dd8bac7bf402ae8f179f6757ba9ffc883337c6b1a24edd1509ff917d +oid sha256:9c894e54dc9c981d79fb0ae38479cde64ef98120ae9c20082ff72abfda2134a6 size 33280 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.pdb index 8456327e..09295d0a 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/CrowdinLocalization.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30db05b3f1860c1f5c5268e16ad1a7be73aaba92907561978e0d74da8133b87e +oid sha256:c17f0bd5c77e727719caa548816e07ae098a8c716b72a3245e1958c928012e0b size 58880 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.dll index 55a96fe2..279784af 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ba342fc7cb3815bc042163dde425e055eb9c5696123cd778857011f3fc67124 +oid sha256:ac13cca5a91a82534be42190727e264f9b24bd4711de222cb3dfc4b5d7543b3d size 107008 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.pdb index 4aa2063b..970a28fd 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Build.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2089e6b792f590f5f5af283107b924d8ecb32f432b402668de0d30ae73502c9 +oid sha256:b864176afceebad0681d769e6f4e431601b9a4ff4a8694dc08a9f95bcd7e25be size 273920 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.dll index 8ae274d2..5bfe7ffa 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8917f09d5a9900f86eb3fd6b74f8f92ef15b197d368e5eb6e19044b00d72c5e8 -size 1531392 +oid sha256:f8476d3b601e19cab7de494fce81fb435975c7bdcb47de71cc2e4a53b345d5c2 +size 1777152 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.pdb index ce8dd8f6..83d668fd 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20e50bf8caa256186d3e1e0063bb403e865b36a5495db8387f4d29d1a8b8cdc9 -size 3438080 +oid sha256:259b1ca81b312df4ac2189ac906b0cda6b2b8f189f89d25671f1ae64eb8c46c3 +size 3935744 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.xml b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.xml index 8fe07563..886c5cd1 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.xml +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Horde.xml @@ -413,6 +413,21 @@ + + + Claim for an ACL + + + + + Type of the claim + + + + + Value for the claim + + Normalized hostname of an agent @@ -1324,6 +1339,21 @@ Class which describes an artifact on Horde which can be serialized to JSON. + + + Name of the artifact + + + + + Type of the artifact + + + + + Artifact description + + Base URL for downloading from @@ -1466,13 +1496,16 @@ - + - + + + + @@ -1515,22 +1548,13 @@ - - - - - - - - - - + @@ -1562,6 +1586,64 @@ Custom access token to use for requests Whether to enable the backend cache, which caches full bundles to disk + + + Storage backend which communicates with Jupiter over HTTP + + + + + + + + Constructor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + In-memory implementation of a storage backend @@ -1601,92 +1683,50 @@ - + - + - - - - + - + Request for a blob to be read - User defined context type for the request Reference to the blob data - User defined context - + Request for a blob to be read - User defined context type for the request Reference to the blob data - User defined context - + Reference to the blob data - - User defined context - - + - Individual response for a blob that was read + Response from a read request - User defined context type for the request - Data for the blob - User defined context - + - Individual response for a blob that was read + Response from a read request - User defined context type for the request - Data for the blob - User defined context - - Data for the blob - - - User defined context - - - - - - - Response containing a batch of items that were read - - User defined context type - Items for this response - - - - Response containing a batch of items that were read - - User defined context type - Items for this response - - - Items for this response - - + @@ -1699,50 +1739,210 @@ Stats for a batch read - + Implements an efficient pipeline for streaming blob data - User-defined context type - + - Access to the request channel + Number of items to read from the input queue before partitioning into batches - + - Access to the response channel + Maximum gap between reads that should be coalesced and executed together - + + + Whether to verify hashes of data read from storage + + + Constructor - + - + + + Overridable dispose method + + + Gets stats for the reader - + Adds a batch reader to the given pipeline - + - Extension methods for + Handle responses from the read + + Responses from the read + Cancellation token for the operation + + + + Request for a chunk to be read before being written to disk + + File to read from + Offset within the output file + Handle to the blob data + + + + Request for a chunk to be read before being written to disk + + File to read from + Offset within the output file + Handle to the blob data + + + File to read from + + + Offset within the output file + + + Handle to the blob data + + + + Implementation of designed for reading leaf chunks of data from storage - + - Add tasks for reading to the given async pipeline + Maximum number of exports to write in a single request + + + Constructor + + + + + + + + Represents an output file that write requests may be issued against + + + + + The relative output path + + + + + File metadata + + + + + File entry with metadata about the target file + + + + + Constructor + + + + + Opens the file for writing, setting its length on the first run + + + + + Callback for a file having been fully written + + + + + Request to output a block of data A chunk which needs to be written to an output file + + + + + Request to output a block of data A chunk which needs to be written to an output file + + + + + + + + Batches file write requests + + + + + Number of files that have been written + + + + + Total number of bytes that have been written + + + + + Number of writes to execute sequentially vs in parallel + + + + + If false, disables output to disk. Useful for performance testing. + + + + + If true, hashes output files after writing to verify their integrity + + + + + If true, outputs verbose information to the log + + + + + Sink for write requests + + + + + Constructor + + + + + Dispose remaining items in the queue + + + + + Adds tasks for the writer to an async pipeline + + Pipeline instance + Number of parallel writes + + + + Processes requests from the given input channel + + Cancellation token for the operation + Data for an alias in the storage system. An alias is a named weak reference to a node. @@ -2455,6 +2655,11 @@ Whether there is a packet cache present + + + Semaphore for writing new data + + Constructor @@ -2581,6 +2786,16 @@ Base class for packet handles + + + Locator for this bundle + + + + + Constructor + + Flush contents of the bundle to storage @@ -2620,9 +2835,6 @@ - - - @@ -2727,30 +2939,21 @@ Helper method for GC which allows enumerating all references to other bundles + + + - - - - - - - + - - - - - - @@ -3508,11 +3711,6 @@ Implements the primary storage writer interface for V2 bundles. Writes exports into packets, and flushes them to storage in bundles. - - - Object used for locking access to this bundle's state - - Compressed length of this bundle @@ -3524,12 +3722,9 @@ - - - - + - + Constructor @@ -3570,10 +3765,7 @@ - - - - + Constructor @@ -3618,6 +3810,19 @@ + + + Implementation of which also contains a hash + + + + + + + + Constructor + + Accessor for data structures stored into a serialized bundle packet. @@ -4061,6 +4266,145 @@ Mark the current packet as complete + + + Base class for implementations of a content defined chunker + + + + + Source channel. + + + + + Output channel. The order of items written to the source writer will be preserved in the output reader. Each + output item should be read completely (through calls to ) + before reading the next. + + + + + Base class for input to a . Allows the chunker to read data into a buffer as required. + + + + + Length of the input data + + + + + Optional user specified data to be propagated to the output + + + + + Starts a task to read the next chunk of data. Note that this task may be called again before the task completes. + + Buffer to store the data + Cancellation token for the operation + + + + Implementation of for files on disk + + + + + + + + Constructor + + + + + + + + + + + + + + Implementation of for data in memory + + + + + + + + Constructor + + + + + + + + Enumerates chunks from an input file + + + + + Rolling hash for this chunk + + + + + Accessor for the chunk's data + + + + + User specified data from the + + + + + Moves to the next output chunk + + Cancellation token for the operation + True if there was another output chunk + + + + Simple serial implementation of content chunking + + + + + + + + + + + + + + Constructor + + + + + Parallel implementation of + + + + + + + + + + + Constructor + + Index of known nodes that can be used for deduplication. @@ -5026,6 +5370,31 @@ + + + Implementation of which discards any written data + + + + + Constructor + + + + + + + + + + + + + + + + + Implementation of which just buffers data in memory @@ -5333,24 +5702,6 @@ Cancellation token for the operation Path for retrieval, and URI to upload the data to - - - Adds an alias to a given blob - - Alias for the blob - Locator for the blob - Rank for this alias. In situations where an alias has multiple mappings, the alias with the highest rank will be returned by default. - Additional data to be stored inline with the alias - Cancellation token for the operation - - - - Removes an alias from a blob - - Name of the alias - Locator for the blob - Cancellation token for the operation - Finds blobs with the given alias. Unlike refs, aliases do not serve as GC roots. @@ -5369,22 +5720,13 @@ Cancellation token for the operation Blob pointed to by the ref - + - Writes a new ref to the store + Batch request to update metadata - Ref to write - Value for the ref - Options for the new ref - Cancellation token for the operation - Unique identifier for the blob - - - - Reads data for a ref from the store - - The ref identifier + Options for the update Cancellation token for the operation + @@ -5502,6 +5844,13 @@ Interface for the storage system. + + + Creates a writer for updating the namespace + + Cancellation token for async writing. The writer will flush on dispose unless this cancellation token is signalled. + New writer instance + Creates a new blob handle by parsing a locator @@ -5509,32 +5858,15 @@ Path to the blob New handle to the blob - + Creates a new writer for storage blobs Base path for any nodes written from the writer. Options for serializing classes + Cancellation token used for any buffered blob writes. Blob writers will flush on close, unless this cancellation token is signalled. New writer instance. Must be disposed after use. - - - Adds an alias to a given blob - - Alias for the blob - Locator for the blob - Rank for this alias. In situations where an alias has multiple mappings, the alias with the highest rank will be returned by default. - Additional data to be stored inline with the alias - Cancellation token for the operation - - - - Removes an alias from a blob - - Name of the alias - Locator for the blob - Cancellation token for the operation - Finds blobs with the given alias. Unlike refs, aliases do not serve as GC roots. @@ -5553,23 +5885,6 @@ Cancellation token for the operation Blob pointed to by the ref - - - Writes a new ref to the store - - Ref to write - Handle to the target blob - Options for the new ref - Cancellation token for the operation - Unique identifier for the blob - - - - Reads data for a ref from the store - - The ref identifier - Cancellation token for the operation - Gets a snapshot of the stats for the storage namespace. @@ -5717,6 +6032,26 @@ The store instance to read from Ref name to use as a base path + + + Adds an alias to a given blob + + The store instance to write to + Alias for the blob + Locator for the blob + Rank for this alias. In situations where an alias has multiple mappings, the alias with the highest rank will be returned by default. + Additional data to be stored inline with the alias + Cancellation token for the operation + + + + Removes an alias from a blob + + The store instance to write to + Name of the alias + Locator for the blob + Cancellation token for the operation + Finds blobs with the given alias. Unlike refs, aliases do not serve as GC roots. @@ -5746,11 +6081,124 @@ Cancellation token for the operation The ref target + + + Writes a new ref to the store + + The store instance to write to + Ref to write + Handle to the target blob + Options for the new ref + Cancellation token for the operation + Unique identifier for the blob + + + + Reads data for a ref from the store + + The store instance to write to + The ref identifier + Cancellation token for the operation + + + + + + + Gets a snapshot of the stats for the storage namespace. + + + Interface for a batching storage writer + + + + + Creates a new writer for storage blobs + + Base path for any nodes written from the writer. + Options for serializing classes + New writer instance. Must be disposed after use. + + + + Adds an alias to a given blob + + Alias for the blob + Locator for the blob + Rank for this alias. In situations where an alias has multiple mappings, the alias with the highest rank will be returned by default. + Additional data to be stored inline with the alias + Cancellation token for the operation + + + + Removes an alias from a blob + + Name of the alias + Locator for the blob + Cancellation token for the operation + + + + Adds a new ref to the store + + Ref to write + Handle to the target blob + Options for the new ref + Cancellation token for the operation + Unique identifier for the blob + + + + Removes a ref from the store + + The ref identifier + Cancellation token for the operation + + + + Flush any buffered writes + + Cancellation token for the operation + + + + Default base implementation of which combines metadata updates into a + + + + + Constructor + + + + + + + + + + + + + + + + + + + + + + + + + + Base class for storage namespaces that wrap a diirect key/value type store without any merging/splitting. @@ -5779,24 +6227,27 @@ - + + + + Constructor - + - + - + - + - + @@ -5812,10 +6263,13 @@ Create an in-memory storage namespace + + + - + @@ -5824,24 +6278,12 @@ - - - - - - - - - - - - @@ -6061,6 +6503,32 @@ Read the node which is the target of this ref + + + Enumerates all the leaf nodes for this node + + Cancellation token for the operation + + + + Reference to a + + Length of the leaf data + Reference to the blob + + + + Reference to a + + Length of the leaf data + Reference to the blob + + + Length of the leaf data + + + Reference to the blob + Stores the flat list of chunks produced from chunking a single data stream @@ -6341,6 +6809,16 @@ Default settings + + + Window size to use when scanning for split points + + + + + Accessor for the BuzHash chunking threshold + + Constructor @@ -6934,6 +7412,61 @@ + + + Options for extracting data + + + + + Number of async tasks to spawn for reading + + + + + Default number of read tasks to use + + + + + Number of async tasks to spawn for decoding data + + + + + Default number of decode tasks to use + + + + + Number of async tasks to spawn for writing output + + + + + Default number of write tasks to use + + + + + Output for progress updates + + + + + Frequency that the progress object is updated + + + + + Whether to hash downloaded data to ensure it's correct + + + + + Output verbose logging about operations being performed + + Extension methods for extracting data from directory nodes @@ -6978,14 +7511,23 @@ Logger for output Cancellation token for the operation - + + + Utility function to allow extracting a packed directory to disk + + Directory to extract + Direcotry to write to + Options for the download + Logger for output + Cancellation token for the operation + + Utility function to allow extracting a packed directory to disk Directory to extract Direcotry to write to - Sink for progress updates - Frequency for progress updates + Options for the download Logger for output Cancellation token for the operation @@ -8036,27 +8578,27 @@ Hash of the target node - + - Request to batch update items in the database + Request to batch update metadata in the database - + List of aliases to add - + List of aliases to remove - + List of refs to add - + List of refs to remove @@ -8228,6 +8770,15 @@ Cancellation token for the operation Workspace instance + + + Create a new workspace instance in the given location. Opens the existing instance if it already contains workspace data. + + Root directory for the workspace + Logger for output + Cancellation token for the operation + Workspace instance + Attempts to open an existing workspace for the current directory. @@ -8237,6 +8788,15 @@ Cancellation token for the operation Workspace instance + + + Attempts to open an existing workspace for the current directory. + + Root directory for the workspace + Logger for output + Cancellation token for the operation + Workspace instance + Save the current state of the workspace @@ -8255,14 +8815,24 @@ Layer to update - + Syncs a layer to the given contents Identifier for the layer + Base path within the workspace to sync to. New contents for the layer Cancellation token for the operation + + + + + + Updates the status of files in this workspace based on current filesystem metadata + + Cancellation token for the operation + Checks that all files within the workspace have the correct hash @@ -8706,7 +9276,7 @@ - + @@ -8860,10 +9430,11 @@ Cancellation token for the operation The new log file document - + Finds artifacts with the given keys. + Identifiers to return Stream to find artifacts for Minimum commit for the artifacts (inclusive) Maximum commit for the artifacts (inclusive) @@ -8882,6 +9453,26 @@ Cancellation token for the operation The artifact document + + + Extension methods for artifacts + + + + + Finds artifacts with the given keys. + + Collection to operate on + Stream to find artifacts for + Minimum commit for the artifacts (inclusive) + Maximum commit for the artifacts (inclusive) + Name of the artifact to search for + The artifact type + Set of keys, all of which must all be present on any returned artifacts + Maximum number of results to return + Cancellation token for the operation + Sequence of artifacts. Ordered by descending CL order, then by descending order in which they were created. + Request to return a set of blobs for Unsync @@ -9524,6 +10115,192 @@ + + + Stores metadata about a commit + + + + + Id for this commit + + + + + Stream containing the commit + + + + + The change that this commit originates from + + + + + The author user id + + + + + The owner of this change, if different from the author (due to Robomerge) + + + + + Changelist description + + + + + Base path for all files in the change + + + + + Date/time that change was committed + + + + + Gets the list of tags for the commit + + Cancellation token for the operation + True if the commit has the given tag + + + + Determine if this commit matches the given filter. Prefer using commit tags rather than this method; the results can be cached. + + Filter to test + Cancellation token for the operation + + + + + Gets the files for this change, relative to the root of the stream + + Minimum number of files to return. The response will include at least this number of files, unless the commit has fewer files. + Maximum number of files to return. Querying large number of files may cause performance issues with merge commits. + Cancellation token for the operation + List of files modified by this commit + + + + Extension methods for operating on commits + + + + + Gets the files for this change, relative to the root of the stream + + Commit to operate on + Number of files to return + Cancellation token for the operation + List of files modified by this commit + + + + VCS abstraction. Provides information about commits to a particular stream. + + + + + Creates a new change + + Path to modify in the change + Description of the change + Cancellation token for the operation + New commit information + + + + Gets a commit by id + + Commit to query + Cancellation token for the operation + Commit details + + + + Gets an ordered commit id + + The commit to query + Cancellation token for the operation + Numbered commit id + + + + Finds changes submitted to a stream, in reverse order. + + The minimum changelist number + Whether to include the minimum changelist in the range of enumerated responses + The maximum changelist number + Whether to include the maximum changelist in the range of enumerated responses + Maximum number of results to return + Tags for the commits to return + Cancellation token for the operation + Changelist information + + + + Subscribes to changes from this commit source + + Minimum changelist number (exclusive) + Tags for the commit to return + Cancellation token for the operation + New change information + + + + Extension methods for + + + + + Creates a new change for a template + + The Perforce service instance + The template being built + Cancellation token for the operation + New changelist number + + + + Finds changes submitted to a stream, in reverse order. + + Collection to operate on + The minimum changelist number + The maximum changelist number + Maximum number of results to return + Tags for the commits to return + Cancellation token for the operation + Changelist information + + + + Gets the last code code equal or before the given change number + + The commit source to query + Maximum code change to query + Cancellation token for the operation + The last code change + + + + Finds the latest commit from a source + + The commit source to query + Cancellation token for the operation + The latest commit + + + + Finds the latest commit from a source + + The commit source to query + Cancellation token for the operation + The latest commit + Exception thrown when a condition is not valid @@ -10401,6 +11178,9 @@ + + + @@ -11308,6 +12088,12 @@ Encryption mode to request. Server can still override. + + + Maximum duration (in milliseconds) that communication can be inactive between + the compute client and task-running agent before the connection is terminated. + + Response to a cluster lookup request @@ -11970,13 +12756,13 @@ - Transport layer that adds AES encryption on top of an underlying transport implementation. Key must be exchanged separately - (eg. via the HTTPS request to negotiate a lease with the server). + Transport layer that adds AES encryption on top of an underlying transport implementation. + Key must be exchanged separately (e.g. via the HTTPS request to negotiate a lease with the server). - Length of the required encrption key. + Length of the required encryption key. @@ -11984,35 +12770,33 @@ Length of the nonce. This should be a cryptographically random number, and does not have to be secret. - - - - + Constructor - The underlying transport implementation - AES encryption key (256 bits / 32 bytes) - Cryptographic nonce to identify the connection. Must be longer than . - Whether inner compute transport should be disposed - - - + The underlying transport implementation that will be encrypted + Encryption key. Should be generated with a cryptographically secure random number generator + Whether to dispose the inner transport when this instance is disposed + Default receive buffer size for data that needs to buffered for next read. Will automatically grow - Creates an encryption key + Create a random key for this transport - - - + A cryptographically random key + + + + + + Compute transport which wraps another transport acting as a watchdog timer for inactivity @@ -12208,6 +12992,11 @@ The url of the perforce swarm installation + + + Url of Robomergem installation + + Help email address that users can contact with issues @@ -13750,6 +14539,21 @@ Cancellation token for the operation Information about all the artifacts + + + Finds artifacts with a certain type with an optional streamId + + Identifiers to return + Stream to look for the artifact in + The minimum change number for the artifacts + The minimum change number for the artifacts + Name of the artifact + Type to find + Keys for artifacts to return + Maximum number of results to return + Cancellation token for the operation + Information about all the artifacts + Create a new dashboard preview item @@ -15999,6 +16803,141 @@ Key name to search for All values with the given key + + + Configuration for an issue workflow + + + + + Identifier for this workflow + + + + + Times of day at which to send a report + + + + + Name of the tab to post summary data to + + + + + Channel to post summary information for these templates. + + + + + Whether to include issues with a warning status in the summary + + + + + Whether to group issues by template in the report + + + + + Channel to post threads for triaging new issues + + + + + Prefix for all triage messages + + + + + Suffix for all triage messages + + + + + Instructions posted to triage threads + + + + + User id of a Slack user/alias to ping if there is nobody assigned to an issue by default. + + + + + Slack user/alias to ping for specific issue types (such as Systemic), if there is nobody assigned to an issue by default. + + + + + Alias to ping if an issue has not been resolved for a certain amount of time + + + + + Times after an issue has been opened to escalate to the alias above, in minutes. Continues to notify on the last interval once reaching the end of the list. + + + + + Maximum number of people to mention on a triage thread + + + + + Whether to mention people on this thread. Useful to disable for testing. + + + + + Uses the admin.conversations.invite API to invite users to the channel + + + + + Skips sending reports when there are no active issues. + + + + + Whether to show warnings about merging changes into the origin stream. + + + + + Additional node annotations implicit in this workflow + + + + + External issue tracking configuration for this workflow + + + + + Additional issue handlers enabled for this workflow + + + + + External issue tracking configuration for a workflow + + + + + Project key in external issue tracker + + + + + Default component id for issues using workflow + + + + + Default issue type id for issues using workflow + + Identifier for a workflow @@ -16041,6 +16980,111 @@ + + + Configuration for an issue workflow + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Constructor + + + + + Constructor + + + + + External issue tracking configuration for a workflow + + + + + + + + + + + + + + Constructor + + + + + Constructor + + Identifier for a job @@ -16264,6 +17308,1698 @@ Constructor + + + A unique dependency graph instance + + + + + Hash of this graph + + + + + Schema version for this document + + + + + List of groups for this graph + + + + + List of aggregates for this graph + + + + + Status labels for this graph + + + + + Artifacts for this graph + + + + + Extension methods for graphs + + + + + Gets the node from a node reference + + The graph instance + The node reference + The node for the given reference + + + + Tries to find a node by name + + The graph to search + Name of the node + Receives the node reference + True if the node was found, false otherwise + + + + Tries to find a node by name + + The graph to search + Name of the node + Receives the node + True if the node was found, false otherwise + + + + Tries to find a node by name + + The graph to search + Name of the node + Receives the aggregate index + True if the node was found, false otherwise + + + + Tries to find a node by name + + The graph to search + Name of the node + Receives the aggregate + True if the node was found, false otherwise + + + + Gets a list of dependencies for the given node + + The graph instance + The node to return dependencies for + List of dependencies + + + + Represents a node in the graph + + + + + The name of this node + + + + + References to inputs for this node + + + + + List of output names + + + + + Indices of nodes which must have succeeded for this node to run + + + + + Indices of nodes which must have completed for this node to run + + + + + The priority that this node should be run at, within this job + + + + + Whether this node can be run multiple times + + + + + This node can start running early, before dependencies of other nodes in the same group are complete + + + + + Whether to include warnings in the output (defaults to true) + + + + + List of credentials required for this node. Each entry maps an environment variable name to a credential in the form "CredentialName.PropertyName". + + + + + Properties for this node + + + + + Annotations for this node + + + + + Information about a sequence of nodes which can execute on a single agent + + + + + The type of agent to execute this group + + + + + Nodes in this group + + + + + Reference to a node within another grup + + + + + The group index of the referenced node + + + + + The node index of the referenced node + + + + + Private constructor for serialization + + + + + Constructor + + Index of thr group containing the node + Index of the node within the group + + + + + + + + + + Converts this reference to a node name + + List of groups that this reference points to + Name of the referenced node + + + + Output from a node + + + + + Node producing the output + + + + + Index of the output + + + + + Constructor + + + + + + + + + + + An collection of node references + + + + + Name of the aggregate + + + + + List of nodes for the aggregate to be valid + + + + + Change at which to display a label + + + + + The current changelist + + + + + The last code changelist + + + + + Label indicating the status of a set of nodes + + + + + Label to show in the dashboard. Null if does not need to be shown. + + + + + Category for the label. May be null. + + + + + Name to display for this label in UGS + + + + + Project which this label applies to, for UGS + + + + + Which change to display the label on + + + + + List of required nodes for the aggregate to be valid + + + + + List of optional nodes to include in the aggregate state + + + + + Extension methods for ILabel + + + + + Enumerate all the required dependencies of this node group + + The label instance + List of groups for the job containing this aggregate + Sequence of nodes + + + + Artifact produced by a graph + + + + + Name of the artifact + + + + + Type of the artifact + + + + + Description for the artifact + + + + + Base path for files in the artifact + + + + + Keys for finding the artifact + + + + + Metadata for the artifact + + + + + Name of the node producing this artifact + + + + + Tag for the artifact files + + + + + Information required to create a node + + + + + The name of this node + + + + + Input names + + + + + Output names + + + + + List of nodes which must succeed for this node to run + + + + + List of nodes which must have completed for this node to run + + + + + The priority of this node + + + + + This node can be run multiple times + + + + + This node can start running early, before dependencies of other nodes in the same group are complete + + + + + Whether to include warnings in the diagnostic output + + + + + Credentials required for this node to run. This dictionary maps from environment variable names to a credential property in the format 'CredentialName.PropertyName'. + + + + + Properties for this node + + + + + Additional user annotations for this node + + + + + Constructor + + Name of the node + List of inputs for the node + List of output names for the node + List of nodes which must have completed succesfully for this node to run + List of nodes which must have completed for this node to run + Priority of this node + Whether the node can be run multiple times + Whether the node can run early, before dependencies of other nodes in the same group complete + Whether to include warnings in the diagnostic output (defaults to true) + Credentials required for this node to run + Properties for the node + User annotations for this node + + + + Constructor + + Existing graph containing a node + Node to copy + + + + Information about a group of nodes + + + + + The type of agent to execute this group + + + + + Nodes in the group + + + + + Constructor + + The type of agent to execute this group + Nodes in this group + + + + Constructor + + Graph containing the node group + Node group to copy + + + + Information about a group of nodes + + + + + Category for this label + + + + + Name of the aggregate + + + + + Name of the aggregate + + + + + Category for this label + + + + + Name of the badge in UGS + + + + + Project to show this label for in UGS + + + + + Which change the label applies to + + + + + Nodes which must be part of the job for the aggregate to be valid + + + + + Nodes which must be part of the job for the aggregate to be valid + + + + + Information about a group of nodes + + + + + Name of the aggregate + + + + + Nodes which must be part of the job for the aggregate to be valid + + + + + Constructor + + Name of this aggregate + Nodes which must be part of the job for the aggregate to be shown + + + + Information about an artifact + + + + + Information about an artifact + + + + + Interface which wraps a generic key/value dictionary to provide specific node annotations + + + + + Workflow to use for triaging issues from this node + + + + + Whether to create issues for this node + + + + + Whether to automatically assign issues that could only be caused by one user, or have a well defined correlation with a modified file. + + + + + Automatically assign any issues to the given user + + + + + Whether to notify all submitters between a build suceeding and failing, allowing them to step forward and take ownership of an issue. + + + + + Key to use for grouping issues together, preventing them being merged with other groups + + + + + Whether failures in this node should be flagged as build blockers + + + + + Set of annotations for a node + + + + + Empty annotation dictionary + + + + + + + + + + + + + + + + + + + + + + + + + + Constructor + + + + + Constructor + + + + + + + + + + + + + + + + + + + + + + + + + + + Merge in entries from another set of annotation + + + + + + Document describing a job + + + + + Job argument indicating a target that should be built + + + + + Name of the node which parses the buildgraph script + + + + + Identifier for the job. Randomly generated. + + + + + The stream that this job belongs to + + + + + The template ref id + + + + + The template that this job was created from + + + + + Hash of the graph definition + + + + + Graph for this job + + + + + Id of the user that started this job + + + + + Id of the user that aborted this job. Set to null if the job is not aborted. + + + + + Optional reason for why the job was canceled + + + + + Identifier of the bisect task that started this job + + + + + Name of the job. + + + + + The commit to build + + + + + The code commit for this build + + + + + The preflight changelist number + + + + + Description for the shelved change if running a preflight + + + + + Priority of this job + + + + + For preflights, submit the change if the job is successful + + + + + The submitted changelist number + + + + + Message produced by trying to auto-submit the change + + + + + Whether to update issues based on the outcome of this job + + + + + Whether to promote issues by default based on the outcome of this job + + + + + Time that the job was created (in UTC) + + + + + Options for executing the job + + + + + Claims inherited from the user that started this job + + + + + Array of jobstep runs + + + + + Parameters for the job + + + + + Optional user-defined properties for this job + + + + + Custom list of targets for the job. If null or empty, the list of targets is determined from the command line. + + + + + Additional arguments for the job, when a set of parameters are applied. + + + + + Environment variables for the job + + + + + Issues associated with this job + + + + + Unique id for notifications + + + + + Whether to show badges in UGS for this job + + + + + Whether to show alerts in UGS for this job + + + + + Notification channel for this job. + + + + + Notification channel filter for this job. + + + + + Mapping of label ids to notification trigger ids for notifications + + + + + List of reports for this step + + + + + List of downstream job triggers + + + + + The last update time + + + + + Update counter for this document. Any updates should compare-and-swap based on the value of this counter, or increment it in the case of server-side updates. + + + + + Gets the latest job state + + Cancellation token for the operation + + + + Attempt to get a batch with the given id + + The job batch id + Receives the batch interface on success + True if the batch was found + + + + Attempt to get a step with the given id + + The job step id + Receives the step interface on success + True if the step was found + + + + Attempt to delete the job + + Cancellation token for the operation + True if the job was deleted. False if the job is not the latest revision. + + + + Removes a job from the dispatch queue. Ignores the state of any batches still remaining to execute. Should only be used to correct for inconsistent state. + + Cancellation token for the operation + + + + + Updates a new job + + Name of the job + Priority of the job + Automatically submit the job on completion + Changelist that was automatically submitted + + Name of the user that aborted the job + Id for a notification trigger + New reports + New arguments for the job + New trigger ID for a label in the job + New downstream job id + Optional reason why the job was canceled + Cancellation token for the operation + + + + Updates the state of a batch + + Unique id of the batch to update + The new log file id + New state of the jobstep + Error code for the batch + Cancellation token for the operation + True if the job was updated, false if it was deleted + + + + Update a jobstep state + + Unique id of the batch containing the step + Unique id of the step to update + New state of the jobstep + New outcome of the jobstep + New error annotation for this jobstep + New state of request abort + New name of user that requested the abort + New log id for the jobstep + New id for a notification trigger + Whether the step should be retried + New priority for this step + New report documents + Property changes. Any properties with a null value will be removed. + The reason the job step was canceled + Cancellation token for the operation + True if the job was updated, false if it was deleted in the meantime + + + + Attempts to update the node groups to be executed for a job. Fails if another write happens in the meantime. + + New graph for this job + Cancellation token for the operation + True if the groups were updated to the given list. False if another write happened first. + + + + Marks a job as skipped + + Reason for this batch being failed + Cancellation token for the operation + Updated version of the job + + + + Marks a batch as skipped + + The batch to mark as skipped + Reason for this batch being failed + Cancellation token for the operation + Updated version of the job + + + + Abort an agent's lease, and update the payload accordingly + + Index of the batch to cancel + Reason for this batch being failed + Cancellation token for the operation + True if the job is updated + + + + Attempt to assign a lease to execute a batch + + Index of the batch + The pool id + New agent to execute the batch + Session of the agent that is to execute the batch + The lease unique id + Unique id of the log for the batch + Cancellation token for the operation + True if the batch is updated + + + + Cancel a lease reservation on a batch (before it has started) + + Index of the batch to cancel + Cancellation token for the operation + True if the job is updated + + + + Extension methods for jobs + + + + + Gets the current job state + + The job document + Job state + + + + Gets the outcome for a particular named target. May be an aggregate or node name. + + The job to check + The step outcome + + + + Gets the outcome for a particular named target. May be an aggregate or node name. + + The job to check + Graph for the job + Target to find an outcome for + The step outcome + + + + Gets the outcome for a particular named target. May be an aggregate or node name. + + Steps to include + The step outcome + + + + Gets the outcome for a particular named target. May be an aggregate or node name. + + The job to check + Graph for the job + Target to find an outcome for + The step outcome + + + + Gets the job step for a particular node + + The job to search + The node ref + Receives the jobstep on success + True if the jobstep was founds + + + + Gets a dictionary that maps objects to their associated + objects on a . + + The job document + Map of to + + + + Find the latest step executing the given node + + The job being run + Node to find + The retried step information + + + + Gets the estimated timing info for all nodes in the job + + The job document + Graph for this job + Job timing information + Logger for any diagnostic messages + Map of node to expected timing info + + + + Gets the average wait time for this batch + + Graph for the job + The batch to get timing info for + The job timing information + Logger for diagnostic info + Wait time for the batch + + + + Gets the average initialization time for this batch + + Graph for the job + The batch to get timing info for + The job timing information + Logger for diagnostic messages + Initialization time for this batch + + + + Creates a nullable timespan from a nullable number of seconds + + The number of seconds to construct from + TimeSpan object + + + + Attempts to get a batch with the given id + + The job document + The batch id + The step id + On success, receives the step object + True if the batch was found + + + + Finds the set of nodes affected by a label + + The job document + Graph definition for the job + Index of the label. -1 or Graph.Labels.Count are treated as referring to the default lable. + Set of nodes affected by the given label + + + + Create a list of aggregate responses, combining the graph definitions with the state of the job + + The job document + Graph definition for the job + List to receive all the responses + The default label state + + + + Get the states of all labels for this job + + The job to get states for + The graph for this job + Collection of label states by label index + + + + Get the states of all UGS badges for this job + + The job to get states for + The graph for this job + List of badge states + + + + Get the states of all UGS badges for this job + + The job to get states for + The graph for this job + The existing label states to get the UGS badge states from + List of badge states + + + + Gets the state of a job, as a label that includes all steps + + The job to query + Map from node to step + Receives the state of the label + Receives the outcome of the label + + + + Gets the state of a label + + Nodes to include in this label + Map from node to step + Receives the state of the label + Receives the outcome of the label + + + + Gets a key attached to all artifacts produced for a job + + + + + Gets a key attached to all artifacts produced for a job step + + + + + + + + + + + Stores information about a batch of job steps + + + + + Job that this batch belongs to + + + + + Unique id for this group + + + + + The type of agent to execute this group + + + + + The log file id for this batch + + + + + The node group for this batch + + + + + Index of the group being executed + + + + + The state of this group + + + + + Error associated with this group + + + + + Steps within this run + + + + + The pool that this agent was taken from + + + + + The agent assigned to execute this group + + + + + The agent session that is executing this group + + + + + The lease that's executing this group + + + + + The weighted priority of this batch for the scheduler + + + + + Time at which the group became ready (UTC). + + + + + Time at which the group started (UTC). + + + + + Time at which the group finished (UTC) + + + + + Extension methods for IJobStepBatch + + + + + Attempts to get a step with the given id + + The batch to search + The step id + On success, receives the step object + True if the step was found + + + + Determines if new steps can be appended to this batch. We do not allow this after the last step has been completed, because the agent is shutting down. + + The batch to search + True if new steps can be appended to this batch + + + + Gets the wait time for this batch + + The batch to search + Wait time for the batch + + + + Gets the initialization time for this batch + + The batch to search + Initialization time for this batch + + + + Get the dependencies required for this batch to start, taking run-early nodes into account + + The batch to search + List of node groups + Set of nodes that must have completed for this batch to start + + + + Get the dependencies required for this batch to start, taking run-early nodes into account + + Nodes in the batch to search + List of node groups + Set of nodes that must have completed for this batch to start + + + + Embedded jobstep document + + + + + Job that this step belongs to + + + + + Batch that this step belongs to + + + + + Unique ID assigned to this jobstep. A new id is generated whenever a jobstep's order is changed. + + + + + The node for this step + + + + + Index of the node which this jobstep is to execute + + + + + The name of this node + + + + + References to inputs for this node + + + + + List of output names + + + + + Indices of nodes which must have succeeded for this node to run + + + + + Indices of nodes which must have completed for this node to run + + + + + Whether this node can be run multiple times + + + + + This node can start running early, before dependencies of other nodes in the same group are complete + + + + + Whether to include warnings in the output (defaults to true) + + + + + List of credentials required for this node. Each entry maps an environment variable name to a credential in the form "CredentialName.PropertyName". + + + + + Annotations for this node + + + + + Current state of the job step. This is updated automatically when runs complete. + + + + + Current outcome of the jobstep + + + + + Error from executing this step + + + + + The log id for this step + + + + + Unique id for notifications + + + + + Time at which the batch transitioned to the ready state (UTC). + + + + + Time at which the batch transitioned to the executing state (UTC). + + + + + Time at which the run finished (UTC) + + + + + Override for the priority of this step + + + + + If a retry is requested, stores the name of the user that requested it + + + + + Signal if a step should be aborted + + + + + If an abort is requested, stores the id of the user that requested it + + + + + Optional reason for why the job step was canceled + + + + + List of reports for this step + + + + + Reports for this jobstep. + + + + + Extension methods for job steps + + + + + Determines if a jobstep state is completed, skipped, or aborted. + + True if the step is completed, skipped, or aborted + + + + Determines if a jobstep is done by checking to see if it is completed, skipped, or aborted. + + True if the step is completed, skipped, or aborted + + + + Determine if a step should be timed out + + + + + + + + Cumulative timing information to reach a certain point in a job + + + + + Wait time on the critical path + + + + + Sync time on the critical path + + + + + Duration to this point + + + + + Average wait time to this point + + + + + Average sync time to this point + + + + + Average duration to this point + + + + + Individual step timing information + + + + + Constructor + + + + + Copy constructor + + The timing info object to copy from + + + + Modifies this timing to wait for another timing + + The other node to wait for + + + + Waits for all the given timing info objects to complete + + Other timing info objects to wait for + + + + Constructs a new TimingInfo object which represents the last TimingInfo to finish + + TimingInfo objects to wait for + New TimingInfo instance + + + + Copies this info to a repsonse object + + + + + Information about a chained job trigger + + + + + The target to monitor + + + + + The template to trigger on success + + + + + The triggered job id + + + + + Whether to run the latest change, or default change for the template, when starting the new job. Uses same change as the triggering job by default. + + + + + Report for a job or jobstep + + + + + Name of the report + + + + + Where to render the report + + + + + The artifact id + + + + + Inline data for the report + + + + + Implementation of IReport + + + + + + + + + + + + + + Identifier for a job @@ -16321,51 +19057,102 @@ All steps have completed + + + Read-only interface for job options + + + + + Name of the executor to use + + + + + Whether to execute using Wine emulation on Linux + + + + + Executes the job lease in a separate process + + + + + What workspace materializer to use in WorkspaceExecutor. Will override any value from workspace config. + + + + + Options for executing a job inside a container + + + + + Number of days after which to expire jobs + + + + + Name of the driver to use + + Options for executing a job - - Name of the executor to use - + - - Whether to execute using Wine emulation on Linux - + - - Executes the job lease in a separate process - + - - What workspace materializer to use in WorkspaceExecutor. Will override any value from workspace config. - + - - Options for executing a job inside a container - + - - Number of days after which to expire jobs - + - - Name of the driver to use - + Merge defaults from another options object + + + Options for a job container + + + + + Whether to execute job inside a container + + + + + Image URL to container, such as "quay.io/podman/hello" + + + + + Container engine executable (docker or with full path like /usr/bin/podman) + + + + + Additional arguments to pass to container engine + + Options for executing a job inside a container @@ -16396,39 +19183,37 @@ Merge defaults from another options object - + Query selecting the base changelist to use - + + + + + + + + + + + + + + + + + + + - Name of this query, for display on the dashboard. + Constructor - + - Condition to evaluate before deciding to use this query. May query tags in a preflight. - - - - - The template id to query - - - - - The target to query - - - - - Whether to match a job that produced warnings - - - - - Finds the last commit with this tag + Constructor @@ -16817,6 +19602,11 @@ Whether issues are being updated by this job + + + Whether the current user is allowed to update this job + + Constructor @@ -17738,6 +20528,77 @@ Step succeeded + + + Unique id struct for JobStepRef objects. Includes a job id, batch id, and step id to uniquely identify the step. + + + + + The job id + + + + + The batch id within the job + + + + + The step id + + + + + Constructor + + The job id + The batch id within the job + The step id + + + + Parse a job step id from a string + + Text to parse + The parsed id + + + + Formats this id as a string + + Formatted id + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + State of a job step @@ -17818,6 +20679,362 @@ Highest priority + + + Schedule for a template + + + + + Whether the schedule should be enabled + + + + + Maximum number of builds that can be active at once + + + + + Maximum number of changes the schedule can fall behind head revision. If greater than zero, builds will be triggered for every submitted changelist until the backlog is this size. + + + + + Whether the build requires a change to be submitted + + + + + Gate allowing the schedule to trigger + + + + + Commit tags for this schedule + + + + + Roles to impersonate for this schedule + + + + + Last changelist number that this was triggered for + + + + + Gets the last trigger time, in UTC + + + + + List of jobs that are currently active + + + + + Patterns for starting this scheduled job + + + + + Files that should cause the job to trigger + + + + + Parameters for the template + + + + + Claim granted to a schedule + + + + + The claim type + + + + + The claim value + + + + + Required gate for starting a schedule + + + + + The template containing the dependency + + + + + Target to wait for + + + + + Pattern for executing a schedule + + + + + Days of the week to run this schedule on. If null, the schedule will run every day. + + + + + Time during the day for the first schedule to trigger. Measured in minutes from midnight. + + + + + Time during the day for the last schedule to trigger. Measured in minutes from midnight. + + + + + Interval between each schedule triggering + + + + + Extension methods for schedules + + + + + Gets the next trigger time for a schedule + + + + + + + + Get the next time that the schedule will trigger + + Schedule to query + Last time at which the schedule triggered + Timezone to evaluate the trigger + Next time at which the schedule will trigger + + + + Calculates the trigger index based on the given time in minutes + + Pattern to query + Time for the last trigger + The timezone for running the schedule + Index of the trigger + + + + Time of day value for a schedule + + + + + Time of day value for a schedule + + + + + Parse a string as a time of day + + + + + + + + + + + Response describing a schedule + + + + + Whether the schedule is currently enabled + + + + + Maximum number of scheduled jobs at once + + + + + Maximum number of changes the schedule can fall behind head revision. If greater than zero, builds will be triggered for every submitted changelist until the backlog is this size. + + + + + Whether the build requires a change to be submitted + + + + + Gate for this schedule to trigger + + + + + Which commits to run this job for + + + + + Parameters for the template + + + + + New patterns for the schedule + + + + + Last changelist number that this was triggered for + + + + + Last changelist number that this was triggered for + + + + + Last time that the schedule was triggered + + + + + Next trigger times for schedule + + + + + List of active jobs + + + + + Default constructor + + + + + Constructor + + Schedule to construct from + The scheduler time zone + + + + Gate allowing a schedule to trigger. + + + + + The template containing the dependency + + + + + Target to wait for + + + + + Default constructor + + + + + Constructor + + + + + Parameters to create a new schedule + + + + + Days of the week to run this schedule on. If null, the schedule will run every day. + + + + + Time during the day for the first schedule to trigger. Measured in minutes from midnight. + + + + + Time during the day for the last schedule to trigger. Measured in minutes from midnight. + + + + + Interval between each schedule triggering + + + + + Constructor + + + + + Constructor + + + + + Response describing when a schedule is expected to trigger + + + + + Next trigger times + + + + + Constructor + + List of trigger times + + + + Time of day value for a schedule + + + + + Time of day value for a schedule + + + + + Parse a string as a time of day + + + + + + + + Identifier for subresources. Assigning unique ids to subresources prevents against race conditions using indices when subresources are added and removed. @@ -17994,6 +21211,349 @@ + + + Document describing a job template. These objects are considered immutable once created and uniquely referenced by hash, in order to de-duplicate across all job runs. + + + + + Hash of this template + + + + + Name of the template. + + + + + Description for the template + + + + + Priority of this job + + + + + Whether to allow preflights for this job type + + + + + Whether to always issues for jobs using this template + + + + + Whether to promote issues by default for jobs using this template + + + + + Agent type to use for parsing the job state + + + + + Path to a file within the stream to submit to generate a new changelist for jobs + + + + + Description for new changelists + + + + + Optional predefined user-defined properties for this job + + + + + Parameters for this template + + + + + Base class for parameters used to configure templates via the new build dialog + + + + + Gets the arguments for a job given a set of parameters + + Map of parameter id to value + Whether this is a scheduled build + Receives command line arguments for the job + + + + Gets the default arguments for this parameter and its children + + List of default parameters + Whether the arguments are being queried for a scheduled build + + + + Allows the user to toggle an option on or off + + + + + Identifier for this parameter + + + + + Label to display next to this parameter. + + + + + Argument to add if this parameter is enabled + + + + + Arguments to add if this parameter is enabled + + + + + Argument to add if this parameter is disabled + + + + + Arguments to add if this parameter is disabled + + + + + Whether this option should be enabled by default + + + + + Whether this option should be enabled by default + + + + + Tool tip text to display + + + + + Free-form text entry parameter + + + + + Identifier for this parameter + + + + + Label to display next to this parameter. Should default to the parameter name. + + + + + Argument to add (will have the value of this field appended) + + + + + Default value for this argument + + + + + Override for this argument in scheduled builds. + + + + + Hint text to display when the field is empty + + + + + Regex used to validate values entered into this text field. + + + + + Message displayed to explain valid values if validation fails. + + + + + Tool tip text to display + + + + + Style of list parameter + + + + + Regular drop-down list. One item is always selected. + + + + + Drop-down list with checkboxes + + + + + Tag picker from list of options + + + + + Allows the user to select a value from a constrained list of choices + + + + + Label to display next to this parameter. + + + + + Style of picker parameter to use + + + + + List of values to display in the list + + + + + Tool tip text to display + + + + + Possible option for a list parameter + + + + + Identifier for this parameter + + + + + Group to display this entry in + + + + + Text to display for this option. + + + + + Argument to add if this parameter is enabled. + + + + + Arguments to add if this parameter is enabled. + + + + + Argument to add if this parameter is disabled. + + + + + Arguments to add if this parameter is disabled. + + + + + Whether this item is selected by default + + + + + Whether this item is selected by default + + + + + Extension methods for templates + + + + + Gets the full argument list for a template + + + + + Gets the arguments for default options in this template. Does not include the standard template arguments. + + List of default arguments + + + + Query selecting the base changelist to use + + + + + Name of this query, for display on the dashboard. + + + + + Condition to evaluate before deciding to use this query. May query tags in a preflight. + + + + + The template id to query + + + + + The target to query + + + + + Whether to match a job that produced warnings + + + + + Finds the last commit with this tag + + + + + Interface for a collection of template documents + + + + + Gets a template by ID + + Unique id of the template + The template document + Identifier for a template parameter @@ -18068,6 +21628,246 @@ + + + Response describing a template + + + + + Name of the template + + + + + Description for the template + + + + + Default priority for this job + + + + + Whether to allow preflights of this template + + + + + Whether to always update issues on jobs using this template + + + + + The initial agent type to parse the BuildGraph script on + + + + + Path to a file within the stream to submit to generate a new changelist for jobs + + + + + Parameters for the job. + + + + + List of parameters for this template + + + + + Parameterless constructor for serialization + + + + + Constructor + + The template to construct from + + + + Response describing a template + + + + + Unique id of the template + + + + + Parameterless constructor for serialization + + + + + Constructor + + The template to construct from + + + + Base class for template parameters + + + + + Allows the user to toggle an option on or off + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + + + + Free-form text entry parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + + + + Allows the user to select a value from a constrained list of choices + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + + + + Possible option for a list parameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + Test outcome @@ -18444,6 +22244,40 @@ Suite test successes + + + Timing information for a particular job + + + + + Gets timing information for a particular step + + Name of the node being executed + Logger for diagnostic messages + Receives the timing information for the given step + True if the timing was found + + + + Information about the timing for an individual step + + + + + Wait time before executing the group containing this node + + + + + Time taken for the group containing this node to initialize + + + + + Time spent executing this node + + Interface for a log device @@ -19896,6 +23730,38 @@ Writes an event with a format string, splitting it into multiple lines if necessary + + + Unique id for a notification trigger id + + Identifier for the notification trigger + + + + Unique id for a notification trigger id + + Identifier for the notification trigger + + + Identifier for the notification trigger + + + + + + + + + + Converter class to and from ObjectId values + + + + + + + + Constructor @@ -20896,6 +24762,520 @@ Whether the account is enabled + + + Exception thrown when stream validation fails + + + + + + + + + + + + + + Information about a stream + + + + + Name of the stream. + + + + + Project that this stream belongs to + + + + + Name of the stream + + + + + Path to the config file for this stream + + + + + Current revision of the config file + + + + + Order for this stream on the dashboard + + + + + Notification channel for all jobs in this stream + + + + + Notification channel filter for this template. Can be Success, Failure, or Warnings. + + + + + Channel to post issue triage notifications + + + + + Tabs for this stream on the dashboard + + + + + Agent types configured for this stream + + + + + Workspace types configured for this stream + + + + + List of templates available for this stream + + + + + Workflows configured for this stream + + + + + Default settings for preflights against this stream + + + + + Stream is paused for builds until specified time + + + + + Comment/reason for why the stream was paused + + + + + Commits for this stream + + + + + Get the latest stream state + + Cancellation toke for this operation + Updated stream, or null if it no longer exists + + + + Updates user-facing properties for an existing stream + + The new datetime for pausing builds + The reason for pausing + Cancellation token for the operation + The updated stream if successful, null otherwise + + + + Attempts to update the last trigger time for a schedule + + The template ref id + New last trigger time for the schedule + New last trigger commit for the schedule + New list of active jobs + Cancellation token for the operation + The updated stream if successful, null otherwise + + + + Attempts to update a stream template ref + + The template ref to update + The stream states to update, pass an empty list to clear all step states, otherwise will be a partial update based on included step updates + Cancellation token for the operation + + + + + Style for rendering a tab + + + + + Regular job list + + + + + Omit job names, show condensed view + + + + + Information about a page to display in the dashboard for a stream + + + + + Title of this page + + + + + Type of this tab + + + + + Presentation style for this page + + + + + Whether to show job names on this page + + + + + Whether to show all user preflights + + + + + Names of jobs to include on this page. If there is only one name specified, the name column does not need to be displayed. + + + + + List of job template names to show on this page. + + + + + Columns to display for different types of aggregates + + + + + Type of a column in a jobs tab + + + + + Contains labels + + + + + Contains parameters + + + + + Describes a column to display on the jobs page + + + + + The type of column + + + + + Heading for this column + + + + + Category of aggregates to display in this column. If null, includes any aggregate not matched by another column. + + + + + Parameter to show in this column + + + + + Relative width of this column. + + + + + Mapping from a BuildGraph agent type to a set of machines on the farm + + + + + Pool of agents to use for this agent type + + + + + Name of the workspace to sync + + + + + Path to the temporary storage dir + + + + + Environment variables to be set when executing the job + + + + + Information about a workspace type + + + + + Name of the Perforce server cluster to use + + + + + The Perforce server and port (eg. perforce:1666) + + + + + User to log into Perforce with (defaults to buildmachine) + + + + + Password to use to log into the workspace + + + + + Identifier to distinguish this workspace from other workspaces. Defaults to the workspace type name. + + + + + Override for the stream to sync + + + + + Custom view for the workspace + + + + + Whether to use an incrementally synced workspace + + + + + Whether to use the AutoSDK + + + + + View for the AutoSDK paths to sync. If null, the whole thing will be synced. + + + + + Method to use when syncing/materializing data from Perforce + + + + + Minimum disk space that must be available *after* syncing this workspace (in megabytes) + If not available, the job will be aborted. + + + + + Threshold for when to trigger an automatic conform of agent. Measured in megabytes free on disk. + Set to null or 0 to disable. + + + + + Specifies defaults for running a preflight + + + + + The template id to query + + + + + Query for the change to use + + + + + Job template in a stream + + + + + The template id + + + + + Whether to show badges in UGS for these jobs + + + + + Whether to show alerts in UGS for these jobs + + + + + Notification channel for this template. Overrides the stream channel if set. + + + + + Notification channel filter for this template. Can be a combination of "Success", "Failure" and "Warnings" separated by pipe characters. + + + + + Triage channel for this template. Overrides the stream channel if set. + + + + + List of schedules for this template + + + + + List of chained job triggers + + + + + List of template step states + + + + + Default change to use for this job + + + + + Trigger for another template + + + + + Name of the target that needs to complete before starting the other template + + + + + Id of the template to trigger + + + + + Whether to use the default change for the template rather than the change for the parent job. + + + + + Information about a paused template step + + + + + Name of the step + + + + + User who paused the step + + + + + The UTC time when the step was paused + + + + + Extension methods for streams + + + + + Updates an existing stream + + The stream to update + The new datetime for pausing builds + The reason for pausing + Cancellation token for the operation + Async task object + + + + Attempts to update the last trigger time for a schedule + + The stream to update + The template ref id + + + Jobs to add + Jobs to remove + Cancellation token for the operation + True if the stream was updated + + + + Check if stream is paused for new builds + + The stream object + Current time (allow tests to pass in a fake clock) + If stream is paused + + + + Collection of stream documents + + + + + Gets a stream by ID + + The stream identifier + Cancellation token for the operation + The stream document + + + + Gets a stream by ID + + The stream identifiers + Cancellation token for the operation + The stream document + Identifier for a stream @@ -20933,6 +25313,442 @@ + + + Response describing a stream + + + + + Unique id of the stream + + + + + Unique id of the project containing this stream + + + + + Name of the stream + + + + + The config file path on the server + + + + + Revision of the config file + + + + + Order to display in the list + + + + + Notification channel for all jobs in this stream + + + + + Notification channel filter for this template. Can be a combination of "Success", "Failure" and "Warnings" separated by pipe characters. + + + + + Channel to post issue triage notifications + + + + + Default template for running preflights + + + + + Default template to use for preflights + + + + + List of tabs to display for this stream + + + + + Map of agent name to type + + + + + Map of workspace name to type + + + + + Templates for jobs in this stream + + + + + Stream paused for new builds until this date + + + + + Reason for stream being paused + + + + + Workflows for this stream + + + + + Constructor + + The stream to construct from + Templates for this stream + + + + Information about the default preflight to run + + + + + + + + + + + Constructor + + + + + Constructor + + + + + Information about a page to display in the dashboard for a stream + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Constructor + + + + + Constructor + + + + + Describes a column to display on the jobs page + + + + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + + + + Mapping from a BuildGraph agent type to a set of machines on the farm + + + + + Pool of agents to use for this agent type + + + + + Name of the workspace to sync + + + + + Path to the temporary storage dir + + + + + Environment variables to be set when executing the job + + + + + Constructor + + + + + Constructor + + + + + Information about a workspace type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default constructor + + + + + Constructor + + + + + State information for a step in the stream + + + + + Name of the step + + + + + User who paused the step + + + + + The UTC time when the step was paused + + + + + Default constructor for serialization + + + + + Constructor + + + + + Information about a template in this stream + + + + + Id of the template ref + + + + + Hash of the template definition + + + + + Whether to show badges in UGS for these jobs + + + + + Whether to show alerts in UGS for these jobs + + + + + Notification channel for this template. Overrides the stream channel if set. + + + + + Notification channel filter for this template. Can be a combination of "Success", "Failure" and "Warnings" separated by pipe characters. + + + + + Triage channel for this template. Overrides the stream channel if set. + + + + + The schedule for this ref + + + + + List of templates to trigger + + + + + List of step states + + + + + List of queries for the default changelist + + + + + Whether the user is allowed to create jobs from this template + + + + + Constructor + + The template ref id + The template ref + The actual template + The template step states + The scheduler time zone + Whether the user can run this template + + + + Trigger for another template + + + + + + + + + + + + + + Constructor + + + + + Constructor + + + + + Step state update request + + + + + Name of the step + + + + + User who paused the step + + + + + Updates an existing stream template ref + + + + + Step states to update + + Normalized string identifier for a resource @@ -22341,84 +27157,465 @@ Download the deployment data as a zip file - + - Information about a Badge + Review by a user of a particular change - + - Name of the Badge + No vote for the current change - + - URL of the Badge setter + Succesfully compiled the change - + - Status state of the Badge + Failed to compile the change - + - Information about a User from UGS + Manually marked the change as good - + - User name + Manually marked the change as bad - + - Time user synced change in UGS + State of a badge - + - User vote state + Starting work on this badge, outcome currently unknown - + - Information about UGS Metadata + Badge failed - + - Change number + Badge produced a warning - + - Project name + Badge succeeded - + - Badges associated with Change + Badge was skipped - + - Users of this change + Adds a new badge to the change + + + + + Name of the badge + + + + + Url for the badge + + + + + Current status of the badge + + + + + Request object for adding new metadata to the server + + + + + The stream name + + + + + The changelist number + + + + + The project name + + + + + Name of the current user + + + + + Whether this changelist has been synced by the user + + + + + State of the user + + + + + New starred state for the issue + + + + + Whether the user is investigating + + + + + Comment for this change + + + + + List of badges to add + + + + + Information about a user synced to a change + + + + + Name of the user + + + + + Time that the change was synced + + + + + State of the user + + + + + Comment by this user + + + + + Whether the user is investigating this change + + + + + Whether this changelist is starred + + + + + Information about a badge + + + + + Name of the badge + + + + + Url for the badge + + + + + Current status of the badge - Information about a collection of Metadata + Response object for querying metadata - + - Sequence number identifier + Number of the changelist - + - Metadata items + The project name + + + + + Information about a user synced to this change + + + + + Badges for this change + + + + + Response object for querying metadata + + + + + Last time that the metadata was modified + + + + + List of changes matching the requested criteria + + + + + Outcome of a particular build + + + + + Unknown outcome + + + + + Build succeeded + + + + + Build failed + + + + + Build finished with warnings + + + + + Legacy response describing a build + + + + + Identifier for this build + + + + + Path to the stream containing this build + + + + + The changelist number for this build + + + + + Name of this job + + + + + Link to the job + + + + + Name of the job step + + + + + Link to the job step + + + + + Url for this particular error + + + + + Outcome of this build (see ) + + + + + + + + + + + + + Information about a diagnostic + + + + + The corresponding build id + + + + + Message for the diagnostic + + + + + Link to the error + + + + + Constructor + + The corresponding build id + Message for the diagnostic + Link to the diagnostic + + + + Stores information about a build health issue + + + + + Version number for this response + + + + + The unique object id + + + + + Time at which the issue was created + + + + + Time at which the issue was retrieved + + + + + The associated project for the issue + + + + + The summary text for this issue + + + + + Owner of the issue + + + + + User that nominated the current owner + + + + + Time that the issue was acknowledged + + + + + Changelist that fixed this issue + + + + + Time at which the issue was resolved + + + + + Whether to notify the user about this issue + + + + + Whether this issue just contains warnings + + + + + Link to the last build + + + + + List of streams affected by this issue + + + + + Request an issue to be updated + + + + + New owner of the issue + + + + + User than nominates the new owner + + + + + Whether the issue has been acknowledged + + + + + Name of the user that declines the issue + + + + + The change at which the issue is claimed fixed. 0 = not fixed, -1 = systemic issue. + + + + + Whether the issue should be marked as resolved + + + + + Name of the user that resolved the issue @@ -22781,6 +27978,22 @@ Bisection task ids to remove from the pinned list + + + Converts TimeSpan intervals from formats like "30m", "1h30m", etc... + + + + + + + + Parse a string as a time interval + + + + + OpenTelemetry configuration for collection and sending of traces and metrics. @@ -22862,6 +28075,131 @@ The deserialized OpenTelemetrySettings Thrown when deserialization fails or results in a null object. + + + Wraps a semaphore controlling the number of open files at any time. Used to prevent exceeding handle limit on MacOS. + + + + + Acquire the platform file lock + + Cancellation token for the operation + + + + + + + Parses a time of day into a number of minutes since midnight + + + + + + + + + + + Parse a string as a number of minutes since midnight + + + + + Searchable reference to a jobstep + + + + + Globally unique identifier for the jobstep being referenced + + + + + Name of the job + + + + + Name of the name + + + + + Unique id of the stream containing the job + + + + + Template for the job being executed + + + + + The change number being built + + + + + Log for this step + + + + + The agent type + + + + + The agent id + + + + + Outcome of the step, once complete. + + + + + Whether this step should update issues + + + + + Issues ids affecting this job step + + + + + The last change that succeeded. Note that this is only set when the ref is updated; it is not necessarily consistent with steps run later. + + + + + The last change that succeeded, or completed a warning. See . + + + + + Time taken for the batch containing this batch to start after it became ready + + + + + Time taken for this batch to initialize + + + + + Time at which the step started. + + + + + Time at which the step finished. + + Attribute indicating that an object should generate a schema doc page diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.dll index 141bbcf5..8889b147 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2df2116c4baf316fc9fd95393f87f63bc20aa2b109dc18816a04a06f82fa978 +oid sha256:0e2486f923b4ec375b73c2e16cf5925d37a1e0af63ee5a85a450139b223ccf43 size 15872 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.pdb index 873e52fb..155c5419 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.IoHash.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:297898a7857ca003f1c5ce34eb1b3fdcdc6b416a2a8fce0e05a69acf4eff80f0 +oid sha256:71810c9448bded69c5a8d7c0c3ab8a77325142c9b1373c8c5ca446e1af075ad2 size 46592 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.dll index 286e6890..1027e78c 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b511f466a03534b7ee857d0f10628b2a3399b37868cc7d9e6d33a43d1f851c23 +oid sha256:3ef6a407a8bb48dbdbc06b920b874ba19a0f6137d43aa73c388cfde83fae740e size 22528 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.pdb index 882729d9..9e4e6028 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.MsBuild.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef9d022b8bcbe1d999671cf213d1842d82d6099bcdb538d646cc8f8e6c30dd40 +oid sha256:f52c9db57ff3293d8de2a0a9b55e23a260543c52a0a67ff2cfe75c2b82d085d0 size 38400 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.dll index 3f8a69a4..735ba536 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db67e90677c80fa9cf05a76107caa21a58e0fc6f20c897de9f3ee14890bfa8c8 +oid sha256:543e4e1e2dadc103294051ab8b2980bbed30bd55d6d60003e1778fca9ccf8214 size 76800 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.pdb index 9ebbf899..86a6897b 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.OIDC.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61e02eb892a411dcfb5700e02d0e860f59cf03d8763ca9f73d5bae3c2720749e +oid sha256:2f9c335297554751b2fad8f3309399e6579cfb7d110038723f88d51644ad2752 size 103936 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.dll index 577a53d0..6d173a79 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d73fff2cedf052ad82a51c365589bf6ebe46ecb7e730f4c0c0f70687801cfd5a +oid sha256:2253a5ccf30cf06a60845aea61ed061cc5985ae572849e986c82044b200f2e71 size 9728 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.pdb index f52fc47b..707ddb40 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Oodle.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bf460a51ed7771b0e4e139293a11c2a50dcdde1ec4b3281109e6a577d1c84e9b +oid sha256:b1edff5e5beb1c408d8577107098268e92aba8a591783512e6d51c3031d7857c size 19968 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.dll index 273bbd9a..8a69c504 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65c25fa43ccd153cb81a50fbdc0ed526e930f8c9d016ea69b7276333c816fa6c +oid sha256:54cafa5da2636d81a34d7a37e6613f95457a9e6009a6dbdecfa1d8338608fa0d size 273920 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.pdb index a4e09447..ea034abb 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Perforce.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7164fecb87e3c6e2555ea201718b3411115e36322b5991caca9dc5ae8530c12d -size 808448 +oid sha256:2a9fa74f7c0c829d83ef55bff1a608948e260c79b0cd728a392bc6c7ec9c5344 +size 804352 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.dll index b0cdc373..2182ffef 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d082f0a35321fcd687327f3614b53f64cf75b9086dc261d070b9c71e7c23bd41 +oid sha256:e2292bc3c15a3bf0252f1359890b38085d94379528818b3f2bfe327e805662ae size 91136 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.pdb index 072cc3ea..863985a0 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.Serialization.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e63aaafb0b13d0b811cc7c12c1100598154a00376798fb57d11d2bb2aee79b0d +oid sha256:3d6b2b22c56a6f91e5c570825a699d998e73e347ff40892451181419dae5b685 size 273920 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.dll index 840b61a9..d22be62f 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47565e8e8231ed1c5af1a5204c97d1e131b95584e3bbea7a94a4225b03afec3d +oid sha256:321c38b2879583ec45dbdb08a171983c8b82bd3d71ac57bdae98f53fb2f3d3ec size 37376 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.pdb index b618c064..6d96ce75 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UBA.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04ab27f3f8939ffe323f630165537a264985170ff21eb0345e7dbef750360949 +oid sha256:0b237bace99852eaa26217eb7bbf0e025cba2eb41768f85d796028a5819dbbfc size 124416 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.dll index b8174adc..010a023a 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86c2469a532b0daffca685c6238cec3ed744b6b12d7574ed840ed7c53be69722 +oid sha256:945e5d4065c8a01b228ba0c3de6f7bb0003a3350107b84cd1950c4321b371a2d size 624128 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.pdb index 4fb4a33a..deefa4d8 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/EpicGames.UHT.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4264de38cea09ec344482a26ca892315447d541382eb3ff8875ac09e7d66d1ef -size 1611264 +oid sha256:22ac2e3addf7ae6969b72f2c56c2f729187c8671a90768c4a2784aa995ce77c0 +size 1607168 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.dll index 414a5a54..54cb6b34 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34cac0c810dac2e48c767519ca347b9e48ec4fe19b36b3330c765df619b36ee6 +oid sha256:d75dee4844c971837eaab58f6f82838263bdac02ec3494803c2473ad55b90f19 size 55808 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.pdb index 01b0d419..604cf0c6 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/Localization.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c484d46bd292959b90245d7efa74dcdae0e0071575bca451d2bc34974a095052 +oid sha256:e89519e3993e26e6824f8d802e9afcd0d011331f2739faf9e3f65c8c348100d9 size 144896 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.deps.json b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.deps.json index f6af4c82..f300b943 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.deps.json +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.deps.json @@ -29,11 +29,11 @@ } } }, - "Blake3/0.6.1": { + "Blake3/1.1.0": { "runtime": { - "lib/net6.0/Blake3.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.6.1.0" + "lib/net7.0/Blake3.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.1.0.0" } }, "runtimeTargets": { @@ -106,7 +106,7 @@ "Grpc.Net.Client/2.59.0": { "dependencies": { "Grpc.Net.Common": "2.59.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" }, "runtime": { "lib/net8.0/Grpc.Net.Client.dll": { @@ -126,35 +126,31 @@ } } }, - "IdentityModel/5.1.0": { - "dependencies": { - "System.Text.Encodings.Web": "5.0.1", - "System.Text.Json": "8.0.5" - }, + "IdentityModel/7.0.0": { "runtime": { - "lib/net5.0/IdentityModel.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" + "lib/net6.0/IdentityModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.0.0" } } }, - "IdentityModel.OidcClient/4.0.0": { + "IdentityModel.OidcClient/6.0.0": { "dependencies": { - "IdentityModel": "5.1.0", - "Microsoft.Extensions.Logging": "6.0.0" + "IdentityModel": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" }, "runtime": { - "lib/netstandard2.0/IdentityModel.OidcClient.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" + "lib/net6.0/IdentityModel.OidcClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" } } }, - "JetBrains.Annotations/2022.1.0": { + "JetBrains.Annotations/2024.3.0": { "runtime": { "lib/netstandard2.0/JetBrains.Annotations.dll": { "assemblyVersion": "4242.42.42.42", - "fileVersion": "2022.1.0.0" + "fileVersion": "2024.3.0.0" } } }, @@ -174,158 +170,157 @@ } } }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.Common/4.2.0": { + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.11.0": { "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "5.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.2.0.0", - "fileVersion": "4.200.22.26219" + "lib/net8.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.11.0.0", + "fileVersion": "4.1100.24.37604" } }, "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll": { "locale": "cs" }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll": { "locale": "de" }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll": { "locale": "es" }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll": { "locale": "fr" }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll": { "locale": "it" }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll": { "locale": "ja" }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll": { "locale": "ko" }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll": { "locale": "pl" }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { "locale": "pt-BR" }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll": { "locale": "ru" }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll": { "locale": "tr" }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { "locale": "zh-Hans" }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { "locale": "zh-Hant" } } }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { + "Microsoft.CodeAnalysis.CSharp/4.11.0": { "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.2.0" + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "Microsoft.CodeAnalysis.Common": "4.11.0", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" }, "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.2.0.0", - "fileVersion": "4.200.22.26219" + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.11.0.0", + "fileVersion": "4.1100.24.37604" } }, "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "cs" }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "de" }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "es" }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "fr" }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "it" }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ja" }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ko" }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "pl" }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "pt-BR" }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ru" }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "tr" }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "zh-Hans" }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "zh-Hant" } } }, "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.Sqlite/8.0.0": { + "Microsoft.Data.Sqlite/8.0.10": { "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.0", + "Microsoft.Data.Sqlite.Core": "8.0.10", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, - "Microsoft.Data.Sqlite.Core/8.0.0": { + "Microsoft.Data.Sqlite.Core/8.0.10": { "dependencies": { "SQLitePCLRaw.core": "2.1.6" }, "runtime": { "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { "assemblyVersion": "8.0.0.0", "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "Microsoft.Extensions.Caching.Memory/8.0.1": { "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.3524.45918" + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, @@ -352,215 +347,240 @@ } } }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "Microsoft.Extensions.Configuration.Binder/8.0.2": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" } } }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" } } }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { + "Microsoft.Extensions.Configuration.Json/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "8.0.5" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "Microsoft.Extensions.Diagnostics/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { "dependencies": { "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.Http/6.0.0": { + "Microsoft.Extensions.Http/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Http.Polly/6.0.26": { + "Microsoft.Extensions.Http.Polly/8.0.10": { "dependencies": { - "Microsoft.Extensions.Http": "6.0.0", - "Polly": "7.2.2", + "Microsoft.Extensions.Http": "8.0.1", + "Polly": "7.2.4", "Polly.Extensions.Http": "3.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": { - "assemblyVersion": "6.0.26.0", - "fileVersion": "6.0.2623.60506" + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46804" } } }, - "Microsoft.Extensions.Logging/6.0.0": { + "Microsoft.Extensions.Logging/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1823.26907" + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "Microsoft.Extensions.Logging.Configuration/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Console/6.0.0": { + "Microsoft.Extensions.Logging.Console/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Logging.Configuration": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Text.Json": "8.0.5" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Configuration": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.ObjectPool/6.0.8": { + "Microsoft.Extensions.ObjectPool/8.0.10": { "runtime": { - "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.822.36316" + "lib/net8.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" } } }, - "Microsoft.Extensions.Options/6.0.0": { + "Microsoft.Extensions.Options/8.0.2": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" } } }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, @@ -574,6 +594,14 @@ }, "Microsoft.NETCore.Platforms/5.0.0": {}, "Microsoft.NETCore.Targets/1.1.3": {}, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "runtime": { + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "3.11.2177.7163" + } + } + }, "Microsoft.Win32.Registry/5.0.0": { "dependencies": { "System.Security.AccessControl": "5.0.0", @@ -599,11 +627,11 @@ } } }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.3": { "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" + "fileVersion": "13.0.3.27908" } } }, @@ -615,17 +643,17 @@ } } }, - "Polly/7.2.2": { + "Polly/7.2.4": { "runtime": { "lib/netstandard2.0/Polly.dll": { "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.2.0" + "fileVersion": "7.2.4.982" } } }, "Polly.Extensions.Http/3.0.0": { "dependencies": { - "Polly": "7.2.2" + "Polly": "7.2.4" }, "runtime": { "lib/netstandard2.0/Polly.Extensions.Http.dll": { @@ -843,8 +871,7 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Collections.Immutable/5.0.0": {}, - "System.Data.DataSetExtensions/4.5.0": {}, + "System.Collections.Immutable/8.0.0": {}, "System.Diagnostics.Debug/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "5.0.0", @@ -852,29 +879,34 @@ "System.Runtime": "4.3.1" } }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Diagnostics.DiagnosticSource/4.3.0": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1", + "System.Threading": "4.3.0" } }, - "System.Diagnostics.EventLog/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, + "System.Diagnostics.EventLog/8.0.1": { "runtime": { - "lib/netstandard2.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, @@ -990,24 +1022,22 @@ } } }, - "System.Management/4.7.0": { + "System.Management/8.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", "System.CodeDom": "8.0.0" }, "runtime": { - "lib/netstandard2.0/System.Management.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.Management.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "runtimes/win/lib/net8.0/System.Management.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, @@ -1017,7 +1047,7 @@ "Microsoft.NETCore.Platforms": "5.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -1059,12 +1089,16 @@ "System.Runtime": "4.3.1" } }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.MetadataLoadContext/4.7.2": { + "System.Reflection.Metadata/8.0.0": { + "dependencies": { + "System.Collections.Immutable": "8.0.0" + } + }, + "System.Reflection.MetadataLoadContext/8.0.1": { "runtime": { - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.700.20.21406" + "lib/net8.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } } }, @@ -1090,7 +1124,6 @@ "Microsoft.NETCore.Targets": "1.1.3" } }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Runtime.Extensions/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "5.0.0", @@ -1265,22 +1298,22 @@ } }, "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceProcess.ServiceController/4.7.0": { + "System.ServiceProcess.ServiceController/8.0.1": { "dependencies": { - "System.Diagnostics.EventLog": "4.7.0" + "System.Diagnostics.EventLog": "8.0.1" }, "runtime": { - "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "4.2.3.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.2.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } } }, @@ -1291,12 +1324,7 @@ "System.Runtime": "4.3.1" } }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/5.0.1": {}, + "System.Text.Encoding.CodePages/8.0.0": {}, "System.Text.Json/8.0.5": { "runtime": { "lib/net8.0/System.Text.Json.dll": { @@ -1323,7 +1351,6 @@ "System.Runtime": "4.3.1" } }, - "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/4.7.0": { "dependencies": { "System.Drawing.Common": "4.7.3" @@ -1354,11 +1381,10 @@ "AutomationUtils.Automation/1.0.0": { "dependencies": { "EpicGames.Perforce": "1.0.0", - "System.Data.DataSetExtensions": "4.5.0", "System.Drawing.Common": "4.7.3", "System.Net.Http": "4.3.4", "System.Security.Permissions": "4.7.0", - "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encoding.CodePages": "8.0.0", "System.Text.RegularExpressions": "4.3.1" }, "runtime": { @@ -1379,7 +1405,7 @@ "EpicGames.IoHash": "1.0.0", "EpicGames.MsBuild": "1.0.0", "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", "System.Security.Permissions": "4.7.0" }, "runtime": { @@ -1398,10 +1424,11 @@ "Google.Protobuf": "3.25.1", "Grpc.Net.Client": "2.59.0", "K4os.Compression.LZ4": "1.2.16", - "Microsoft.Data.Sqlite": "8.0.0", - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.Caching.Memory": "6.0.2", + "Microsoft.Data.Sqlite": "8.0.10", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Caching.Memory": "8.0.1", "System.IO.Pipelines": "8.0.0", + "System.Linq.Async": "6.0.1", "ZstdSharp.Port": "0.8.1" }, "runtime": { @@ -1410,7 +1437,7 @@ }, "EpicGames.IoHash/1.0.0": { "dependencies": { - "Blake3": "0.6.1", + "Blake3": "1.1.0", "EpicGames.Core": "1.0.0", "System.Memory": "4.5.5" }, @@ -1429,9 +1456,10 @@ }, "EpicGames.OIDC/1.0.0": { "dependencies": { - "IdentityModel.OidcClient": "4.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", + "IdentityModel.OidcClient": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.Configuration.Json": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2", "System.Text.Json": "8.0.5" }, "runtime": { @@ -1463,7 +1491,7 @@ "EpicGames.UBA/1.0.0": { "dependencies": { "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.Logging": "6.0.0" + "Microsoft.Extensions.Logging": "8.0.1" }, "runtime": { "EpicGames.UBA.dll": {} @@ -1480,18 +1508,13 @@ } }, "Localization.Automation/1.0.0": { - "dependencies": { - "System.Data.DataSetExtensions": "4.5.0" - }, "runtime": { "Localization.Automation.dll": {} } }, "OneSkyLocalization.Automation/1.0.0": { "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Data.DataSetExtensions": "4.5.0", - "System.Net.Http": "4.3.4" + "Microsoft.CSharp": "4.7.0" }, "runtime": { "OneSkyLocalization.Automation.dll": {} @@ -1507,18 +1530,19 @@ "EpicGames.Serialization": "1.0.0", "EpicGames.UBA": "1.0.0", "EpicGames.UHT": "1.0.0", - "Microsoft.CodeAnalysis.CSharp": "4.2.0", - "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.11.0", + "Microsoft.Extensions.Logging.Console": "8.0.1", + "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.11.2177", "Microsoft.Win32.Registry": "5.0.0", - "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json": "13.0.3", "OpenTracing": "0.12.1", "System.CodeDom": "8.0.0", - "System.Management": "4.7.0", - "System.Reflection.MetadataLoadContext": "4.7.2", + "System.Management": "8.0.0", + "System.Reflection.MetadataLoadContext": "8.0.1", "System.Security.Cryptography.Csp": "4.3.0", "System.Security.Permissions": "4.7.0", - "System.ServiceProcess.ServiceController": "4.7.0", - "System.Text.Encoding.CodePages": "6.0.0" + "System.ServiceProcess.ServiceController": "8.0.1", + "System.Text.Encoding.CodePages": "8.0.0" }, "runtime": { "UnrealBuildTool.dll": {} @@ -1560,12 +1584,12 @@ "path": "bitfaster.caching/2.4.1", "hashPath": "bitfaster.caching.2.4.1.nupkg.sha512" }, - "Blake3/0.6.1": { + "Blake3/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-YlEweiQX1iMXh9HPpoRzSKeLMuKPnMJJWTdqnP1NJV0XwwDwO7WrwLlj60pGk0vJWbeZLZOh06U70+2z0DQCsQ==", - "path": "blake3/0.6.1", - "hashPath": "blake3.0.6.1.nupkg.sha512" + "sha512": "sha512-/gWRFsXYeIFof8YAoFJwzv2fYjSTCo+6vvTSL6pyXw2ZLXQdRvEyXhO43jyDfEFBCTxMxWpoHbIcIEIF6a3QdQ==", + "path": "blake3/1.1.0", + "hashPath": "blake3.1.1.0.nupkg.sha512" }, "Dapper/2.1.24": { "type": "package", @@ -1602,26 +1626,26 @@ "path": "grpc.net.common/2.59.0", "hashPath": "grpc.net.common.2.59.0.nupkg.sha512" }, - "IdentityModel/5.1.0": { + "IdentityModel/7.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Gcv4YYXncvUvTNLF8lDJyItZzaEDFcEi3geMDtylGcl/Rx90vcV7Kv3yAofktJBW7GvmIjQgC8LtUq0s9XQT2w==", - "path": "identitymodel/5.1.0", - "hashPath": "identitymodel.5.1.0.nupkg.sha512" + "sha512": "sha512-to99aLL5Gev1GOb2gUao/UZXT/uXMyjEmHPNrf/vJI2HBD1LMCTeC4SBCe/cqMIB12V9v+eSieq7ff0lju9pOQ==", + "path": "identitymodel/7.0.0", + "hashPath": "identitymodel.7.0.0.nupkg.sha512" }, - "IdentityModel.OidcClient/4.0.0": { + "IdentityModel.OidcClient/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-qAWbsg8dihy4UlTCW89Vc9LPKwx12lCR4JlM+ilZX/Jwk1h1++GmgXUV0Rs9lZ/4DivU1hkcfYGBBUzlW088Ug==", - "path": "identitymodel.oidcclient/4.0.0", - "hashPath": "identitymodel.oidcclient.4.0.0.nupkg.sha512" + "sha512": "sha512-m2PZbjeG3nXIQ72NLZvFz3FLFk7GmqLnxO/ifUvaTEE3BDZXp7DXAdjDP6TQKaL20+wDnej2ffA1Yh3vVcJOkA==", + "path": "identitymodel.oidcclient/6.0.0", + "hashPath": "identitymodel.oidcclient.6.0.0.nupkg.sha512" }, - "JetBrains.Annotations/2022.1.0": { + "JetBrains.Annotations/2024.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==", - "path": "jetbrains.annotations/2022.1.0", - "hashPath": "jetbrains.annotations.2022.1.0.nupkg.sha512" + "sha512": "sha512-ox5pkeLQXjvJdyAB4b2sBYAlqZGLh3PjSnP1bQNVx72ONuTJ9+34/+Rq91Fc0dG29XG9RgZur9+NcP4riihTug==", + "path": "jetbrains.annotations/2024.3.0", + "hashPath": "jetbrains.annotations.2024.3.0.nupkg.sha512" }, "K4os.Compression.LZ4/1.2.16": { "type": "package", @@ -1637,26 +1661,26 @@ "path": "microsoft.bcl.asyncinterfaces/6.0.0", "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { "type": "package", "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" }, - "Microsoft.CodeAnalysis.Common/4.2.0": { + "Microsoft.CodeAnalysis.Common/4.11.0": { "type": "package", "serviceable": true, - "sha512": "sha512-lbusGcuE7D8FtZawQ4G++UFsRQArPzZN1GGXjPQwu3gvCbw7FXDcBq1zDZrZN1vRzPTVe1qyZMvfGhVUzs1TDg==", - "path": "microsoft.codeanalysis.common/4.2.0", - "hashPath": "microsoft.codeanalysis.common.4.2.0.nupkg.sha512" + "sha512": "sha512-djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", + "path": "microsoft.codeanalysis.common/4.11.0", + "hashPath": "microsoft.codeanalysis.common.4.11.0.nupkg.sha512" }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { + "Microsoft.CodeAnalysis.CSharp/4.11.0": { "type": "package", "serviceable": true, - "sha512": "sha512-5IDwr8zGNBmDpxtzxxZj9IHwoA6HJ1/WWT/JacqPQJ4Vz/oZXaHNlzcBPVCZRGWUw+QvVdAhCKwEyJyuAuH/wg==", - "path": "microsoft.codeanalysis.csharp/4.2.0", - "hashPath": "microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512" + "sha512": "sha512-6XYi2EusI8JT4y2l/F3VVVS+ISoIX9nqHsZRaG6W5aFeJ5BEuBosHfT/ABb73FN0RZ1Z3cj2j7cL28SToJPXOw==", + "path": "microsoft.codeanalysis.csharp/4.11.0", + "hashPath": "microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1665,33 +1689,33 @@ "path": "microsoft.csharp/4.7.0", "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" }, - "Microsoft.Data.Sqlite/8.0.0": { + "Microsoft.Data.Sqlite/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-H+iC5IvkCCKSNHXzL3JARvDn7VpkvuJM91KVB89sKjeTF/KX/BocNNh93ZJtX5MCQKb/z4yVKgkU2sVIq+xKfg==", - "path": "microsoft.data.sqlite/8.0.0", - "hashPath": "microsoft.data.sqlite.8.0.0.nupkg.sha512" + "sha512": "sha512-WN+qgrEcXg66YHtICl0W4If9v98PBenIj/INVkJaC+wqGX/Zus3aqyv6EI17EBRsw6tcvWsKd980X5iQ7wcj1Q==", + "path": "microsoft.data.sqlite/8.0.10", + "hashPath": "microsoft.data.sqlite.8.0.10.nupkg.sha512" }, - "Microsoft.Data.Sqlite.Core/8.0.0": { + "Microsoft.Data.Sqlite.Core/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-pujbzfszX7jAl7oTbHhqx7pxd9jibeyHHl8zy1gd55XMaKWjDtc5XhhNYwQnrwWYCInNdVoArbaaAvLgW7TwuA==", - "path": "microsoft.data.sqlite.core/8.0.0", - "hashPath": "microsoft.data.sqlite.core.8.0.0.nupkg.sha512" + "sha512": "sha512-i95bgLqp6rJzmhQEtGhVVHnk1nYAhr/pLDul676PnwI/d7uDSSGs2ZPU9aP0VOuppkZaNinQOUCrD7cstDbQiQ==", + "path": "microsoft.data.sqlite.core/8.0.10", + "hashPath": "microsoft.data.sqlite.core.8.0.10.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", - "path": "microsoft.extensions.caching.abstractions/6.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { + "Microsoft.Extensions.Caching.Memory/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-ANjkN9TiBZXm5cvj3bb3QbezBzqkupCzxwgNf46d4V4ToRBHcEp3IEgbc67M3ZqVHQxaJgEncZ/frdqznpVWIw==", - "path": "microsoft.extensions.caching.memory/6.0.2", - "hashPath": "microsoft.extensions.caching.memory.6.0.2.nupkg.sha512" + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" }, "Microsoft.Extensions.Configuration/8.0.0": { "type": "package", @@ -1707,124 +1731,138 @@ "path": "microsoft.extensions.configuration.abstractions/8.0.0", "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "Microsoft.Extensions.Configuration.Binder/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + "sha512": "sha512-7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", + "path": "microsoft.extensions.configuration.binder/8.0.2", + "hashPath": "microsoft.extensions.configuration.binder.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + "sha512": "sha512-EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", + "path": "microsoft.extensions.configuration.fileextensions/8.0.1", + "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { + "Microsoft.Extensions.Configuration.Json/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + "sha512": "sha512-L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", + "path": "microsoft.extensions.configuration.json/8.0.1", + "hashPath": "microsoft.extensions.configuration.json.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "Microsoft.Extensions.Diagnostics/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", + "path": "microsoft.extensions.diagnostics/8.0.1", + "hashPath": "microsoft.extensions.diagnostics.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.1", + "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Http/6.0.0": { + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", - "path": "microsoft.extensions.http/6.0.0", - "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Http.Polly/6.0.26": { + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-QnlvyDQB7cYhfCwWe9x5XBRJtjK6X9Amsnd+0pf/hddHwHCccmr+PNFmtLgtN5rY1DeGlOP3qcU/MN73Wk8d8A==", - "path": "microsoft.extensions.http.polly/6.0.26", - "hashPath": "microsoft.extensions.http.polly.6.0.26.nupkg.sha512" + "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Logging/6.0.0": { + "Microsoft.Extensions.Http/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + "sha512": "sha512-kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", + "path": "microsoft.extensions.http/8.0.1", + "hashPath": "microsoft.extensions.http.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { + "Microsoft.Extensions.Http.Polly/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-K14wYgwOfKVELrUh5eBqlC8Wvo9vvhS3ZhIvcswV2uS/ubkTRPSQsN557EZiYUSSoZNxizG+alN4wjtdyLdcyw==", - "path": "microsoft.extensions.logging.abstractions/6.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.4.nupkg.sha512" + "sha512": "sha512-Of5qq+Xovs6/hDY+n86keBL3Ww1zIIm52eNEHcdW1fvamXIcG0rvbkW1VM4SJNWqmR2fqhFSOLz0wGdBgpZROg==", + "path": "microsoft.extensions.http.polly/8.0.10", + "hashPath": "microsoft.extensions.http.polly.8.0.10.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "Microsoft.Extensions.Logging/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", - "path": "microsoft.extensions.logging.configuration/6.0.0", - "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Console/6.0.0": { + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", - "path": "microsoft.extensions.logging.console/6.0.0", - "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.ObjectPool/6.0.8": { + "Microsoft.Extensions.Logging.Configuration/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-2oOTyJVVQM+HMZSI6vPeX/ZIRO0yT8HN4V3p7ipDUsbaEUlK4tCLCRNf5NChXxpXCKR3HL22XHIkDUBu7DJrnw==", - "path": "microsoft.extensions.objectpool/6.0.8", - "hashPath": "microsoft.extensions.objectpool.6.0.8.nupkg.sha512" + "sha512": "sha512-QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", + "path": "microsoft.extensions.logging.configuration/8.0.1", + "hashPath": "microsoft.extensions.logging.configuration.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Options/6.0.0": { + "Microsoft.Extensions.Logging.Console/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + "sha512": "sha512-uzcg/5U2eLyn5LIKlERkdSxw6VPC1yydnOSQiRRWGBGN3kphq3iL4emORzrojScDmxRhv49gp5BI8U3Dz7y4iA==", + "path": "microsoft.extensions.logging.console/8.0.1", + "hashPath": "microsoft.extensions.logging.console.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "Microsoft.Extensions.ObjectPool/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + "sha512": "sha512-u7gAG7JgxF8VSJUGPSudAcPxOt+ymJKQCSxNRxiuKV+klCQbHljQR75SilpedCTfhPWDhtUwIJpnDVtspr9nMg==", + "path": "microsoft.extensions.objectpool/8.0.10", + "hashPath": "microsoft.extensions.objectpool.8.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512" }, "Microsoft.Extensions.Primitives/8.0.0": { "type": "package", @@ -1847,6 +1885,13 @@ "path": "microsoft.netcore.targets/1.1.3", "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512" }, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WZc6Wgrkg5lM2ers9oyATJA7khAfO2eDz+t9RmcD1ojghwnrF58pfiaXUYCI41IIxOcPRNPBGwZj9LZq8wnA1A==", + "path": "microsoft.visualstudio.setup.configuration.interop/3.11.2177", + "hashPath": "microsoft.visualstudio.setup.configuration.interop.3.11.2177.nupkg.sha512" + }, "Microsoft.Win32.Registry/5.0.0": { "type": "package", "serviceable": true, @@ -1861,12 +1906,12 @@ "path": "microsoft.win32.systemevents/4.7.0", "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.3": { "type": "package", "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, "OpenTracing/0.12.1": { "type": "package", @@ -1875,12 +1920,12 @@ "path": "opentracing/0.12.1", "hashPath": "opentracing.0.12.1.nupkg.sha512" }, - "Polly/7.2.2": { + "Polly/7.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", - "path": "polly/7.2.2", - "hashPath": "polly.7.2.2.nupkg.sha512" + "sha512": "sha512-bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", + "path": "polly/7.2.4", + "hashPath": "polly.7.2.4.nupkg.sha512" }, "Polly.Extensions.Http/3.0.0": { "type": "package", @@ -2043,19 +2088,12 @@ "path": "system.collections.concurrent/4.3.0", "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" }, - "System.Collections.Immutable/5.0.0": { + "System.Collections.Immutable/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" + "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", + "path": "system.collections.immutable/8.0.0", + "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" }, "System.Diagnostics.Debug/4.3.0": { "type": "package", @@ -2064,19 +2102,19 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Diagnostics.DiagnosticSource/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" }, - "System.Diagnostics.EventLog/4.7.0": { + "System.Diagnostics.EventLog/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==", - "path": "system.diagnostics.eventlog/4.7.0", - "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512" + "sha512": "sha512-n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "path": "system.diagnostics.eventlog/8.0.1", + "hashPath": "system.diagnostics.eventlog.8.0.1.nupkg.sha512" }, "System.Diagnostics.Tracing/4.3.0": { "type": "package", @@ -2155,12 +2193,12 @@ "path": "system.linq.async/6.0.1", "hashPath": "system.linq.async.6.0.1.nupkg.sha512" }, - "System.Management/4.7.0": { + "System.Management/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==", - "path": "system.management/4.7.0", - "hashPath": "system.management.4.7.0.nupkg.sha512" + "sha512": "sha512-jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", + "path": "system.management/8.0.0", + "hashPath": "system.management.8.0.0.nupkg.sha512" }, "System.Memory/4.5.5": { "type": "package", @@ -2190,19 +2228,19 @@ "path": "system.reflection/4.3.0", "hashPath": "system.reflection.4.3.0.nupkg.sha512" }, - "System.Reflection.Metadata/5.0.0": { + "System.Reflection.Metadata/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", + "path": "system.reflection.metadata/8.0.0", + "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" }, - "System.Reflection.MetadataLoadContext/4.7.2": { + "System.Reflection.MetadataLoadContext/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-6NdeorCnR6rji8yESOIP5BYLuL8SvLX2HZbWfsy0kXeZKHUbxYOiCMfPSoIhjn+jmfz753ZB64WWu/1nE1kcrg==", - "path": "system.reflection.metadataloadcontext/4.7.2", - "hashPath": "system.reflection.metadataloadcontext.4.7.2.nupkg.sha512" + "sha512": "sha512-c/hiLzoMeYWnoTsdeRY2o0Vbadfedt0b4ZawQ+qDr1BIoYBQo3ASei0Pyiz00n9pHBlfWXiUVy90tOWBEgJ8/Q==", + "path": "system.reflection.metadataloadcontext/8.0.1", + "hashPath": "system.reflection.metadataloadcontext.8.0.1.nupkg.sha512" }, "System.Reflection.Primitives/4.3.0": { "type": "package", @@ -2225,13 +2263,6 @@ "path": "system.runtime/4.3.1", "hashPath": "system.runtime.4.3.1.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, "System.Runtime.Extensions/4.3.0": { "type": "package", "serviceable": true, @@ -2330,12 +2361,12 @@ "path": "system.security.principal.windows/5.0.0", "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, - "System.ServiceProcess.ServiceController/4.7.0": { + "System.ServiceProcess.ServiceController/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-FuYfwENKZqWxGtYU5Vay2ai2dPWLKzRgI+WZkjceN3jaTK9ZVYnV1GRMTtN3Qodm9RT0gOiN8WoHGNXzTaZ+fw==", - "path": "system.serviceprocess.servicecontroller/4.7.0", - "hashPath": "system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512" + "sha512": "sha512-02I0BXo1kmMBgw03E8Hu4K6nTqur4wpQdcDZrndczPzY2fEoGvlinE35AWbyzLZ2h2IksEZ6an4tVt3hi9j1oA==", + "path": "system.serviceprocess.servicecontroller/8.0.1", + "hashPath": "system.serviceprocess.servicecontroller.8.0.1.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2344,19 +2375,12 @@ "path": "system.text.encoding/4.3.0", "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, - "System.Text.Encoding.CodePages/6.0.0": { + "System.Text.Encoding.CodePages/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", - "path": "system.text.encodings.web/5.0.1", - "hashPath": "system.text.encodings.web.5.0.1.nupkg.sha512" + "sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", + "path": "system.text.encoding.codepages/8.0.0", + "hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512" }, "System.Text.Json/8.0.5": { "type": "package", @@ -2386,13 +2410,6 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, "System.Windows.Extensions/4.7.0": { "type": "package", "serviceable": true, diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.dll index b1762a38..cae62b70 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6db7cb69f09179209606dc3e862ed319f67a8aed42ba1b056770a66ab4f620c1 +oid sha256:0bd3f466b823e68dc91b3ce00294fe71a08900d78314ce72afebc3b4895734f3 size 25600 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.pdb index 2f14c068..0e584f36 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/Lyra.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24e9ed45ae77733a8224a913bcf4b29592676ae56a75444846238fccab1a0519 -size 58880 +oid sha256:34354cd257e0327c94e6ede9989d271198c0662e785361a8bad47a62aaf9fa15 +size 56832 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.dll index 65f6c8f4..b420cbd8 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:743c90776fa312948786077aebe772d7a533f3098c7dd1465c2a487403173753 +oid sha256:5fafb227341020581146d685badd16c01a3383856806b4700f7058f3d649bf6e size 16384 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.pdb index 2e833175..552e0d81 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/OneSkyLocalization.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c58be2c19b7fbe2b22e7b350be4a6fddcb2ee5fa3c2eb587577a1f3e34efba7 +oid sha256:7e95bd6f7dd7fdfaf1be86a75ca3705b75e315009c079b44a6da548f40b07cb7 size 38400 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.deps.json b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.deps.json index c33f4aca..754f6529 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.deps.json +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.deps.json @@ -16,20 +16,21 @@ "EpicGames.Serialization": "1.0.0", "EpicGames.UBA": "1.0.0", "EpicGames.UHT": "1.0.0", - "Microsoft.Build": "17.1.0", - "Microsoft.Build.Locator": "1.4.1", - "Microsoft.CodeAnalysis.CSharp": "4.2.0", - "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.Build": "17.11.4", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.11.0", + "Microsoft.Extensions.Logging.Console": "8.0.1", + "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.11.2177", "Microsoft.Win32.Registry": "5.0.0", - "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json": "13.0.3", "OpenTracing": "0.12.1", "System.CodeDom": "8.0.0", - "System.Management": "4.7.0", - "System.Reflection.MetadataLoadContext": "4.7.2", + "System.Management": "8.0.0", + "System.Reflection.MetadataLoadContext": "8.0.1", "System.Security.Cryptography.Csp": "4.3.0", "System.Security.Permissions": "4.7.0", - "System.ServiceProcess.ServiceController": "4.7.0", - "System.Text.Encoding.CodePages": "6.0.0", + "System.ServiceProcess.ServiceController": "8.0.1", + "System.Text.Encoding.CodePages": "8.0.0", "Ionic.Zip.Reduced": "1.9.1.8" }, "runtime": { @@ -44,11 +45,11 @@ } } }, - "Blake3/0.6.1": { + "Blake3/1.1.0": { "runtime": { - "lib/net6.0/Blake3.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.6.1.0" + "lib/net7.0/Blake3.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.1.0.0" } }, "runtimeTargets": { @@ -121,7 +122,7 @@ "Grpc.Net.Client/2.59.0": { "dependencies": { "Grpc.Net.Common": "2.59.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" }, "runtime": { "lib/net8.0/Grpc.Net.Client.dll": { @@ -141,35 +142,31 @@ } } }, - "IdentityModel/5.1.0": { - "dependencies": { - "System.Text.Encodings.Web": "5.0.1", - "System.Text.Json": "8.0.5" - }, + "IdentityModel/7.0.0": { "runtime": { - "lib/net5.0/IdentityModel.dll": { - "assemblyVersion": "5.1.0.0", - "fileVersion": "5.1.0.0" + "lib/net6.0/IdentityModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.0.0" } } }, - "IdentityModel.OidcClient/4.0.0": { + "IdentityModel.OidcClient/6.0.0": { "dependencies": { - "IdentityModel": "5.1.0", - "Microsoft.Extensions.Logging": "6.0.0" + "IdentityModel": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" }, "runtime": { - "lib/netstandard2.0/IdentityModel.OidcClient.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" + "lib/net6.0/IdentityModel.OidcClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" } } }, - "JetBrains.Annotations/2022.1.0": { + "JetBrains.Annotations/2024.3.0": { "runtime": { "lib/netstandard2.0/JetBrains.Annotations.dll": { "assemblyVersion": "4242.42.42.42", - "fileVersion": "2022.1.0.0" + "fileVersion": "2024.3.0.0" } } }, @@ -181,104 +178,102 @@ } } }, - "Microsoft.Build/17.1.0": { - "dependencies": { - "Microsoft.Build.Framework": "17.1.0", - "Microsoft.NET.StringTools": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Reflection.Metadata": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "8.0.5", - "System.Threading.Tasks.Dataflow": "6.0.0" - } - }, - "Microsoft.Build.Framework/17.1.0": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Permissions": "4.7.0" - } - }, - "Microsoft.Build.Locator/1.4.1": { + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { "runtime": { - "lib/netcoreapp2.0/Microsoft.Build.Locator.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.4.1.10311" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.Common/4.2.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "5.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.2.0.0", - "fileVersion": "4.200.22.26219" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.2.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.2.0.0", - "fileVersion": "4.200.22.26219" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.Sqlite/8.0.0": { - "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.0", - "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" - } - }, - "Microsoft.Data.Sqlite.Core/8.0.0": { - "dependencies": { - "SQLitePCLRaw.core": "2.1.6" - }, - "runtime": { - "lib/net8.0/Microsoft.Data.Sqlite.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { "assemblyVersion": "6.0.0.0", "fileVersion": "6.0.21.52210" } } }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { + "Microsoft.Build/17.11.4": { + "dependencies": { + "Microsoft.Build.Framework": "17.11.4", + "Microsoft.NET.StringTools": "17.11.4", + "System.Collections.Immutable": "8.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Reflection.Metadata": "8.0.0", + "System.Reflection.MetadataLoadContext": "8.0.1" + } + }, + "Microsoft.Build.Framework/17.11.4": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.11.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.11.0.0", + "fileVersion": "4.1100.24.37604" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.11.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "Microsoft.CodeAnalysis.Common": "4.11.0", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.11.0.0", + "fileVersion": "4.1100.24.37604" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.Sqlite/8.0.10": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.10", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.Data.Sqlite.Core/8.0.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.3524.45918" + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, @@ -305,215 +300,240 @@ } } }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "Microsoft.Extensions.Configuration.Binder/8.0.2": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" } } }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" } } }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { + "Microsoft.Extensions.Configuration.Json/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "8.0.5" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "Microsoft.Extensions.Diagnostics/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { "dependencies": { "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "Microsoft.Extensions.Http/6.0.0": { + "Microsoft.Extensions.Http/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Http.Polly/6.0.26": { + "Microsoft.Extensions.Http.Polly/8.0.10": { "dependencies": { - "Microsoft.Extensions.Http": "6.0.0", - "Polly": "7.2.2", + "Microsoft.Extensions.Http": "8.0.1", + "Polly": "7.2.4", "Polly.Extensions.Http": "3.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll": { - "assemblyVersion": "6.0.26.0", - "fileVersion": "6.0.2623.60506" + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46804" } } }, - "Microsoft.Extensions.Logging/6.0.0": { + "Microsoft.Extensions.Logging/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1823.26907" + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "Microsoft.Extensions.Logging.Configuration/8.0.1": { "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.Logging.Console/6.0.0": { + "Microsoft.Extensions.Logging.Console/8.0.1": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Logging.Configuration": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Text.Json": "8.0.5" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Configuration": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2" }, "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, - "Microsoft.Extensions.ObjectPool/6.0.8": { + "Microsoft.Extensions.ObjectPool/8.0.10": { "runtime": { - "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.822.36316" + "lib/net8.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" } } }, - "Microsoft.Extensions.Options/6.0.0": { + "Microsoft.Extensions.Options/8.0.2": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" } } }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, @@ -525,14 +545,17 @@ } } }, - "Microsoft.NET.StringTools/1.0.0": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, + "Microsoft.NET.StringTools/17.11.4": {}, "Microsoft.NETCore.Platforms/5.0.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "runtime": { + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "3.11.2177.7163" + } + } + }, "Microsoft.Win32.Registry/5.0.0": { "dependencies": { "System.Security.AccessControl": "5.0.0", @@ -558,11 +581,11 @@ } } }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.3": { "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" + "fileVersion": "13.0.3.27908" } } }, @@ -574,17 +597,17 @@ } } }, - "Polly/7.2.2": { + "Polly/7.2.4": { "runtime": { "lib/netstandard2.0/Polly.dll": { "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.2.0" + "fileVersion": "7.2.4.982" } } }, "Polly.Extensions.Http/3.0.0": { "dependencies": { - "Polly": "7.2.2" + "Polly": "7.2.4" }, "runtime": { "lib/netstandard2.0/Polly.Extensions.Http.dll": { @@ -790,11 +813,11 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Collections.Immutable/5.0.0": {}, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Collections.Immutable/8.0.0": {}, + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Diagnostics.EventLog": "8.0.1", + "System.Security.Cryptography.ProtectedData": "8.0.0" } }, "System.Diagnostics.Debug/4.3.0": { @@ -804,29 +827,25 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.EventLog/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, + "System.Diagnostics.EventLog/8.0.1": { "runtime": { - "lib/netstandard2.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" } } }, @@ -896,24 +915,33 @@ "System.Runtime.Extensions": "4.3.0" } }, - "System.Management/4.7.0": { + "System.Linq.Async/6.0.1": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.1.35981" + } + } + }, + "System.Management/8.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", "System.CodeDom": "8.0.0" }, "runtime": { - "lib/netstandard2.0/System.Management.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.Management.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "runtimes/win/lib/net8.0/System.Management.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, @@ -927,12 +955,16 @@ "System.Runtime": "4.3.0" } }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.MetadataLoadContext/4.7.2": { + "System.Reflection.Metadata/8.0.0": { + "dependencies": { + "System.Collections.Immutable": "8.0.0" + } + }, + "System.Reflection.MetadataLoadContext/8.0.1": { "runtime": { - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "4.0.1.1", - "fileVersion": "4.700.20.21406" + "lib/net8.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } } }, @@ -958,7 +990,6 @@ "Microsoft.NETCore.Targets": "1.1.0" } }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Runtime.Extensions/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "5.0.0", @@ -1059,7 +1090,7 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/4.7.0": {}, + "System.Security.Cryptography.ProtectedData/8.0.0": {}, "System.Security.Permissions/4.7.0": { "dependencies": { "System.Security.AccessControl": "5.0.0", @@ -1073,22 +1104,22 @@ } }, "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceProcess.ServiceController/4.7.0": { + "System.ServiceProcess.ServiceController/8.0.1": { "dependencies": { - "System.Diagnostics.EventLog": "4.7.0" + "System.Diagnostics.EventLog": "8.0.1" }, "runtime": { - "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "4.2.3.0", - "fileVersion": "4.700.19.56404" + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.2.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.1", + "fileVersion": "8.0.1024.46610" } } }, @@ -1099,12 +1130,7 @@ "System.Runtime": "4.3.0" } }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/5.0.1": {}, + "System.Text.Encoding.CodePages/8.0.0": {}, "System.Text.Json/8.0.5": { "runtime": { "lib/net8.0/System.Text.Json.dll": { @@ -1126,8 +1152,6 @@ "System.Runtime": "4.3.0" } }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, "System.Windows.Extensions/4.7.0": { "dependencies": { "System.Drawing.Common": "4.7.3" @@ -1161,7 +1185,7 @@ "EpicGames.IoHash": "1.0.0", "EpicGames.MsBuild": "1.0.0", "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", "System.Security.Permissions": "4.7.0" }, "runtime": { @@ -1170,11 +1194,11 @@ }, "EpicGames.Core/1.0.0": { "dependencies": { - "JetBrains.Annotations": "2022.1.0", + "JetBrains.Annotations": "2024.3.0", "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Extensions.Http.Polly": "6.0.26", - "Microsoft.Extensions.Logging.Console": "6.0.0", - "Microsoft.Extensions.ObjectPool": "6.0.8", + "Microsoft.Extensions.Http.Polly": "8.0.10", + "Microsoft.Extensions.Logging.Console": "8.0.1", + "Microsoft.Extensions.ObjectPool": "8.0.10", "OpenTracing": "0.12.1", "System.Memory": "4.5.5", "System.Text.Json": "8.0.5" @@ -1195,10 +1219,11 @@ "Google.Protobuf": "3.25.1", "Grpc.Net.Client": "2.59.0", "K4os.Compression.LZ4": "1.2.16", - "Microsoft.Data.Sqlite": "8.0.0", - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.Caching.Memory": "6.0.2", + "Microsoft.Data.Sqlite": "8.0.10", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Caching.Memory": "8.0.1", "System.IO.Pipelines": "8.0.0", + "System.Linq.Async": "6.0.1", "ZstdSharp.Port": "0.8.1" }, "runtime": { @@ -1207,7 +1232,7 @@ }, "EpicGames.IoHash/1.0.0": { "dependencies": { - "Blake3": "0.6.1", + "Blake3": "1.1.0", "EpicGames.Core": "1.0.0", "System.Memory": "4.5.5" }, @@ -1218,6 +1243,8 @@ "EpicGames.MsBuild/1.0.0": { "dependencies": { "EpicGames.Core": "1.0.0", + "Microsoft.Build": "17.11.4", + "Microsoft.Build.Locator": "1.7.8", "System.Drawing.Common": "4.7.3" }, "runtime": { @@ -1226,9 +1253,10 @@ }, "EpicGames.OIDC/1.0.0": { "dependencies": { - "IdentityModel.OidcClient": "4.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", + "IdentityModel.OidcClient": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.Configuration.Json": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2", "System.Text.Json": "8.0.5" }, "runtime": { @@ -1251,7 +1279,7 @@ "EpicGames.UBA/1.0.0": { "dependencies": { "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.Logging": "6.0.0" + "Microsoft.Extensions.Logging": "8.0.1" }, "runtime": { "EpicGames.UBA.dll": {} @@ -1290,12 +1318,12 @@ "path": "bitfaster.caching/2.4.1", "hashPath": "bitfaster.caching.2.4.1.nupkg.sha512" }, - "Blake3/0.6.1": { + "Blake3/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-YlEweiQX1iMXh9HPpoRzSKeLMuKPnMJJWTdqnP1NJV0XwwDwO7WrwLlj60pGk0vJWbeZLZOh06U70+2z0DQCsQ==", - "path": "blake3/0.6.1", - "hashPath": "blake3.0.6.1.nupkg.sha512" + "sha512": "sha512-/gWRFsXYeIFof8YAoFJwzv2fYjSTCo+6vvTSL6pyXw2ZLXQdRvEyXhO43jyDfEFBCTxMxWpoHbIcIEIF6a3QdQ==", + "path": "blake3/1.1.0", + "hashPath": "blake3.1.1.0.nupkg.sha512" }, "Dapper/2.1.24": { "type": "package", @@ -1332,26 +1360,26 @@ "path": "grpc.net.common/2.59.0", "hashPath": "grpc.net.common.2.59.0.nupkg.sha512" }, - "IdentityModel/5.1.0": { + "IdentityModel/7.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Gcv4YYXncvUvTNLF8lDJyItZzaEDFcEi3geMDtylGcl/Rx90vcV7Kv3yAofktJBW7GvmIjQgC8LtUq0s9XQT2w==", - "path": "identitymodel/5.1.0", - "hashPath": "identitymodel.5.1.0.nupkg.sha512" + "sha512": "sha512-to99aLL5Gev1GOb2gUao/UZXT/uXMyjEmHPNrf/vJI2HBD1LMCTeC4SBCe/cqMIB12V9v+eSieq7ff0lju9pOQ==", + "path": "identitymodel/7.0.0", + "hashPath": "identitymodel.7.0.0.nupkg.sha512" }, - "IdentityModel.OidcClient/4.0.0": { + "IdentityModel.OidcClient/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-qAWbsg8dihy4UlTCW89Vc9LPKwx12lCR4JlM+ilZX/Jwk1h1++GmgXUV0Rs9lZ/4DivU1hkcfYGBBUzlW088Ug==", - "path": "identitymodel.oidcclient/4.0.0", - "hashPath": "identitymodel.oidcclient.4.0.0.nupkg.sha512" + "sha512": "sha512-m2PZbjeG3nXIQ72NLZvFz3FLFk7GmqLnxO/ifUvaTEE3BDZXp7DXAdjDP6TQKaL20+wDnej2ffA1Yh3vVcJOkA==", + "path": "identitymodel.oidcclient/6.0.0", + "hashPath": "identitymodel.oidcclient.6.0.0.nupkg.sha512" }, - "JetBrains.Annotations/2022.1.0": { + "JetBrains.Annotations/2024.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==", - "path": "jetbrains.annotations/2022.1.0", - "hashPath": "jetbrains.annotations.2022.1.0.nupkg.sha512" + "sha512": "sha512-ox5pkeLQXjvJdyAB4b2sBYAlqZGLh3PjSnP1bQNVx72ONuTJ9+34/+Rq91Fc0dG29XG9RgZur9+NcP4riihTug==", + "path": "jetbrains.annotations/2024.3.0", + "hashPath": "jetbrains.annotations.2024.3.0.nupkg.sha512" }, "K4os.Compression.LZ4/1.2.16": { "type": "package", @@ -1360,47 +1388,54 @@ "path": "k4os.compression.lz4/1.2.16", "hashPath": "k4os.compression.lz4.1.2.16.nupkg.sha512" }, - "Microsoft.Build/17.1.0": { + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-GgSHR/GRzRBuGYxUKetYABpASX6IwmNRUe+Fyo/h/eE9z7aGOASytbQLGA+8SO6MAcrT5Ela4h3Yys+qLhc9GA==", - "path": "microsoft.build/17.1.0", - "hashPath": "microsoft.build.17.1.0.nupkg.sha512" + "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" }, - "Microsoft.Build.Framework/17.1.0": { + "Microsoft.Build/17.11.4": { "type": "package", "serviceable": true, - "sha512": "sha512-7PPEbjuL/lKQ8ftblxwBZKf5alZCA4GDvBTiO3UAVxtRe52a2jL3mc8TpKNiJZzytGz7fKdR5ClDCs7+Uw4hMg==", - "path": "microsoft.build.framework/17.1.0", - "hashPath": "microsoft.build.framework.17.1.0.nupkg.sha512" + "sha512": "sha512-UMC7DfeFEHY2GGHHaghybUuUlLaByFHEFudR2PehMgDBuRuLAUePp1iaa4eFtVzepRzMtIbeSCVJCzzX3NV2Gg==", + "path": "microsoft.build/17.11.4", + "hashPath": "microsoft.build.17.11.4.nupkg.sha512" }, - "Microsoft.Build.Locator/1.4.1": { + "Microsoft.Build.Framework/17.11.4": { "type": "package", "serviceable": true, - "sha512": "sha512-UfyGaxNTjw/r3uWMX/Cv1CPKELo7TCrR5VIahaSKL0WyqmbDT6og9pyjwuhyyUkxC9gk2ElB7oOEySL1OzTZ1g==", - "path": "microsoft.build.locator/1.4.1", - "hashPath": "microsoft.build.locator.1.4.1.nupkg.sha512" + "sha512": "sha512-u28uDihlqxtt8h2dL1ZJOZ7TRkxBK+HGr+3FgQpILVo7Q7gErkw8mYW9R+RM5PtxvZTdYb/4MWDL66vdIsANBQ==", + "path": "microsoft.build.framework/17.11.4", + "hashPath": "microsoft.build.framework.17.11.4.nupkg.sha512" }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "Microsoft.Build.Locator/1.7.8": { "type": "package", "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" }, - "Microsoft.CodeAnalysis.Common/4.2.0": { + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { "type": "package", "serviceable": true, - "sha512": "sha512-lbusGcuE7D8FtZawQ4G++UFsRQArPzZN1GGXjPQwu3gvCbw7FXDcBq1zDZrZN1vRzPTVe1qyZMvfGhVUzs1TDg==", - "path": "microsoft.codeanalysis.common/4.2.0", - "hashPath": "microsoft.codeanalysis.common.4.2.0.nupkg.sha512" + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { + "Microsoft.CodeAnalysis.Common/4.11.0": { "type": "package", "serviceable": true, - "sha512": "sha512-5IDwr8zGNBmDpxtzxxZj9IHwoA6HJ1/WWT/JacqPQJ4Vz/oZXaHNlzcBPVCZRGWUw+QvVdAhCKwEyJyuAuH/wg==", - "path": "microsoft.codeanalysis.csharp/4.2.0", - "hashPath": "microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512" + "sha512": "sha512-djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", + "path": "microsoft.codeanalysis.common/4.11.0", + "hashPath": "microsoft.codeanalysis.common.4.11.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6XYi2EusI8JT4y2l/F3VVVS+ISoIX9nqHsZRaG6W5aFeJ5BEuBosHfT/ABb73FN0RZ1Z3cj2j7cL28SToJPXOw==", + "path": "microsoft.codeanalysis.csharp/4.11.0", + "hashPath": "microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1409,33 +1444,33 @@ "path": "microsoft.csharp/4.7.0", "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" }, - "Microsoft.Data.Sqlite/8.0.0": { + "Microsoft.Data.Sqlite/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-H+iC5IvkCCKSNHXzL3JARvDn7VpkvuJM91KVB89sKjeTF/KX/BocNNh93ZJtX5MCQKb/z4yVKgkU2sVIq+xKfg==", - "path": "microsoft.data.sqlite/8.0.0", - "hashPath": "microsoft.data.sqlite.8.0.0.nupkg.sha512" + "sha512": "sha512-WN+qgrEcXg66YHtICl0W4If9v98PBenIj/INVkJaC+wqGX/Zus3aqyv6EI17EBRsw6tcvWsKd980X5iQ7wcj1Q==", + "path": "microsoft.data.sqlite/8.0.10", + "hashPath": "microsoft.data.sqlite.8.0.10.nupkg.sha512" }, - "Microsoft.Data.Sqlite.Core/8.0.0": { + "Microsoft.Data.Sqlite.Core/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-pujbzfszX7jAl7oTbHhqx7pxd9jibeyHHl8zy1gd55XMaKWjDtc5XhhNYwQnrwWYCInNdVoArbaaAvLgW7TwuA==", - "path": "microsoft.data.sqlite.core/8.0.0", - "hashPath": "microsoft.data.sqlite.core.8.0.0.nupkg.sha512" + "sha512": "sha512-i95bgLqp6rJzmhQEtGhVVHnk1nYAhr/pLDul676PnwI/d7uDSSGs2ZPU9aP0VOuppkZaNinQOUCrD7cstDbQiQ==", + "path": "microsoft.data.sqlite.core/8.0.10", + "hashPath": "microsoft.data.sqlite.core.8.0.10.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", - "path": "microsoft.extensions.caching.abstractions/6.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { + "Microsoft.Extensions.Caching.Memory/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-ANjkN9TiBZXm5cvj3bb3QbezBzqkupCzxwgNf46d4V4ToRBHcEp3IEgbc67M3ZqVHQxaJgEncZ/frdqznpVWIw==", - "path": "microsoft.extensions.caching.memory/6.0.2", - "hashPath": "microsoft.extensions.caching.memory.6.0.2.nupkg.sha512" + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" }, "Microsoft.Extensions.Configuration/8.0.0": { "type": "package", @@ -1451,124 +1486,138 @@ "path": "microsoft.extensions.configuration.abstractions/8.0.0", "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "Microsoft.Extensions.Configuration.Binder/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + "sha512": "sha512-7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", + "path": "microsoft.extensions.configuration.binder/8.0.2", + "hashPath": "microsoft.extensions.configuration.binder.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512" + "sha512": "sha512-EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", + "path": "microsoft.extensions.configuration.fileextensions/8.0.1", + "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { + "Microsoft.Extensions.Configuration.Json/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", - "path": "microsoft.extensions.configuration.json/6.0.0", - "hashPath": "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512" + "sha512": "sha512-L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", + "path": "microsoft.extensions.configuration.json/8.0.1", + "hashPath": "microsoft.extensions.configuration.json.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "Microsoft.Extensions.Diagnostics/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512" + "sha512": "sha512-doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", + "path": "microsoft.extensions.diagnostics/8.0.1", + "hashPath": "microsoft.extensions.diagnostics.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512" + "sha512": "sha512-elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.1", + "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512" + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Http/6.0.0": { + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", - "path": "microsoft.extensions.http/6.0.0", - "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Http.Polly/6.0.26": { + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-QnlvyDQB7cYhfCwWe9x5XBRJtjK6X9Amsnd+0pf/hddHwHCccmr+PNFmtLgtN5rY1DeGlOP3qcU/MN73Wk8d8A==", - "path": "microsoft.extensions.http.polly/6.0.26", - "hashPath": "microsoft.extensions.http.polly.6.0.26.nupkg.sha512" + "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" }, - "Microsoft.Extensions.Logging/6.0.0": { + "Microsoft.Extensions.Http/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + "sha512": "sha512-kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", + "path": "microsoft.extensions.http/8.0.1", + "hashPath": "microsoft.extensions.http.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { + "Microsoft.Extensions.Http.Polly/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-K14wYgwOfKVELrUh5eBqlC8Wvo9vvhS3ZhIvcswV2uS/ubkTRPSQsN557EZiYUSSoZNxizG+alN4wjtdyLdcyw==", - "path": "microsoft.extensions.logging.abstractions/6.0.4", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.4.nupkg.sha512" + "sha512": "sha512-Of5qq+Xovs6/hDY+n86keBL3Ww1zIIm52eNEHcdW1fvamXIcG0rvbkW1VM4SJNWqmR2fqhFSOLz0wGdBgpZROg==", + "path": "microsoft.extensions.http.polly/8.0.10", + "hashPath": "microsoft.extensions.http.polly.8.0.10.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "Microsoft.Extensions.Logging/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", - "path": "microsoft.extensions.logging.configuration/6.0.0", - "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Console/6.0.0": { + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { "type": "package", "serviceable": true, - "sha512": "sha512-gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", - "path": "microsoft.extensions.logging.console/6.0.0", - "hashPath": "microsoft.extensions.logging.console.6.0.0.nupkg.sha512" + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" }, - "Microsoft.Extensions.ObjectPool/6.0.8": { + "Microsoft.Extensions.Logging.Configuration/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-2oOTyJVVQM+HMZSI6vPeX/ZIRO0yT8HN4V3p7ipDUsbaEUlK4tCLCRNf5NChXxpXCKR3HL22XHIkDUBu7DJrnw==", - "path": "microsoft.extensions.objectpool/6.0.8", - "hashPath": "microsoft.extensions.objectpool.6.0.8.nupkg.sha512" + "sha512": "sha512-QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", + "path": "microsoft.extensions.logging.configuration/8.0.1", + "hashPath": "microsoft.extensions.logging.configuration.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Options/6.0.0": { + "Microsoft.Extensions.Logging.Console/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + "sha512": "sha512-uzcg/5U2eLyn5LIKlERkdSxw6VPC1yydnOSQiRRWGBGN3kphq3iL4emORzrojScDmxRhv49gp5BI8U3Dz7y4iA==", + "path": "microsoft.extensions.logging.console/8.0.1", + "hashPath": "microsoft.extensions.logging.console.8.0.1.nupkg.sha512" }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "Microsoft.Extensions.ObjectPool/8.0.10": { "type": "package", "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + "sha512": "sha512-u7gAG7JgxF8VSJUGPSudAcPxOt+ymJKQCSxNRxiuKV+klCQbHljQR75SilpedCTfhPWDhtUwIJpnDVtspr9nMg==", + "path": "microsoft.extensions.objectpool/8.0.10", + "hashPath": "microsoft.extensions.objectpool.8.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512" }, "Microsoft.Extensions.Primitives/8.0.0": { "type": "package", @@ -1577,12 +1626,12 @@ "path": "microsoft.extensions.primitives/8.0.0", "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" }, - "Microsoft.NET.StringTools/1.0.0": { + "Microsoft.NET.StringTools/17.11.4": { "type": "package", "serviceable": true, - "sha512": "sha512-ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==", - "path": "microsoft.net.stringtools/1.0.0", - "hashPath": "microsoft.net.stringtools.1.0.0.nupkg.sha512" + "sha512": "sha512-mudqUHhNpeqIdJoUx2YDWZO/I9uEDYVowan89R6wsomfnUJQk6HteoQTlNjZDixhT2B4IXMkMtgZtoceIjLRmA==", + "path": "microsoft.net.stringtools/17.11.4", + "hashPath": "microsoft.net.stringtools.17.11.4.nupkg.sha512" }, "Microsoft.NETCore.Platforms/5.0.0": { "type": "package", @@ -1598,6 +1647,13 @@ "path": "microsoft.netcore.targets/1.1.0", "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" }, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WZc6Wgrkg5lM2ers9oyATJA7khAfO2eDz+t9RmcD1ojghwnrF58pfiaXUYCI41IIxOcPRNPBGwZj9LZq8wnA1A==", + "path": "microsoft.visualstudio.setup.configuration.interop/3.11.2177", + "hashPath": "microsoft.visualstudio.setup.configuration.interop.3.11.2177.nupkg.sha512" + }, "Microsoft.Win32.Registry/5.0.0": { "type": "package", "serviceable": true, @@ -1612,12 +1668,12 @@ "path": "microsoft.win32.systemevents/4.7.0", "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.3": { "type": "package", "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, "OpenTracing/0.12.1": { "type": "package", @@ -1626,12 +1682,12 @@ "path": "opentracing/0.12.1", "hashPath": "opentracing.0.12.1.nupkg.sha512" }, - "Polly/7.2.2": { + "Polly/7.2.4": { "type": "package", "serviceable": true, - "sha512": "sha512-E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", - "path": "polly/7.2.2", - "hashPath": "polly.7.2.2.nupkg.sha512" + "sha512": "sha512-bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", + "path": "polly/7.2.4", + "hashPath": "polly.7.2.4.nupkg.sha512" }, "Polly.Extensions.Http/3.0.0": { "type": "package", @@ -1780,19 +1836,19 @@ "path": "system.collections.concurrent/4.3.0", "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" }, - "System.Collections.Immutable/5.0.0": { + "System.Collections.Immutable/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", + "path": "system.collections.immutable/8.0.0", + "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Diagnostics.Debug/4.3.0": { "type": "package", @@ -1801,19 +1857,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Diagnostics.EventLog/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==", - "path": "system.diagnostics.eventlog/4.7.0", - "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512" + "sha512": "sha512-n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "path": "system.diagnostics.eventlog/8.0.1", + "hashPath": "system.diagnostics.eventlog.8.0.1.nupkg.sha512" }, "System.Diagnostics.Tracing/4.3.0": { "type": "package", @@ -1857,12 +1906,19 @@ "path": "system.linq/4.3.0", "hashPath": "system.linq.4.3.0.nupkg.sha512" }, - "System.Management/4.7.0": { + "System.Linq.Async/6.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==", - "path": "system.management/4.7.0", - "hashPath": "system.management.4.7.0.nupkg.sha512" + "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "path": "system.linq.async/6.0.1", + "hashPath": "system.linq.async.6.0.1.nupkg.sha512" + }, + "System.Management/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", + "path": "system.management/8.0.0", + "hashPath": "system.management.8.0.0.nupkg.sha512" }, "System.Memory/4.5.5": { "type": "package", @@ -1878,19 +1934,19 @@ "path": "system.reflection/4.3.0", "hashPath": "system.reflection.4.3.0.nupkg.sha512" }, - "System.Reflection.Metadata/5.0.0": { + "System.Reflection.Metadata/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", + "path": "system.reflection.metadata/8.0.0", + "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512" }, - "System.Reflection.MetadataLoadContext/4.7.2": { + "System.Reflection.MetadataLoadContext/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-6NdeorCnR6rji8yESOIP5BYLuL8SvLX2HZbWfsy0kXeZKHUbxYOiCMfPSoIhjn+jmfz753ZB64WWu/1nE1kcrg==", - "path": "system.reflection.metadataloadcontext/4.7.2", - "hashPath": "system.reflection.metadataloadcontext.4.7.2.nupkg.sha512" + "sha512": "sha512-c/hiLzoMeYWnoTsdeRY2o0Vbadfedt0b4ZawQ+qDr1BIoYBQo3ASei0Pyiz00n9pHBlfWXiUVy90tOWBEgJ8/Q==", + "path": "system.reflection.metadataloadcontext/8.0.1", + "hashPath": "system.reflection.metadataloadcontext.8.0.1.nupkg.sha512" }, "System.Reflection.Primitives/4.3.0": { "type": "package", @@ -1913,13 +1969,6 @@ "path": "system.runtime/4.3.0", "hashPath": "system.runtime.4.3.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, "System.Runtime.Extensions/4.3.0": { "type": "package", "serviceable": true, @@ -1983,12 +2032,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Permissions/4.7.0": { "type": "package", @@ -2004,12 +2053,12 @@ "path": "system.security.principal.windows/5.0.0", "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, - "System.ServiceProcess.ServiceController/4.7.0": { + "System.ServiceProcess.ServiceController/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-FuYfwENKZqWxGtYU5Vay2ai2dPWLKzRgI+WZkjceN3jaTK9ZVYnV1GRMTtN3Qodm9RT0gOiN8WoHGNXzTaZ+fw==", - "path": "system.serviceprocess.servicecontroller/4.7.0", - "hashPath": "system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512" + "sha512": "sha512-02I0BXo1kmMBgw03E8Hu4K6nTqur4wpQdcDZrndczPzY2fEoGvlinE35AWbyzLZ2h2IksEZ6an4tVt3hi9j1oA==", + "path": "system.serviceprocess.servicecontroller/8.0.1", + "hashPath": "system.serviceprocess.servicecontroller.8.0.1.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2018,19 +2067,12 @@ "path": "system.text.encoding/4.3.0", "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, - "System.Text.Encoding.CodePages/6.0.0": { + "System.Text.Encoding.CodePages/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", - "path": "system.text.encodings.web/5.0.1", - "hashPath": "system.text.encodings.web.5.0.1.nupkg.sha512" + "sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", + "path": "system.text.encoding.codepages/8.0.0", + "hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512" }, "System.Text.Json/8.0.5": { "type": "package", @@ -2053,20 +2095,6 @@ "path": "system.threading.tasks/4.3.0", "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, "System.Windows.Extensions/4.7.0": { "type": "package", "serviceable": true, diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll index 5521d08d..c90e7c08 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b718d182c0ff61099b97a4308204cb50dbbd9111f2d8a0166914e0c7b1604287 -size 3067904 +oid sha256:afaa7af6182e3e4f788a1d54ba043ec56280dc2f6a7339025b5343a25bbb1b6e +size 2713088 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll.config b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll.config index 89efa807..5c18758a 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll.config +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.dll.config @@ -25,45 +25,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -76,13 +40,13 @@ - + - + @@ -91,6 +55,12 @@ + + + + + + @@ -100,7 +70,7 @@ - + @@ -139,12 +109,6 @@ - - - - - - @@ -211,18 +175,6 @@ - - - - - - - - - - - - @@ -295,12 +247,6 @@ - - - - - - @@ -481,24 +427,12 @@ - - - - - - - - - - - - @@ -631,12 +565,6 @@ - - - - - - @@ -661,24 +589,12 @@ - - - - - - - - - - - - diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.exe b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.exe index 5bc08dc9..9e9d8e61 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.exe +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30ef602853fb5b8ed438c149632f959171d4404474ac4d82d6766d4d80f11016 -size 143872 +oid sha256:a9c70c2b93ce8d0428545662a070e453c784432947fc42f4659b9c14ed12a2ea +size 165136 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.pdb index 194623b1..ccaed5bc 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3195ac8d72bca1862744e9aaf9ddd1fb105f18e9c65ab019c34d3eeb4035abd5 -size 5832192 +oid sha256:8eaf97b54e98127f51d19586b2ec505cae5210c160b7b5eb78471e2f29bb2e9b +size 5031424 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.xml b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.xml index f99483fd..247b0939 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.xml +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/UnrealBuildTool.xml @@ -2376,41 +2376,6 @@ If either the development tests or performance tests are compiled (unless explicitly disabled), this property returns true. - - - PS4-specific target settings - - - - - PS5-specific target settings - - - - - Switch-specific target settings - - - - - Singleton accessor for WinGDKPlatform - - - - - Singleton accessor for XB1Platform - - - - - XboxCommon-specific target settings - directs to the platform-specific rules - - - - - Singleton accessor for XSXPlatform - - Describes all of the information needed to initialize a UEBuildTarget object @@ -4851,41 +4816,6 @@ Prints diagnostic messages about default settings which have changed in newer versions of the engine - - - PS4-specific target settings. - - - - - PS5-specific target settings. - - - - - Switch-specific target settings. - - - - - WinGDK-specific target settings. - - - - - XB1-specific target settings. - - - - - XboxCommon-specific target settings - directs to the platform-specific rules - - - - - XSX-specific target settings. - - ModuleRules extension for low level tests. @@ -7209,41 +7139,6 @@ VisionOS - - - Playstation 4 - - - - - Playstation 5 - - - - - Nintendo Switch - - - - - Adds WinGDK as a target platform identifier - - - - - Adds XB1 as a target platform identifier - - - - - legacy XboxOneGDK platform - for stale build graph parsing only - - - - - Adds XSX as a target platform identifier - - Extension methods used for serializing UnrealTargetPlatform instances @@ -7406,26 +7301,6 @@ POSIX-compliant platforms - - - Add GDK to the known platform groups - - - - - Nintendo group - - - - - Sony platforms - - - - - XboxCommon group - - The architecture we're building for @@ -28673,16 +28548,6 @@ Used to map names of modules to their .Build.cs filename - - - All build modules containing Verse code - - - - - If Verse should use the BPVM backend - - List of config settings in generated config files @@ -31442,12 +31307,13 @@ Arguments that are used by directory Rsync call - + Constructor Project to read settings from Logger for output + Remote ini path, or null to use UnrealBuildTool.GetRemoteIniPath() Is the primary Remote Mac or not. True by default. Added arguments when preparing a secondary Mac for debug. False by default. @@ -31990,2619 +31856,6 @@ Command line arguments Zero on success, non-zero on error - - - Helper functionality for easier F5 debugging for blueprint-only projects - - - - - Path to the .uproject file to use when F5 debugging a content-only project via the UE5 engine project - - - - - Get the configured content-only debug project, if any - - - - - Helper function to get the content-only debug project for the given target, if applicable and supported - - - - - Stores the path to the content-only debug project in the target receipt - - - - - Retrieves the path to the project from the given target receipt - - - - - Retrieves the path to the project from the given target - - - - - Helper functionality for optionally auditing the GDK edition on any used lib and dll files - - - - - Whether to verify that any libs the application links to are using the same GDK edition - - - - - Whether to verify that any DLLs the application links to are using the same GDK edition - - - - - Submission validator xml report can suggest multiple GDK editions for a single executable - the additional ones come from the libs that are linked to. - This function checks all the libs we are planning to link against and warns if they were built against a different GDK - - - - - Optionally verify that any DLLs the application links to are using the same GDK edition - - - - - Public GDK functions exposed to UAT - - - - - Returns the top-level root directory of the GameCore SDK - - - - - - Returns the root directory for the current version of the GameCore SDK - - - - - - Returns the SDK binaries directory - - - - - Determines the directory containing the MSVC toolchain - - Major version of the compiler to use - The minimum compiler version to use. Can be "Latest" - Architecture that is required - Logger for output - Receives the directory containing the toolchain - Receives the optional directory containing redistributable components - True if the toolchain directory was found correctly - - - - Returns the directory where GDK Extension SDKs are located - - - - - - - - Returns the installed version of the GDK - - - - - - Returns the installed version number of the GDK - - - - - - (Experimental and unsupported) Modifies the given target rules so that it will produce a build that is compatible with PC GDK. Expected for Win64 TargetInfo only. - - If using bUseCustomConfig=true, it is necessary to add the following entries to {project dir}/Config/Windows/Custom/MSGameStore/WindowsEngine.ini - Otherwise, when bUseCustomConfig=false, add these to {project dir}/Config/Windows/WindowsEngine.ini - - - ; (required) this is required to make BuildCookRun generate, deploy and launch msixvc packages - [/Script/WindowsTargetPlatform.WindowsTargetSettings] - CustomDeployment=MSGameStore - - ; (recommended) add this if you are expecting to do intelligent delivery and use on-demand chunks etc - [StreamingInstall] - DefaultProviderName=GDKPackageChunkInstall - - ; (recommended) add these if you are planning on using Xbox cross-platform save games - [PlatformFeatures] - PlatformFeaturesModule=MSGameStorePlatformFeatures - SaveGameSystemModule=GDKSaveGameSystem - - ; (optional) set this if you are using EOSSDK - [/Script/MSGamingRuntimeEditor.MSGamingRuntimeSettings] - +AllowedMissingSymbolFiles="EOSSDK-Win64-Shipping.DLL" - - ; (optional) set this if you use bWithOSS=true - [OnlineSubsystem] - DefaultPlatformService=GDK - - ; (optional) only need the following sections if you use bWithPlayFab=true - [/Script/Engine.Engine] - !NetDriverDefinitions=ClearArray - +NetDriverDefinitions=(DefName="GameNetDriver",DriverClassName="/Script/PlayFabParty.PlayFabPartyNetDriver",DriverClassNameFallback="/Script/PlayFabParty.PlayFabPartyNetDriver") - +NetDriverDefinitions=(DefName="BeaconNetDriver",DriverClassName="/Script/PlayFabParty.PlayFabPartyNetDriver",DriverClassNameFallback="/Script/PlayFabParty.PlayFabPartyNetDriver") - +NetDriverDefinitions=(DefName="DemoNetDriver",DriverClassName="/Script/Engine.DemoNetDriver",DriverClassNameFallback="/Script/Engine.DemoNetDriver") - [PlayFab] - AppId={Your Hex PlayFab Title ID String Here} - - - - If using bUseCustomConfig=true, it is necessary to add the following entries to {project dir}/Config/Windows/Custom/MSGameStore/WindowsGame.ini: - Othewreise, when bUseCustomConfig=false, add these to {project dir}/Config/Windows/WindowsGame.ini - - ; (required) this is necessary to stage the game for Win64 because GDK is a restricted platform folder - [Staging] - +RemapDirectories=(From="Engine/Platforms/GDK", To="Engine") - +RemapDirectories=(From="{project dir}/Platforms/GDK", To="{project dir}") - - - - - - Whether you have put all MSGameStore config settings in Config/Custom/MSGameStore/*.ini - typically done with a custom MSG build target MyGameMSGTarget : MyGameTarget - Whether to include the OnlineSubsystemGDK plugin. Requires additional config settings - Whether to include the PlayFab plugin. Requires additional config settings - - - - GDK-specific appx manifest generator (MicrosoftGame.config) - - - - Platform-specific target device family - - - Platform-specific architecture - - - DLC file to use, if any - - - Cached properties for the current DLC - - - Helper to check if we are dealing with DLC - - - Whether we have a bootstrap exe (Windows only) - affects dependencies - - - - Create a manifest generator for the given platform variant. - - - - - Create a manifest for the given platform and return the list of modified files - - - - - Get the Game element - - - - - Get the executable list element - - - - - Get the executable element for the given configuration - - - - - Get the protocol list element - - - - - Get the media capture element - - - - - Get the shell visuals element - - - - - Get the default display name for the project - - - - - Gets the package identity name string for the main package, disregarding any current DLC - - - - - - Get the package identity name string - - - - - Get the package version string - - - - - manifest version. 0 = original, 1 = March 2022 GDK and above - - - - - Perform any additional initialization once all parameters and configuration are ready - - - - - Create all the localization data. Returns whether there is any localization data - - - - - Return the entire manifest element - - - - - - - - - - Register the locations where resource binary files can be found - - - - - Perform any platform-specific processing on the manifest before it is saved - - - - - Returns the package full name for the given project - - - - - Returns the package family name for the given project - - - - - Returns the AUMID for the given project and configuration - - - - - Get the manifest generator for the given platform - - - - - ToolMode to create a MicrosoftGame.config for a single executable pair - - - - - - - - Helper function to create an action that will run this ToolMode - - - - - Helper class used to manage GDK manifest identities - - - - Regular expression for standard Micrososoft full package name: Name_Version_ProcessorArchitecture_ResourceId_PublisherId - - - Regular expression for standard Microsoft AUMID: Name_PublisherId!AppName - - - Architecture to use when none is specified - - - Version to use when none is specified - - - The package identity. e.g. "GameName" - - - The package version. e.g. "1.0.0.0" - - - The package Architecture. e.g. "neutral", "x64" etc. - - - The package resource id. (not used on GDK) - - - The package publisher id. e.g. "z844xmwvfmpty" - - - The full Package Name. e.g. "GameName_1.0.0.0_neutral__z844xmwvfmpty" - - - The package family name. e.g. "GameName_z844xmwvfmpty" - - - only valid if we are created from a MicrosoftGame.config - - - only valid if we are created from a MicrosoftGame.config or via ParseAppList - - - - Create empty manifest identity - - - - - Create a manifest based on a given package full name. e.g. "GameName_1.0.0.0_neutral__z844xmwvfmpty" - - - - - Create a manifest identity from the given manifest file - - - - - Query whether there are executables available in this manifest - - - - - Look up the relative path to the given executable, if it is mentioned - - - - - - Returns the AUMID for the given manifest and executable file name. e.g. GameName_z844xmwvfmpty!AppGameNameDevelopment - - - - - Returns the AUMID that matches the given configuration - - - - - Returns the executable that matches the given configuration - - - - - Returns the executable that matches the given AUMID - - - - - Returns all AUMIDs in the manifest - - - - - Standard ToString override - - - - - Converts a human-readable Publisher Name into the Publisher Id used by MS app manifests - - - - - Returns the full package name from the given manifest. e.g. GameName_1.0.0.0_neutral__z844xmwvfmpty - - - - - Returns the package family name from the given manifest. e.g. GameName_z844xmwvfmpty - - - - - Returns the AUMID for the given manifest and executable file name. e.g. GameName_z844xmwvfmpty!AppGameNameDevelopment - - - - - Returns the AUMID that matches the given configuration from a list of AUMIDs - - - - - Structure containing information about an installed GDK application - - - - - The type of application - - - - Unknown - - - Loose folder - - - Installed package - - - Network share - - - core MicrosoftGame.config information - - - deployment type - staged or packaged - - - registration state - - - display name - - - deployment path - - - - - - - Returns a list of all applications from the given app list /json output - - - List of all applications - - - - Create a manifest generator for Win64 using MSGameStore - - - - - Create a manifest generator for other platforms - - - - - Register the locations where resource binary files can be found - - - - - Create a manifest generator for WinGDK - - - - - Create a manifest generator for XB1 - - - - - Create a manifest generator for the given platform variant - - - - - Create a manifest generator for XSX - - - - - - - - - - - Whether platform supports switching SDKs during runtime - - true if supports - - - - platforms can choose if they prefer a correct the the AutoSDK install over the manual install. - - - - - - The minimum Windows SDK version to be used. If this is null then it means there is no minimum version - - - - - The maximum Windows SDK version to be used. If this is null then it means "Latest" - - - - - Public MSGameStore functions exposed to UAT - - - - Type of custom install action - - - command for installing - - - command for repairing - - - command for uninstalling - - - a custom install action - - - location to copy the custom installs to when staging - - - name of the install action - - - source folder, relative to engine root - - - a command to run and its arguments - - - command to run - - - arguments to pass to the given command - - - the commands to run for each action - - - read the given config key and return the actions - - - - Determine whether Windows is in developer mode. PC GDK packages can't be sideloaded without it - - - - - Determine if the Microsoft.GamingServices package is installed. - - - - - Determine whether the local version of Windows can support GDK - - - - - Base Nintendo functions exposed to UAT - - - - - - - - - Which UnrealTargetConfiguration to build the meta file for - Zero out the version when creating the meta file, used when generating small app big patch scenario - Suggested ApplicationVersion to override what's in meta - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Path to .desc file for referenced project - - - - - - - - - - - - - - - - - - - - - - - - - - Determines if the megazarf can be installed to the default Install RootDir set in the MZ. - This decision is based on whether the drive specified is valid - - - The platform to use - The path of the megazarf to inspect - Whether NNPM must be used to install the megazarf - An alternate path to install the MZ to. It is - based on the directory structure of the original path, and the first available, - valid drive. - An alternate environment name to install the MZ to. It is - based on the directory structure of the original path, and the first available, - valid drive. - true if the destination drive is invalid, otherwise false - - - - Returns an integer value for the installed Switch SDK version. - - - - Returns the Major, Minor, Patch values ored together. - - - - Returns if the platform is using an SDK that uses the new refactored directory structure - - - - - - - Returns an integer value for the supplied Major, Minor, and Patch Switch SDK version strings. - - - The Major version number. - The Minor version number. - The Patch version number. - Returns the Major, Minor, Patch values ored together. - - - - Returns an integer value for the supplied Major, Minor, and Patch Switch SDK version strings. - - - The Major version number. - The Minor version number. - The Patch version number. - Returns the Major, Minor, Patch values ored together. - - - - Returns the semantic version given an integer version. - - - The version as an integer. - Returns the Major, Minor, Patch values. - - - - Searches Target Manager folders for requested file. - - - The name of the file requested. - This will contain the root Target Manager directory if the file is found. - Returns the path to the file or null if it wasn't found. - - - - Searches Target Manager folders for requested file. - - - The name of the file requested. - Returns the path to the file or null if it wasn't found. - - - - location of libraries in the SDK - - - - - - - location of libraries in the SDK - - - - - - - - - location of the SDK on disk (requires the NINTENDO_SDK_ROOT environment variable) - - - - - - - - - - - - - - - - - - - - - Defines which Nintendo online server the game is connecting to - - - - - Doesn't connect to Nintendo Online Servers. - - - - - Use Nintendo NEX Game Servers (deprecated, requires Nintendo Online subscription) - - - - - Use Nintendo NPLN Game Servers (requires Nintendo Online subscription) - - - - - Nintendo platform target settings - - - - - base frameworks used for all projects. - stored here so we have access to them in ModifyBuildProducts() - - - - - Enable/disable NEX library support. Allows fully compiling out NEX support. - Deprecated: Use "NintendoGameServersMode" instead - - - - - Choose which online service we are currently targeting. If NEX/NPLN are not selected, they will be compiled out. - Possible Options: - None (default) - NEX (legacy,deprecated) - NPLN (new Nintendo online service) - - - - - Generate symbols with Breakpad (non shipping only). - - - - - Generate symbols with Breakpad (non shipping only), and only when compiled from a machine with the IsBuildMachine environment variable enabled. - - - - - Enable/disable system profilers, this can reduce program size. - - - - - Enable/disable the custom user exception handler. - - - - - Enable the custom user exception handler, only when compiled from a machine with the IsBuildMachine environment variable enabled. - - - - - Force Development libraries. - - - - - Enable Aftermath per build configuration (automatically opted out in shipping) - Enabling it automatically disables LLGD and NVNGD - - - - - Override malloc heap size. - NOTE this has been removed. There is no longer a separate heap for malloc, allocations now go through FNintendoPlatformMemory::BaseAllocator. - - - - - Max number of slots FNintendoPlatformTLS::AllocTlsSlot can allocate. - - - - - Max number threads that can use FNintendoPlatformTLS at one time. - - - - - The amount of memory donated to the NVN graphics firmware (must be a multiple of 4). - - - - - Controls how the game uses the touchscreen. - Due to LotCheck, this will force a full recompile to add/remove the touch APIs from the code. - Content-only projects will convert to code if this is not the default value! - - - - - Enable the four finger tap debugging option to show a web page for entering console commands, which will force touch screen usage - to Supported in non-Shipping builds (since it needs touch support!) - NOTE: Content-only projects will convert to code if this is not the default value! - - - - - Optional application error code prefix - 5 characters - - - - - Enable the mechanism to monitor write speeds to system storage. - Note, this is a best effort mechanism and may not catch all overages. Use the SDK tool FsAccessLogChecker - for official results. See SDK Guideline 0011 for more info. - - - - - Size of the cache data storage in KB. - - - - - Size of the temp data storage in KB. - - - - - Modify code generation to help with debugging optimized builds by extending lifetimes of local variables, parameters and this. - It may slightly reduce performance. Thus, it's meant to be used during development only. - - - - - Read-only wrapper around an existing NintendoTargetRules instance. This exposes target settings to modules without letting them to modify the global environment. - - - - - Constructor - - The settings object to wrap - - - - Accessors for fields on the inner TargetRules instance - - - - - If this platform can be compiled with SN-DBS - - - - - Setup the target environment for building - - Settings for the target being compiled - The compile environment for this target - The link environment for this target - - - - Setup the configuration environment for building - - The target being built - The global compile environment - The global link environment - - - - Whether platform supports switching SDKs during runtime - - true if supports - - - - Construct properly formatted version string from raw numbers - - Version string with dot separating parts - - - - Base class for platform-specific project generators - - - - - No documentation available. - - - - - Constructor - - Command line arguments passed to the project generator - - - - - Enumerate all the platforms that this generator supports - - - - - - - - - - - - - - - - - Helper for parsing, generating and comparing PS4 version strings, in the form "xx.xx" where x is a digit. - - - - - The integer value representing this version. - - - - - Version string, as it appears in param.sfx/sfo - - - - - Parses the version string into its integer representation. - - - - - Parses the version string into its integer representation. Returns false if parsing failed. - - - - Equality function - - - Returns the formatted version string - - - Returns the underlying value hashcode - - - Comparison function - - - Less than operator - - - Greater than operator - - - Equal operator - - - Not equal operator - - - - Represent the types of packages the publishing tools can produce. - - - - - A regular, standalone package. Used for master release, and development. - - - - - A patch package based off a previous release. - - - - - A remaster package based off a previous release. - - - - - - Helper class used to generate and parse package/GP4 file names according to their Content ID / versions etc in the form: - - XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ_11.11-22.22_Submission-TargetName-PS4-Configuration.pkg - - where: - - "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" is the package Content ID - "11.11" is the Master Version - "22.22" is the Application Version - "Submission-" is optional, and denotes a submission package (--for_submission / -distribution) - "TargetName" is the name of the UBT target binary the package was created for - "Configuration" is the UBT target configuration - - - - - - The generated name of the GP4 file - - - - - The generated name of the PKG file. - - - - - The generated build info string to embed in the .pkg file - - - - - Full Content ID string in the format "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" - - - - - The title ID portion of the content ID string in the format "XXXXYYYYY". - - - - - The version of an application or additional content to be submitted. - - - - - The version of an application or additional content to be updated. - - - - - True if this is a submission package. - - - - - The name of the target this package is built for. - - - - - The binary configuration included in the package. - - - - - Whether this is a standard, patch or remaster package. - - - - - Parses the given package filename into its component parts - - - - - Builds a PackageInfo instance from a title configuration and other properties. - - - - - Parses the given .pkg/.gp4 filename into its component parts. Returns false if parsing failed. - - - - - Parses the given .pkg/.gp4 filename into its component parts. Returns null if parsing failed. - - - - - Returns true if the specified package matches the current one (i.e. binary, config, submission etc match) - - - - - Searches the specified directory for a package matching this package info. - - - - - Contains the title configuration required for producing a packaged PS4 build. - This code is shared between UBT project generation, and UAT packaging automation. - See PS4ProjectGenerator.cs and PS4Platform.Automation.cs. - - - - - A regex pattern that matches valid content IDs - - - - - Full Content ID string in the format "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" - - - - - Just the Title ID portion of the full Content ID - - - - - True will suppress automation warnings about incorrect title configuration (e.g. missing passcodes / missing content ID / no default language). - Used only for Unreal Engine sample projects which are not intended to be shipped as retail titles. Do not enable this if you are making a real game. - - - - - Represents the DRM type of the application, as specified by packaging documentation. - Allowed values are "full", "upgradable", "demo", "freemium". If unspecified, assumes "full". - - - - - Indicates if this title configuration is allowed to include trophy data - - - - - The version of an application or additional content to be submitted. - - - - - The version of an application or additional content to be updated. - - - - - This setting selects whether packaging automation produces "remaster" or "patch" packages when building releases with the "-basedonreleaseversion" option. - Refer to Sony packaging documentation for more information about which option to use for your title. By default, "patch" packages will be produced. - - - - - A map of ASA codes. Use of this field is only necessary if Sony requires specific ASA codes to be enabled for your title. - - - - - This setting selects whether packaging automation sets the 'Video Recording Library' option. - - - - - The default title name to use if a localized name is not provided for a specific culture in the title names map. - - - - - A map of culture IDs to title names for display in the system software. - e.g. { "en-US" : "Game Name for English (US)", "fr" : Game Name for French" } - - - - - Passcode used for package creation. - - - - - The storage type of the package. The choice made here determines how the package can be shipped to - retail (i.e. digital only, or via BluRay disc). Refer to Sony packaging documentation for more information. - - - - - The storage type to use when creating remaster packages. Refer to Sony packaging documentation for more information. - - - - - True indicates this package is to be distributed on blu-ray disc. - - - - - True indicates this package is to be distributed on a multi-layer blu-ray disc. - - - - - True indicates the UAT packaging process should generate the .iso disc image in addition to the .pkg package file. - - - - - The size in MiB of the /download0 data area for the title. - Available options are 0, 256, 512, or 1024. - - - - - The size in MiB of the /download1 data area for the title. - Available options are 0, 3328, 6656, 9984, 13312, or 16640. - - - - - The parent control level applied to the package. Refer to Sony TRC R4005 documentation for a - detailed description of the meaning of this value, and set an appropriate value for your title. - - - - - Indicates that the title supports HDR output. This setting is reflected - in the generated param.sfo file in staged and packaged builds. - - - - - Indicates if the application runs on the PlayStation 5 system, and adheres to TRC R4211. See Sony documentation. - - - - - Indicates if the application uses the sceKernelIsProspero API. See Sony documentation. - - - - - Settings of the proxy server to be used when checking the version of the Publishing Tools or the SDK online. - - When using the system's proxy settings: "ie" - - When manually entering proxy server information: "(IP address):(port number)" - - When not using a proxy server: "none" - - - - - Project type (output format) - - - - - Entitlement key (only for additional content package) - - - - - DLC plugin name (only for additional content package) - - - - - Custom ParamSFO attribute2 - - - - - Retrieves the title configurations from the specific config hierarchy. - - - - - Retrieves the title configurations from the specific config hierarchy. - Also returns the default title configuration to use when a title or content ID is not provided on UBT command line. - - - - - Read overrides for TitleConfiguration fields from Engine's .ini scripts and return as a data structure - compatible with what Json loading returns (ParseJson). - This way, the overrides may be merged with the contents of the .jsons we load. - Note: it only supports simple fields (bool, long, string); arrays and subobjects are ignored. - - Engine configuration hierarchy - Content id of the SKU for which to load overrides (global overrides a loaded when null) - - - - - PS4-specific target settings - - - - - Enable Razor CPU profiling - - - - - Set this to true to register shaders with the standalone GPU debugger. - - - - - Set this to true to enable Sulpha host side audio debugging. - - - - - Enables support for the PS4 Memory Analyzer tool. - - - - - Set this to true to enable gnm asserts and validations in the LCUE - - - - - Enable link time optimization for test/shipping builds. - - - - - Enable link time optimization for development/test/shipping builds. - - - - - Move the audio rendering and stats thread to the 7th core when available - - - - - Enables address sanitizer (ASan) - - - - - Enables undefined behavior sanitizer (UBSan) - - - - - Enables thread sanitizer (TSan) [not available on PS4] - - - - - Enables shader performance analysis - - - - - Enable support for edit and continue code modification on ps4 - - - - - Per-platform override enabling support for edit and continue. - If not provided, the global bSupportEditAndContinue setting will be applied. - - - - - Whether to improve iteration of a developer's build by skipping certain steps (currently, .uesym generation) - - - - - Disabled static analyzer checkers - - - - - Enable system runtime object stats in non shipping build - - - - - Modify code generation to help with debugging optimized builds by extending lifetimes of local variables, parameters and this. - - - - - Set this true to use the CrossgenSDK - - - - - Set this to true to disable NpToolkit - - - - - Read-only wrapper around an existing PS4TargetRules instance. This exposes target settings to modules without letting them to modify the global environment. - - - - - The private mutable settings object - - - - - Constructor - - The settings object to wrap - - - - Accessors for fields on the inner TargetRules instance - - - - - Set this true to use the CrossgenSDK - - - - - Set this true to disable the NpToolkit - - - - - Modify the rules for a newly created module, where the target is a different host platform. - This is not required - but allows for hiding details of a particular platform. - - The name of the module - The module rules - The target being build - - - - Modify the rules for a newly created module, in a target that's being built for this platform. - This is not required - but allows for hiding details of a particular platform. - - The name of the module - The module rules - The target being build - - - - Setup the target environment for building - - Settings for the target being compiled - The compile environment for this target - The link environment for this target - - - - Creates a toolchain instance for the given platform. - - The target being built - New toolchain instance. - - - - Deploys the given target - - Receipt for the target being deployed - - - - Register the platform with the UEBuildPlatform class - - - - - Provides support for applying Kraken compression to staged builds, using - split-compress-merge workflow if distributed build systems are available. - - - - - Whether platform supports switching SDKs during runtime - - true if supports - - - - Construct properly formatted version string from raw numbers - - Version string with dot separating parts - - - - Base class for platform-specific project generators - - - - - When enabled, generates project files that default to using the PS5 application debugger. - - - - - When enabled, generates project files where the PS5 local debugger is set to use a .gp5 file from the StagedBuild directory. - Otherwise, the StagedBuild directory itself is set as the working directory, and the title is launched without the help of a .gp5 file. - - - - - Enumerate all the platforms that this generator supports - - - - - - - - - - - Helper for parsing, generating and comparing PS5 master version strings, in the form "xx.xx" where x is a digit. - - - - - The integer value representing this master version. - - - - - Master version string, as it appears in param.json - - - - - Parses the master version string into its integer representation. - - - - - Parses the master version string into its integer representation. Returns false if parsing failed. - - - - Equality function - - - Returns the formatted version string - - - Returns the underlying value hashcode - - - Comparison function - - - Less than operator - - - Greater than operator - - - Equal operator - - - Not equal operator - - - - Helper for parsing, generating and comparing PS5 content version strings, in the form "xx.xxx.xxx" where x is a digit. - - - - - The integer value representing this content version. - - - - - Content version string, as it appears in param.json - - - - - Parses the master version string into its integer representation. - - - - - Parses the content version string into its integer representation. Returns false if parsing failed. - - - - Equality function - - - Returns the formatted version string - - - Returns the underlying value hashcode - - - Comparison function - - - Less than operator - - - Greater than operator - - - Equal operator - - - Not equal operator - - - - - Helper class used to generate and parse package/GP5 file names according to their Content ID / versions etc in the form: - - XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ_01.00-01.000.000_Shared-Submission-TargetName-PS5-Configuration.pkg - - where: - - "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" is the package Content ID - "01.00" is the MasterVersion - "01.000.000" is the ContentVersion - "Shared-" is optional, and denotes a shared binary package - "Submission-" is optional, and denotes a submission package (--for_submission / -distribution) - "TargetName" is the name of the UBT target binary the package was created for - "Configuration" is the UBT target configuration - - - - - - The generated name of the build. - - - - - The generated name of the GP5 file. - - - - - The generated name of the PKG file. - - - - - Full Content ID string in the format "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" - - - - - The title ID portion of the content ID string in the format "XXXXYYYYY". - - - - - The version of an application or additional content to be submitted. - - - - - The version of an application or additional content to be updated. - - - - - True indicates the title should be packaged as a shared binary. This means a single package is produced, - containing the files for all listed Content IDs, rather than one package per Content ID. - - - - - True if this is a submission package. - - - - - The name of the target this package is built for. - - - - - The binary configuration included in the package. - - - - - Parses the given package filename into its component parts - - - - - Builds a PackageInfo instance from a title configuration and other properties. - - - - - Parses the given .pkg/.gp5 filename into its component parts. Returns false if parsing failed. - - - - - Parses the given .pkg/.gp5 filename into its component parts. Returns null if parsing failed. - - - - - Returns true if the specified package matches the current one, and has an older ContentVersion. - - - - - Contains the title configuration required for producing a packaged PS5 build. - This code is shared between UBT project generation, and UAT packaging automation. - See PS5ProjectGenerator.cs and PS5Platform.Automation.cs. - - - - - A regex pattern that matches valid content IDs - - - - - Full Content ID string in the format "XXYYYY-XXXXYYYYY_00-ZZZZZZZZZZZZZZZZ" - - - - - Just the Title ID portion of the full Content ID - - - - - The Concept ID value for the title, as provided by the GEMS tool. - - - - - Passcode used for package creation. - - - - - Represents the DRM type of the application, as specified by packaging documentation. - Allowed values are "standard", "upgradable", or "demo". If unspecified, assumes "standard". - - - - - The version of an application or additional content to be submitted. - - - - - The version of an application or additional content to be updated. - - - - - True indicates the title should be packaged as a shared binary. This means a single package is produced, - containing the files for all listed Content IDs, rather than one package per Content ID. - - - - - True will suppress automation warnings about incorrect title configuration (e.g. missing passcodes / missing content ID / no default language). - Used only for Unreal Engine sample projects which are not intended to be shipped as retail titles. Do not enable this if you are making a real game. - - - - - Determines whether generated packages support Blu-ray disc distribution, and if so, what type of Blu-ray disc. - If unspecified, assumes "nwonly", i.e. online distribution only, no Blu-ray disc. - - - - - True indicates that the title correctly handles log in/log out of the initial user. - - - - - True indicates the title supports HDR rendering. - - - - - True indicates the title uses the content search library rendering. - - - - - True indicates the title uses the share library capture API. - - - - - True indicates the title is a beta release. - - - - - When true, indicates the title will use the faster startup splash screen animation, which reduces the time it takes for the game logo (pic2.png) to appear. - See the "Content Information Specifications -> 7. Start-up Image [Application Information]" section of the Sony documentation. - - - - - If VR support is enabled a value of 1 indicates that the app Supports VR, a value of 2 indicates that the app Requires VR. - Allowed values are "supported", or "required". If unspecified, assumes "supported". - - - - - The size in MiB of the download data area for the title. - Available options are 0, 256, 512, or 1024. - - - - - The content badge type value for the title, as provided by the GEMS tool. - - - - - A map of region IDs to age levels required to play the title. - The entry with an empty string "" key is used as the default age level. - e.g. { "": 15, "US": 10, "JP": 14 } - - - - - The default title name to use if a localized name is not provided for a specific culture in the title names map. - - - - - A map of culture IDs to title names for display in the system software. - The entry with an empty string "" key is used as the default name. - e.g. { "": "Default Game Name", "en-US" : "Game Name for English (US)" } - - - - - A list of game intents applicable to this title. - - - - - The version file uri string as provided by the GEMS tool in param_cp_values.json. - - - - - A map of ASA codes. Use of this field is only necessary if Sony requires specific ASA codes to be enabled for your title. - - - - - A list of ASA signatures. Use of this field is only necessary if Sony requires specific ASA signatures to be enabled for your title. - - - - - Project type (output format) - - - - - Entitlement key (only for additional content package) - - - - - DLC plugin name (only for additional content package) - - - - - A dictionary of properties which should also be included in the generated param.json file. This - dictionary is merged with the values that are generated from the above properties. Useful if a - property needs to be added to param.json, but there is no explicit UAT code support for that property. - - - - - A map of configuration to size to override flexible memory size. - - - - - Contains the title and description of a scenario for a given language. - - - - - The title of the scenario. - - - - - A description of the scenario. - - - - - Contains the configuration for an individual scenario. - - - - - Constructor - - - - - A map of culture IDs to scenario title names / descriptions for display in the system software. - - - - - A map of scenario IDs their configuration data. - - - - - Retrieves the title configurations from the specific config hierarchy. - - - - - Retrieves the title configurations from the specific config hierarchy. - Also returns the default title configuration to use when a title or content ID is not provided on UBT command line. - - - - - Read overrides for TitleConfiguration fields from Engine's .ini scripts and return as a data structure - compatible with what Json loading returns (ParseJson). - This way, the overrides may be merged with the contents of the .jsons we load. - Note: it only supports simple fields (bool, long, string); arrays and subobjects are ignored. - - Engine configuration hierarchy - Content id of the SKU for which to load overrides (global overrides a loaded when null) - - - - - PS5-specific target settings - - - - - Enable Razor CPU profiling - - - - - Set this to true to register shaders with the standalone GPU debugger. - - - - - Set this to true to enable Sulpha host side audio debugging. - - - - - Enables support for the PS5 Memory Analyzer tool. - - - - - Enable link time optimization for test/shipping builds. - - - - - Enable link time optimization for development/test/shipping builds. - - - - - Enables address sanitizer (ASan) - Address sanitizer significantly increases the amount of flexible memory used by a title. - For this reason, a staged build with a manually updated param.json with the following - change is generally needed (the required size is title-dependent): - - "kernel": { - "flexibleMemorySize": 1073741824 - }, - - Alternatively, a flexible memory override may be specified when launching from Visual Studio - or Sony tools (Target Manager, Remote Viewer). - - - - - Enables undefined behavior sanitizer (UBSan) - - - - - Enables thread sanitizer (TSan) - - - - - Enables shader live editing support. - - - - - Enable support for edit and continue code modification - - - - - Per-platform override enabling support for edit and continue. - If not provided, the global bSupportEditAndContinue setting will be applied. - - - - - Whether to improve iteration of a developer's build by skipping certain steps (currently, .uesym generation) - - - - - Disabled static analyzer checkers - - - - - Enable system runtime object stats in non shipping build - - - - - Modify code generation to help with debugging optimized builds by extending lifetimes of local variables, parameters and this. - - - - - Indicates whether the PS5 kernel extension allowing us to load more than 255 .prx modules is available. - It's really only necessary when using modular builds (which itself is an experimental feature at the moment). - - - - - Read-only wrapper around an existing PS5TargetRules instance. This exposes target settings to modules without letting them to modify the global environment. - - - - - The private mutable settings object - - - - - Constructor - - The settings object to wrap - - - - Accessors for fields on the inner TargetRules instance - - - - - Modify the rules for a newly created module, where the target is a different host platform. - This is not required - but allows for hiding details of a particular platform. - - The name of the module - The module rules - The target being build - - - - Modify the rules for a newly created module, in a target that's being built for this platform. - This is not required - but allows for hiding details of a particular platform. - - The name of the module - The module rules - The target being build - - - - Setup the target environment for building - - Settings for the target being compiled - The compile environment for this target - The link environment for this target - - - - Creates a toolchain instance for the given platform. - - The target being built - New toolchain instance. - - - - Deploys the given target - - Information about the target being deployed - - - - Register the platform with the UEBuildPlatform class - - - - - Construct properly formatted version string from raw numbers - - Version string with dot separating parts - - - - Base class for project generators for Sony platforms. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Get host compiler path for ISPC. - - Which OS build platform is running on. - Path to ISPC compiler - - - - Get the host bytecode-to-obj compiler path for ISPC. Only used for platforms that support compiling ISPC to LLVM bytecode - - Which OS build platform is running on. - Path to bytecode to obj compiler - - - - Sony-specific target settings - - - - - Enable Razor CPU profiling - - - - - Set this to true to register shaders with the standalone GPU debugger. - - - - - Set this to true to enable Sulpha host side audio debugging. - - - - - Enables support for the Sony Memory Analyzer tool. - - - - - Enable link time optimization for test/shipping builds. - - - - - Enable link time optimization for development/test/shipping builds. - - - - - Enables address sanitizer (ASan) - - - - - Enables undefined behavior sanitizer (UBSan) - - - - - Enables thread sanitizer (TSan) - - - - - Enable support for edit and continue code modification on Sony - - - - - Per-platform override enabling support for edit and continue. - If not provided, the global bSupportEditAndContinue setting will be applied. - - - - - Whether to improve iteration of a developer's build by skipping certain steps (currently, .uesym generation) - - - - - Disabled static analyzer checkers - - - - - Enable system runtime object stats in non shipping build - - - - - Modify code generation to help with debugging optimized builds by extending lifetimes of local variables, parameters and this. - It may slightly reduce performance. Thus, it's meant to be used during development only. - - - - - Read-only wrapper around an existing SonyTargetRules instance. This exposes target settings to modules without letting them to modify the global environment. - - - - - Constructor - - The settings object to wrap - - - - Accessors for fields on the inner TargetRules instance - - - - - If this platform can be compiled with XGE - - - - - If this platform can be compiled with SN-DBS - - - - - Determines if the given name is a build product for a target. - - The name to check - Target or application names that may appear at the start of the build product name (eg. "UnrealEditor", "ShooterGameEditor") - Suffixes which may appear at the end of the build product name - True if the string matches the name of a build product, false otherwise - - - - Get the extension to use for the given binary type - - The binrary type being built - string The binary extenstion (ie 'exe' or 'dll') - - - - Get the extensions to use for debug info for the given binary type - - Rules for the target being built - The binary type being built - string[] The debug info extensions (i.e. 'pdb') - - - - Whether this platform should build a monolithic binary - - - - - Whether this platform should create debug information or not - - The target being built - bool true if debug info should be generated, false if not - - - - Setup the configuration environment for building - - The target being built - The global compile environment - The global link environment - - - - Setup the binaries for this specific platform. - - The target being built - - - - - Public Switch functions exposed to UAT - - - - - - - - - - - - - - - - - - location of libraries in the SDK - - - - - - Base class for platform-specific project generators - - - - Constructor - - Command line arguments passed to the project generator - Logger for output - - - - Enumerate all the platforms that this generator supports - - - - - - - - - - - Switch-specific target settings - - - - - Name to use for the Runtime Settings section in the INI config files - - - - - base frameworks used for all projects. - stored here so we have access to them in ModifyBuildProducts() - - - - - Enable/disable NEX library support. Allows fully compiling out NEX support. - Deprecated: Use "NintendoGameServersMode" instead - - - - - Choose which online service we are currently targeting. If NEX/NPLN are not selected, they will be compiled out. - Possible Options: - None (default) - NEX (legacy,deprecated) - NPLN (new Nintendo online service) - - - - - Generate symbols with Breakpad (non shipping only). - - - - - Generate symbols with Breakpad (non shipping only), and only when compiled from a machine with the IsBuildMachine environment variable enabled. - - - - - Enable/disable system profilers, this can reduce program size. - - - - - Enable/disable the custom user exception handler. - - - - - Enable the custom user exception handler, only when compiled from a machine with the IsBuildMachine environment variable enabled. - - - - - Force Development libraries. - - - - - Enable Aftermath per build configuration (automatically opted out in shipping) - Enabling it automatically disables LLGD and NVNGD - - - - - Override malloc heap size. - NOTE this has been removed. There is no longer a separate heap for malloc, allocations now go through FSwitchPlatformMemory::BaseAllocator. - - - - - Max number of slots FSwitchPlatformTLS::AllocTlsSlot can allocate. - - - - - Max number threads that can use FSwitchPlatformTLS at one time. - - - - - The amount of memory donated to the NVN graphics firmware (must be a multiple of 4). - - - - - Controls how the game uses the touchscreen. - Due to LotCheck, this will force a full recompile to add/remove the touch APIs from the code. - Content-only projects will convert to code if this is not the default value! - - - - - Enable the four finger tap debugging option to show a web page for entering console commands, which will force touch screen usage - to Supported in non-Shipping builds (since it needs touch support!) - NOTE: Content-only projects will convert to code if this is not the default value! - - - - - Optional application error code prefix - 5 characters - - - - - Enable the mechanism to monitor write speeds to system storage. - Note, this is a best effort mechanism and may not catch all overages. Use the SDK tool FsAccessLogChecker - for official results. See SDK Guideline 0011 for more info. - - - - - Size of the cache data storage in KB. - - - - - Size of the temp data storage in KB. - - - - - Modify code generation to help with debugging optimized builds by extending lifetimes of local variables, parameters and this. - It may slightly reduce performance. Thus, it's meant to be used during development only. - - - - - Read-only wrapper around an existing SwitchTargetRules instance. This exposes target settings to modules without letting them to modify the global environment. - - - - - Constructor - - The settings object to wrap - Setup the target environment for building @@ -34675,381 +31928,6 @@ Enumerate all the platforms that this generator supports - - - Target rules for WinGDK - - - - - Whether exceptions should be ultimately passed on to Windows Error Reporting - - - - - Whether the embadded manifest will indicate the application is DPI aware - - - - - Read only target rules for WinGDK - - - - - Base class for platform-specific project generators - - - - - Constructor - - Command line arguments passed to the project generator - - - - - Enumerate all the platforms that this generator supports - - - - - - - - Target rules for XB1 - - - - - Name to use for the Runtime Settings section in the INI config files - - - - - - - - - - - - - - - - - - - - - - - - - - Report warnings about migrating deprecated XboxOneGDK platform to XB1 - - - - - Read only target rules for XB1 - - - - - - - - - - - - - Target rules for XboxCommon - - - - - Enable PIX debugging (automatically disabled in Shipping and Test configs) - - - - - Register the log file with Wer so it'll be uploaded along with crash dumps - - - - - Register screenshot file with Wer so it'll be uploaded along with crash dumps - - - - - Always run Wer even in non-shipping builds. Default value for xb.AlwayRunWer cvar. - - - - - The stack size when linking. 0 signifies use of system default. - - - - - The stack size override when linking for the debug configuration. 0 signifies use of system default. - - - - - The stack size to commit when linking. 0 signifies use of system default. - - - - - If -PGOOptimize is specified but the linker flags have changed since the last -PGOProfile, this will emit a warning and build without PGO instead of failing during link with LNK1268. - Note that the PLATFORM_COMPILER_OPTIMIZATION_PG definition will still be 1 but FPlatformMisc::IsPGOEnabled() will return false in this case. - - - - - If specified along with -PGOProfile, then /FASTGENPROFILE will be used instead of /GENPROFILE. - This usually means that the PGO data is generated faster, but the resulting data may not yield as efficient optimizations during -PGOOptimize - - - - - If specified along with -PGOProfile, prevent the usage of extra counters. Please note that by default /FASTGENPROFILE doesn't use extra counters - https://learn.microsoft.com/en-us/cpp/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build?view=msvc-170 - - - - - Override the default compiler - - - - - Override the default compiler version - - - - - True if we should use the LLVM linker (LLD-Link.exe) when we are compiling with Clang. Otherwise we'll use the MSVC linker (Link.exe). - This is required for LTO and PGO - - - - - Xbox should use the onecore libraries by default. This is included for backwards compatibility on some titles - - - - - ASan runtime options (delimited with colons ":") - - - - - Whether to support /host/ prefix in file system paths, allowing access to files on the host PC. It requires a full PC path but only files within the current solution dir are available. For example, -cvarsini=/host/D:\UE5\Engine\Config\ConsoleVariables.ini - - - - - Whether to improve iteration of a developer's build by skipping certain steps (currently, debug symbol lookup generation) - - - - - Read only target rules for XboxCommon - - - - - This adds support for a range of extra deployment scenarios for F5 in Visual Studio, including package debugging assistance. - Disabling this may yield minor deployment speed increase at the cost of ease-of-use for more advanced deployment scenarios - - - - - Whether to deploy the current Staged build when F5 debugging from Visual Studio - - - - - Whether the staged build deployment will be skipped if there is already a build installed. - - - - - Prevents VS deployment if there will not be a build installed - otherwise VS will just deploy the Layout folder but no content and the game would likely crash. - - - - - Logs out additional information during package debugging assistance. Mostly useful for debugging this system - - - - - Prepare the target for deployment. This is done after the executable has been built, including when pressing F5 in Visual Studio. - - Receipt for the target being deployed - True if successful, false if not - - - - Utility function to delete a file even if it is read-only - - - - - Helper function for copying modified files - - - - - Target rules for XSX - - - - - Name to use for the Runtime Settings section in the INI config files - - - - - - - - - - - - - - - - - - - - - - - - - - Enables support for 120hz and 40hz display output. Use 'r.SetFramePace' to configure the desired output frame rate at runtime. - - - - - Enables support for SMT (Simultaneous Multi-threading) this is an immediate drop in cpu frequency of 10% but with hyperthreading. - - - - - Read only target rules for XSX - - - - - - - - - - - - - Return the AutoSDK property include to set global platform properties if AutoSDK is in use. - - - - - Attempts to optimize the module dependencies found in the build.cs files - - - - - Regex that matches #include statements. - - - - - Execute the command - - Command line arguments - Exit code - - - - - Information about a module that needs to be passed to the Verse VNI tool for code generation - - - - - Module name - - - - - Name of plugin this module belongs to, "Engine" or "Game" - - - - - Verse path of the root Verse module associated with this build module - - - - - If Verse code associated with this module is allowed to be seen by users outside of Epic - - - - - Path to the module rules file - - - - - Directory where the Verse package is located - - - - - Names of modules with Verse code that this module's Verse code depends on - - - - - Directory containing generated code - - - - - This handles all running of the VNI tool - - - - - Create a Verse vproject file from a list of VNIModuleInfo - - - - - Gets VNI Tool binary path - - - - - Runs the precompiled VNI tool - Since the VNI tool performs extensive file date/manifest checking already we're not spending time here - determining if it should be run in the first place, but run it _always_ - - Extension methods for JsonObject to provide some deprecated field helpers @@ -35075,68 +31953,5 @@ On success, receives the field value True if the field could be read, false otherwise - - - Whether this platform should build a monolithic binary - - - - - Allows the platform header name to be overridden to differ from the platform name. - GDK platforms do not utilize an override for the platform header name. - - - - - Register the platform with the UEBuildPlatform class - - - - - Adds the XB1-specific shader format definitions - - - - - - Register the platform with the UEBuildPlatform class - - - - - Whether this platform should create debug information or not - - The target being built - bool true if debug info should be generated, false if not - - - - Whether this platform should build a monolithic binary - - - - - Get a list of extra modules the platform requires. - This is to allow undisclosed platforms to add modules they need without exposing information about the platform. - - The target being build - List of extra modules the platform needs to add to the target - - - - Allows the platform header name to be overridden to differ from the platform name. - - - - - Adds the GDK-specific shader format definitions - - - - - - Register the platform with the UEBuildPlatform class - - diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.dll index 0db26308..976e8c1e 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95a28a4e74364b889370824cddc51bcc813a6ff5540bed629a762b863256505a +oid sha256:8236d48324837757973d7cfe98b8c9c06b6bdc2f8d2c1ffb7a159f90cb86a95f size 47616 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.pdb b/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.pdb index 44bbda09..8c9bc7c2 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.pdb +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/XLocLocalization.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25752d0ba312d4447c11a931ad361d49f1a033b6f4320778df2ae3f93239f31e +oid sha256:d98ab4588399574f43a4f431ae8aaf705b7f71cec7fae04e400be09a8af75e24 size 142848 diff --git a/Binaries/DotNET/AutomationTool/AutomationScripts/ref/Lyra.Automation.dll b/Binaries/DotNET/AutomationTool/AutomationScripts/ref/Lyra.Automation.dll index 91ac1b8a..28b120b7 100644 --- a/Binaries/DotNET/AutomationTool/AutomationScripts/ref/Lyra.Automation.dll +++ b/Binaries/DotNET/AutomationTool/AutomationScripts/ref/Lyra.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51bbfb9b00f175db9cb5cb870f30401762fc74707a2a610a206810b09ac328af +oid sha256:b95f6360930f0033c6ea9b034a36f818b8cefd080005052632c1dbef3c7f08c6 size 7168 diff --git a/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfo.cs b/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfo.cs index 13616c91..44435349 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfo.cs +++ b/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Lyra.Automation")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Development")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d67e93cc6062e398099652ed263d7e4eab3a176f")] [assembly: System.Reflection.AssemblyProductAttribute("Lyra.Automation")] [assembly: System.Reflection.AssemblyTitleAttribute("Lyra.Automation")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfoInputs.cache b/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfoInputs.cache index 62cb8561..efaf2938 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfoInputs.cache +++ b/Build/Scripts/obj/Development/Lyra.Automation.AssemblyInfoInputs.cache @@ -1 +1 @@ -3f06599fd5367437db26e08d890bd4a16b660058ce571e2dce84a178bdb73236 +de28473a4760ef314af68bfc6f4dc091cb204e668a1dd8281444206d903d7240 diff --git a/Build/Scripts/obj/Development/Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig b/Build/Scripts/obj/Development/Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig index ccffe82a..bb1d37b5 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig +++ b/Build/Scripts/obj/Development/Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Lyra.Automation -build_property.ProjectDir = D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\ +build_property.ProjectDir = E:\Projects\cross_platform\Build\Scripts\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Build/Scripts/obj/Development/Lyra.Automation.assets.cache b/Build/Scripts/obj/Development/Lyra.Automation.assets.cache index a829beea..41abb160 100644 Binary files a/Build/Scripts/obj/Development/Lyra.Automation.assets.cache and b/Build/Scripts/obj/Development/Lyra.Automation.assets.cache differ diff --git a/Build/Scripts/obj/Development/Lyra.Automation.csproj.AssemblyReference.cache b/Build/Scripts/obj/Development/Lyra.Automation.csproj.AssemblyReference.cache index 8bc3a9d2..988ffe71 100644 Binary files a/Build/Scripts/obj/Development/Lyra.Automation.csproj.AssemblyReference.cache and b/Build/Scripts/obj/Development/Lyra.Automation.csproj.AssemblyReference.cache differ diff --git a/Build/Scripts/obj/Development/Lyra.Automation.csproj.CoreCompileInputs.cache b/Build/Scripts/obj/Development/Lyra.Automation.csproj.CoreCompileInputs.cache index 54a47926..3c574291 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.csproj.CoreCompileInputs.cache +++ b/Build/Scripts/obj/Development/Lyra.Automation.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -a0acaed900ff21a273739183143567821b172ff56c9b213e70742ffb90687e6d +9ef9d25f1adee05be05756c04a11160ecc746d674cea6d6ca1d0f6dc00c8ac79 diff --git a/Build/Scripts/obj/Development/Lyra.Automation.csproj.FileListAbsolute.txt b/Build/Scripts/obj/Development/Lyra.Automation.csproj.FileListAbsolute.txt index f0fdb71b..0d40e16e 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.csproj.FileListAbsolute.txt +++ b/Build/Scripts/obj/Development/Lyra.Automation.csproj.FileListAbsolute.txt @@ -32,3 +32,35 @@ D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Aut.14 D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Automation.dll D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\refint\Lyra.Automation.dll D:\build\++UE5\Sync\Samples\Games\Lyra\Build\Scripts\obj\Development\Lyra.Automation.pdb +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinux64.so.9 +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinuxarm32.so.9 +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2corelinuxarm64.so.9 +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\liboo2coremac64.2.9.10.dylib +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_win64.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_win32.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\oo2core_9_winuwparm64.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\runtimes\win-x64\native\UbaHost.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\runtimes\win-x64\native\UbaDetours.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.pdb +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\MSVCP140.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\VCRUNTIME140.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\VCRUNTIME140_1.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.so +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\EpicGames.Perforce.Native.dylib +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.deps.json +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.runtimeconfig.json +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\UnrealBuildTool.exe +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.deps.json +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\ref\Lyra.Automation.dll +E:\Projects\cross_platform\Binaries\DotNET\AutomationTool\AutomationScripts\Lyra.Automation.pdb +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.csproj.AssemblyReference.cache +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.GeneratedMSBuildEditorConfig.editorconfig +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.AssemblyInfoInputs.cache +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.AssemblyInfo.cs +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.csproj.CoreCompileInputs.cache +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Aut.14288AAB.Up2Date +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.dll +E:\Projects\cross_platform\Build\Scripts\obj\Development\refint\Lyra.Automation.dll +E:\Projects\cross_platform\Build\Scripts\obj\Development\Lyra.Automation.pdb diff --git a/Build/Scripts/obj/Development/Lyra.Automation.dll b/Build/Scripts/obj/Development/Lyra.Automation.dll index b1762a38..cae62b70 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.dll +++ b/Build/Scripts/obj/Development/Lyra.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6db7cb69f09179209606dc3e862ed319f67a8aed42ba1b056770a66ab4f620c1 +oid sha256:0bd3f466b823e68dc91b3ce00294fe71a08900d78314ce72afebc3b4895734f3 size 25600 diff --git a/Build/Scripts/obj/Development/Lyra.Automation.pdb b/Build/Scripts/obj/Development/Lyra.Automation.pdb index 2f14c068..0e584f36 100644 --- a/Build/Scripts/obj/Development/Lyra.Automation.pdb +++ b/Build/Scripts/obj/Development/Lyra.Automation.pdb @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24e9ed45ae77733a8224a913bcf4b29592676ae56a75444846238fccab1a0519 -size 58880 +oid sha256:34354cd257e0327c94e6ede9989d271198c0662e785361a8bad47a62aaf9fa15 +size 56832 diff --git a/Build/Scripts/obj/Development/refint/Lyra.Automation.dll b/Build/Scripts/obj/Development/refint/Lyra.Automation.dll index 91ac1b8a..28b120b7 100644 --- a/Build/Scripts/obj/Development/refint/Lyra.Automation.dll +++ b/Build/Scripts/obj/Development/refint/Lyra.Automation.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51bbfb9b00f175db9cb5cb870f30401762fc74707a2a610a206810b09ac328af +oid sha256:b95f6360930f0033c6ea9b034a36f818b8cefd080005052632c1dbef3c7f08c6 size 7168 diff --git a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.dgspec.json b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.dgspec.json index 8718e984..08f85f27 100644 --- a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.dgspec.json +++ b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.dgspec.json @@ -1,45 +1,51 @@ { "format": 1, "restore": { - "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj": {} + "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj": {} }, "projects": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", "projectName": "Android.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -64,14 +70,6 @@ "Microsoft.CSharp": { "target": "Package", "version": "[4.7.0, )" - }, - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - }, - "System.Net.Http": { - "target": "Package", - "version": "[4.3.4, )" } }, "imports": [ @@ -90,53 +88,59 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "projectName": "AutomationUtils.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -168,10 +172,6 @@ "target": "Package", "version": "[1.33.1.1229, )" }, - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - }, "System.Drawing.Common": { "target": "Package", "version": "[4.7.3, )" @@ -186,7 +186,7 @@ }, "System.Text.Encoding.CodePages": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.0, )" }, "System.Text.RegularExpressions": { "target": "Package", @@ -209,46 +209,52 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", "projectName": "CrowdinLocalization.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -291,62 +297,68 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", "projectName": "Gauntlet.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Android\\Android.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -376,14 +388,6 @@ "suppressParent": "All", "target": "Package", "version": "[6.10.9, )" - }, - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - }, - "System.Net.Http": { - "target": "Package", - "version": "[4.3.4, )" } }, "imports": [ @@ -402,42 +406,48 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "projectName": "Localization.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -458,12 +468,6 @@ "frameworks": { "net8.0": { "targetAlias": "net8.0", - "dependencies": { - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - } - }, "imports": [ "net461", "net462", @@ -480,46 +484,52 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", "projectName": "OneSkyLocalization.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -544,14 +554,6 @@ "Microsoft.CSharp": { "target": "Package", "version": "[4.7.0, )" - }, - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - }, - "System.Net.Http": { - "target": "Package", - "version": "[4.3.4, )" } }, "imports": [ @@ -570,54 +572,60 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", "projectName": "AutomationScripts.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\AutomationScripts.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Scripts\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -648,17 +656,9 @@ "target": "Package", "version": "[4.7.0, )" }, - "System.Data.DataSetExtensions": { - "target": "Package", - "version": "[4.5.0, )" - }, "System.Drawing.Common": { "target": "Package", "version": "[4.7.3, )" - }, - "System.Net.Http": { - "target": "Package", - "version": "[4.3.4, )" } }, "imports": [ @@ -677,46 +677,52 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", "projectName": "XLocLocalization.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "privateAssets": "all" } } @@ -743,11 +749,6 @@ "target": "Package", "version": "[4.7.0, )" }, - "System.Data.DataSetExtensions": { - "suppressParent": "All", - "target": "Package", - "version": "[4.5.0, )" - }, "System.ServiceModel.Http": { "suppressParent": "All", "target": "Package", @@ -770,40 +771,46 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", "projectName": "EpicGames.Build", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj" } } } @@ -829,7 +836,7 @@ }, "Microsoft.Extensions.FileSystemGlobbing": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.0, )" }, "System.Security.Permissions": { "target": "Package", @@ -852,26 +859,32 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "projectName": "EpicGames.Core", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -897,7 +910,7 @@ "dependencies": { "JetBrains.Annotations": { "target": "Package", - "version": "[2022.1.0, )" + "version": "[2024.3.0, )" }, "Microsoft.Extensions.Configuration": { "target": "Package", @@ -905,15 +918,15 @@ }, "Microsoft.Extensions.Http.Polly": { "target": "Package", - "version": "[6.0.26, )" + "version": "[8.0.10, )" }, "Microsoft.Extensions.Logging.Console": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.1, )" }, "Microsoft.Extensions.ObjectPool": { "target": "Package", - "version": "[6.0.8, )" + "version": "[8.0.10, )" }, "OpenTracing": { "target": "Package", @@ -944,46 +957,52 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", "projectName": "EpicGames.Horde", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj" } } } @@ -1031,26 +1050,30 @@ }, "Microsoft.Data.Sqlite": { "target": "Package", - "version": "[8.0.0, )" + "version": "[8.0.10, )" }, "Microsoft.Extensions.Caching.Abstractions": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.0, )" }, "Microsoft.Extensions.Caching.Memory": { "target": "Package", - "version": "[6.0.2, )" + "version": "[8.0.1, )" }, "Microsoft.VisualStudio.Threading.Analyzers": { "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", "target": "Package", - "version": "[17.8.14, )" + "version": "[17.11.20, )" }, "System.IO.Pipelines": { "target": "Package", "version": "[8.0.0, )" }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + }, "ZstdSharp.Port": { "target": "Package", "version": "[0.8.1, )" @@ -1072,34 +1095,40 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj", "projectName": "EpicGames.IoHash", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" } } } @@ -1121,7 +1150,7 @@ "dependencies": { "Blake3": { "target": "Package", - "version": "[0.6.1, )" + "version": "[1.1.0, )" }, "System.Memory": { "target": "Package", @@ -1144,34 +1173,40 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", "projectName": "EpicGames.Jupiter", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\EpicGames.Jupiter.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Jupiter\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" } } } @@ -1212,34 +1247,40 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj", "projectName": "EpicGames.MsBuild", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\EpicGames.MsBuild.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.MsBuild\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" } } } @@ -1261,14 +1302,12 @@ "dependencies": { "Microsoft.Build": { "include": "Compile, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", "target": "Package", - "version": "[17.1.0, )" + "version": "[17.11.4, )" }, "Microsoft.Build.Locator": { - "suppressParent": "All", "target": "Package", - "version": "[1.4.1, )" + "version": "[1.7.8, )" }, "System.Drawing.Common": { "target": "Package", @@ -1291,26 +1330,32 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj", "projectName": "EpicGames.OIDC", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1336,15 +1381,19 @@ "dependencies": { "IdentityModel.OidcClient": { "target": "Package", - "version": "[4.0.0, )" + "version": "[6.0.0, )" }, "Microsoft.Extensions.Configuration.Binder": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.2, )" }, "Microsoft.Extensions.Configuration.Json": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.1, )" + }, + "Microsoft.Extensions.Options": { + "target": "Package", + "version": "[8.0.2, )" }, "System.Text.Json": { "target": "Package", @@ -1367,26 +1416,32 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj", "projectName": "EpicGames.Oodle", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\EpicGames.Oodle.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Oodle\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1425,34 +1480,40 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj", "projectName": "EpicGames.Perforce", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\EpicGames.Perforce.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Perforce\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" } } } @@ -1493,26 +1554,32 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", "projectName": "EpicGames.ProjectStore", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\EpicGames.ProjectStore.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.ProjectStore\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1551,34 +1618,40 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj", "projectName": "EpicGames.Serialization", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" } } } @@ -1613,26 +1686,32 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj", "projectName": "EpicGames.UBA", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1662,7 +1741,7 @@ }, "Microsoft.Extensions.Logging": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.1, )" } }, "imports": [ @@ -1681,37 +1760,43 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj", "projectName": "EpicGames.UHT", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" } } } @@ -1752,55 +1837,61 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "projectUniqueName": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", "projectName": "UnrealBuildTool", - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\obj\\", + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Build\\EpicGames.Build.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Horde\\EpicGames.Horde.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.IoHash\\EpicGames.IoHash.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.OIDC\\EpicGames.OIDC.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Serialization\\EpicGames.Serialization.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UBA\\EpicGames.UBA.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.UHT\\EpicGames.UHT.csproj" } } } @@ -1824,20 +1915,24 @@ "include": "Compile, Build, Native, ContentFiles, Analyzers, BuildTransitive", "suppressParent": "All", "target": "Package", - "version": "[17.1.0, )" + "version": "[17.11.4, )" }, "Microsoft.Build.Locator": { "suppressParent": "All", "target": "Package", - "version": "[1.4.1, )" + "version": "[1.7.8, )" }, "Microsoft.CodeAnalysis.CSharp": { "target": "Package", - "version": "[4.2.0, )" + "version": "[4.11.0, )" }, "Microsoft.Extensions.Logging.Console": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.1, )" + }, + "Microsoft.VisualStudio.Setup.Configuration.Interop": { + "target": "Package", + "version": "[3.11.2177, )" }, "Microsoft.Win32.Registry": { "target": "Package", @@ -1845,7 +1940,7 @@ }, "Newtonsoft.Json": { "target": "Package", - "version": "[13.0.1, )" + "version": "[13.0.3, )" }, "OpenTracing": { "target": "Package", @@ -1857,11 +1952,11 @@ }, "System.Management": { "target": "Package", - "version": "[4.7.0, )" + "version": "[8.0.0, )" }, "System.Reflection.MetadataLoadContext": { "target": "Package", - "version": "[4.7.2, )" + "version": "[8.0.1, )" }, "System.Security.Cryptography.Csp": { "target": "Package", @@ -1873,11 +1968,11 @@ }, "System.ServiceProcess.ServiceController": { "target": "Package", - "version": "[4.7.0, )" + "version": "[8.0.1, )" }, "System.Text.Encoding.CodePages": { "target": "Package", - "version": "[6.0.0, )" + "version": "[8.0.0, )" } }, "imports": [ @@ -1896,57 +1991,63 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } }, - "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj": { + "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj", + "projectUniqueName": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj", "projectName": "Lyra.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\obj\\", + "projectPath": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Projects\\cross_platform\\Build\\Scripts\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj" } } } @@ -1982,7 +2083,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.props b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.props index 99e2873b..0b7b7a33 100644 --- a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.props +++ b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.props @@ -5,14 +5,18 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\horde-agent\.nuget\packages\ + C:\Users\Goran\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.10.0 - + + + + + - C:\Users\horde-agent\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 + C:\Users\Goran\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 \ No newline at end of file diff --git a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.targets b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.targets index b2cef7b7..40821802 100644 --- a/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.targets +++ b/Build/Scripts/obj/Lyra.Automation.csproj.nuget.g.targets @@ -3,6 +3,9 @@ - + + + + \ No newline at end of file diff --git a/Build/Scripts/obj/project.assets.json b/Build/Scripts/obj/project.assets.json index 965d1de2..d38a177a 100644 --- a/Build/Scripts/obj/project.assets.json +++ b/Build/Scripts/obj/project.assets.json @@ -15,15 +15,15 @@ } } }, - "Blake3/0.6.1": { + "Blake3/1.1.0": { "type": "package", "compile": { - "lib/net6.0/Blake3.dll": { + "lib/net7.0/Blake3.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Blake3.dll": { + "lib/net7.0/Blake3.dll": { "related": ".xml" } }, @@ -134,41 +134,37 @@ } } }, - "IdentityModel/5.1.0": { + "IdentityModel/7.0.0": { "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "5.0.1", - "System.Text.Json": "5.0.1" - }, "compile": { - "lib/net5.0/IdentityModel.dll": { + "lib/net6.0/IdentityModel.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/net5.0/IdentityModel.dll": { + "lib/net6.0/IdentityModel.dll": { "related": ".pdb;.xml" } } }, - "IdentityModel.OidcClient/4.0.0": { + "IdentityModel.OidcClient/6.0.0": { "type": "package", "dependencies": { - "IdentityModel": "5.1.0", - "Microsoft.Extensions.Logging": "5.0.0" + "IdentityModel": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" }, "compile": { - "lib/netstandard2.0/IdentityModel.OidcClient.dll": { + "lib/net6.0/IdentityModel.OidcClient.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/IdentityModel.OidcClient.dll": { + "lib/net6.0/IdentityModel.OidcClient.dll": { "related": ".xml" } } }, - "JetBrains.Annotations/2022.1.0": { + "JetBrains.Annotations/2024.3.0": { "type": "package", "compile": { "lib/netstandard2.0/JetBrains.Annotations.dll": { @@ -207,128 +203,128 @@ } } }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { "type": "package", "build": { - "build/_._": {} + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} } }, - "Microsoft.CodeAnalysis.Common/4.2.0": { + "Microsoft.CodeAnalysis.Common/4.11.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "5.0.0", - "System.Memory": "4.5.4", - "System.Reflection.Metadata": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "lib/net8.0/Microsoft.CodeAnalysis.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "lib/net8.0/Microsoft.CodeAnalysis.dll": { "related": ".pdb;.xml" } }, "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll": { "locale": "cs" }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll": { "locale": "de" }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll": { "locale": "es" }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll": { "locale": "fr" }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll": { "locale": "it" }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll": { "locale": "ja" }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll": { "locale": "ko" }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll": { "locale": "pl" }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { "locale": "pt-BR" }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll": { "locale": "ru" }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll": { "locale": "tr" }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { "locale": "zh-Hans" }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { "locale": "zh-Hant" } } }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { + "Microsoft.CodeAnalysis.CSharp/4.11.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.2.0]" + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "Microsoft.CodeAnalysis.Common": "[4.11.0]", + "System.Collections.Immutable": "8.0.0", + "System.Reflection.Metadata": "8.0.0" }, "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { "related": ".pdb;.xml" } }, "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll": { "related": ".pdb;.xml" } }, "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "cs" }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "de" }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "es" }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "fr" }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "it" }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ja" }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ko" }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "pl" }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "pt-BR" }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "ru" }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "tr" }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "zh-Hans" }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { "locale": "zh-Hant" } } @@ -342,10 +338,10 @@ "lib/netcoreapp2.0/_._": {} } }, - "Microsoft.Data.Sqlite/8.0.0": { + "Microsoft.Data.Sqlite/8.0.10": { "type": "package", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.0", + "Microsoft.Data.Sqlite.Core": "8.0.10", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" }, "compile": { @@ -355,7 +351,7 @@ "lib/netstandard2.0/_._": {} } }, - "Microsoft.Data.Sqlite.Core/8.0.0": { + "Microsoft.Data.Sqlite.Core/8.0.10": { "type": "package", "dependencies": { "SQLitePCLRaw.core": "2.1.6" @@ -371,40 +367,46 @@ } } }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.Primitives": "8.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { + "Microsoft.Extensions.Caching.Memory/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.4", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, "Microsoft.Extensions.Configuration/8.0.0": { @@ -446,178 +448,231 @@ "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "Microsoft.Extensions.Configuration.Binder/8.0.2": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileProviders.Physical": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "Microsoft.Extensions.Configuration.Json/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" }, "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" }, "compile": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { "type": "package", "compile": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.Http/6.0.0": { + "Microsoft.Extensions.Diagnostics/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0" + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Http.dll": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.Http.Polly/6.0.26": { + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.Http": "6.0.0", - "Polly": "7.2.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http.Polly/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http": "8.0.1", + "Polly": "7.2.4", "Polly.Extensions.Http": "3.0.0" }, "compile": { @@ -631,137 +686,149 @@ } } }, - "Microsoft.Extensions.Logging/6.0.0": { + "Microsoft.Extensions.Logging/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.targets": {} + "buildTransitive/net6.0/_._": {} } }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration": "6.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging.Console/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Configuration": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Text.Json": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} } }, - "Microsoft.Extensions.ObjectPool/6.0.8": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { + "Microsoft.Extensions.Logging.Configuration/8.0.1": { "type": "package", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" }, "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Configuration": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.ObjectPool/8.0.10": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.ObjectPool.dll": { "related": ".xml" } } }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "Microsoft.Extensions.Options/8.0.2": { "type": "package", "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" }, "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, "Microsoft.Extensions.Primitives/8.0.0": { @@ -798,6 +865,22 @@ "lib/netstandard1.0/_._": {} } }, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.dll": { + "related": ".xml" + } + }, + "build": { + "build/_._": {} + } + }, "Microsoft.Win32.Registry/5.0.0": { "type": "package", "dependencies": { @@ -843,15 +926,15 @@ } } }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.3": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "related": ".xml" } } @@ -869,7 +952,7 @@ } } }, - "Polly/7.2.2": { + "Polly/7.2.4": { "type": "package", "compile": { "lib/netstandard2.0/Polly.dll": { @@ -1239,26 +1322,20 @@ "lib/netstandard1.3/System.Collections.Concurrent.dll": {} } }, - "System.Collections.Immutable/5.0.0": { + "System.Collections.Immutable/8.0.0": { "type": "package", "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { + "lib/net8.0/System.Collections.Immutable.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { + "lib/net8.0/System.Collections.Immutable.dll": { "related": ".xml" } - } - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} }, - "runtime": { - "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} + "build": { + "buildTransitive/net6.0/_._": {} } }, "System.Diagnostics.Debug/4.3.0": { @@ -1274,44 +1351,47 @@ } } }, - "System.Diagnostics.DiagnosticSource/6.0.0": { + "System.Diagnostics.DiagnosticSource/4.3.0": { "type": "package", "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "lib/netstandard1.3/_._": { "related": ".xml" } }, "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.EventLog/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.EventLog/4.7.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" - }, - "compile": { - "ref/netstandard2.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } + "buildTransitive/net6.0/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { "assetType": "runtime", "rid": "win" } @@ -1505,25 +1585,26 @@ } } }, - "System.Management/4.7.0": { + "System.Management/8.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.Registry": "4.7.0", - "System.CodeDom": "4.7.0" + "System.CodeDom": "8.0.0" }, "compile": { - "ref/netstandard2.0/System.Management.dll": { + "lib/net8.0/System.Management.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/System.Management.dll": { + "lib/net8.0/System.Management.dll": { "related": ".xml" } }, + "build": { + "buildTransitive/net6.0/_._": {} + }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "runtimes/win/lib/net8.0/System.Management.dll": { "assetType": "runtime", "rid": "win" } @@ -1611,30 +1692,39 @@ } } }, - "System.Reflection.Metadata/5.0.0": { + "System.Reflection.Metadata/8.0.0": { "type": "package", + "dependencies": { + "System.Collections.Immutable": "8.0.0" + }, "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "lib/net8.0/System.Reflection.Metadata.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "lib/net8.0/System.Reflection.Metadata.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, - "System.Reflection.MetadataLoadContext/4.7.2": { + "System.Reflection.MetadataLoadContext/8.0.1": { "type": "package", "compile": { - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.dll": { + "lib/net8.0/System.Reflection.MetadataLoadContext.dll": { "related": ".xml" } }, "runtime": { - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.dll": { + "lib/net8.0/System.Reflection.MetadataLoadContext.dll": { "related": ".xml" } + }, + "build": { + "buildTransitive/net6.0/_._": {} } }, "System.Reflection.Primitives/4.3.0": { @@ -1677,22 +1767,6 @@ } } }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, "System.Runtime.Extensions/4.3.0": { "type": "package", "dependencies": { @@ -2034,23 +2108,26 @@ } } }, - "System.ServiceProcess.ServiceController/4.7.0": { + "System.ServiceProcess.ServiceController/8.0.1": { "type": "package", "dependencies": { - "System.Diagnostics.EventLog": "4.7.0" + "System.Diagnostics.EventLog": "8.0.1" }, "compile": { - "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "lib/net8.0/System.ServiceProcess.ServiceController.dll": { "related": ".xml" } }, + "build": { + "buildTransitive/net6.0/_._": {} + }, "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll": { "assetType": "runtime", "rid": "win" } @@ -2069,44 +2146,28 @@ } } }, - "System.Text.Encoding.CodePages/6.0.0": { + "System.Text.Encoding.CodePages/8.0.0": { "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, "compile": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "lib/net8.0/System.Text.Encoding.CodePages.dll": { "related": ".xml" } }, "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "lib/net8.0/System.Text.Encoding.CodePages.dll": { "related": ".xml" } }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/net6.0/_._": {} }, "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll": { "assetType": "runtime", "rid": "win" } } }, - "System.Text.Encodings.Web/5.0.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - } - }, "System.Text.Json/8.0.5": { "type": "package", "compile": { @@ -2163,15 +2224,6 @@ } } }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, "System.Windows.Extensions/4.7.0": { "type": "package", "dependencies": { @@ -2208,11 +2260,10 @@ "framework": ".NETCoreApp,Version=v8.0", "dependencies": { "EpicGames.Perforce": "1.0.0", - "System.Data.DataSetExtensions": "4.5.0", "System.Drawing.Common": "4.7.3", "System.Net.Http": "4.3.4", "System.Security.Permissions": "4.7.0", - "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encoding.CodePages": "8.0.0", "System.Text.RegularExpressions": "4.3.1" }, "compile": { @@ -2243,7 +2294,7 @@ "EpicGames.IoHash": "1.0.0", "EpicGames.MsBuild": "1.0.0", "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", "System.Security.Permissions": "4.7.0" }, "compile": { @@ -2257,11 +2308,11 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "JetBrains.Annotations": "2022.1.0", + "JetBrains.Annotations": "2024.3.0", "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Extensions.Http.Polly": "6.0.26", - "Microsoft.Extensions.Logging.Console": "6.0.0", - "Microsoft.Extensions.ObjectPool": "6.0.8", + "Microsoft.Extensions.Http.Polly": "8.0.10", + "Microsoft.Extensions.Logging.Console": "8.0.1", + "Microsoft.Extensions.ObjectPool": "8.0.10", "OpenTracing": "0.12.1", "System.Memory": "4.5.5", "System.Text.Json": "8.0.5" @@ -2287,10 +2338,11 @@ "Google.Protobuf": "3.25.1", "Grpc.Net.Client": "2.59.0", "K4os.Compression.LZ4": "1.2.16", - "Microsoft.Data.Sqlite": "8.0.0", - "Microsoft.Extensions.Caching.Abstractions": "6.0.0", - "Microsoft.Extensions.Caching.Memory": "6.0.2", + "Microsoft.Data.Sqlite": "8.0.10", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Caching.Memory": "8.0.1", "System.IO.Pipelines": "8.0.0", + "System.Linq.Async": "6.0.1", "ZstdSharp.Port": "0.8.1" }, "compile": { @@ -2304,7 +2356,7 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "Blake3": "0.6.1", + "Blake3": "1.1.0", "EpicGames.Core": "1.0.0", "System.Memory": "4.5.5" }, @@ -2320,6 +2372,8 @@ "framework": ".NETCoreApp,Version=v8.0", "dependencies": { "EpicGames.Core": "1.0.0", + "Microsoft.Build": "17.11.4", + "Microsoft.Build.Locator": "1.7.8", "System.Drawing.Common": "4.7.3" }, "compile": { @@ -2333,9 +2387,10 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "IdentityModel.OidcClient": "4.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.Configuration.Json": "6.0.0", + "IdentityModel.OidcClient": "6.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.Configuration.Json": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2", "System.Text.Json": "8.0.5" }, "compile": { @@ -2387,7 +2442,7 @@ "framework": ".NETCoreApp,Version=v8.0", "dependencies": { "Microsoft.CSharp": "4.7.0", - "Microsoft.Extensions.Logging": "6.0.0" + "Microsoft.Extensions.Logging": "8.0.1" }, "compile": { "bin/placeholder/EpicGames.UBA.dll": {} @@ -2415,9 +2470,7 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Data.DataSetExtensions": "4.5.0", - "System.Net.Http": "4.3.4" + "Microsoft.CSharp": "4.7.0" }, "compile": { "bin/placeholder/Gauntlet.Automation.dll": {} @@ -2429,9 +2482,6 @@ "Localization.Automation/1.0.0": { "type": "project", "framework": ".NETCoreApp,Version=v8.0", - "dependencies": { - "System.Data.DataSetExtensions": "4.5.0" - }, "compile": { "bin/placeholder/Localization.Automation.dll": {} }, @@ -2443,9 +2493,7 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Data.DataSetExtensions": "4.5.0", - "System.Net.Http": "4.3.4" + "Microsoft.CSharp": "4.7.0" }, "compile": { "bin/placeholder/OneSkyLocalization.Automation.dll": {} @@ -2466,18 +2514,19 @@ "EpicGames.Serialization": "1.0.0", "EpicGames.UBA": "1.0.0", "EpicGames.UHT": "1.0.0", - "Microsoft.CodeAnalysis.CSharp": "4.2.0", - "Microsoft.Extensions.Logging.Console": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.11.0", + "Microsoft.Extensions.Logging.Console": "8.0.1", + "Microsoft.VisualStudio.Setup.Configuration.Interop": "3.11.2177", "Microsoft.Win32.Registry": "5.0.0", - "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json": "13.0.3", "OpenTracing": "0.12.1", "System.CodeDom": "8.0.0", - "System.Management": "4.7.0", - "System.Reflection.MetadataLoadContext": "4.7.2", + "System.Management": "8.0.0", + "System.Reflection.MetadataLoadContext": "8.0.1", "System.Security.Cryptography.Csp": "4.3.0", "System.Security.Permissions": "4.7.0", - "System.ServiceProcess.ServiceController": "4.7.0", - "System.Text.Encoding.CodePages": "6.0.0" + "System.ServiceProcess.ServiceController": "8.0.1", + "System.Text.Encoding.CodePages": "8.0.0" }, "compile": { "bin/placeholder/UnrealBuildTool.dll": {} @@ -2518,19 +2567,17 @@ "lib/netstandard2.0/BitFaster.Caching.xml" ] }, - "Blake3/0.6.1": { - "sha512": "YlEweiQX1iMXh9HPpoRzSKeLMuKPnMJJWTdqnP1NJV0XwwDwO7WrwLlj60pGk0vJWbeZLZOh06U70+2z0DQCsQ==", + "Blake3/1.1.0": { + "sha512": "/gWRFsXYeIFof8YAoFJwzv2fYjSTCo+6vvTSL6pyXw2ZLXQdRvEyXhO43jyDfEFBCTxMxWpoHbIcIEIF6a3QdQ==", "type": "package", - "path": "blake3/0.6.1", + "path": "blake3/1.1.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "blake3.0.6.1.nupkg.sha512", + "blake3.1.1.0.nupkg.sha512", "blake3.nuspec", - "lib/net6.0/Blake3.dll", - "lib/net6.0/Blake3.xml", - "lib/netstandard2.0/Blake3.dll", - "lib/netstandard2.0/Blake3.xml", + "lib/net7.0/Blake3.dll", + "lib/net7.0/Blake3.xml", "logo.png", "runtimes/linux-arm/native/libblake3_dotnet.so", "runtimes/linux-arm64/native/libblake3_dotnet.so", @@ -2666,53 +2713,57 @@ "packageIcon.png" ] }, - "IdentityModel/5.1.0": { - "sha512": "Gcv4YYXncvUvTNLF8lDJyItZzaEDFcEi3geMDtylGcl/Rx90vcV7Kv3yAofktJBW7GvmIjQgC8LtUq0s9XQT2w==", + "IdentityModel/7.0.0": { + "sha512": "to99aLL5Gev1GOb2gUao/UZXT/uXMyjEmHPNrf/vJI2HBD1LMCTeC4SBCe/cqMIB12V9v+eSieq7ff0lju9pOQ==", "type": "package", - "path": "identitymodel/5.1.0", + "path": "identitymodel/7.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "README.md", "icon.jpg", - "identitymodel.5.1.0.nupkg.sha512", + "identitymodel.7.0.0.nupkg.sha512", "identitymodel.nuspec", - "lib/net461/IdentityModel.dll", - "lib/net461/IdentityModel.pdb", - "lib/net461/IdentityModel.xml", + "lib/net462/IdentityModel.dll", + "lib/net462/IdentityModel.pdb", + "lib/net462/IdentityModel.xml", "lib/net472/IdentityModel.dll", "lib/net472/IdentityModel.pdb", "lib/net472/IdentityModel.xml", - "lib/net5.0/IdentityModel.dll", - "lib/net5.0/IdentityModel.pdb", - "lib/net5.0/IdentityModel.xml", + "lib/net6.0/IdentityModel.dll", + "lib/net6.0/IdentityModel.pdb", + "lib/net6.0/IdentityModel.xml", "lib/netstandard2.0/IdentityModel.dll", "lib/netstandard2.0/IdentityModel.pdb", "lib/netstandard2.0/IdentityModel.xml" ] }, - "IdentityModel.OidcClient/4.0.0": { - "sha512": "qAWbsg8dihy4UlTCW89Vc9LPKwx12lCR4JlM+ilZX/Jwk1h1++GmgXUV0Rs9lZ/4DivU1hkcfYGBBUzlW088Ug==", + "IdentityModel.OidcClient/6.0.0": { + "sha512": "m2PZbjeG3nXIQ72NLZvFz3FLFk7GmqLnxO/ifUvaTEE3BDZXp7DXAdjDP6TQKaL20+wDnej2ffA1Yh3vVcJOkA==", "type": "package", - "path": "identitymodel.oidcclient/4.0.0", + "path": "identitymodel.oidcclient/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "README.md", "icon.jpg", - "identitymodel.oidcclient.4.0.0.nupkg.sha512", + "identitymodel.oidcclient.6.0.0.nupkg.sha512", "identitymodel.oidcclient.nuspec", + "lib/net6.0/IdentityModel.OidcClient.dll", + "lib/net6.0/IdentityModel.OidcClient.xml", "lib/netstandard2.0/IdentityModel.OidcClient.dll", "lib/netstandard2.0/IdentityModel.OidcClient.xml" ] }, - "JetBrains.Annotations/2022.1.0": { - "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==", + "JetBrains.Annotations/2024.3.0": { + "sha512": "ox5pkeLQXjvJdyAB4b2sBYAlqZGLh3PjSnP1bQNVx72ONuTJ9+34/+Rq91Fc0dG29XG9RgZur9+NcP4riihTug==", "type": "package", - "path": "jetbrains.annotations/2022.1.0", + "path": "jetbrains.annotations/2024.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", "icon.png", - "jetbrains.annotations.2022.1.0.nupkg.sha512", + "jetbrains.annotations.2024.3.0.nupkg.sha512", "jetbrains.annotations.nuspec", "lib/net20/JetBrains.Annotations.dll", "lib/net20/JetBrains.Annotations.xml", @@ -2723,7 +2774,8 @@ "lib/netstandard2.0/JetBrains.Annotations.dll", "lib/netstandard2.0/JetBrains.Annotations.xml", "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll", - "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml" + "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml", + "readme.md" ] }, "K4os.Compression.LZ4/1.2.16": { @@ -2770,16 +2822,16 @@ "useSharedDesignerContext.txt" ] }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", "type": "package", - "path": "microsoft.codeanalysis.analyzers/3.3.3", + "path": "microsoft.codeanalysis.analyzers/3.3.4", "hasTools": true, "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", - "ThirdPartyNotices.rtf", + "ThirdPartyNotices.txt", "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", @@ -2810,158 +2862,508 @@ "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "build/Microsoft.CodeAnalysis.Analyzers.props", - "build/Microsoft.CodeAnalysis.Analyzers.targets", - "build/config/analysislevel_2_9_8_all.editorconfig", - "build/config/analysislevel_2_9_8_default.editorconfig", - "build/config/analysislevel_2_9_8_minimum.editorconfig", - "build/config/analysislevel_2_9_8_none.editorconfig", - "build/config/analysislevel_2_9_8_recommended.editorconfig", - "build/config/analysislevel_3_3_all.editorconfig", - "build/config/analysislevel_3_3_default.editorconfig", - "build/config/analysislevel_3_3_minimum.editorconfig", - "build/config/analysislevel_3_3_none.editorconfig", - "build/config/analysislevel_3_3_recommended.editorconfig", - "build/config/analysislevel_3_all.editorconfig", - "build/config/analysislevel_3_default.editorconfig", - "build/config/analysislevel_3_minimum.editorconfig", - "build/config/analysislevel_3_none.editorconfig", - "build/config/analysislevel_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_recommended.editorconfig", - "build/config/analysislevellibrary_2_9_8_all.editorconfig", - "build/config/analysislevellibrary_2_9_8_default.editorconfig", - "build/config/analysislevellibrary_2_9_8_minimum.editorconfig", - "build/config/analysislevellibrary_2_9_8_none.editorconfig", - "build/config/analysislevellibrary_2_9_8_recommended.editorconfig", - "build/config/analysislevellibrary_3_3_all.editorconfig", - "build/config/analysislevellibrary_3_3_default.editorconfig", - "build/config/analysislevellibrary_3_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_3_none.editorconfig", - "build/config/analysislevellibrary_3_3_recommended.editorconfig", - "build/config/analysislevellibrary_3_all.editorconfig", - "build/config/analysislevellibrary_3_default.editorconfig", - "build/config/analysislevellibrary_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_none.editorconfig", - "build/config/analysislevellibrary_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", "documentation/Analyzer Configuration.md", "documentation/Microsoft.CodeAnalysis.Analyzers.md", "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", @@ -2990,7 +3392,7 @@ "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", - "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", + "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", "microsoft.codeanalysis.analyzers.nuspec", "rulesets/AllRulesDefault.ruleset", "rulesets/AllRulesDisabled.ruleset", @@ -3021,31 +3423,47 @@ "tools/uninstall.ps1" ] }, - "Microsoft.CodeAnalysis.Common/4.2.0": { - "sha512": "lbusGcuE7D8FtZawQ4G++UFsRQArPzZN1GGXjPQwu3gvCbw7FXDcBq1zDZrZN1vRzPTVe1qyZMvfGhVUzs1TDg==", + "Microsoft.CodeAnalysis.Common/4.11.0": { + "sha512": "djf8ujmqYImFgB04UGtcsEhHrzVqzHowS+EEl/Yunc5LdrYrZhGBWUTXoCF0NzYXJxtfuD+UVQarWpvrNc94Qg==", "type": "package", - "path": "microsoft.codeanalysis.common/4.2.0", + "path": "microsoft.codeanalysis.common/4.11.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.dll", + "lib/net7.0/Microsoft.CodeAnalysis.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", @@ -3062,35 +3480,51 @@ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "microsoft.codeanalysis.common.4.2.0.nupkg.sha512", + "microsoft.codeanalysis.common.4.11.0.nupkg.sha512", "microsoft.codeanalysis.common.nuspec" ] }, - "Microsoft.CodeAnalysis.CSharp/4.2.0": { - "sha512": "5IDwr8zGNBmDpxtzxxZj9IHwoA6HJ1/WWT/JacqPQJ4Vz/oZXaHNlzcBPVCZRGWUw+QvVdAhCKwEyJyuAuH/wg==", + "Microsoft.CodeAnalysis.CSharp/4.11.0": { + "sha512": "6XYi2EusI8JT4y2l/F3VVVS+ISoIX9nqHsZRaG6W5aFeJ5BEuBosHfT/ABb73FN0RZ1Z3cj2j7cL28SToJPXOw==", "type": "package", - "path": "microsoft.codeanalysis.csharp/4.2.0", + "path": "microsoft.codeanalysis.csharp/4.11.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", @@ -3107,7 +3541,7 @@ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512", "microsoft.codeanalysis.csharp.nuspec" ] }, @@ -3180,71 +3614,95 @@ "version.txt" ] }, - "Microsoft.Data.Sqlite/8.0.0": { - "sha512": "H+iC5IvkCCKSNHXzL3JARvDn7VpkvuJM91KVB89sKjeTF/KX/BocNNh93ZJtX5MCQKb/z4yVKgkU2sVIq+xKfg==", + "Microsoft.Data.Sqlite/8.0.10": { + "sha512": "WN+qgrEcXg66YHtICl0W4If9v98PBenIj/INVkJaC+wqGX/Zus3aqyv6EI17EBRsw6tcvWsKd980X5iQ7wcj1Q==", "type": "package", - "path": "microsoft.data.sqlite/8.0.0", + "path": "microsoft.data.sqlite/8.0.10", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "PACKAGE.md", "lib/netstandard2.0/_._", - "microsoft.data.sqlite.8.0.0.nupkg.sha512", + "microsoft.data.sqlite.8.0.10.nupkg.sha512", "microsoft.data.sqlite.nuspec" ] }, - "Microsoft.Data.Sqlite.Core/8.0.0": { - "sha512": "pujbzfszX7jAl7oTbHhqx7pxd9jibeyHHl8zy1gd55XMaKWjDtc5XhhNYwQnrwWYCInNdVoArbaaAvLgW7TwuA==", + "Microsoft.Data.Sqlite.Core/8.0.10": { + "sha512": "i95bgLqp6rJzmhQEtGhVVHnk1nYAhr/pLDul676PnwI/d7uDSSGs2ZPU9aP0VOuppkZaNinQOUCrD7cstDbQiQ==", "type": "package", - "path": "microsoft.data.sqlite.core/8.0.0", + "path": "microsoft.data.sqlite.core/8.0.10", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", + "PACKAGE.md", "lib/net6.0/Microsoft.Data.Sqlite.dll", "lib/net6.0/Microsoft.Data.Sqlite.xml", "lib/net8.0/Microsoft.Data.Sqlite.dll", "lib/net8.0/Microsoft.Data.Sqlite.xml", "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", - "microsoft.data.sqlite.core.8.0.0.nupkg.sha512", + "microsoft.data.sqlite.core.8.0.10.nupkg.sha512", "microsoft.data.sqlite.core.nuspec" ] }, - "Microsoft.Extensions.Caching.Abstractions/6.0.0": { - "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==", + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", "type": "package", - "path": "microsoft.extensions.caching.abstractions/6.0.0", + "path": "microsoft.extensions.caching.abstractions/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", "microsoft.extensions.caching.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Caching.Memory/6.0.2": { - "sha512": "ANjkN9TiBZXm5cvj3bb3QbezBzqkupCzxwgNf46d4V4ToRBHcEp3IEgbc67M3ZqVHQxaJgEncZ/frdqznpVWIw==", + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "type": "package", - "path": "microsoft.extensions.caching.memory/6.0.2", + "path": "microsoft.extensions.caching.memory/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.6.0.2.nupkg.sha512", + "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", "microsoft.extensions.caching.memory.nuspec", "useSharedDesignerContext.txt" ] @@ -3309,207 +3767,353 @@ "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "Microsoft.Extensions.Configuration.Binder/8.0.2": { + "sha512": "7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", "type": "package", - "path": "microsoft.extensions.configuration.binder/6.0.0", + "path": "microsoft.extensions.configuration.binder/8.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.8.0.2.nupkg.sha512", "microsoft.extensions.configuration.binder.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { - "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": { + "sha512": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "path": "microsoft.extensions.configuration.fileextensions/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512", "microsoft.extensions.configuration.fileextensions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Configuration.Json/6.0.0": { - "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "Microsoft.Extensions.Configuration.Json/8.0.1": { + "sha512": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "type": "package", - "path": "microsoft.extensions.configuration.json/6.0.0", + "path": "microsoft.extensions.configuration.json/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Json.dll", - "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.8.0.1.nupkg.sha512", "microsoft.extensions.configuration.json.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "type": "package", - "path": "microsoft.extensions.dependencyinjection/6.0.0", + "path": "microsoft.extensions.dependencyinjection/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", "microsoft.extensions.dependencyinjection.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", "microsoft.extensions.dependencyinjection.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { - "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "Microsoft.Extensions.Diagnostics/8.0.1": { + "sha512": "doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "path": "microsoft.extensions.diagnostics/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.8.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.1": { + "sha512": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", "microsoft.extensions.fileproviders.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.FileProviders.Physical/6.0.0": { - "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", "type": "package", - "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", "microsoft.extensions.fileproviders.physical.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { - "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", "type": "package", - "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", "microsoft.extensions.filesystemglobbing.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Http/6.0.0": { - "sha512": "15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "Microsoft.Extensions.Http/8.0.1": { + "sha512": "kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", "type": "package", - "path": "microsoft.extensions.http/6.0.0", + "path": "microsoft.extensions.http/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Http.dll", - "lib/net461/Microsoft.Extensions.Http.xml", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net6.0/Microsoft.Extensions.Http.dll", + "lib/net6.0/Microsoft.Extensions.Http.xml", + "lib/net7.0/Microsoft.Extensions.Http.dll", + "lib/net7.0/Microsoft.Extensions.Http.xml", + "lib/net8.0/Microsoft.Extensions.Http.dll", + "lib/net8.0/Microsoft.Extensions.Http.xml", "lib/netstandard2.0/Microsoft.Extensions.Http.dll", "lib/netstandard2.0/Microsoft.Extensions.Http.xml", - "microsoft.extensions.http.6.0.0.nupkg.sha512", + "microsoft.extensions.http.8.0.1.nupkg.sha512", "microsoft.extensions.http.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Http.Polly/6.0.26": { - "sha512": "QnlvyDQB7cYhfCwWe9x5XBRJtjK6X9Amsnd+0pf/hddHwHCccmr+PNFmtLgtN5rY1DeGlOP3qcU/MN73Wk8d8A==", + "Microsoft.Extensions.Http.Polly/8.0.10": { + "sha512": "Of5qq+Xovs6/hDY+n86keBL3Ww1zIIm52eNEHcdW1fvamXIcG0rvbkW1VM4SJNWqmR2fqhFSOLz0wGdBgpZROg==", "type": "package", - "path": "microsoft.extensions.http.polly/6.0.26", + "path": "microsoft.extensions.http.polly/8.0.10", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3517,40 +4121,52 @@ "THIRD-PARTY-NOTICES.TXT", "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.dll", "lib/netstandard2.0/Microsoft.Extensions.Http.Polly.xml", - "microsoft.extensions.http.polly.6.0.26.nupkg.sha512", + "microsoft.extensions.http.polly.8.0.10.nupkg.sha512", "microsoft.extensions.http.polly.nuspec" ] }, - "Microsoft.Extensions.Logging/6.0.0": { - "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "Microsoft.Extensions.Logging/8.0.1": { + "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "type": "package", - "path": "microsoft.extensions.logging/6.0.0", + "path": "microsoft.extensions.logging/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.8.0.1.nupkg.sha512", "microsoft.extensions.logging.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging.Abstractions/6.0.4": { - "sha512": "K14wYgwOfKVELrUh5eBqlC8Wvo9vvhS3ZhIvcswV2uS/ubkTRPSQsN557EZiYUSSoZNxizG+alN4wjtdyLdcyw==", + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", "type": "package", - "path": "microsoft.extensions.logging.abstractions/6.0.4", + "path": "microsoft.extensions.logging.abstractions/8.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", @@ -3580,119 +4196,191 @@ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.targets", "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.6.0.4.nupkg.sha512", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", "microsoft.extensions.logging.abstractions.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { - "sha512": "ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "Microsoft.Extensions.Logging.Configuration/8.0.1": { + "sha512": "QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", "type": "package", - "path": "microsoft.extensions.logging.configuration/6.0.0", + "path": "microsoft.extensions.logging.configuration/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Configuration.dll", - "lib/net461/Microsoft.Extensions.Logging.Configuration.xml", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", - "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.8.0.1.nupkg.sha512", "microsoft.extensions.logging.configuration.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Logging.Console/6.0.0": { - "sha512": "gsqKzOEdsvq28QiXFxagmn1oRB9GeI5GgYCkoybZtQA0IUb7QPwf1WmN3AwJeNIsadTvIFQCiVK0OVIgKfOBGg==", + "Microsoft.Extensions.Logging.Console/8.0.1": { + "sha512": "uzcg/5U2eLyn5LIKlERkdSxw6VPC1yydnOSQiRRWGBGN3kphq3iL4emORzrojScDmxRhv49gp5BI8U3Dz7y4iA==", "type": "package", - "path": "microsoft.extensions.logging.console/6.0.0", + "path": "microsoft.extensions.logging.console/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Logging.Console.dll", - "lib/net461/Microsoft.Extensions.Logging.Console.xml", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", - "microsoft.extensions.logging.console.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.8.0.1.nupkg.sha512", "microsoft.extensions.logging.console.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.ObjectPool/6.0.8": { - "sha512": "2oOTyJVVQM+HMZSI6vPeX/ZIRO0yT8HN4V3p7ipDUsbaEUlK4tCLCRNf5NChXxpXCKR3HL22XHIkDUBu7DJrnw==", + "Microsoft.Extensions.ObjectPool/8.0.10": { + "sha512": "u7gAG7JgxF8VSJUGPSudAcPxOt+ymJKQCSxNRxiuKV+klCQbHljQR75SilpedCTfhPWDhtUwIJpnDVtspr9nMg==", "type": "package", - "path": "microsoft.extensions.objectpool/6.0.8", + "path": "microsoft.extensions.objectpool/8.0.10", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.ObjectPool.dll", - "lib/net461/Microsoft.Extensions.ObjectPool.xml", - "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", - "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/net462/Microsoft.Extensions.ObjectPool.dll", + "lib/net462/Microsoft.Extensions.ObjectPool.xml", + "lib/net8.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net8.0/Microsoft.Extensions.ObjectPool.xml", "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", - "microsoft.extensions.objectpool.6.0.8.nupkg.sha512", + "microsoft.extensions.objectpool.8.0.10.nupkg.sha512", "microsoft.extensions.objectpool.nuspec" ] }, - "Microsoft.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "type": "package", - "path": "microsoft.extensions.options/6.0.0", + "path": "microsoft.extensions.options/8.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", "lib/netstandard2.0/Microsoft.Extensions.Options.dll", "lib/netstandard2.0/Microsoft.Extensions.Options.xml", "lib/netstandard2.1/Microsoft.Extensions.Options.dll", "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.8.0.2.nupkg.sha512", "microsoft.extensions.options.nuspec", "useSharedDesignerContext.txt" ] }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", "type": "package", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512", "microsoft.extensions.options.configurationextensions.nuspec", "useSharedDesignerContext.txt" ] @@ -3760,6 +4448,22 @@ "runtime.json" ] }, + "Microsoft.VisualStudio.Setup.Configuration.Interop/3.11.2177": { + "sha512": "WZc6Wgrkg5lM2ers9oyATJA7khAfO2eDz+t9RmcD1ojghwnrF58pfiaXUYCI41IIxOcPRNPBGwZj9LZq8wnA1A==", + "type": "package", + "path": "microsoft.visualstudio.setup.configuration.interop/3.11.2177", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.VisualStudio.Setup.Configuration.Interop.targets", + "lib/net35/Microsoft.VisualStudio.Setup.Configuration.Interop.dll", + "lib/net35/Microsoft.VisualStudio.Setup.Configuration.Interop.xml", + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.dll", + "lib/netstandard2.1/Microsoft.VisualStudio.Setup.Configuration.Interop.xml", + "microsoft.visualstudio.setup.configuration.interop.3.11.2177.nupkg.sha512", + "microsoft.visualstudio.setup.configuration.interop.nuspec" + ] + }, "Microsoft.Win32.Registry/5.0.0": { "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", "type": "package", @@ -3833,14 +4537,15 @@ "version.txt" ] }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", "type": "package", - "path": "newtonsoft.json/13.0.1", + "path": "newtonsoft.json/13.0.3", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.md", + "README.md", "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", "lib/net35/Newtonsoft.Json.dll", @@ -3849,13 +4554,15 @@ "lib/net40/Newtonsoft.Json.xml", "lib/net45/Newtonsoft.Json.dll", "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", "lib/netstandard1.0/Newtonsoft.Json.dll", "lib/netstandard1.0/Newtonsoft.Json.xml", "lib/netstandard1.3/Newtonsoft.Json.dll", "lib/netstandard1.3/Newtonsoft.Json.xml", "lib/netstandard2.0/Newtonsoft.Json.dll", "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.13.0.3.nupkg.sha512", "newtonsoft.json.nuspec", "packageIcon.png" ] @@ -3880,13 +4587,14 @@ "opentracing.nuspec" ] }, - "Polly/7.2.2": { - "sha512": "E6CeKyS513j7taKAq4q2MESDBvzuzWnR1rQ2Y2zqJvpiVtKMm699Aubb20MUPBDmb0Ov8PmcLHTCVFdCjoy2kA==", + "Polly/7.2.4": { + "sha512": "bw00Ck5sh6ekduDE3mnCo1ohzuad946uslCDEENu3091+6UKnBuKLo4e+yaNcCzXxOZCXWY2gV4a35+K1d4LDA==", "type": "package", - "path": "polly/7.2.2", + "path": "polly/7.2.4", "files": [ ".nupkg.metadata", ".signature.p7s", + "README.md", "lib/net461/Polly.dll", "lib/net461/Polly.pdb", "lib/net461/Polly.xml", @@ -3899,7 +4607,8 @@ "lib/netstandard2.0/Polly.dll", "lib/netstandard2.0/Polly.pdb", "lib/netstandard2.0/Polly.xml", - "polly.7.2.2.nupkg.sha512", + "package-icon.png", + "polly.7.2.4.nupkg.sha512", "polly.nuspec" ] }, @@ -4382,49 +5091,34 @@ "system.collections.concurrent.nuspec" ] }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "System.Collections.Immutable/8.0.0": { + "sha512": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==", "type": "package", - "path": "system.collections.immutable/5.0.0", + "path": "system.collections.immutable/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", + "buildTransitive/net461/System.Collections.Immutable.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "lib/net462/System.Collections.Immutable.dll", + "lib/net462/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/net7.0/System.Collections.Immutable.dll", + "lib/net7.0/System.Collections.Immutable.xml", + "lib/net8.0/System.Collections.Immutable.dll", + "lib/net8.0/System.Collections.Immutable.xml", "lib/netstandard2.0/System.Collections.Immutable.dll", "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.8.0.0.nupkg.sha512", "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Data.DataSetExtensions/4.5.0": { - "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "type": "package", - "path": "system.data.datasetextensions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.Data.DataSetExtensions.dll", - "ref/net45/_._", - "ref/netstandard2.0/System.Data.DataSetExtensions.dll", - "system.data.datasetextensions.4.5.0.nupkg.sha512", - "system.data.datasetextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Diagnostics.Debug/4.3.0": { @@ -4495,56 +5189,64 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", "type": "package", - "path": "system.diagnostics.diagnosticsource/6.0.0", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.EventLog/8.0.1": { + "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.DiagnosticSource.dll", - "lib/net461/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Diagnostics.EventLog/4.7.0": { - "sha512": "iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==", - "type": "package", - "path": "system.diagnostics.eventlog/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Diagnostics.EventLog.dll", - "lib/net461/System.Diagnostics.EventLog.xml", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", "lib/netstandard2.0/System.Diagnostics.EventLog.dll", "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "ref/net461/System.Diagnostics.EventLog.dll", - "ref/net461/System.Diagnostics.EventLog.xml", - "ref/net472/System.Diagnostics.EventLog.dll", - "ref/net472/System.Diagnostics.EventLog.xml", - "ref/netstandard2.0/System.Diagnostics.EventLog.dll", - "ref/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.4.7.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.1.nupkg.sha512", "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Diagnostics.Tracing/4.3.0": { @@ -5111,28 +5813,37 @@ "system.linq.async.nuspec" ] }, - "System.Management/4.7.0": { - "sha512": "IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==", + "System.Management/8.0.0": { + "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", "type": "package", - "path": "system.management/4.7.0", + "path": "system.management/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/net8.0/System.Management.dll", + "lib/net8.0/System.Management.xml", "lib/netstandard2.0/System.Management.dll", "lib/netstandard2.0/System.Management.xml", - "ref/net45/_._", - "ref/netstandard2.0/System.Management.dll", - "ref/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcoreapp2.0/System.Management.dll", - "runtimes/win/lib/netcoreapp2.0/System.Management.xml", - "system.management.4.7.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "runtimes/win/lib/net8.0/System.Management.dll", + "runtimes/win/lib/net8.0/System.Management.xml", + "system.management.8.0.0.nupkg.sha512", "system.management.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Memory/4.5.5": { @@ -5360,50 +6071,64 @@ "system.reflection.nuspec" ] }, - "System.Reflection.Metadata/5.0.0": { - "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "System.Reflection.Metadata/8.0.0": { + "sha512": "ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==", "type": "package", - "path": "system.reflection.metadata/5.0.0", + "path": "system.reflection.metadata/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Reflection.Metadata.dll", - "lib/net461/System.Reflection.Metadata.xml", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", + "buildTransitive/net461/System.Reflection.Metadata.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", + "lib/net462/System.Reflection.Metadata.dll", + "lib/net462/System.Reflection.Metadata.xml", + "lib/net6.0/System.Reflection.Metadata.dll", + "lib/net6.0/System.Reflection.Metadata.xml", + "lib/net7.0/System.Reflection.Metadata.dll", + "lib/net7.0/System.Reflection.Metadata.xml", + "lib/net8.0/System.Reflection.Metadata.dll", + "lib/net8.0/System.Reflection.Metadata.xml", "lib/netstandard2.0/System.Reflection.Metadata.dll", "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.8.0.0.nupkg.sha512", "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, - "System.Reflection.MetadataLoadContext/4.7.2": { - "sha512": "6NdeorCnR6rji8yESOIP5BYLuL8SvLX2HZbWfsy0kXeZKHUbxYOiCMfPSoIhjn+jmfz753ZB64WWu/1nE1kcrg==", + "System.Reflection.MetadataLoadContext/8.0.1": { + "sha512": "c/hiLzoMeYWnoTsdeRY2o0Vbadfedt0b4ZawQ+qDr1BIoYBQo3ASei0Pyiz00n9pHBlfWXiUVy90tOWBEgJ8/Q==", "type": "package", - "path": "system.reflection.metadataloadcontext/4.7.2", + "path": "system.reflection.metadataloadcontext/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Reflection.MetadataLoadContext.dll", - "lib/net461/System.Reflection.MetadataLoadContext.xml", - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.dll", - "lib/netcoreapp3.0/System.Reflection.MetadataLoadContext.xml", + "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets", + "lib/net462/System.Reflection.MetadataLoadContext.dll", + "lib/net462/System.Reflection.MetadataLoadContext.xml", + "lib/net6.0/System.Reflection.MetadataLoadContext.dll", + "lib/net6.0/System.Reflection.MetadataLoadContext.xml", + "lib/net7.0/System.Reflection.MetadataLoadContext.dll", + "lib/net7.0/System.Reflection.MetadataLoadContext.xml", + "lib/net8.0/System.Reflection.MetadataLoadContext.dll", + "lib/net8.0/System.Reflection.MetadataLoadContext.xml", "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll", "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml", - "system.reflection.metadataloadcontext.4.7.2.nupkg.sha512", + "system.reflection.metadataloadcontext.8.0.1.nupkg.sha512", "system.reflection.metadataloadcontext.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Reflection.Primitives/4.3.0": { @@ -5612,31 +6337,6 @@ "system.runtime.nuspec" ] }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, "System.Runtime.Extensions/4.3.0": { "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", "type": "package", @@ -6278,46 +6978,40 @@ "version.txt" ] }, - "System.ServiceProcess.ServiceController/4.7.0": { - "sha512": "FuYfwENKZqWxGtYU5Vay2ai2dPWLKzRgI+WZkjceN3jaTK9ZVYnV1GRMTtN3Qodm9RT0gOiN8WoHGNXzTaZ+fw==", + "System.ServiceProcess.ServiceController/8.0.1": { + "sha512": "02I0BXo1kmMBgw03E8Hu4K6nTqur4wpQdcDZrndczPzY2fEoGvlinE35AWbyzLZ2h2IksEZ6an4tVt3hi9j1oA==", "type": "package", - "path": "system.serviceprocess.servicecontroller/4.7.0", + "path": "system.serviceprocess.servicecontroller/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.ServiceProcess.ServiceController.dll", - "lib/net461/System.ServiceProcess.ServiceController.xml", - "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll", + "buildTransitive/net461/System.ServiceProcess.ServiceController.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "lib/net462/System.ServiceProcess.ServiceController.dll", + "lib/net462/System.ServiceProcess.ServiceController.xml", + "lib/net6.0/System.ServiceProcess.ServiceController.dll", + "lib/net6.0/System.ServiceProcess.ServiceController.xml", + "lib/net7.0/System.ServiceProcess.ServiceController.dll", + "lib/net7.0/System.ServiceProcess.ServiceController.xml", + "lib/net8.0/System.ServiceProcess.ServiceController.dll", + "lib/net8.0/System.ServiceProcess.ServiceController.xml", "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "ref/net461/System.ServiceProcess.ServiceController.dll", - "ref/net461/System.ServiceProcess.ServiceController.xml", - "ref/net472/System.ServiceProcess.ServiceController.dll", - "ref/net472/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll", - "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml", - "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll", - "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", - "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.8.0.1.nupkg.sha512", "system.serviceprocess.servicecontroller.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Text.Encoding/4.3.0": { @@ -6388,71 +7082,48 @@ "system.text.encoding.nuspec" ] }, - "System.Text.Encoding.CodePages/6.0.0": { - "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "System.Text.Encoding.CodePages/8.0.0": { + "sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==", "type": "package", - "path": "system.text.encoding.codepages/6.0.0", + "path": "system.text.encoding.codepages/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encoding.CodePages.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", - "buildTransitive/netcoreapp3.1/_._", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net462/System.Text.Encoding.CodePages.dll", + "lib/net462/System.Text.Encoding.CodePages.xml", "lib/net6.0/System.Text.Encoding.CodePages.dll", "lib/net6.0/System.Text.Encoding.CodePages.xml", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/net7.0/System.Text.Encoding.CodePages.dll", + "lib/net7.0/System.Text.Encoding.CodePages.xml", + "lib/net8.0/System.Text.Encoding.CodePages.dll", + "lib/net8.0/System.Text.Encoding.CodePages.xml", "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.8.0.0.nupkg.sha512", "system.text.encoding.codepages.nuspec", "useSharedDesignerContext.txt" ] }, - "System.Text.Encodings.Web/5.0.1": { - "sha512": "KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", - "type": "package", - "path": "system.text.encodings.web/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", - "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.1/System.Text.Encodings.Web.dll", - "lib/netstandard2.1/System.Text.Encodings.Web.xml", - "system.text.encodings.web.5.0.1.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Text.Json/8.0.5": { "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", "type": "package", @@ -6749,43 +7420,6 @@ "system.threading.tasks.nuspec" ] }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Windows.Extensions/4.7.0": { "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", "type": "package", @@ -6828,93 +7462,93 @@ }, "AutomationUtils.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/AutomationUtils/AutomationUtils.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/AutomationUtils/AutomationUtils.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/AutomationUtils/AutomationUtils.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/AutomationUtils/AutomationUtils.Automation.csproj" }, "CrowdinLocalization.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/CrowdinLocalization/CrowdinLocalization.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/CrowdinLocalization/CrowdinLocalization.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/CrowdinLocalization/CrowdinLocalization.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/CrowdinLocalization/CrowdinLocalization.Automation.csproj" }, "EpicGames.Build/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Build/EpicGames.Build.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Build/EpicGames.Build.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Build/EpicGames.Build.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Build/EpicGames.Build.csproj" }, "EpicGames.Core/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Core/EpicGames.Core.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Core/EpicGames.Core.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Core/EpicGames.Core.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Core/EpicGames.Core.csproj" }, "EpicGames.Horde/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Horde/EpicGames.Horde.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Horde/EpicGames.Horde.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Horde/EpicGames.Horde.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Horde/EpicGames.Horde.csproj" }, "EpicGames.IoHash/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.IoHash/EpicGames.IoHash.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.IoHash/EpicGames.IoHash.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.IoHash/EpicGames.IoHash.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.IoHash/EpicGames.IoHash.csproj" }, "EpicGames.MsBuild/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.MsBuild/EpicGames.MsBuild.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.MsBuild/EpicGames.MsBuild.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.MsBuild/EpicGames.MsBuild.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.MsBuild/EpicGames.MsBuild.csproj" }, "EpicGames.OIDC/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.OIDC/EpicGames.OIDC.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.OIDC/EpicGames.OIDC.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.OIDC/EpicGames.OIDC.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.OIDC/EpicGames.OIDC.csproj" }, "EpicGames.Oodle/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Oodle/EpicGames.Oodle.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Oodle/EpicGames.Oodle.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Oodle/EpicGames.Oodle.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Oodle/EpicGames.Oodle.csproj" }, "EpicGames.Perforce/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Perforce/EpicGames.Perforce.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Perforce/EpicGames.Perforce.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Perforce/EpicGames.Perforce.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Perforce/EpicGames.Perforce.csproj" }, "EpicGames.Serialization/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.Serialization/EpicGames.Serialization.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.Serialization/EpicGames.Serialization.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Serialization/EpicGames.Serialization.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.Serialization/EpicGames.Serialization.csproj" }, "EpicGames.UBA/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.UBA/EpicGames.UBA.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.UBA/EpicGames.UBA.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.UBA/EpicGames.UBA.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.UBA/EpicGames.UBA.csproj" }, "EpicGames.UHT/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/Shared/EpicGames.UHT/EpicGames.UHT.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/Shared/EpicGames.UHT/EpicGames.UHT.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.UHT/EpicGames.UHT.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/Shared/EpicGames.UHT/EpicGames.UHT.csproj" }, "Gauntlet.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/Gauntlet/Gauntlet.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/Gauntlet/Gauntlet.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/Gauntlet/Gauntlet.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/Gauntlet/Gauntlet.Automation.csproj" }, "Localization.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/Localization/Localization.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/Localization/Localization.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/Localization/Localization.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/Localization/Localization.Automation.csproj" }, "OneSkyLocalization.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/OneSkyLocalization/OneSkyLocalization.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/OneSkyLocalization/OneSkyLocalization.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/OneSkyLocalization/OneSkyLocalization.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/OneSkyLocalization/OneSkyLocalization.Automation.csproj" }, "UnrealBuildTool/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/UnrealBuildTool/UnrealBuildTool.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/UnrealBuildTool/UnrealBuildTool.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/UnrealBuildTool/UnrealBuildTool.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/UnrealBuildTool/UnrealBuildTool.csproj" }, "XLocLocalization.Automation/1.0.0": { "type": "project", - "path": "../../../../../Engine/Source/Programs/AutomationTool/XLocLocalization/XLocLocalization.Automation.csproj", - "msbuildProject": "../../../../../Engine/Source/Programs/AutomationTool/XLocLocalization/XLocLocalization.Automation.csproj" + "path": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/XLocLocalization/XLocLocalization.Automation.csproj", + "msbuildProject": "../../../../Games/UE_5.5/Engine/Source/Programs/AutomationTool/XLocLocalization/XLocLocalization.Automation.csproj" } }, "projectFileDependencyGroups": { @@ -6930,55 +7564,62 @@ ] }, "packageFolders": { - "C:\\Users\\horde-agent\\.nuget\\packages\\": {} + "C:\\Users\\Goran\\.nuget\\packages\\": {}, + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj", + "projectUniqueName": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj", "projectName": "Lyra.Automation", - "projectPath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj", - "packagesPath": "C:\\Users\\horde-agent\\.nuget\\packages\\", - "outputPath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\obj\\", + "projectPath": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj", + "packagesPath": "C:\\Users\\Goran\\.nuget\\packages\\", + "outputPath": "E:\\Projects\\cross_platform\\Build\\Scripts\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\horde-agent\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\Goran\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net8.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", "privateAssets": "all" }, - "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { - "projectPath": "D:\\build\\++UE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj" + "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj": { + "projectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj" } } } @@ -7014,7 +7655,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "D:\\build\\++UE5\\Sync\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "E:\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" } } } diff --git a/Build/Scripts/obj/project.nuget.cache b/Build/Scripts/obj/project.nuget.cache index 910a2e43..ba0ee393 100644 --- a/Build/Scripts/obj/project.nuget.cache +++ b/Build/Scripts/obj/project.nuget.cache @@ -1,131 +1,130 @@ { "version": 2, - "dgSpecHash": "t8NFshUGdVM=", + "dgSpecHash": "HC+iOZf1l6Y=", "success": true, - "projectFilePath": "D:\\build\\++UE5\\Sync\\Samples\\Games\\Lyra\\Build\\Scripts\\Lyra.Automation.csproj", + "projectFilePath": "E:\\Projects\\cross_platform\\Build\\Scripts\\Lyra.Automation.csproj", "expectedPackageFiles": [ - "C:\\Users\\horde-agent\\.nuget\\packages\\bitfaster.caching\\2.4.1\\bitfaster.caching.2.4.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\blake3\\0.6.1\\blake3.0.6.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\dapper\\2.1.24\\dapper.2.1.24.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\grpc.core.api\\2.59.0\\grpc.core.api.2.59.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\grpc.net.client\\2.59.0\\grpc.net.client.2.59.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\grpc.net.common\\2.59.0\\grpc.net.common.2.59.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\identitymodel\\5.1.0\\identitymodel.5.1.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\identitymodel.oidcclient\\4.0.0\\identitymodel.oidcclient.4.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\jetbrains.annotations\\2022.1.0\\jetbrains.annotations.2022.1.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\k4os.compression.lz4\\1.2.16\\k4os.compression.lz4.1.2.16.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.common\\4.2.0\\microsoft.codeanalysis.common.4.2.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.2.0\\microsoft.codeanalysis.csharp.4.2.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.data.sqlite\\8.0.0\\microsoft.data.sqlite.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.0\\microsoft.data.sqlite.core.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.2\\microsoft.extensions.caching.memory.6.0.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\6.0.0\\microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.configuration.json\\6.0.0\\microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\6.0.0\\microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\6.0.0\\microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\6.0.0\\microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.http\\6.0.0\\microsoft.extensions.http.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.http.polly\\6.0.26\\microsoft.extensions.http.polly.6.0.26.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.4\\microsoft.extensions.logging.abstractions.6.0.4.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.configuration\\6.0.0\\microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.logging.console\\6.0.0\\microsoft.extensions.logging.console.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.8\\microsoft.extensions.objectpool.6.0.8.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\6.0.0\\microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\opentracing\\0.12.1\\opentracing.0.12.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\polly\\7.2.2\\polly.7.2.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.eventlog\\4.7.0\\system.diagnostics.eventlog.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.drawing.common\\4.7.3\\system.drawing.common.4.7.3.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.management\\4.7.0\\system.management.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.metadataloadcontext\\4.7.2\\system.reflection.metadataloadcontext.4.7.2.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.serviceprocess.servicecontroller\\4.7.0\\system.serviceprocess.servicecontroller.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.text.encodings.web\\5.0.1\\system.text.encodings.web.5.0.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", - "C:\\Users\\horde-agent\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512" + "C:\\Users\\Goran\\.nuget\\packages\\bitfaster.caching\\2.4.1\\bitfaster.caching.2.4.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\blake3\\1.1.0\\blake3.1.1.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\dapper\\2.1.24\\dapper.2.1.24.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\grpc.core.api\\2.59.0\\grpc.core.api.2.59.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\grpc.net.client\\2.59.0\\grpc.net.client.2.59.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\grpc.net.common\\2.59.0\\grpc.net.common.2.59.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\identitymodel\\7.0.0\\identitymodel.7.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\identitymodel.oidcclient\\6.0.0\\identitymodel.oidcclient.6.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\jetbrains.annotations\\2024.3.0\\jetbrains.annotations.2024.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\k4os.compression.lz4\\1.2.16\\k4os.compression.lz4.1.2.16.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.common\\4.11.0\\microsoft.codeanalysis.common.4.11.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.11.0\\microsoft.codeanalysis.csharp.4.11.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.data.sqlite\\8.0.10\\microsoft.data.sqlite.8.0.10.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.10\\microsoft.data.sqlite.core.8.0.10.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.2\\microsoft.extensions.configuration.binder.8.0.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.1\\microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.1\\microsoft.extensions.configuration.json.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.diagnostics\\8.0.1\\microsoft.extensions.diagnostics.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.1\\microsoft.extensions.diagnostics.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.http\\8.0.1\\microsoft.extensions.http.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.http.polly\\8.0.10\\microsoft.extensions.http.polly.8.0.10.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.configuration\\8.0.1\\microsoft.extensions.logging.configuration.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.console\\8.0.1\\microsoft.extensions.logging.console.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.objectpool\\8.0.10\\microsoft.extensions.objectpool.8.0.10.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\8.0.0\\microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.visualstudio.setup.configuration.interop\\3.11.2177\\microsoft.visualstudio.setup.configuration.interop.3.11.2177.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\opentracing\\0.12.1\\opentracing.0.12.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\polly\\7.2.4\\polly.7.2.4.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\polly.extensions.http\\3.0.0\\polly.extensions.http.3.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.collections.immutable\\8.0.0\\system.collections.immutable.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.drawing.common\\4.7.3\\system.drawing.common.4.7.3.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.reflection.metadata\\8.0.0\\system.reflection.metadata.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.reflection.metadataloadcontext\\8.0.1\\system.reflection.metadataloadcontext.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.serviceprocess.servicecontroller\\8.0.1\\system.serviceprocess.servicecontroller.8.0.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.text.json\\8.0.5\\system.text.json.8.0.5.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\Goran\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.dll b/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.dll new file mode 100644 index 00000000..7f5dd071 --- /dev/null +++ b/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16efacaf82219a4cb306ef9fd110880950aef000adfcfa450d0d8a0e81773a21 +size 16384 diff --git a/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.pdb b/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.pdb new file mode 100644 index 00000000..76d8d07f --- /dev/null +++ b/Intermediate/Build/BuildRules/LyraStarterGameModuleRules.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89dd195818f115a51d6b7c1baf501270d5c775bb17c2aec164544cf44849609 +size 54784 diff --git a/Intermediate/Build/BuildRules/LyraStarterGameModuleRulesManifest.json b/Intermediate/Build/BuildRules/LyraStarterGameModuleRulesManifest.json new file mode 100644 index 00000000..5e66245e --- /dev/null +++ b/Intermediate/Build/BuildRules/LyraStarterGameModuleRulesManifest.json @@ -0,0 +1,29 @@ +{ + "SourceFiles": [ + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\LyraEditor.Build.cs", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\LyraGame.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\AsyncMixin\\Source\\AsyncMixin.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\CommonGame.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\CommonLoadingScreen.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonStartupLoadingScreen\\CommonStartupLoadingScreen.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\CommonUser.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\ShooterCoreRuntime.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime\\ShooterTestsRuntime.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\TopDownArenaRuntime.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageNodes\\GameplayMessageNodes.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\GameplayMessageRuntime.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\GameSettings.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\GameSubtitles.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Source\\LyraExtTool\\LyraExtTool.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\ModularGameplayActors.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\PocketWorlds.Build.cs", + "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\UIExtension.Build.cs", + "E:\\Projects\\cross_platform\\Source\\LyraClient.Target.cs", + "E:\\Projects\\cross_platform\\Source\\LyraEditor.Target.cs", + "E:\\Projects\\cross_platform\\Source\\LyraGame.Target.cs", + "E:\\Projects\\cross_platform\\Source\\LyraGameEOS.Target.cs", + "E:\\Projects\\cross_platform\\Source\\LyraServer.Target.cs", + "E:\\Projects\\cross_platform\\Source\\LyraServerEOS.Target.cs" + ], + "EngineVersion": "5.5.4" +} \ No newline at end of file diff --git a/Intermediate/Build/Manifest-1-LyraEditor-Win64-Development.xml b/Intermediate/Build/Manifest-1-LyraEditor-Win64-Development.xml new file mode 100644 index 00000000..3a82217a Binary files /dev/null and b/Intermediate/Build/Manifest-1-LyraEditor-Win64-Development.xml differ diff --git a/Intermediate/Build/SourceFileCache.bin b/Intermediate/Build/SourceFileCache.bin new file mode 100644 index 00000000..c9e25e1d Binary files /dev/null and b/Intermediate/Build/SourceFileCache.bin differ diff --git a/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.deps b/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.deps new file mode 100644 index 00000000..e69de29b diff --git a/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtmanifest b/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtmanifest new file mode 100644 index 00000000..f88369e5 --- /dev/null +++ b/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtmanifest @@ -0,0 +1,20345 @@ +{ + "IsGameTarget": true, + "RootLocalPath": "E:\\Games\\UE_5.5", + "TargetName": "LyraEditor", + "ExternalDependenciesFile": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\LyraEditor\\Development\\LyraEditor.deps", + "Modules": [ + { + "Name": "Engine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Engine\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\AISystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\NavigationSystemConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\NavigationSystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAgentSelector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\AvoidanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavCollisionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavDataGatheringMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataResolution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavEdgeProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAreaBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataChunk.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationInvokerPriority.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationInvokerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationAvoidanceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavPathObserverInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\PathFollowingAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavRelevantInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavLinkDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AimOffsetBlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AimOffsetBlendSpace1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationAssetExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBoneCompressionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationRecordingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBoneCompressionCodec.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveEverySecondKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_BitwiseCompressOnly.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_LeastDestructive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimComposite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveTrivialKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_UniformlySampled.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_PerTrackCompression.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimLayerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_CompressedRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_UniformIndexable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimInertializationRequest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompositeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimClassInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveLinearKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeFunctionRef.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeSpaceConversions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_ApplyMeshSpaceAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimExecutionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimLinkableElement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_AssetPlayerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_RelevantAssetPlayerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedAnimLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_Root.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedInputPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_SaveCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_CustomProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedAnimGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_DeadBlending.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_TransitionResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_Inertialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_TransitionPoseEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_SequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_UseCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSlotEvaluationPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_StateMachine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AssetMappingTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSingleNodeInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSequenceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendSpace1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimStreamable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MeshDeformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimStateMachineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AttributeCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MeshDeformerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\CurveSourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\SkeletalMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\CustomAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\VariableFrameStrippingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MirrorDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BuiltInAttributeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\InputScaleBias.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MorphTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\PreviewAssetAttachComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\BoneMaskFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AnimDataModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_DisableRootMotion.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AttributeIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_TimedParticleEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\SmartName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PauseClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\CurveIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\PoseAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_Trail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PlaySound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\TimeStretchCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResetClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AnimDataNotifications.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResumeClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PlayParticleEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResetDynamics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\IAnimationDataModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Atmosphere\\AtmosphericFog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\Skeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Atmosphere\\AtmosphericFogComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Audio\\ActorSoundParameterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\IAnimationDataController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraLensEffectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeSourceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraStackTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraModifier_CameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\SmokeTestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\PluginCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\Commandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ArrowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\PlayerCameraManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoxReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoxComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BrushComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoundsCopyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ApplicationLifecycleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DrawSphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DrawFrustumComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BillboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ForceFeedbackComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\HeterogeneousVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\CapsuleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DecalComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LocalLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightmassPortalComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ChildActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ExponentialHeightFogComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlaneReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\MaterialBillboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LineBatchComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\HierarchicalInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PawnNoiseEmitterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LocalFogVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PoseableMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlatformEventsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InterpToMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LODSyncComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DirectionalLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PostProcessComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightComponentBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PointLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlanarReflectionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\MeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ModelComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\RectLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponentCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SphereReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponent2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\RuntimeVirtualTextureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveEdPresetCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\AudioComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SpotLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\VectorFieldComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\WorldPartitionStreamingSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ShapeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\WindDirectionalSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\TextRenderComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkyLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveLinearColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkyAtmosphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\StereoLayerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\IndexedCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\VolumetricCloudComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveLinearColorAtlas.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SplineMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\DebugDrawService.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DataDrivenCVars\\DataDrivenCVars.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\DebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\IntegralCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\KeyHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\ReporterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\NameCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\StringCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatParticleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\Distribution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatConstantCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\SimpleCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\RealCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatUniform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorParticleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatUniformCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileMatching.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\ReporterGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\TimelineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorUniform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorUniformCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphNode_Documentation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EditorFramework\\ThumbnailInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorConstantCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\RichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorInstanceManagerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AutoDestroySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EditorFramework\\AssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManagerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookMark2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookMark.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BoxReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlueprintCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookmarkBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BrushShape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Attenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorInstanceHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CancellableAsyncAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlendableInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ChildConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManagerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BrushBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CompositeCurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CanvasRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CompositeDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ComponentDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\StaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Brush.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ControlChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraHUD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CullDistanceVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Channel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkinnedMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DataAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CloudStorageBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraControllerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugDisplayProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DamageEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoPendingNetGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DirectionalLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DecalActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphPin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CoreSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Console.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CollisionProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DynamicBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DPICustomScalingRule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ExponentialHeightFog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DocumentationActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Canvas.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkeletalMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GeneratedMeshAreaLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PrimitiveComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameEngine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputAxisKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ImportantToggleSettingInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InGameAdManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\FontImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputVectorAxisDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\FontFace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\HLODProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputActionDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GeneratedBlueprintDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineBaseTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputAxisDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelActorContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InheritableComponentHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Font.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InterpCurveEdSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputTouchDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\IntSerialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelScriptActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingPersistent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelScriptBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\HitResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MeshMergeCullingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingAlwaysLoaded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LatentActionManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NavigationObjectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LocalFogVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LightMapTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MicroTransactionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Light.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ObjectReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetworkSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\OverlapResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Note.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MaterialMerging.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlayerStartPIE.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlanarReflection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PointLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlaneReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ObjectLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Player.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NeuralProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PendingNetGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LODActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlatformInterfaceWebResponse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MapBuildDataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PreviewMeshCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MemberReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlatformInterfaceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PostProcessVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PrimaryAssetLabel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RectLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ProxyLODMeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ScriptViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCapture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetSerialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PoseWatch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RuntimeOptionsBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LocalPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCaptureCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Level.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ShadowMapTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReplicationDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PackageMapClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReplicatedState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SoftWorldReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Polys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshLODSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkyLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpecularProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Engine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpotLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ServerStatReplicator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SplineMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SimpleConstructionScript.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSourceModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SCS_Node.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SphereReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSampling.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TargetPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkinnedAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpringInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2DDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RendererSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextRenderActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SplineMeshComponentDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SystemTimeTimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshSourceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkinnedAssetCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureAllMipDataProviderFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureLightProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StreamableRenderAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerCapsule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCubeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimerHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SubsurfaceProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureMipDataProviderFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TwitterIntegrationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ViewportSplitScreen.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\UserDefinedEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\WindDirectionalSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\VoiceChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimelineTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Scene.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CameraBlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ViewportStatsSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureLODSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\AsyncActionHandleSaveGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTargetVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTargetCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\VolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureStreamingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\WorldComposition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\UserInterfaceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DamageType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DebugTextInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Exporters\\Exporter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DefaultPhysicsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\EngineMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Controller.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\FloatingPawnMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DefaultPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Info.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\KillZVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CharacterMovementReplication.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameStateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDevicePropertyHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CheatManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Character.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameNetworkManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameSession.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\OnlineSession.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameModeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\HUD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PhysicsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PainCausingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LocalMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceStaticMeshManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerStart.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PawnMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\NavMovementInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\RotatingMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\OnlineReplStructs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpectatorPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\NavMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpectatorPawnMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerMuteList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Volume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Buffer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\MovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Curve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_SoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_AsyncCompilation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\UpdateLevelVisibilityLevelInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpringArmComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\TouchInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_AssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_ActorSubobject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_PostProcessVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Intrinsic\\Model.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_BoneReferenceSkeletonProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_PreviewMeshProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_CollisionDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\IPhysicsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SaveGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ProjectileMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintAsyncActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetGuidLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintInstancedStructLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Pawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\NetworkPredictionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetMaterialLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintPlatformLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\ImportanceSamplingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\RootMotionSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetStringTableLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\GameplayStaticsTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetInternationalizationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\DataTableFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetNodeHelperLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintMapLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintSetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetInputLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Layers\\Layer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintPathsLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\WorldSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetRenderingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmappedSurfaceCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassPortal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassCharacterIndirectDetailVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassImportanceVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\PrecomputedVisibilityVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PacketHandlers\\EngineHandlerComponentFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassPrimitiveSettingsObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetTextLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetStringLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\MeshVertexPainter\\MeshVertexPainterKismetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\MeshVertexPainter\\MeshVertexPainter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\PrecomputedVisibilityOverrideVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetArrayLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\VolumetricLightmapDensityVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CharacterMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\World.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\GameplayStatics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleEventManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\EmitterCameraLensEffectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Emitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleLODLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetSystemLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSpriteEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleModule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemReplay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleModuleRequired.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\WorldPSCPool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUVAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAcceleration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationDrag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetMathLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationDragScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorLine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Camera\\ParticleModuleCameraBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Camera\\ParticleModuleCameraOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollisionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorParticle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorPointGravity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventSendToGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColor_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollisionGPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverKillParticles.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetime_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLightBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverSpawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillHeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetimeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationDirect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLight_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationEmitterDirect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveCylinder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Material\\ParticleModuleMaterialBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveCylinder_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orbit\\ParticleModuleOrbitBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Material\\ParticleModuleMeshMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orientation\\ParticleModuleOrientationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationBoneSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationWorldOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orientation\\ParticleModuleOrientationAxisLock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationWorldOffset_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleMeshRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterDynamic_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleMeshRotation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveSphere_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleSourceMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveTriangle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Modules\\Location\\ParticleModulePivotOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRate_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orbit\\ParticleModuleOrbit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUVBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRateMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRateOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotationOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRate_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRateMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationSkelVertSurface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUVMovie.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawnBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSize_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataAnimTrail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeScaleBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawnPerUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Trail\\ParticleModuleTrailBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataRibbon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldGlobal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ChaosBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Trail\\ParticleModuleTrailSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataBeam2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicalMaterials\\PhysicalMaterialMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocity_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionReplicatedProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataGpu.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BoxElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityInheritParent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsCollisionHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ExternalSpatialAccelerationPayload.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintDrives.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\LevelSetElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\AggregateGeom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConvexElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsObjectBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsThruster.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicalAnimationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsThrusterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RigidBodyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsHandleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RadialForceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RadialForceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsSpringComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SkeletalBodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SkinnedLevelSetElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintInstanceBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ShapeElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\ButtonStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\CheckboxStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SphylElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BodyInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\SlateBrushAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SphereElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\TaperedCapsuleElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AmbientSound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioOutputTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueSoundWaveProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsField\\PhysicsFieldComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\ReverbEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueVoice.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundAttenuationEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\ReverbSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundConcurrency.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\QuartzQuantizationUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundGroups.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundCue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeBranch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeAssetReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectSubmix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeConcatenator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundMix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDialoguePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundModulationDestination.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDoppler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDistanceCrossFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeGroupControl.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeEnveloper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeLooping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeModulator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeMixer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeModulatorContinuous.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeOscillator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeQualityLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeMature.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeParamCrossFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeSoundClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeWaveParam.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeWavePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSourceBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundTimecodeOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSourceBusSend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSubmixSend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveLoadingBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Tests\\TextPropertyTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveTimecodeInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveProcedural.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\StreamedAudioChunkSeekTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Vehicles\\TireType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSubmix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VisualLogger\\VisualLoggerAutomationTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldAnimated.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VisualLogger\\VisualLoggerKismetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldStatic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\MeshPaintVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\LightmapVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Tests\\AutomationTestSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\RuntimeVirtualTextureVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\RuntimeVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureBuildSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\SparseVolumeTexture\\SparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTexturePoolConfig.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorFolder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActiveSoundUpdateInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AlphaBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AssetCompilingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AssetExportTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AudioEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ComponentInstanceDataCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DeformableInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\CanvasTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\CharacterMovementComponentAsync.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DestructibleInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DeletedObjectPlaceholder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\IAssetRegistryTagProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HitProxies.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\IViewportSelectableObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LocationVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LegacyScreenPercentageDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LODSyncInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialSceneTextureId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialCachedData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshDrawCommandStatsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshReductionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshBudgetProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshUVChannelInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ObjectTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PerQualityLevelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PluginBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplayNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\RepMovementNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialShared.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplaySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ParticleHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplayTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneViewExtensionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SingleAnimationPlayData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\StaticMeshComponentLODInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SkeletalMeshMerge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SkeletalMeshReductionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\StaticParameterSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\TextureEncodingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ShaderCompiler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorPartition\\PartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AI\\RVOAvoidanceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\ActiveStateMachineScope.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorPartition\\ActorPartitionSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNode_StateResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCurveMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNodeConstantData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCompressionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyStateMachineInspectionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystemInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyMirrorInspectionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNodeData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_NodeRelevancy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_Tag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCurveTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSingleNodeInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyQueue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_SharedLinkedAnimLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\BoneReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\MotionTrajectoryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\PoseSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\NodeMappingProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\PreviewCollectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\AudioPanelWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\CachedAnimDataLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\NodeMappingContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\CachedAnimData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundSubmixWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\AudioWidgetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\ExposedValueHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimPhysicsSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkeletalMeshVertexAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\BoneSocketReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Blueprint\\BlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundEffectPresetWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkinWeightProfileManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundParameterControllerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Engine\\HitResultNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODBatchingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementPrimitiveCustomDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\FieldNotification\\FieldNotificationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\UniqueNetIdReplNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\CharacterNetworkSerializationPackedBitsNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Framework\\TypedElementCommonActions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Framework\\EngineElementsLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\PlayerStateCountLimiterConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODProxyMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\RootMotionSourceGroupNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODLevelExclusion.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Instances\\InstancedPlacementPartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODProxyDesc.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Internationalization\\StringTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Interfaces\\TypedElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMComponentData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Instances\\InstancedPlacementClientInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstancePropertyOverridePolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkinWeightProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorPivotActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMComponentDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAntialiasedTextureMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAbsorptionMediumMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorPivotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAbs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArccosineFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent2Fast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArccosine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstancePropertyOverrideAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAppendVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArcsineFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericFogColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAdd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBinaryOp.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionChannelMaskParameterColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangentFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBindlessSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArcsine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericLightVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionActorPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBlackBody.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericLightColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCeil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCloudLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBentNormalCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionClamp.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionClearCoatNormalCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCameraPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant4Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCrossProduct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComposite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBlendMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant3Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCameraVectorWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCurveAtlasRowParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCosine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCollectionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant2Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionChannelMaskParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpression.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDataDrivenShaderPlatformInfoSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\Material.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDDX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDDY.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBumpOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstantBiasScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalLifetimeOpacity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComponentMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDepthFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDesaturation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDeltaTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDepthOfFieldFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBreakMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCustom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceCullFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalDerivative.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalMipmapLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldGradient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceToNearestSurface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDBufferTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldsRenderingSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDynamicParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExecBegin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldApproxAO.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExponential.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDeriveNormalZ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDivide.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDoubleVectorParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFeatureLevelSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExponential2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDotProduct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFmod.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSignedDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFloatToUInt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFresnel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionEyeAdaptationInverse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFunctionOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionEyeAdaptation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFirstPersonOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGIReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGenericConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFrac.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGetLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionForLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFloor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHairColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIfThenElse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIf.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMapARPassthroughCameraUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLinearInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGetMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLength.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightmassReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExecEnd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMax.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIsOrthographic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFunctionInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightmapUVs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionInverseLinearInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHsvToRgb.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHairAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMakeMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm10.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialAttributeLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLocalPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialProxyReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNeuralPostProcessNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionModulo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureCoordinateIndex.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialLayerOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectRadius.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMultiply.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialFunctionCall.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectOrientation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNamedReroute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPanner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNormalize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectLocalBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleMacroUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNaniteReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionOneMinus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRelativeTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleMotionBlurFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingBufferTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingRayTypeSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSpriteRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticlePositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPixelNormalWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedNormal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRadius.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPixelDepth.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSubUVProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPower.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedLocalBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPinBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceCustomData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPrecomputedAOMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRotateAboutAxis.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReflectionCapturePassSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPostVolumeUserFlagTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRayTracingQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceFadeAmount.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreviousFrameSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRotator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSaturate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReroute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionScalarParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneDepthWithoutWater.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRequiredSamplersSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRgbToHsv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionScreenPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadingModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShaderStageSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneDepth.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSamplePhysicsField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereLightDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSetMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSphericalParticleOpacity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSetLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReflectionVectorWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRerouteBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticBool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyLightEnvMapSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadingPathSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSpeedTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticBoolParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadowReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereViewLuminance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSobol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneTexelSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSRGBColorToWorkingColorSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubtract.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSingleLayerWaterMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereLightIlluminance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSign.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSmoothStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticComponentMaskParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubsurfaceMediumMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSphereMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTangentOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSquareRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticSwitchParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObjectParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTangent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCoordinate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCollectionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTemporalSobol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObjectFromCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionThinTranslucentMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTruncateLWC.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTruncate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterCubeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVectorParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTwoSidedSign.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionUserSceneTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexTangentWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTransformPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexNormalWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionViewSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVolumetricAdvancedMaterialInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVectorNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionMaterialLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionViewProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubstrate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVirtualTextureFeatureSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionWhileLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionMaterialLayerBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionWorldPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceBasePropertyOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVolumetricAdvancedMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialOverrideNanite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshInstancingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialParameterCollectionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetworkMetricsConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\OnlineBlueprintCallProxyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetPushModelHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetConnectionFaultRecovery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\BandwidthTestActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\ReplayResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshMergingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialLayersFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshProxySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetworkMetricsDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\AsyncPhysicsInputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\AsyncPhysicsData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\NetSubObjectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Subsystems\\NetworkSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PackedLevelActor\\PackedLevelActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\OnlineEngineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\VoiceConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshApproximationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetPing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\NetActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\EngineReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\ChaosEventRelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\ChaosEventType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\PhysicsThreadLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\NetworkPhysicsSettingsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\RPCDoSDetection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ProfilingDebugging\\HealthSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ProfilingDebugging\\LevelStreamingProfilingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Slate\\SlateTextureAtlasInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\NetworkPhysicsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\StreamingWorldSubsystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\ServerStreamingLevelsVisibility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\ActorTextureStreamingBuildDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\EngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\SubsystemBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VisualLogger\\VisualLoggerFilterVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\AudioEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\WorldSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Slate\\SGameLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VT\\RuntimeVirtualTextureEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\GameInstanceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\Subsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\ActorLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\AnimInstanceLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\AssetLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\LocalPlayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\UniversalObjectLocatorScriptingExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VisualLogger\\VisualLoggerDebugSnapshotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\IWorldPartitionObjectResolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorLoaderAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionActorContainerID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionActorLoaderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionLevelStreamingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionReplay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformerLog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeContainerResolving.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionPropertyOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionLevelStreamingDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformerISM.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorPerProjectUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionMiniMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionMiniMapVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellDataSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeSpatialHashGridPreviewer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleStatus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeLevelStreamingCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleTypeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionStreamingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstancePrivate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ActorDataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerUID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerLoadingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionStreamingSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerInjectionPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceWithAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DeprecatedDataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleWorldSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\Cook\\WorldPartitionCookPackageInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODDestruction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\DestructibleHLODComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActorsFromCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\Filter\\WorldPartitionActorFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\WorldDataLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceNames.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActorsFromLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\WorldPartitionRuntimeCellDataHashSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\NavigationData\\NavigationDataChunkActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionLHGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\LevelInstance\\LevelInstanceContainerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionPersistent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODRuntimeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\StaticLightingData\\MapBuildDataActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\StaticLightingData\\VolumetricLightmapGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\WorldPartitionRuntimeHashSet.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Internal\\Materials\\MaterialExpressionMaterialSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Internal\\Kismet\\BlueprintTypeConversions.h" + ], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\DebugGarbageCollectionGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\AsyncActionLoadPrimaryAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Animation\\AnimBlueprintClassSubsystem_PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\TextureEncodingSettingsPrivate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\GameFramework\\InternalUniqueNetIdReplNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Components\\SkeletalMeshComponentInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\LevelInstanceEditorObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\Test\\LevelInstancePropertyOverrideSamplePolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\LevelInstanceEditorPropertyOverrideLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Net\\Experimental\\Iris\\DataStreamChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Net\\RPCDoSDetectionConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\PieFixupTestObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\TransactionDiffingTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestAnotherActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestBodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestChildActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestPrimitiveComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\Loading\\AsyncLoadingTests_ConvertFromType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\Loading\\AsyncLoadingTests_Shared.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\WorldPartition\\LevelInstance\\LevelInstancePropertyOverrideContainer.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1", + "GPUPARTICLE_LOCAL_VF_ONLY=0", + "WITH_ODSC=0", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Engine\\UHT\\Engine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PacketHandler", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PacketHandler\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler\\Classes\\HandlerComponentFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler\\Classes\\PacketHandlerProfileConfig.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PacketHandler\\UHT\\PacketHandler.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CoreOnline", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CoreOnline\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline\\Public\\Online\\CoreOnline.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline\\Private\\Online\\CoreOnlinePrivate.h" + ], + "PublicDefines": [ + "PLATFORM_MAX_LOCAL_PLAYERS=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CoreOnline\\UHT\\CoreOnline.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Renderer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Renderer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Renderer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Renderer\\Private\\SparseVolumeTexture\\SparseVolumeTextureViewerComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Renderer\\UHT\\Renderer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MaterialShaderQualitySettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MSQS\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings\\Classes\\MaterialShaderQualitySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings\\Classes\\ShaderPlatformQualitySettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MSQS\\UHT\\MaterialShaderQualitySettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationMessages\\Public\\AutomationWorkerMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationMessages\\UHT\\AutomationMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationTest", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationTest", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationTest\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationTest\\Public\\AutomationState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationTest\\Public\\AutomationTestPlatform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AutomationTest\\Public\\AutomationTestExcludelist.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationTest\\UHT\\AutomationTest.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TextureUtilitiesCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TextureUtilitiesCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon\\Public\\TextureImportSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon\\Public\\TextureImportUserSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TextureUtilitiesCommon\\UHT\\TextureUtilitiesCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LevelSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceCameraSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceBindingReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\AnimSequenceLevelSequenceLink.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\DefaultLevelSequenceInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\SequenceMediaController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceBurnIn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceLegacyObjectReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceAnimSequenceLink.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequence.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Private\\LevelSequenceProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Private\\LegacyLazyObjectPtrFragment.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelSequence\\UHT\\LevelSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieSceneTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneTracks\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\MovieSceneTracksComponentTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneSpawnableDirectorBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneFloatPerlinNoiseChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneSpawnableActorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneDoublePerlinNoiseChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneEventChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneFloatPerlinNoiseChannelContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Evaluation\\MovieSceneParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneDoublePerlinNoiseChannelContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneCameraShakeSourceTriggerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Evaluation\\MovieSceneBaseCacheTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DAttachSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneByteSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSourceTriggerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DConstraintSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneConstrainedSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneConsoleVariableTrackInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSourceShakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneColorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneReplaceableActorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCinematicShotSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneReplaceableDirectorBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneBaseCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieSceneScalabilityCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DPathSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraCutSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneStringChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DTransformSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\EntitySystem\\Interrogation\\MovieSceneInterrogatedPropertyInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCustomPrimitiveDataSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCVarSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieSceneDirectorBlueprintCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneActorReferenceSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieScenePlatformCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneComponentMaterialParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneAudioSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneDataLayerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneDoubleSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEnumSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventRepeaterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventTriggerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventSectionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneIntegerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneObjectPropertySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneFadeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneFloatSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneLevelVisibilitySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScenePrimitiveMaterialSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneParticleSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneRotatorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneSlomoSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneStringSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneVisibilitySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\ByteChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneSkeletalAnimationSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\BoolChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneVectorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBoolPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBaseValueEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\FloatPerlinNoiseChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneColorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\DoublePerlinNoiseChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\FloatChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScene3DTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBytePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentAttachmentSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\IntegerChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\DoubleChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneConstraintSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneDoublePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneCameraShakeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentMobilitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentTransformSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneCustomPrimitiveDataSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneDeferredComponentMovementSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneIntegerPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneObjectPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneFloatPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEventSystems.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEulerTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneInitialValueSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEnumPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseBoolBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialParameterCollectionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneHierarchicalBiasSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseByteBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneQuaternionBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMotionVectorSimulationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneRotatorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseIntegerBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseEnumBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseDoubleBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneTransformOriginSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneVectorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneVisibilitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\TrackInstances\\MovieSceneCameraCutTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneQuaternionInterpolationRotationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePropertyInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DAttachTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneStringPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialParameterSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePredictionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneActorReferenceTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\ObjectPathChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DPathTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneSkeletalAnimationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\StringChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tests\\MovieSceneTestDataBuilders.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\IMovieSceneTransformOrigin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\WeightAndEasingEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneByteTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneBoolTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\IMovieSceneSectionsToKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DConstraintTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneAudioTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneColorTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraCutTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCinematicShotTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeSourceShakeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeSourceTriggerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneDoubleTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCVarTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEnumTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneDataLayerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEulerTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneIntegerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneFadeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneFloatTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCustomPrimitiveDataTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneLevelVisibilityTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEventTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneParticleParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneParticleTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneMaterialParameterCollectionTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneObjectPropertyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScenePrimitiveMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneRotatorTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneVectorTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneStringTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneSlomoTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneVisibilityTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneSkeletalAnimationTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScenePropertyTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieScene3DPathTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneParticleParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneActorReferenceTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneEventTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieScenePropertyTemplates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Tests\\MovieSceneDecomposerTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneParticleTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Tests\\MovieScenePartialEvaluationTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneFadeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneSlomoSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneDataLayerSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\TrackInstances\\MovieSceneCVarTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneAudioSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneLevelVisibilitySystem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneTracks\\UHT\\MovieSceneTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "JsonObjectGraph", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\JsonObjectGraph", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\JsonObjectGraph\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\JsonObjectGraph\\Public\\JsonObjectGraph\\Stringify.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\JsonObjectGraph\\UHT\\JsonObjectGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AIModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AIModule\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIResources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIResourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AISubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DetourCrowdAIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AISystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\GenericTeamAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\GridPathAIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\VisualLoggerExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AITypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnActionsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Move.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Repeat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Wait.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTCompositeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTAuxiliaryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardAssetProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Bool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Float.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Class.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Int.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Rotator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Object.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_NativeEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Name.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Enum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTTaskNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTService.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\ValueOrBBKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_String.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Blackboard.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_CheckGameplayTagsOnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_CompareBBEntries.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ForceSuccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_IsAtLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Struct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_SimpleParallel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_Selector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ConditionalLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_IsBBEntryOfClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Cooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_DoesPathExist.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Loop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ConeCheck.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_KeepInCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ReachedMoveGoal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_SetTagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_TimeLimit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_TagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_RunEQS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_DefaultFocus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_GameplayTaskBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MoveDirectlyToward.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_FinishWithResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MakeNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PawnActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PlayAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PlaySound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RotateToFaceBBEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunEQSQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MoveTo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PushPawnAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunBehaviorDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_SetTagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Blueprint\\AIAsyncTaskBlueprintProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_Wait.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_WaitBlackboardTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryOption.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider_QueryParams.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Blueprint\\AIBlueprintHelperLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSQueryResultSourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_Item.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_Querier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryInstanceBlueprintWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryDebugHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSTestingPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_CurrentLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Cone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Composite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_ActorsOfClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Donut.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_OnCircle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_PerceivedActors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_PathingGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_SimpleGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_ProjectedPoints.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_ActorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Direction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Point.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_VectorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Distance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Dot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_PathfindingBatch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_GameplayTags.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Project.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\HotSpots\\AIHotSpotManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Pathfinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Overlap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Volume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\GeneratedNavLinksProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavFilter_AIControllerDefault.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\GridPathFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\PathFollowingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavLocalGridManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionListenerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavLinkProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionStimuliSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\PathFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseBlueprintListener.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\RecastGraphAStar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Prediction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Team.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Touch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Sight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Team.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Touch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISightTargetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Prediction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_LockLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_RunEQS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Sight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\PawnSensingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_MoveTo.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Public\\SequentialID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Public\\IndexedHandle.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Private\\BehaviorTree\\ValueOrBBKeyBlueprintUtility.h" + ], + "PublicDefines": [ + "WITH_RECAST=1", + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AIModule\\UHT\\AIModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTasks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTasks\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_ClaimResource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTaskResource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_TimeLimitedExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_SpawnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_WaitDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTasksComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTaskOwnerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTask.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTasks\\UHT\\GameplayTasks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTags", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTags\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagAssetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\BlueprintGameplayTagLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagsManager.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagRedirectors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagContainerNetSerializer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Private\\InternalGameplayTagContainerNetSerializer.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTags\\UHT\\GameplayTags.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayDebugger", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayDebugger\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerPlayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerLocalController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerCategoryReplicator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayDebugger\\Public\\GameplayDebuggerTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "UE_WITH_IRIS=1", + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayDebugger\\UHT\\GameplayDebugger.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NavigationSystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NavigationSystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationPathGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\CrowdManagerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\BaseGeneratedNavLinksProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationInvokerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkTrivial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationPath.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkHostInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavModifierComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavNodeInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationTestingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkCustomInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavModifierVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavSystemConfigOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavFilters\\RecastFilter_UseDefaultArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\AbstractNavData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraphNodeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\LinkGenerationDebugFlags.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavAreaMeta_SwitchByAgent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Default.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\SplineNavModifierComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkCustomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_LowHeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavAreaMeta.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Obstacle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavTestRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavFilters\\NavigationQueryFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\LinkGenerationConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\RecastNavMeshDataChunk.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavRelevantComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Null.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavMeshBoundsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavMeshRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\RecastNavMesh.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Private\\NavigationObjectRepository.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1", + "WITH_RECAST=1", + "WITH_NAVMESH_SEGMENT_LINKS=1", + "WITH_NAVMESH_CLUSTER_LINKS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NavigationSystem\\UHT\\NavigationSystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MoviePlayer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MoviePlayer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer\\Public\\MoviePlayerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer\\Public\\MoviePlayer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MoviePlayer\\UHT\\MoviePlayer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AdvancedWidgets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AdvancedWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets\\Public\\Styling\\ColorGradingSpinBoxStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets\\Public\\Components\\RadialSlider.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AdvancedWidgets\\UHT\\AdvancedWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Constraints", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Constraints\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsScripting.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\TransformConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\TransformableHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Private\\ConstraintSubsystem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Constraints\\UHT\\Constraints.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages\\Public\\TraceControlMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages\\Public\\EngineServiceMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineMessages\\UHT\\EngineMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieSceneCapture", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneCapture\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\IMovieSceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\LevelCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureEnvironment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\FrameGrabberProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\CompositionGraphCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\AudioCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureProtocolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\VideoCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\ImageSequenceProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\UserDefinedCaptureProtocol.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneCapture\\UHT\\MovieSceneCapture.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Landscape", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Landscape\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoRenderComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeInfoMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ControlPointMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeLayerInfoObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ILandscapeSplineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ControlPointMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeEditLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGrassType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMaterialInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineMeshesActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeGrassOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoActiveActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeNaniteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Landscape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshProxyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeHeightfieldCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapePhysicalMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineControlPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerWeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeTextureStorageProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeVisibilityMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeStreamingProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplinesComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeWeightmapUsage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerCoords.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeProxy.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\GlobalMergeLegacySupportUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeHLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeBlueprintBrushBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeConfigHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditResourcesSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditLayerRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Private\\LandscapeEditLayerRendererPrivate.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Landscape\\UHT\\Landscape.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeNv", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemRuntimeNv\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothingSimulationFactoryNv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothPhysicalMeshDataNv_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothingSimulationInteractorNv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothConfigNv.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemRuntimeNv\\UHT\\ClothingSystemRuntimeNv.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Foliage", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Foliage\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageStatistics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageTypeObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType_InstancedStaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\GrassInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\InteractiveFoliageActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageBlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\InstancedFoliageActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageTile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageVolume.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Private\\InteractiveFoliageComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Foliage\\UHT\\Foliage.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkInterface", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkCurveRemapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\ILiveLinkSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFrameInterpolationProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFrameTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFramePreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\ILiveLinkClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkPresetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkRefSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSubjectRemapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSourceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSourceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSubjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationBlueprintStructs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkInputDeviceRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkBasicTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkBasicRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkCameraRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkLightRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkInputDeviceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkTransformTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkCameraTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkTransformRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkLightTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkInterface\\UHT\\LiveLinkInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CinematicCamera", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CinematicCamera\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CameraRig_Crane.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CameraRig_Rail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CinematicCamera\\UHT\\CinematicCamera.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeBlueprintPipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeEditorUtilitiesBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeFilePickerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangePythonPipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangePipelineConfigurationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeMeshUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeSceneImportAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEngine\\UHT\\InterchangeEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemRuntimeCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothLODData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothConfig_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothingAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothLODData_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothTetherData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothPhysicalMeshData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\PointWeightMap.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemRuntimeCommon\\UHT\\ClothingSystemRuntimeCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeInterface", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothSysRuntimeIntrfc\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothCollisionData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothConfigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingAssetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothCollisionPrim.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSimulationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothVertBoneData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSystemRuntimeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSimulationInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothPhysicalMeshDataBase_Legacy.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothSysRuntimeIntrfc\\UHT\\ClothingSystemRuntimeInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeWriterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeResultsContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeFactoryBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeSourceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeTranslatorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeBaseNodeContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeSourceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeFactoryBaseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangePipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeBaseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeUserDefinedAttribute.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCore\\UHT\\InterchangeCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SessionMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SessionMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SessionMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SessionMessages\\Public\\SessionServiceMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SessionMessages\\UHT\\SessionMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "JsonUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\JsonUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\JsonUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\JsonUtilities\\Public\\JsonObjectWrapper.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\JsonUtilities\\UHT\\JsonUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WidgetCarousel", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WidgetCarousel", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WidgetCarousel\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WidgetCarousel\\Public\\WidgetCarouselStyle.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WidgetCarousel\\UHT\\WidgetCarousel.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UMG", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMG\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneMarginTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneMarginSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneWidgetMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\UMGSequenceTickManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneWidgetMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationPlayCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\BoolBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\UMGSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\FloatBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\ColorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\CheckedStateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\BrushBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\MouseCursorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\Int32Binding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\DynamicPropertyPath.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\WidgetBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\VisibilityBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\TextBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateRegistration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\PropertyBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\IUserObjectListEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateBitfield.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\AsyncTaskDownloadImage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\IUserListEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\DragDropOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\SlateBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\GameViewportSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidgetPool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetNavigation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetChild.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetLayoutLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BackgroundBlurSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ButtonSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BackgroundBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Button.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BorderSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Border.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CanvasPanelSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ContentWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CircularThrobber.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CanvasPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBoxKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CheckBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\DynamicEntryBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBoxString.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\DynamicEntryBoxBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\EditableText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\GridPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ExpandableArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\GridSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\HorizontalBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\EditableTextBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\HorizontalBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NamedSlotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\InvalidationBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NativeWidgetHost.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PanelSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\InputKeySelector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MenuAnchor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Overlay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NamedSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlockDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Image.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SafeZoneSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\OverlaySlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ProgressBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PostBufferBlurUpdater.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MultiLineEditableTextBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ListView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScaleBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScaleBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlockImageDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PostBufferUpdate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PanelWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RadialBoxSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SizeBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SafeZone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RetainerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SizeBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\StackBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\VerticalBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TextWidgetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TileView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SlateWrapperTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Spacer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Slider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WrapBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\StackBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\FieldNotification\\WidgetEventField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetSwitcherSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UserWidgetExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\WidgetBlueprintGeneratedClassExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\VerticalBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TreeView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ListViewBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WindowTitleBarArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\UniformGridSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Visual.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SpinBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetInteractionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WindowTitleBarAreaSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WrapBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Throbber.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Slate\\SlateVectorArtData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UIComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UIComponentContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Viewport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Slate\\WidgetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\UniformGridPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Widget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MultiLineEditableText.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Blueprint\\ListViewDesignerPreviewItem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Animation\\MovieSceneMarginPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Binding\\WidgetFieldNotificationExtension.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMG\\UHT\\UMG.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SlateRHIRenderer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateRHIRenderer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlateFXSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlatePostBufferBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\SlateRHIRendererSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlateRHIPostBufferProcessor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateRHIRenderer\\UHT\\SlateRHIRenderer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FieldNotification", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FieldNotification\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification\\Public\\FieldNotificationId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification\\Public\\INotifyFieldValueChanged.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FieldNotification\\UHT\\FieldNotification.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyPath", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyPath\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath\\Public\\PropertyPathHelpers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath\\Private\\Tests\\PropertyPathHelpersTest.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyPath\\UHT\\PropertyPath.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimGraphRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimGraphRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendListBaseLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimExecutionContextLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendSpaceLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimationStateMachineLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimSequencerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimSequencerInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendSpacePlayerLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\CommonAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\LinkedAnimGraphLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\KismetAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\ModifyCurveLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\LayeredBoneBlendLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\KismetAnimationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\MirrorAnimLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencerAnimationOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequenceEvaluatorLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencerAnimationSupport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\PlayMontageCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SkeletalControlLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencePlayerLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_AimOffsetLookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_ApplyAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendBoneByChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByBool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceSampleResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceGraphBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByInt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CallFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CurveSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_ModifyCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpacePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Mirror.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_LayeredBoneBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_MakeDynamicAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CopyPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_MultiWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseByName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseBlendNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RefPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RandomPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotateRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotationOffsetBlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotationOffsetBlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNotifies\\AnimNotify_PlayMontageNotify.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Sync.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Slot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ApplyLimits.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_SequenceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Constraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_TwoWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CopyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Fabrik.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_AnimDynamics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_BoneDrivenController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ResetRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CopyBoneDelta.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_HandIKRetargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_LookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ObserveBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RigidBody_Library.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ModifyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RotationMultiplier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_LegIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ScaleChainLength.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SkeletalControlBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SpringBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\BoneControllerSolvers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_TwistCorrectiveNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SplineIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Trail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RigidBody.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_TwoBoneIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\BoneControllerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\RBF\\RBFSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimGraphRuntime\\UHT\\AnimGraphRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosTrailingEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosBreakingEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosCollisionEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosRemovalEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDamagePropagationData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionEngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDebugDrawActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionExternalRenderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolSubSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionRenderLevelSetActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionObject.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Private\\GeometryCollection\\GeometryCollectionRootProxyRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Private\\GeometryCollection\\GeometryCollectionISMPoolRenderer.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionEngine\\UHT\\GeometryCollectionEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FieldSystemEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FieldSystemEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemObjects.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FieldSystemEngine\\UHT\\FieldSystemEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosSolverEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosSolverEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosEventListenerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosNotifyHandlerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosGameplayEventDispatcher.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolverSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolverActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosDebugDrawSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosSolverEngine\\UHT\\ChaosSolverEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowSimulation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowSimulation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowCollisionObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowInterfaceGeometryCachable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowPhysicsObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowConstraintObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowPhysicsSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowSimulation\\UHT\\DataflowSimulation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowContent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowEngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowContextObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowEdNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowPreview.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEngine\\UHT\\DataflowEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowAnyType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowCoreNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowInputOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowOverrideNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowTerminalNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowMathNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowSelection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowVectorNodes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowCore\\UHT\\DataflowCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletalMeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription\\Public\\SkeletalMeshDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription\\Public\\SkeletalMeshElementTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshDescription\\UHT\\SkeletalMeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StaticMeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StaticMeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription\\Public\\UVMapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription\\Public\\StaticMeshDescription.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StaticMeshDescription\\UHT\\StaticMeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PhysicsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodySetupEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodyInstanceCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodySetupCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicsSettingsEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicsSettingsCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\Chaos\\ChaosPhysicalMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicalMaterials\\PhysicalMaterialPropertyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\Chaos\\ChaosEngineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicalMaterials\\PhysicalMaterial.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsCore\\UHT\\PhysicsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Chaos", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Chaos\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\ChaosSolverConfiguration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\PhysicsCoreTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\SolverEventFilters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\PhysicsObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\SoftsSimulationSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\Deformable\\ChaosDeformableSolverProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Field\\FieldSystemTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionConvexUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionProximityUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionSimulationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\RecordedTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\ManagedArrayCollection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "COMPILE_WITHOUT_UNREAL_SUPPORT=0", + "CHAOS_MEMORY_TRACKING=0", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Chaos\\UHT\\Chaos.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosVDRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVDRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDCharacterGroundConstraintDataWrappers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDAccelerationStructureDataWrappers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDCollisionDataWrappers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDDebugShapeDataWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDJointDataWrappers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDParticleDataWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosVisualDebugger\\Public\\DataWrappers\\ChaosVDQueryDataWrappers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVDRuntime\\UHT\\ChaosVDRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\ActorForWorldTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneBoundObjectProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieScenePlaybackClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneSequencePlayerObserver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\KeyParams.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\INodeAndChannelMappings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingEventReceiverInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieScene.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingOwnerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingReferences.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneDynamicBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFolder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFrameMigration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneKeyStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneMarkedFrame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneNameableTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieScenePossessable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneObjectBindingID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequencePlaybackSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickInterval.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickManagerClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSignedObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSpawnable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTimeUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTrackEvaluationField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneCurveChannelCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneSpawnableBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\IMovieSceneChannelOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneTimeWarpChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\IMovieSceneDeterminismSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneObjectPathChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneAudioTriggerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\MovieSceneDeterminismFence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneCustomBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannelOverrideContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneBoolChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneIntegerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\IMovieSceneTrackTemplateProducer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneReplaceableBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Conditions\\MovieSceneGroupCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneSectionChannelOverrideRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBindingLifetimeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\IMovieSceneBlenderSystemSupport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneByteChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBoundObjectInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\IMovieSceneChannelOverrideProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Conditions\\MovieSceneCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneDoubleChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\MovieSceneCompiledDataManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\IMovieSceneEntityProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBoundSceneComponentInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannelData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntityInstantiatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneFloatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\BuiltInComponentTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneDecompositionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieScenePropertyBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneRootInstantiatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEvalTimeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\TrackInstance\\MovieSceneTrackInstanceSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\TrackInstance\\MovieSceneTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneSpawnablesSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieScenePreAnimatedStateSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystemGraphs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystemLinker.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneCompletionMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEvaluationHookSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\IMovieSceneEvaluationHook.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\IMovieSceneCustomClockSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationOperand.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvalTemplateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntityGroupingSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSectionParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTimeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTemplateInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvalTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTrackIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\Blending\\MovieSceneBlendType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTrackImplementation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTimeWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieScenePropertyTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Generators\\MovieSceneEasingCurves.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Generators\\MovieSceneEasingFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneBindingLifetimeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneBoolSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneBindingLifetimeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneNumericVariantGetter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneTimeWarpSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieScenePlayRateCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneHookSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSectionTimingParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneSpawnTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSpawnSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneCachedTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneTimeWarpTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpGetter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpVariantPayloads.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneSubTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneNumericVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSubSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpVariant.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Private\\Tests\\MovieSceneTestObjects.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieScene\\UHT\\MovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TimeManagement", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TimeManagement\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\FrameNumberDisplayFormat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\FixedFrameRateCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedFixedRateCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedTimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\TimeManagementBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\ITimedDataInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\TimeSynchronizationSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TimeManagement\\UHT\\TimeManagement.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IrisCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IrisCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\DataStream\\DataStreamManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\DataStream\\DataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationState\\IrisFastArraySerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationState\\ReplicationStateDescriptorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetObjectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ObjectReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ObjectReplicationBridgeConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ReplicationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\WorldLocations.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\FilterOutNetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectConnectionFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectFilterDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectGridFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NopNetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\ReplicationFilteringConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetBlob\\NetBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetBlob\\SequentialPartialNetBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\LocationBasedNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\FieldOfViewNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\NetObjectCountLimiter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\SphereNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\SphereWithOwnerBoostNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\NetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\DateTimeNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\EnumNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\GuidNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\FloatNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\InstancedStructNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IntNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IntRangeNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IrisObjectReferencePackageMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializerConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\ObjectNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PackedVectorNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PackedIntNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PolymorphicNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\RotatorNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\QuatNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\StringNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\UintNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\UintRangeNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\SoftObjectNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\VectorNetSerializers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\DataStream\\DataStreamDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetTokenDataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\ReplicationDataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetBlobHandlerDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetObjectBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetRPCHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\PartialNetObjectAttachmentHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\Prioritization\\NetObjectPrioritizerDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\Serialization\\InternalNetSerializers.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IrisCore\\UHT\\IrisCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NetCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NetCore\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Classes\\Net\\Core\\Analytics\\NetAnalyticsAggregatorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Classes\\Net\\Serialization\\FastArraySerializer.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\EscalationStates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetCloseResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetConnectionFaultRecoveryBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\StateStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\PushModel\\PushModel.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NetCore\\UHT\\NetCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaAssets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaAssets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\FileMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\BaseMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlayerProxyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlaylist.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSourceRendererInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaTextureTracker.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\StreamMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\TimeSynchronizableMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSourceOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\Misc\\MediaBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\PlatformMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSoundComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaTexture.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaAssets\\UHT\\MediaAssets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaUtils\\Public\\MediaPlayerOptions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaUtils\\UHT\\MediaUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioMixer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioMixer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\Generators\\AudioGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectEQ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectDynamicsProcessor.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioBusSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioDeviceNotificationSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Quartz\\QuartzSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioMixerBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Components\\SynthComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Quartz\\AudioMixerClockHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioMixerDevice.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Private\\AudioMixerSourceManager.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioMixer\\UHT\\AudioMixer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioLinkEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioLinkEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkEngine\\Public\\IAudioLinkBlueprintInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioLinkEngine\\UHT\\AudioLinkEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HeadMountedDisplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HeadMountedDisplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\IMotionController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\IIdentifiableXRDevice.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\HeadMountedDisplayTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\MotionControllerComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HeadMountedDisplay\\UHT\\HeadMountedDisplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineSettings\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameSessionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\ConsoleSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GeneralEngineSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\HudSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GeneralProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameNetworkManagerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameMapsSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineSettings\\UHT\\EngineSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioLinkCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioLinkCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkCore\\Public\\AudioLinkSettingsAbstract.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioLinkCore\\UHT\\AudioLinkCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioExtensions", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioExtensions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioPropertiesSheetAssetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioPropertiesSheet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\SoundGeneratorOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundWaveCloudStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioParameterControllerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioModulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IWaveformTransformation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioEndpoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundfieldFormat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundfieldEndpoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioExtensionPlugin.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioExtensions\\UHT\\AudioExtensions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Public\\AssetRegistry\\AssetRegistryHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Public\\AssetRegistry\\IAssetRegistry.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Private\\AssetRegistry.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetRegistry\\UHT\\AssetRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImageWriteQueue", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImageWriteQueue\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue\\Public\\ImageWriteTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue\\Public\\ImageWriteBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImageWriteQueue\\UHT\\ImageWriteQueue.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioPlatformConfiguration", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioPlatformConfiguration", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioPlatformConfiguration\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioPlatformConfiguration\\Public\\AudioCompressionSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioPlatformConfiguration\\UHT\\AudioPlatformConfiguration.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InteractiveToolsFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InteractiveToolsFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ContextObjectStore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputBehaviorSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputRouter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmoBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmoManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolQueryInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolsContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\MultiSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SelectionSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SingleSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolContextInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\AnyButtonInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargetManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\DoubleClickBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\KeyAsModifierInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\ClickDragBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\KeyInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MouseHoverBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MouseWheelBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MultiClickSequenceInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\Widgets\\WidgetBaseBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleClickBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleKeyCaptureBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisAngleGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleClickOrDragBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\BrushStampIndicator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisPositionGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisSources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ComponentBoundTransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoArrowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoBaseComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\CombinedTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoBoxComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoCircleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementArc.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementArrow.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCircle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCircleBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCylinder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementHitTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementLineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementRectangle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementShared.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementRenderState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementTorus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementTriangleList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoRectangleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoLineHandleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoViewContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\HitTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\RepositionableTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterSourcesFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterSourcesVec2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\SimpleSingleClickGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ScalableSphereGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\IntervalGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\PlanePositionGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterToTransformAdapters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\StateTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ViewAdjustedStaticMeshGizmoComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformGizmoUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformSources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\ClickDragTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\MeshSurfacePointTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\BaseBrushTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\SingleClickTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\AssetBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MaterialProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\PhysicsDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MeshDescriptionCommitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SceneQueries\\SceneSnappingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MeshDescriptionProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\PrimitiveComponentBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\SkeletalMeshBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargets\\ToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\StaticMeshBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargets\\PrimitiveComponentToolTarget.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InteractiveToolsFramework\\UHT\\InteractiveToolsFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescriptionBaseBulkData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescriptionBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshDescription\\UHT\\MeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PortalServices", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Services", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalServices\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Services\\Public\\Account\\IPortalUser.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_PORTAL_SERVICES=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalServices\\UHT\\PortalServices.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PortalRpc", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Rpc", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalRpc\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Rpc\\Private\\PortalRpcMessages.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalRpc\\UHT\\PortalRpc.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MessagingRpc", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MessagingRpc", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MessagingRpc\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MessagingRpc\\Public\\RpcMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MessagingRpc\\Public\\MessageRpcMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MessagingRpc\\UHT\\MessagingRpc.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UniversalObjectLocator", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UniversalObjectLocator\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\DirectPathObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\SubObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocatorResolveParams.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UniversalObjectLocator\\UHT\\UniversalObjectLocator.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TypedElementRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TypedElementRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Framework\\TypedElementSelectionSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementPrimitiveCustomDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementSelectionInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Private\\Elements\\Framework\\TypedElementSelectionSetLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TypedElementRuntime\\UHT\\TypedElementRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TypedElementFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TypedElementFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementAlertColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementCompatibilityColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementFolderColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementIconOverrideColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementHiearchyColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementOverrideColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementLabelColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementPivotOffsetColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementMiscColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementSelectionColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementPackageColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementRevisionControlColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementTransformColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementUIColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementSlateWidgetColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementTypeInfoColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementViewportColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementValueCacheColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Common\\TypedElementCommonTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Common\\TypedElementHandles.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementListProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementCounter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Interfaces\\TypedElementDataStorageFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Interfaces\\TypedElementDataStorageUiInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Private\\TypedElementFrameworkTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Private\\Elements\\Framework\\TypedElementListLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Tests\\Elements\\Framework\\TypedElementDataStoragePerformanceTestCommands.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Tests\\Elements\\Framework\\TypedElementTestColumns.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TypedElementFramework\\UHT\\TypedElementFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\AnimationDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\CommonAnimTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\EulerTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\Constraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\FABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\NodeChain.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\NodeHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\TransformNoScale.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationCore\\UHT\\AnimationCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Slate", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Slate\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\SlateSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Commands\\InputChord.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Application\\SlateApplication.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Commands\\UICommandInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\MultiBox\\MultiBoxDefs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ButtonWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\CheckBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ComboBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\MultiBox\\ToolMenuBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\EditableTextBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ComboButtonWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ProgressWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\EditableTextWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ScrollBarWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ScrollBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\TextBlockWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\SpinBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Text\\CharRangeList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Text\\TextLayout.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Views\\ITypedTableView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Input\\IVirtualKeyboardEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\Anchors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\SScaleBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\SScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Notifications\\SProgressBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Text\\ISlateEditableTextWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Views\\STableViewBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Slate\\UHT\\Slate.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImageCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImageCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageCore\\Public\\ImageCoreBP.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImageCore\\UHT\\ImageCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SlateCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontFaceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontBulkData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontRasterizationMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Debugging\\SlateDebugging.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\CompositeFont.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontSdfSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\SlateFontInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Input\\NavigationReply.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Margin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\FlowDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Clipping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Geometry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Rendering\\SlateRendererTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Input\\Events.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Rendering\\RenderingCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Sound\\SlateSound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SegmentedControlStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleContainerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleContainerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateBrush.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\StyleColors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\ToolBarStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Types\\SlateEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Widgets\\WidgetPixelSnapping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Types\\SlateVector2.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_FREETYPE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateCore\\UHT\\SlateCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DeveloperSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeveloperSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\DeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\DeveloperSettingsBackedByCVars.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\PlatformSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\PlatformSettingsManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeveloperSettings\\UHT\\DeveloperSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InputCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InputCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputCore\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InputCore\\Classes\\InputCoreTypes.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputCore\\UHT\\InputCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CoreUObject", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CoreUObject\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\Misc\\EditorPathObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\Misc\\DataValidation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\InstancedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\InstancedStructContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\UserDefinedStructEditorUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\UserDefinedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\CookedMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\CoreNetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\PropertyBag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\SharedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\PropertyText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\OverriddenPropertySet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\PerPlatformProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\NoExportTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMPackageTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseEffectSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseClass.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Private\\UObject\\PropertyHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Tests\\OptionalPropertyTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Tests\\UObject\\InstanceDataObjectUtilsTest.h" + ], + "PublicDefines": [ + "WITH_VERSE_COMPILER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CoreUObject\\UHT\\CoreUObject.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VectorVM", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\VectorVM", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VectorVM\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\VectorVM\\Public\\VectorVMCommon.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "VECTORVM_SUPPORTS_EXPERIMENTAL=1", + "VECTORVM_SUPPORTS_LEGACY=1", + "VECTORVM_SUPPORTS_SERIALIZATION=0", + "VECTORVM_DEBUG_PRINTF=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VectorVM\\UHT\\VectorVM.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MRMesh", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MRMesh\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MeshReconstructorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MockDataMeshTrackerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MRMeshComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MRMesh\\UHT\\MRMesh.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BuildPatchServices", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Online\\BuildPatchServices", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BuildPatchServices\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Online\\BuildPatchServices\\Private\\Data\\ManifestUObject.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BuildPatchServices\\UHT\\BuildPatchServices.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Overlay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Overlay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\BasicOverlays.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\LocalizedOverlays.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\Overlays.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Overlay\\UHT\\Overlay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PortalMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Messages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Messages\\Public\\PortalApplicationWindowMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Messages\\Public\\PortalPackageInstallerMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Messages\\Public\\PortalUserLoginMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Portal\\Messages\\Public\\PortalUserMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PortalMessages\\UHT\\PortalMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlueprintRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\BlueprintRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\BlueprintRuntime\\Public\\BlueprintRuntimeSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintRuntime\\UHT\\BlueprintRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EyeTracker", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EyeTracker\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker\\Public\\EyeTrackerFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker\\Public\\EyeTrackerTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EyeTracker\\UHT\\EyeTracker.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MassEntity", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntity\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassDebugger.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassCommands.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntitySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntitySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessingPhaseManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassSubsystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassRequirements.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntity\\UHT\\MassEntity.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HttpNetworkReplayStreaming", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\HttpNetworkReplayStreaming", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HttpReplayStreaming\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\HttpNetworkReplayStreaming\\Public\\HttpNetworkReplayStreaming.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HttpReplayStreaming\\UHT\\HttpNetworkReplayStreaming.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalFileNetworkReplayStreaming", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\LocalFileNetworkReplayStreaming", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LFNRS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\LocalFileNetworkReplayStreaming\\Public\\LocalFileNetworkReplayStreaming.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LFNRS\\UHT\\LocalFileNetworkReplayStreaming.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MaterialUtilities", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MaterialUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MaterialUtilities\\Public\\MaterialUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialUtilities\\UHT\\MaterialUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FunctionalTesting", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FunctionalTesting\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FuncTestRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalAITest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalTestGameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalTestingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalTestLevelScript.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalTestUtilityLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\FunctionalUIScreenshotTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\ScreenshotFunctionalTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\ScreenshotFunctionalTestBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\TestPhaseComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Classes\\TraceQueryTestResults.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Public\\AutomationScreenshotOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Public\\AutomationBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Public\\AutomationViewSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\FunctionalTesting\\Public\\GroundTruthData.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FunctionalTesting\\UHT\\FunctionalTesting.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationController", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationController", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationController\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationController\\Public\\AutomationControllerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationController\\Public\\IAutomationReport.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationController\\Private\\AutomationDeviceClusterManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationController\\Private\\AutomationControllerManager.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationController\\UHT\\AutomationController.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ScreenShotComparisonTools", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ScreenShotComparisonTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ScreenShotComparisonTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ScreenShotComparisonTools\\Public\\ScreenShotComparisonSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ScreenShotComparisonTools\\Public\\ImageComparer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ScreenShotComparisonTools\\UHT\\ScreenShotComparisonTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Virtualization", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Virtualization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Virtualization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Virtualization\\Private\\VirtualizationFilterSettings.h" + ], + "PublicDefines": [ + "UE_VA_WITH_SLATE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Virtualization\\UHT\\Virtualization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MaterialBaking", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MaterialBaking", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialBaking\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MaterialBaking\\Public\\MaterialOptions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialBaking\\UHT\\MaterialBaking.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DeveloperToolSettings", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DeveloperToolSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeveloperToolSettings\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DeveloperToolSettings\\Classes\\CookerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DeveloperToolSettings\\Classes\\Settings\\PlatformsMenuSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DeveloperToolSettings\\Classes\\Settings\\ProjectPackagingSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeveloperToolSettings\\UHT\\DeveloperToolSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TargetDeviceServices", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TargetDeviceServices", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TargetDeviceServices\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TargetDeviceServices\\Public\\TargetDeviceServiceMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TargetDeviceServices\\UHT\\TargetDeviceServices.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetTools", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Public\\AdvancedCopyCustomization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Public\\AssetToolsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Public\\AssetTypeActivationOpenedMethod.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Public\\IAssetTools.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Private\\AssetDefinition_AssetTypeActionsProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AssetTools\\Private\\AssetTools.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetTools\\UHT\\AssetTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PhysicsUtilities", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\PhysicsUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\PhysicsUtilities\\Public\\PhysicsAssetUtils.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsUtilities\\UHT\\PhysicsUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveCoding", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Windows\\LiveCoding", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveCoding\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Windows\\LiveCoding\\Private\\LiveCodingSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveCoding\\UHT\\LiveCoding.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SlateReflector", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SlateReflector", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateReflector\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SlateReflector\\Private\\WidgetSnapshotMessages.h" + ], + "PublicDefines": [ + "SLATE_REFLECTOR_HAS_SESSION_SERVICES=1", + "SLATE_REFLECTOR_HAS_DESKTOP_PLATFORM=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SlateReflector\\UHT\\SlateReflector.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WidgetRegistration", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\WidgetRegistration", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WidgetRegistration\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\WidgetRegistration\\Public\\FToolkitWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\WidgetRegistration\\Public\\ToolkitBuilderConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\WidgetRegistration\\Public\\Persistence\\BuilderPersistenceManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WidgetRegistration\\UHT\\WidgetRegistration.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CollectionManager", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CollectionManager", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CollectionManager\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CollectionManager\\Public\\CollectionSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CollectionManager\\UHT\\CollectionManager.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DrawPrimitiveDebugger", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DrawPrimitiveDebugger", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DrawPrimitiveDebugger\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\DrawPrimitiveDebugger\\Public\\DrawPrimitiveDebuggerConfig.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DrawPrimitiveDebugger\\UHT\\DrawPrimitiveDebugger.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TranslationEditor", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TranslationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TranslationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TranslationEditor\\Private\\TranslationUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TranslationEditor\\Private\\TranslationPickerEditWindow.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TranslationEditor\\UHT\\TranslationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Localization", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Localization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization\\Public\\LocalizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization\\Public\\PortableObjectPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization\\Public\\UserGeneratedContentLocalization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization\\Public\\LocTextHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Localization\\Public\\LocalizationTargetTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Localization\\UHT\\Localization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OutputLog", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\OutputLog", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OutputLog\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\OutputLog\\Public\\OutputLogSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\OutputLog\\Private\\OutputLogMenuContext.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OutputLog\\UHT\\OutputLog.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SourceCodeAccess", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SourceCodeAccess", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceCodeAccess\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SourceCodeAccess\\Private\\SourceCodeAccessSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceCodeAccess\\UHT\\SourceCodeAccess.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ToolWidgets", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Public\\Columns\\SlateDelegateColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Public\\ToolWidgetsSlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Public\\Filters\\CustomTextFilters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Public\\Sidebar\\SidebarState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Public\\Filters\\SBasicFilterBar.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolWidgets\\Private\\Sidebar\\SidebarButtonMenuContext.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolWidgets\\UHT\\ToolWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SourceControl", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SourceControl", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceControl\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SourceControl\\Public\\SourceControlPreferences.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\SourceControl\\Public\\SourceControlHelpers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "SOURCE_CONTROL_WITH_SLATE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceControl\\UHT\\SourceControl.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ToolMenus", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolMenus\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuWidgetCollectionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenu.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuMisc.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuDelegates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenuEntryScript.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Public\\ToolMenus.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\ToolMenus\\Private\\ToolMenusBlueprintLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolMenus\\UHT\\ToolMenus.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AITestSuite", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AITestSuite\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\MockGameplayTasks.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\MockAI.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTDecorator_CantExecute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTStopAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTService_Log.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\MockAI_BT.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTDecorator_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_LatentWithFlags.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTDecorator_Blackboard.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_BTStopAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_TimerBasedLatent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTDecorator_DelayedAbort.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_SetValuesWithLogs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_SetValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTService_BTStopAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_SetFlag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_ToggleFlag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AITestSuite\\Classes\\BehaviorTree\\TestBTTask_Log.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_AITESTSUITE 1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AITestSuite\\UHT\\AITestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationDataController", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AnimationDataController", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationDataController\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AnimationDataController\\Public\\AnimDataController.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationDataController\\UHT\\AnimationDataController.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WindowsTargetPlatformSettings", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Windows\\WindowsTargetPlatformSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WinTPSet\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Windows\\WindowsTargetPlatformSettings\\Classes\\WindowsTargetSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WinTPSet\\UHT\\WindowsTargetPlatformSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LogVisualizer", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LogVisualizer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Public\\VisualLoggerRenderingActorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Public\\LogVisualizerSessionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Public\\LogVisualizerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Private\\VisualLoggerCameraController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Private\\VisualLoggerRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Private\\VisualLoggerRenderingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\LogVisualizer\\Private\\VisualLoggerHUD.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LogVisualizer\\UHT\\LogVisualizer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TraceTools", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TraceTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TraceTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\TraceTools\\Private\\Models\\TraceFilterPresets.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TraceTools\\UHT\\TraceTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationWindow", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationWindow", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationWindow\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\AutomationWindow\\Private\\AutomationPresetManager.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationWindow\\UHT\\AutomationWindow.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StructUtilsTestSuite", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\StructUtilsTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructUtilsTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\StructUtilsTestSuite\\Public\\StructUtilsTestTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructUtilsTestSuite\\UHT\\StructUtilsTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LinuxTargetPlatformSettings", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Linux\\LinuxTargetPlatformSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Linux\\LinuxTPSet\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\Linux\\LinuxTargetPlatformSettings\\Classes\\LinuxTargetSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Linux\\LinuxTPSet\\UHT\\LinuxTargetPlatformSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MassEntityTestSuite", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MassEntityTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MassEntityTestSuite\\Public\\MassEntityTestTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\MassEntityTestSuite\\Public\\MassEntityTestFarmPlot.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityTestSuite\\UHT\\MassEntityTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor\\Public\\DetailRowMenuContext.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor\\Private\\DetailsViewConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor\\Private\\DetailRowMenuContextPrivate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor\\Private\\EditConditionParserTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PropertyEditor\\Private\\Tests\\SinglePropertyTests.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyEditor\\UHT\\PropertyEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UnrealEd", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealEd\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryCylinderVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryAmbientSound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryBoxReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryExponentialHeightFog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryCameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryNote.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryDeferredDecal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryInteractiveFoliage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryLocalFogVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryDirectionalLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryCharacter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryEmptyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryRuntimeVirtualTextureVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySkyLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPlayerStart.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySpotLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryBoxVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryTriggerSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryBasicShape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryTriggerCapsule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySphereVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryTriggerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPlaneReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryVectorFieldVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryRectLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Analytics\\AnalyticsPrivacySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryAnimationAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryVolumetricCloud.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySkyAtmosphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorCompositeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorSkeletonNotifyObj.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPlanarReflection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorParentPlayerListObj.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorAnimCompositeSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorAnimBaseObj.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryTargetPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\ConeBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorAnimCurveBoneLinks.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPointLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\AssetSizeQueryCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryTextRender.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\CompileShadersTestBedCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\AudioMixerCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\SpiralStairBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\SheetBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ConvertLevelsToExternalActorsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\CompressAnimationsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactorySphereReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\AssetRegUtilCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorAnimSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DiffAssetBulkDataCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\CookGlobalShadersCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Analytics\\CrashReportsPrivacySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\VolumetricBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\CookShadersCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DDCCleanupCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\CubeBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ActorFactories\\ActorFactoryStaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\TetrahedronBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\FixConflictingLocalizationKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\EditorNotifyObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\CurvedStairBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\CookCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DerivedDataCacheCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpHiddenCategoriesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpMaterialInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpLightFunctionMaterialInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Animation\\DebugSkelMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateBlueprintAPICommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpAssetRegistryCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpMaterialExpressionsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpMaterialShaderTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateAssetManifestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ExportPakDependencies.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateDistillFileSetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\LinearStairBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\EditorBrushBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateGatherManifestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\LandscapeGrassTypeCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GatherTextFromMetadataCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DiffFilesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\FileServerCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GatherTextCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ExternalActorsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DumpBlueprintsInfoCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DiffAssetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Builders\\CylinderBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\BaseIteratePackagesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\EditorDomainSaveCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ImportDialogueScriptCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateTextLocalizationReportCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\IoStoreCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\FixupNeedsLoadForEditorGameCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ListStaticMeshesImportedFromSpeedTreesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ReplaceActorCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\MergeShaderPipelineCachesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DiffAssetRegistriesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateGatherArchiveCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ReplaceAssetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\InternationalizationExportCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\InternationalizationConditioningCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\MakeBinaryConfigCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\PkgInfoCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\DiffCookCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\PopulateDialogueWaveFromCharacterSheetCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\LoadPackageCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\MaterialLayerUsageCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\StabilizeLocalizationKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\StaticMeshMinLodCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GenerateTextLocalizationResourceCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ExportDialogueScriptCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\SavePackageUtilitiesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ListMaterialsUsedWithMeshEmittersCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ShaderPipelineCacheToolsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ImportLocalizedDialogueCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\UpdateGameProjectCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\WrangleContentCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ShaderCodeLibraryToolsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\SummarizeTraceCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\UnrealPakCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\SwapSoundForDialogueInCuesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\TemplateMapMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\TextAssetCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ParticleSystemAuditCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\SummarizeTraceEditorWorkflowsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GatherTextFromAssetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GatherTextCommandletBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\TemplateMapInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\ExportTextContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\ResavePackagesCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\WorldPartitionBuilderCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\AssetGuideline.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\GatherTextFromSourceCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\ExporterFbx.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\AnimSequenceExporterFBX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\LevelExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\SequenceExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\ActorExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\UnrealEdTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\LevelExporterSTL.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\LevelExporterLOD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\ObjectExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\LevelExporterOBJ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\WorldPartitionDataLayerToAssetCommandLet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Commandlets\\WorldPartitionConvertCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\LevelExporterFBX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\PolysExporterOBJ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\StaticMeshExporterOBJ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\FbxExportOption.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\SoundSurroundExporterWAV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterTGA.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\ModelExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\AnimSeqExportOption.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\EditorPerProjectUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\SoundExporterOGG.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterBMP.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureCubeExporterHDR.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\PolysExporterT3D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\EditorPerformanceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimBoneCompressionSettingsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\SkeletalMeshExporterFBX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\StaticMeshExporterFBX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterEXR.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimCurveCompressionSettingsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\GroupActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AimOffsetBlendSpaceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CompositeCurveTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterGeneric.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlueprintInterfaceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AimOffsetBlendSpaceFactory1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\SoundExporterWAV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\TransBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlendSpaceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\RenderTargetExporterHDR.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CurveLinearColorAtlasFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CurveTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimCompositeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlueprintFunctionLibraryFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextBufferExporterTXT.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterHDR.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CompositeDataTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimMontageFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterPNG.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\TextureExporterDDS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlendSpaceFactory1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\Transactor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\AnimStreamableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\DataAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\DataTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\BlueprintMacroFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CurveFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Exporters\\VectorFieldExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ForceFeedbackEffectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\EnumFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ForceFeedbackAttenuationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CanvasRenderTarget2DFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\PropertyEditorTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\HapticFeedbackEffectCurveFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxTextureImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CSVImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\CurveImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\HapticFeedbackEffectSoundWaveFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\HapticFeedbackEffectBufferFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxStaticMeshImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FontFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialFunctionInstanceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSceneImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSceneImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\LevelFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxMeshImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSkeletalMeshImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FontFileImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\NeuralProfileFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MirrorDataTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSceneImportOptionsStaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxAnimSequenceImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialFunctionMaterialLayerFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ObjectLibraryFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\LightWeightInstanceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PackageFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\InterchangeReimportHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialFunctionMaterialLayerBlendFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialFunctionFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PackFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\UnrealEdEngine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialInstanceConstantFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\StructureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SpecularProfileFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportCurveFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\StringTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ParticleSystemFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialParameterCollectionFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PolysFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ModelFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSceneImportOptionsSkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportDataTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PreviewMeshCollectionFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PhysicalMaterialFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportVectorFieldStaticFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportFbxSkeletalMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportTextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PhysicsAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportFbxAnimSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\MaterialImportHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SkeletonFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\Factory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportFbxSceneFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxImportUI.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SlateBrushAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportCurveTableFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SubsurfaceProfileFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\FbxSceneImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\CookOnTheSide\\CookOnTheFlyServer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SceneImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PoseAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\VariableFrameStrippingSettingsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TouchInterfaceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\ReimportFbxStaticMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\PhysicalMaterialMaskFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Editor\\EditorEngine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\Texture2dArrayThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\MaterialEditorMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureRenderTarget2DArrayFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorFontParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\Texture2DArrayFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SlateWidgetStyleAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\Texture2dFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureCubeArrayThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorMaterialLayersParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\MaterialEditorPreviewParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\SubUVAnimationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_Comment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorScalarParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureCubeThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureCubeArrayFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\VectorFieldStaticFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureRenderTargetFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_Custom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorTextureParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\WorldFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorStaticSwitchParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\AnimationBlueprintEditorOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorSparseVolumeTextureParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\PreviewMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TrueTypeFontFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_Composite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_Root.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureRenderTargetVolumeFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorDoubleVectorParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\VolumeTextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode_PinBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorStaticComponentMaskParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorRuntimeVirtualTextureParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\AnimBlueprintSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\CurveEdOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\UnrealEdKeyBindings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\LightmassOptionsObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\StructViewerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\EditorMiscSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureRenderTargetCubeFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\ClassViewerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorVectorParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\SkeletalMeshEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\MaterialEditorOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\TexAligner\\TexAlignerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\CascadeOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\MaterialEditorInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialEditor\\DEditorTextureCollectionParameterValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Factories\\TextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\MaterialStatsOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\MaterialGraph\\MaterialGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\LevelEditorPlayNetworkEmulationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\LevelEditorMiscSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\ContentBrowserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\EditorLoadingSavingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\AnimBlueprintThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\TexAligner\\TexAlignerPlanar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\ClassThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\EditorStyleSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\BlueprintThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\AnimSequenceThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\NeuralProfileRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\FontThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\DefaultSizedThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\BlendSpaceThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\LevelThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\TexAligner\\TexAlignerDefault.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\CurveThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\EditorExperimentalSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\PhysicsAssetEditorOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\ParticleSystemThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\MaterialInstanceThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\MaterialFunctionThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\UnrealEdOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\TexAligner\\TexAlignerFit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Preferences\\PersonaOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\PhysicalMaterialMaskThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SkeletalMeshThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SkeletonThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\TexAligner\\TexAligner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SceneThumbnailInfoWithPrimitive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\WorldThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\WorldThumbnailInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\StaticMeshThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\PhysicsAssetThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SubsurfaceProfileRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SceneThumbnailInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SoundWaveThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\VolumeTextureThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SpecularProfileRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\TextureThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\SlateBrushThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\UserDefinedStructure\\UserDefinedStructEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\LevelEditorPlaySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\ThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\ThumbnailRendering\\ThumbnailManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Classes\\Settings\\LevelEditorViewportSettings.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\AssetDefinitionDefault.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\AssetImportTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\BaseWidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\CrashReporterSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\ActorGroupingUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\AutomatedAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\ComponentVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\EdGraphNode_Comment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\EditorLevelUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\HierarchicalLODVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\LevelEditorDragDropHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\EditorWorldExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\HierarchicalLOD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\MergeUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\PhysicsAssetGenerationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\MaterialGraphNode_Knot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\IPropertyAccessCompiler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\SEditorViewportViewMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\SkeletalMeshToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\FileHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\PlayInEditorDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\ViewportToolBarContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\FbxImporter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\PackageTools.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Selection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\SCommonEditorViewportToolbarBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\AutoReimport\\AutoReimportManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Commandlets\\CompileAllBlueprintsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Commandlets\\DetectOrphanedLocalizedAssetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Commandlets\\ChunkDependencyInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\ThumbnailHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Commandlets\\ExtractLocResCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldFolders.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Commandlets\\ImportAssetsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Actor\\ActorElementDetailsInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Actor\\ActorElementEditorWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Component\\ComponentElementDetailsInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Component\\ComponentElementEditorCopyAndPaste.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Component\\ComponentElementEditorSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Component\\ComponentElementEditorWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Actor\\ActorElementEditorAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\SMInstance\\SMInstanceElementDetailsInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Instances\\EditorPlacementSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Actor\\ActorElementEditorCopyAndPaste.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Actor\\ActorElementEditorSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\SMInstance\\SMInstanceElementEditorWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Kismet2\\Breakpoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Kismet2\\WatchedPin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Object\\ObjectElementEditorSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\SMInstance\\SMInstanceElementEditorSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Elements\\Object\\ObjectElementDetailsInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Settings\\BlueprintEditorProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\EditorSubsystemBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\BrushEditingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\PanelExtensionSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\UnrealEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\ActorEditorContextSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Toolkits\\AssetEditorToolkitMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Settings\\EditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\ImportSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\BrowseToAssetOverrideSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\ViewportToolbar\\UnrealEdViewportToolbarContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tools\\UAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Settings\\EditorProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tests\\FbxAutomationCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tools\\DefaultEdMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Kismet2\\KismetDebugUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionRenameDuplicateBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionLandscapeSplineMeshesBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\EditorAssetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionNavigationDataBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionBuildNavigationOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionRuntimeVirtualTextureBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionHLODsBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionMiniMapBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionFoliageBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\AssetEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionStaticLightingBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tools\\LegacyEdModeWidgetHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionResaveActorsBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\WorldPartition\\WorldPartitionBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tools\\UEdMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Tools\\LegacyEdModeInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Layers\\LayersSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Public\\Subsystems\\EditorActorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\SDeleteReferencedActorDialog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\PropertyColorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Cooker\\ExternalCookOnTheFlyServer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Factories\\ActorFactoryLevelSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Elements\\SMInstance\\SMInstanceElementDetailsProxyObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Factories\\EditorStaticMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Tools\\AssetEditorContextObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEd\\Private\\Tools\\LegacyEdMode.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1", + "WITH_RECAST=1", + "WITH_NAVMESH_SEGMENT_LINKS=1", + "WITH_NAVMESH_CLUSTER_LINKS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealEd\\UHT\\UnrealEd.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VirtualizationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VirtualizationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\GenerateMountPointPayloadManifestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\GeneratePayloadManifestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\VirtualizeProjectCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\CheckForVirtualizedContentCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\ValidateVirtualizedContentCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\RehydrateProjectCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualizationEditor\\Private\\PrecachePayloadsCommandlet.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VirtualizationEditor\\UHT\\VirtualizationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PIEPreviewDeviceProfileSelector", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PIEPreviewDeviceProfileSelector", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PIEPreviewDeviceProfileSelector\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PIEPreviewDeviceProfileSelector\\Private\\PIEPreviewWindowStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PIEPreviewDeviceProfileSelector\\Private\\PIEPreviewSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PIEPreviewDeviceProfileSelector\\UHT\\PIEPreviewDeviceProfileSelector.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FoliageEdit", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FoliageEdit\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Public\\FoliageType_ISMThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Public\\FoliageEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Public\\ProceduralFoliageEditorLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Public\\FoliageType_ActorThumbnailRenderer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Private\\ActorFactoryProceduralFoliage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Private\\FoliageTypeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Private\\LandscapeGrassTypeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\FoliageEdit\\Private\\ProceduralFoliageSpawnerFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FoliageEdit\\UHT\\FoliageEdit.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SwarmInterface", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SwarmInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SwarmInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SwarmInterface\\Private\\SwarmMessages.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SwarmInterface\\UHT\\SwarmInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationBlueprintLibrary", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationBlueprintLibrary\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintLibrary\\Public\\AnimationAttributeBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintLibrary\\Public\\K2_AnimationAttributeNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintLibrary\\Public\\AnimPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintLibrary\\Public\\AnimationBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationBlueprintLibrary\\UHT\\AnimationBlueprintLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimGraph", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimGraph\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationBlendSpaceSampleGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationStateGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationCustomTransitionGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationTransitionGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationStateMachineGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationConduitGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationStateGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationTransitionSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ApplyMeshSpaceAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendListBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ApplyLimits.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendBoneByChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_AimOffsetLookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ApplyAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_AnimDynamics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendListByBool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimBlueprintExtension_PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Constraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationStateMachineSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimBlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpaceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNodeCustomizationInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimBlueprintPostCompileValidation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimationCustomTransitionSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LayeredBoneBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BoneDrivenController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LocalRefPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendListByEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpaceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CustomTransitionResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ComponentToLocalSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CurveSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_HandIKRetargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Fabrik.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LegIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CopyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CopyPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendListByInt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpaceSampleResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CopyBoneDelta.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpaceGraphBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_MultiWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_AssetPlayerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LinkedInputPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_MeshRefPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LinkedAnimGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_MakeDynamicAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RefPoseBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_IdentityPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_BlendSpacePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LinkedAnimLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ModifyCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_DeadBlending.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_PoseByName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LinkedAnimGraphBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Inertialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_CustomProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_PoseHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ObserveBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Mirror.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SaveCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RotateRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_StateMachine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_PoseDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RandomPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_LocalToComponentSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RotationOffsetBlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_PoseBlendNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ResetRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ModifyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RotationOffsetBlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Root.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SequenceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Slot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SpringBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_PoseSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_TransitionResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_Trail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_ScaleChainLength.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RigidBody.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_TwistCorrectiveNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_RotationMultiplier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SkeletalControlBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_SplineIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_TwoWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_UseCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_StateResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_TransitionPoseEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_TwoBoneIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimGraphNode_StateMachineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimPreviewAttacheInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateAliasNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateConduitNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateEntryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimPreviewInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateNodeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\IClassVariableCreator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\AnimStateTransitionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\K2Node_AnimGetter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\K2Node_PlayMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\K2Node_AnimNodeReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Public\\K2Node_TransitionRuleGetter.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Internal\\AnimGraphNodeBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Internal\\AnimBlueprintExtension_Base.h" + ], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_Attributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_CachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_SharedLinkedAnimLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_LinkedInputPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_NodeRelevancy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_LinkedAnimGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_CallFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimGraphNodeBinding_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_Tag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimGraphNode_CallFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimBlueprintExtension_StateMachine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimGraph\\Private\\AnimGraphNode_Sync.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimGraph\\UHT\\AnimGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContentBrowser", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContentBrowser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Public\\ContentBrowserFrontEndFilterExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Public\\ContentBrowserMenuContexts.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Public\\TextFilterKeyValueHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Public\\TextFilterValueHandler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\ContentBrowserConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\ContentBrowserPathViewMenuContexts.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\ContentBrowserSingleton.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\AssetView\\AssetViewConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\TextFilterValueHandlers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowser\\Private\\TextFilterKeyValueHandlers.h" + ], + "PublicDefines": [ + "UE_CONTENTBROWSER_NEW_STYLE=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContentBrowser\\UHT\\ContentBrowser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Kismet", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Kismet\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Classes\\BlueprintPaletteFavorites.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\BlueprintEditorContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\BlueprintActionMenuItem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\BlueprintCompilerExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\ReviewComments.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\BlueprintActionMenuUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\SCSEditorExtensionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\SSCSEditorMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\BlueprintDragDropMenuItem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\SubobjectEditorExtensionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\FindInBlueprintManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Public\\FindInBlueprints.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Private\\BPGraphClipboardData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Kismet\\Private\\Blueprints\\JsonObjectGraphFunctionLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Kismet\\UHT\\Kismet.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlueprintEditorLibrary", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintEditorLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintEditorLibrary\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintEditorLibrary\\Public\\BlueprintEditorLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintEditorLibrary\\UHT\\BlueprintEditorLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GraphEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GraphEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GraphEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GraphEditor\\Public\\GraphEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GraphEditor\\Public\\KismetPins\\SGraphPinStructInstance.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GraphEditor\\UHT\\GraphEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Persona", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Persona\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimationEditorPreviewActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimAssetFindReplaceSyncMarkers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimAssetFindReplaceCurves.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimationSequenceBrowserMenuContexts.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\IPersonaEditorModeManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimAssetFindReplaceNotifies.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\PersonaPreviewSceneController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\AnimAssetFindReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\SSkinWeightProfileImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\BlendSpaceAnalysis.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\PersonaToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Public\\PhysicsAssetRenderUtils.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\AnimNotifyPanelContextMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\PersonaPreviewSceneAnimationController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\AnimViewportToolBarToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\LODInfoUILayout.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\PersonaPreviewSceneRefPoseController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\PersonaPreviewSceneDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\PersonaPreviewSceneDefaultController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\PersonaPreviewSceneSkelMeshInstanceController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\SAnimCurveMetadataEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Persona\\Private\\AnimTimeline\\AnimTimelineClipboard.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Persona\\UHT\\Persona.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationEditMode", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationEditMode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationEditMode\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationEditMode\\Public\\AnimationEditContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationEditMode\\Public\\AnimationEditMode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationEditMode\\UHT\\AnimationEditMode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorInteractiveToolsFramework", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorInteractiveToolsFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\GizmoEdModeInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\InteractiveToolStack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorInteractiveGizmoSelectionBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorInteractiveGizmoConditionalBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\ToolContexts\\ToolStackContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorTransformGizmoBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\ToolContexts\\WidgetToolsContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorGizmoStateTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\Behaviors\\MultiButtonClickDragBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorTransformGizmoUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorInteractiveGizmoManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorInteractiveGizmoRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\TransformGizmoInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorTransformGizmoSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EdModeInteractiveToolsContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\EditorTransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorInteractiveGizmoSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Experimental\\EditorInteractiveToolsFramework\\Public\\EditorGizmos\\TransformGizmo.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorInteractiveToolsFramework\\UHT\\EditorInteractiveToolsFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemEditorInterface", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothingSystemEditorInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemEditorInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothingSystemEditorInterface\\Public\\ClothingAssetFactoryInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemEditorInterface\\UHT\\ClothingSystemEditorInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\AudioEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\AudioBusFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\ReverbEffectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundAttenuationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundSourceBusFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundClassFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\DialogueVoiceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundMixFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\ReimportSoundFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundSourceEffectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\DialogueWaveFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundClassGraph\\SoundClassGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundConcurrencyFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundClassGraph\\SoundClassGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundCueGraph\\SoundCueGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundSubmixGraph\\SoundSubmixGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundSubmixFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundCueGraph\\SoundCueGraphNode_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundSubmixGraph\\SoundSubmixGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundClassGraph\\SoundClassGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundCueGraph\\SoundCueGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundCueFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\Factories\\SoundSubmixEffectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundCueGraph\\SoundCueGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundSubmixGraph\\SoundSubmixGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Classes\\SoundCueGraph\\SoundCueGraphNode_Root.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Public\\AssetTypeActions\\AssetDefinition_SoundBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_DialogueVoice.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\SoundClassTemplates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundCue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundMix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundConcurrency.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_AudioBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundSourceBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_SoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AudioEditor\\Private\\AssetTypeActions\\AssetDefinition_ReverbEffect.h" + ], + "PublicDefines": [ + "WITH_SNDFILE_IO=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioEditor\\UHT\\AudioEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UMGEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMGEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Classes\\K2Node_WidgetAnimationEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Classes\\WidgetBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Classes\\WidgetGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Classes\\WidgetPaletteFavorites.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetBlueprintToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetCompilerRule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\UMGEditorProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetBlueprintThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\SlateVectorArtDataFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\Settings\\WidgetDesignerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetBlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\Components\\AssetThumbnailWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\Hierarchy\\SReadOnlyHierarchyView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Public\\WidgetEditingProjectSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\AssetDefinition_WidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\AssetDefinition_WidgetBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\Nodes\\K2Node_PlayAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\Utility\\WidgetSlotPair.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\ToolPalette\\WidgetEditorModeUILayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\Nodes\\K2Node_CreateWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\Nodes\\K2Node_CreateDragDropOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UMGEditor\\Private\\Navigation\\SWidgetDesignerNavigation.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMGEditor\\UHT\\UMGEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DetailCustomizations", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DetailCustomizations", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DetailCustomizations\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DetailCustomizations\\Public\\SplineMetadataDetailsFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DetailCustomizations\\Private\\FbxImportUIDetails.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DetailCustomizations\\UHT\\DetailCustomizations.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VirtualTexturingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VirtualTexturingEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor\\Classes\\RuntimeVirtualTextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor\\Classes\\VirtualTextureBuilderFactory.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor\\Private\\MeshPaintVirtualTextureThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor\\Private\\VirtualTextureBuilderThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VirtualTexturingEditor\\Private\\RuntimeVirtualTextureThumbnailRenderer.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VirtualTexturingEditor\\UHT\\VirtualTexturingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletonEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletonEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletonEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletonEditor\\Public\\SkeletonToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletonEditor\\Public\\BoneProxy.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletonEditor\\Private\\SkeletonTreeMenuContext.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletonEditor\\UHT\\SkeletonEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PinnedCommandList", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PinnedCommandList", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PinnedCommandList\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PinnedCommandList\\Private\\PinnedCommandListSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PinnedCommandList\\UHT\\PinnedCommandList.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ComponentVisualizers", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ComponentVisualizers", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComponentVisualizers\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ComponentVisualizers\\Public\\Manipulator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ComponentVisualizers\\Public\\SplineGeneratorPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ComponentVisualizers\\Public\\SplineComponentVisualizer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComponentVisualizers\\UHT\\ComponentVisualizers.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ViewportInteraction", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ViewportInteraction\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\MouseCursorInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\VIBaseTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ActorTransformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\VIGizmoHandleMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportDragOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\VISettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportTransformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\VIGizmoHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportInteractionDragOperations.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportInteractableInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportInteractionAssetContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportInteractionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportWorldInteraction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Public\\ViewportInteractor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Private\\Gizmo\\VIPivotTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Private\\Gizmo\\VIUniformScaleGizmoHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ViewportInteraction\\Private\\Gizmo\\VIStretchGizmoHandle.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ViewportInteraction\\UHT\\ViewportInteraction.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConfigEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ConfigEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConfigEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ConfigEditor\\Public\\ConfigPropertyHelper.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConfigEditor\\UHT\\ConfigEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InternationalizationSettings", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\InternationalizationSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InternationalizationSettings\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\InternationalizationSettings\\Classes\\InternationalizationSettingsModel.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InternationalizationSettings\\UHT\\InternationalizationSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieSceneTools", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\BakingAnimationKeySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\K2Node_GetSequenceBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\SequencerExportTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\AutomatedLevelSequenceCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\MovieSceneToolsProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\MovieSceneDynamicBindingUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\Conditions\\MovieSceneDirectorBlueprintConditionUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\MovieSceneToolsUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Public\\Conditions\\MovieSceneConditionCustomization.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\MovieSceneEventBlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Channels\\ByteChannelKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\MovieSceneDynamicBindingBlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Channels\\DoubleChannelKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Channels\\IntegerChannelKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Conditions\\MovieSceneDirectorBlueprintConditionExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Channels\\BoolChannelKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MovieSceneTools\\Private\\Channels\\FloatChannelKeyProxy.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieSceneTools\\UHT\\MovieSceneTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequenceRecorder", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequenceRecorder\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\SequenceRecorderActorFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\SequenceRecordingBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\SequenceRecorderActorGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\SequenceRecorderBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\ActorRecordingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\ActorRecording.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\AnimationRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Public\\SequenceRecorderSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Private\\Sections\\MovieScene3DTransformSectionRecorderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequenceRecorder\\Private\\AnimationRecorderParameters.h" + ], + "PublicDefines": [ + "__WINDOWS_WASAPI__" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequenceRecorder\\UHT\\SequenceRecorder.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Sequencer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Sequencer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Filters\\SequencerFilterBarConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Misc\\SequencerThumbnailCaptureSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Filters\\SequencerTrackFilterExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Filters\\SequencerTrackFilterTextExpressionExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Scripting\\SequencerModuleScriptingLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\ISequencerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\SequencerKeyStructGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\SequencerUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\SequencerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\Tools\\MotionTrailOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Public\\ISequencer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\MovieSceneCopyableTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\SequencerKeyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\SequencerToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\MovieSceneCopyableBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\SequencerTimeChangeUndoRedoProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\SequencerMeshTrail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\Filters\\Menus\\SequencerMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\Filters\\Menus\\SequencerFilterBarContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\Filters\\Menus\\SequencerFilterMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Sequencer\\Private\\Scripting\\SequencerModuleOutlinerScriptingObject.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Sequencer\\UHT\\Sequencer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequencerCore", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequencerCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequencerCore\\Public\\Scripting\\SequencerScriptingLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequencerCore\\Public\\Scripting\\OutlinerScriptingObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SequencerCore\\Public\\Scripting\\ViewModelScriptingStruct.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerCore\\UHT\\SequencerCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MaterialEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MaterialEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MaterialEditor\\Public\\MaterialEditorContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MaterialEditor\\Public\\MaterialEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MaterialEditor\\Public\\MaterialEditingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MaterialEditor\\Public\\MaterialPropertyHelpers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MaterialEditor\\UHT\\MaterialEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LevelEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor\\Public\\LevelEditorMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor\\Public\\LevelEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor\\Private\\LightEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor\\Private\\ViewportToolbar\\LevelViewportContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelEditor\\Private\\SLevelEditorToolBox.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelEditor\\UHT\\LevelEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActionableMessage", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ActionableMessage", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActionableMessage\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ActionableMessage\\Public\\ActionableMessageSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActionableMessage\\UHT\\ActionableMessage.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SubobjectEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SubobjectEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectEditor\\Public\\SubobjectEditorMenuContext.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SubobjectEditor\\UHT\\SubobjectEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SubobjectDataInterface", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectDataInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SubobjectDataInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectDataInterface\\Public\\SubobjectDataHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectDataInterface\\Public\\SubobjectDataBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectDataInterface\\Public\\SubobjectData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SubobjectDataInterface\\Public\\SubobjectDataSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SubobjectDataInterface\\UHT\\SubobjectDataInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PixelInspectorModule", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PixelInspector", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PixelInspectorModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PixelInspector\\Private\\PixelInspectorView.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PixelInspectorModule\\UHT\\PixelInspectorModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HierarchicalLODOutliner", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\HierarchicalLODOutliner", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HierarchicalLODOutliner\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\HierarchicalLODOutliner\\Private\\HierarchicalLODType.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HierarchicalLODOutliner\\UHT\\HierarchicalLODOutliner.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DeviceProfileServices", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DeviceProfileServices", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeviceProfileServices\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DeviceProfileServices\\Public\\CheckAndroidDeviceProfileCommandlet.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DeviceProfileServices\\UHT\\DeviceProfileServices.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PIEPreviewDeviceSpecification", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PIEPreviewDeviceSpecification", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PIEPreviewDeviceSpecification\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PIEPreviewDeviceSpecification\\Public\\PIEPreviewDeviceSpecification.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PIEPreviewDeviceSpecification\\UHT\\PIEPreviewDeviceSpecification.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StatsViewer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StatsViewer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\CookerStats.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\LightingBuildInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\StaticMeshLightingInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\ShaderCookerStats.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\PrimitiveStats.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatsViewer\\Classes\\TextureStats.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StatsViewer\\UHT\\StatsViewer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AdvancedPreviewScene", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AdvancedPreviewScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AdvancedPreviewScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AdvancedPreviewScene\\Public\\AssetViewerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AdvancedPreviewScene\\UHT\\AdvancedPreviewScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CurveEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CurveEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\CurveEditorKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\CurveEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\CurveDataAbstraction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorSmartReduceFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorReduceFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorGaussianFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorBakeFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorEulerFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Public\\Filters\\CurveEditorFilterBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Private\\CurveEditorCopyBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CurveEditor\\Private\\RichCurveKeyProxy.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CurveEditor\\UHT\\CurveEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataLayerEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DataLayerEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataLayerEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DataLayerEditor\\Public\\DataLayer\\ExternalDataLayerFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DataLayerEditor\\Public\\DataLayer\\DataLayerFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\DataLayerEditor\\Public\\DataLayer\\DataLayerEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataLayerEditor\\UHT\\DataLayerEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SceneOutliner", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SceneOutliner", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SceneOutliner\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SceneOutliner\\Public\\SceneOutlinerMenuContext.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SceneOutliner\\Private\\SceneOutlinerConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SceneOutliner\\Private\\ActorBrowsingModeSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SceneOutliner\\UHT\\SceneOutliner.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationModifiers", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationModifiers", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationModifiers\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationModifiers\\Public\\AnimationModifiersAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationModifiers\\Public\\AnimationModifier.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationModifiers\\Private\\AnimationModifierSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationModifiers\\UHT\\AnimationModifiers.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Documentation", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Documentation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Documentation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Documentation\\Public\\DocumentationRedirect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Documentation\\Public\\DocumentationUrl.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Documentation\\Public\\DocumentationSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Documentation\\UHT\\Documentation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UnrealEdMessages", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEdMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealEdMessages\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEdMessages\\Classes\\AssetEditorMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UnrealEdMessages\\Classes\\FileServerMessages.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealEdMessages\\UHT\\UnrealEdMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UndoHistoryEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UndoHistoryEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UndoHistoryEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\UndoHistoryEditor\\Private\\UndoHistorySettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UndoHistoryEditor\\UHT\\UndoHistoryEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StatusBar", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatusBar", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StatusBar\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StatusBar\\Public\\StatusBarSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StatusBar\\UHT\\StatusBar.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameProjectGeneration", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameProjectGeneration", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameProjectGeneration\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameProjectGeneration\\Classes\\DefaultTemplateProjectDefs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameProjectGeneration\\Classes\\TemplateProjectDefs.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameProjectGeneration\\Public\\ClassTemplateEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameProjectGeneration\\UHT\\GameProjectGeneration.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HardwareTargeting", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\HardwareTargeting", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HardwareTargeting\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\HardwareTargeting\\Public\\HardwareTargetingSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HardwareTargeting\\UHT\\HardwareTargeting.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AddContentDialog", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AddContentDialog", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AddContentDialog\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AddContentDialog\\Public\\FeaturePackContentSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AddContentDialog\\Private\\IContentSource.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AddContentDialog\\UHT\\AddContentDialog.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SourceControlWindows", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SourceControlWindows", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceControlWindows\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SourceControlWindows\\Public\\SourceControlMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SourceControlWindows\\Public\\SourceControlWindows.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SourceControlWindows\\Private\\SourceControlSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SourceControlWindows\\UHT\\SourceControlWindows.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlueprintGraph", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintGraph\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintAssetNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintBoundEventNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintDelegateNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintComponentNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintEventNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintFieldNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AddDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallArrayFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallDataTableFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_BreakStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AssignmentStatement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_BaseMCDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintFunctionNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_DeadClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AddPinInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ClassDynamicCast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ComponentBoundEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallMaterialParameterCollectionFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AsyncAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Composite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AddComponentByClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_BitmaskLiteral.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ClearDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AssignDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EventNodeInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EnumInequality.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_AddComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Copy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintVariableNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CreateDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ConvertAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EnumLiteral.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\BlueprintBoundNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CommutativeAssociativeBinaryOperator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallFunctionOnMember.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_DelegateSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CastByteToEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EaseFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ActorBoundEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ExternalGraphInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_DoOnceMultiInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_BaseAsyncTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ConstructObjectFromClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_DynamicCast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ForEachElementInEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GeneratedBoundEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EditablePinBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_FunctionResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_FunctionTerminator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetClassDefaults.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GenericToText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_FormatText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetEnumeratorName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_FunctionEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_ExecutionSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetNumEnumEntries.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetInputAxisValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CallParentFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetDataTableRow.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_CustomEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetInputVectorAxisValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetEnumeratorNameAsString.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetArrayItem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Literal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GenericCreateObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputAxisEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputVectorAxisEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_IfThenElse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Knot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputKeyEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_LoadAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_LocalVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputAxisKeyEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MathExpression.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputTouch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Message.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_PureAssignmentStatement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InstancedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Self.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputTouchEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\EdGraphSchema_K2_Actions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_InputActionEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_EnumEquality.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SetVariableOnPersistentFrame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SetFieldsInStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_StructMemberGet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SpawnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MultiGate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_RemoveDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_StructOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SwitchInteger.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MacroInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_PromotableOperator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_StructMemberSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\EdGraphSchema_K2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_TemporaryVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_VariableGet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Switch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Select.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SpawnActorFromClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Event.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SwitchString.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SwitchEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_VariableSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Timeline.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_SwitchName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_VariableSetRef.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\NodeDependingOnEnumInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_TunnelBoundary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Tunnel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_Variable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_MakeContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Classes\\K2Node_GetInputAxisKeyValue.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Public\\AnimNotifyEventNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Public\\BlueprintEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Public\\BlueprintNodeSpawner.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BlueprintGraph\\Private\\K2Node_EditorPropertyAccess.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintGraph\\UHT\\BlueprintGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "KismetWidgets", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\KismetWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\KismetWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\KismetWidgets\\Public\\PinTypeSelectorFilter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\KismetWidgets\\UHT\\KismetWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClassViewer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClassViewer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClassViewer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClassViewer\\Public\\ClassViewerProjectSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClassViewer\\UHT\\ClassViewer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContentBrowserData", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContentBrowserData\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserDataLegacyBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserDataMenuContexts.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserItemPath.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserDataFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserItem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserDataSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ContentBrowserData\\Public\\ContentBrowserDataSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContentBrowserData\\UHT\\ContentBrowserData.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorWidgets", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorWidgets\\Public\\Filters\\FilterBarConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorWidgets\\Public\\Filters\\SAssetFilterBar.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorWidgets\\UHT\\EditorWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorConfig", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorConfig", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorConfig\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorConfig\\Public\\EditorConfigSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorConfig\\Public\\EditorMetadataOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorConfig\\Public\\EditorConfigBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorConfig\\Private\\Tests\\EditorConfigTests.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorConfig\\UHT\\EditorConfig.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetDefinition", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AssetDefinition", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetDefinition\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AssetDefinition\\Public\\AssetDefinitionRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AssetDefinition\\Public\\Misc\\AssetFilterData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AssetDefinition\\Public\\AssetDefinition.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetDefinition\\UHT\\AssetDefinition.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorFramework", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Factories\\AssetFactoryInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Subsystems\\EditorElementSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Tools\\AssetEditorContextInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Elements\\Interfaces\\TypedElementDetailsInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Subsystems\\PlacementSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Elements\\Framework\\TypedElementViewportInteraction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorFramework\\Public\\Toolkits\\AssetEditorModeUILayer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorFramework\\UHT\\EditorFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorSubsystem", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorSubsystem", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorSubsystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\EditorSubsystem\\Public\\EditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorSubsystem\\UHT\\EditorSubsystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationEditor\\Public\\AnimationToolMenuContext.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationEditor\\UHT\\AnimationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VREditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VREditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VRModeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VRScoutingInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VREditorModeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VREditorAssetContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\UI\\VRRadialMenuHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VREditorBaseActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\Teleporter\\VREditorTeleporter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\UI\\VREditorUISystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\UI\\VREditorFloatingUI.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VREditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Public\\VREditorInteractor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\Teleporter\\VREditorAutoScaler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\VREditorCameraWidgetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\VREditorAvatarActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\VREditorWidgetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\VREditorPlacement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\VREditorFloatingText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\UI\\VREditorBaseUserWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\UI\\VREditorDockableCameraWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\UI\\VREditorDockableWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\UI\\VREditorFloatingCameraUI.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\VREditor\\Private\\UI\\VREditorRadialFloatingUI.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VREditor\\UHT\\VREditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AIGraph", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AIGraph\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph\\Classes\\AIGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph\\Classes\\AIGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph\\Classes\\AIGraphTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph\\Classes\\AIGraphSchema.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AIGraph\\Public\\K2Node_AIMoveTo.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AIGraph\\UHT\\AIGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletalMeshEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletalMeshEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletalMeshEditor\\Public\\SkeletalMeshEditorContextMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SkeletalMeshEditor\\Public\\SkeletalMeshEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshEditor\\UHT\\SkeletalMeshEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StaticMeshEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StaticMeshEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StaticMeshEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StaticMeshEditor\\Public\\StaticMeshEditorSubsystemHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StaticMeshEditor\\Public\\StaticMeshEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StaticMeshEditor\\Private\\StaticMeshEditorModeUILayer.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StaticMeshEditor\\UHT\\StaticMeshEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Blutility", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Blutility\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityToolMenu.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\ActorActionUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityCamera.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityWidgetBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityWidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\GlobalEditorUtilityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\PlacedEditorUtilityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\EditorUtilityWidgetComponents.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Classes\\AssetActionUtility.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\AsyncRegisterAndExecuteTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\IEditorUtilityExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\ToolMenuWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\AsyncImageExport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\EditorUtilityWidgetProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\AsyncCaptureScene.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\EditorUtilityLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Public\\EditorUtilitySubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Private\\EditorUtilityAssetPrototype.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Blutility\\Private\\EditorFunctionLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Blutility\\UHT\\Blutility.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SparseVolumeTexture", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SparseVolumeTexture", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SparseVolumeTexture\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SparseVolumeTexture\\Public\\OpenVDBImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\SparseVolumeTexture\\Public\\SparseVolumeTextureFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SparseVolumeTexture\\UHT\\SparseVolumeTexture.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationBlueprintEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationBlueprintEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintEditor\\Public\\AnimationBlueprintEditorSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\AnimationBlueprintEditor\\Private\\AnimationBlueprintToolMenuContext.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationBlueprintEditor\\UHT\\AnimationBlueprintEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CSVtoSVG", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CSVtoSVG", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CSVtoSVG\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\CSVtoSVG\\Public\\CSVtoSVGArguments.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CSVtoSVG\\UHT\\CSVtoSVG.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothPainter", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothPainter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothPainter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothPainter\\Public\\CopyVertexColorToClothParams.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothPainter\\Public\\ClothingAssetExporter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothPainter\\Private\\ClothPaintSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothPainter\\Private\\ClothPaintTools.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothPainter\\UHT\\ClothPainter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshPaint", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MeshPaint", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaint\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MeshPaint\\Public\\MeshPaintSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MeshPaint\\Public\\MeshPaintTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MeshPaint\\Private\\SImportVertexColorOptions.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaint\\UHT\\MeshPaint.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OverlayEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\OverlayEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OverlayEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\OverlayEditor\\Private\\Factories\\BasicOverlaysFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\OverlayEditor\\Private\\Factories\\BasicOverlaysFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\OverlayEditor\\Private\\Factories\\ReimportBasicOverlaysFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\OverlayEditor\\Private\\Factories\\LocalizedOverlaysFactoryNew.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OverlayEditor\\UHT\\OverlayEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TextureEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\TextureEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TextureEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\TextureEditor\\Classes\\TextureEditorSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TextureEditor\\UHT\\TextureEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ToolMenusEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ToolMenusEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolMenusEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ToolMenusEditor\\Public\\ToolMenusEditor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolMenusEditor\\UHT\\ToolMenusEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTasksEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "EngineDeveloper", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameplayTasksEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTasksEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\GameplayTasksEditor\\Classes\\K2Node_LatentGameplayTaskCall.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTasksEditor\\UHT\\GameplayTasksEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BehaviorTreeEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BehaviorTreeEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeDecoratorGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeDecoratorGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BlackboardDataFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeDecoratorGraphNode_Logic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeEditorTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeDecoratorGraphNode_Decorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_Composite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_SimpleParallel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_CompositeDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_Task.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\EdGraphSchema_BehaviorTreeDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_SubtreeTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_Decorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_Service.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\EdGraphSchema_BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Classes\\BehaviorTreeGraphNode_Root.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Public\\AssetDefinition_BehaviorTree.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\BehaviorTreeEditor\\Private\\AssetDefinition_Blackboard.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BehaviorTreeEditor\\UHT\\BehaviorTreeEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ScriptableEditorWidgets", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ScriptableEditorWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ScriptableEditorWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ScriptableEditorWidgets\\Public\\Components\\DetailsView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ScriptableEditorWidgets\\Public\\Components\\PropertyViewBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ScriptableEditorWidgets\\Public\\Components\\SinglePropertyView.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ScriptableEditorWidgets\\UHT\\ScriptableEditorWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StringTableEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StringTableEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StringTableEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StringTableEditor\\Private\\AssetDefinition_StringTable.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StringTableEditor\\UHT\\StringTableEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PhysicsAssetEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsAssetEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetEditorAnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetEditorToolMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetEditorPhysicsHandleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetEditorAnimInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetEditorSkeletalMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetGraph\\PhysicsAssetGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetGraph\\PhysicsAssetGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetGraph\\PhysicsAssetGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetGraph\\PhysicsAssetGraphNode_Bone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\PhysicsAssetEditor\\Private\\PhysicsAssetGraph\\PhysicsAssetGraphNode_Constraint.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PhysicsAssetEditor\\UHT\\PhysicsAssetEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InputBindingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\InputBindingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputBindingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\InputBindingEditor\\Private\\EditorKeyboardShortcutSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputBindingEditor\\UHT\\InputBindingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Cascade", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Cascade", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Cascade\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Cascade\\Classes\\CascadeParticleSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\Cascade\\Classes\\CascadeConfiguration.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Cascade\\UHT\\Cascade.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothingSystemEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\ClothingSystemEditor\\Public\\ClothingAssetFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClothingSystemEditor\\UHT\\ClothingSystemEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MergeActors", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MergeActors", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MergeActors\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MergeActors\\Private\\MeshApproximationTool\\MeshApproximationTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MergeActors\\Private\\MeshMergingTool\\MeshMergingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MergeActors\\Private\\MeshInstancingTool\\MeshInstancingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MergeActors\\Private\\MeshProxyTool\\MeshProxyTool.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MergeActors\\UHT\\MergeActors.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldPartitionEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldPartitionEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor\\Public\\WorldPartition\\WorldPartitionConvertOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor\\Public\\WorldPartition\\WorldPartitionEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor\\Public\\WorldPartition\\ContentBundle\\ContentBundleEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor\\Public\\WorldPartition\\HLOD\\HLODEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldPartitionEditor\\Public\\WorldPartition\\HLOD\\HLODLayerFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldPartitionEditor\\UHT\\WorldPartitionEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldBrowser", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldBrowser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldBrowser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldBrowser\\Private\\WorldBrowserConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldBrowser\\Private\\LevelFolders.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\WorldBrowser\\Private\\Tiles\\WorldTileDetails.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldBrowser\\UHT\\WorldBrowser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LandscapeEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandscapeEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Public\\LandscapeFileFormatInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Public\\LandscapeImportHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Public\\LandscapeEditorObject.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Private\\Classes\\ActorFactoryLandscape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Private\\Classes\\LandscapePlaceholder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditor\\Private\\LandscapeLayerInfoObjectFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandscapeEditor\\UHT\\LandscapeEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LandscapeEditorUtilities", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditorUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandscapeEditorUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LandscapeEditorUtilities\\Public\\LandscapeBlueprintBrush.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandscapeEditorUtilities\\UHT\\LandscapeEditorUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MassEntityEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MassEntityEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MassEntityEditor\\Public\\MassEntityEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MassEntityEditor\\Public\\MassEntityEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityEditor\\UHT\\MassEntityEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MassEntityDebugger", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MassEntityDebugger", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityDebugger\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\MassEntityDebugger\\Public\\MassDebuggerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MassEntityDebugger\\UHT\\MassEntityDebugger.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LevelInstanceEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelInstanceEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelInstanceEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelInstanceEditor\\Public\\LevelInstanceEditorSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelInstanceEditor\\Private\\LevelInstanceActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LevelInstanceEditor\\Private\\LevelInstanceEditorMode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelInstanceEditor\\UHT\\LevelInstanceEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StructViewer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StructViewer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructViewer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StructViewer\\Public\\StructViewerProjectSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructViewer\\UHT\\StructViewer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalizationDashboard", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LocalizationDashboard", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizationDashboard\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\LocalizationDashboard\\Private\\LocalizationDashboardSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizationDashboard\\UHT\\LocalizationDashboard.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MotionWarping", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MotionWarping\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\AnimNotifyState_MotionWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingCharacterAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\AttributeBasedRootMotionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier_SkewWarp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier_AdjustmentBlendWarp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MotionWarping\\UHT\\MotionWarping.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequencerScripting", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerScripting\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\SequenceTimeUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneEventTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieScenePrimitiveMaterialTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneVectorTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\SequencerScriptingRange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneTimeWarpExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneFolderExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieScenePropertyTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneMaterialTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\SequencerScriptingRangeExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneSectionExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneBindingExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneSequenceExtensions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingByte.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingBool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingActorReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingObjectPath.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingString.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingInteger.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingDouble.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingFloat.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerScripting\\UHT\\SequencerScripting.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Serialization", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Serialization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Serialization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Serialization\\Private\\Tests\\StructSerializerTestTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Serialization\\UHT\\Serialization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StructUtilsEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StructUtilsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructUtilsEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\StructUtilsEditor\\Public\\PropertyBagDetails.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StructUtilsEditor\\UHT\\StructUtilsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigVM", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVM\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawInstruction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMUnknownType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDebugInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMStatistics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_CastEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_MakeStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMGraphFunctionHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Constant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMTrait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDispatchFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_CastObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Switch.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMProfilingInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_ControlFlow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_If.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Core.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunctionDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Print.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Select.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMUserWorkflow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimEasing.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_Name.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_Context.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugLine.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMExternalVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryStorageStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_GetDeltaTime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimEvalRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_ForLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_UserDefinedEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_GetWorldTime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_TimeConversion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugPrimitives.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVM.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMExecuteContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_VisualDebug.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_SimBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Verlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Array.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMGraphFunctionDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_AlphaInterp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryDeprecated.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMNativized.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathMatrix.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_Noise.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathRay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_DeltaFromPrevious.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_String.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Timeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathInt.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMNodeLayout.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Kalman.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathRBFInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMByteCode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMMathLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_TimeOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathQuaternion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBox.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryStorage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Accumulate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathDouble.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathVector.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVM\\UHT\\RigVM.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContentBrowserFileDataSource", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserFileDataSource\\Source\\ContentBrowserFileDataSource", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserFileDataSource\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserFileDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBFileDataSource\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserFileDataSource\\Source\\ContentBrowserFileDataSource\\Public\\ContentBrowserFileDataSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserFileDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBFileDataSource\\UHT\\ContentBrowserFileDataSource.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PythonScriptPlugin", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PythonScriptPlugin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Public\\PythonScriptTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PythonScriptCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\K2Node_ExecutePythonScript.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PythonScriptLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PythonOnlineDocsCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyTestInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\EditorUtilities\\EditorPythonScriptingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PythonScriptPluginSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyWrapperEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyWrapperBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyWrapperDelegate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyWrapperObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Source\\PythonScriptPlugin\\Private\\PyWrapperStruct.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\PythonScriptPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PythonScriptPlugin\\UHT\\PythonScriptPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VisualGraphUtils", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\VisualGraphUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VisualGraphUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\VisualGraphUtils\\Public\\VisualGraphEdge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\VisualGraphUtils\\Public\\VisualGraphElement.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VisualGraphUtils\\UHT\\VisualGraphUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigVMDeveloper", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVMDeveloper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMUserWorkflowRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMTraitDefaultValueStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMLink.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMVariableDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMBuildData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\EdGraph\\RigVMEdGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMFunctionInterfaceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMExternalDependency.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMAggregateNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMNotifications.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMCollapseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMFunctionReferenceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMDispatchNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMEnumNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\EdGraph\\RigVMEdGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMBranchNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\EdGraph\\RigVMEdGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMFunctionReturnNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMLibraryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMFunctionEntryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMInvokeEntryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMCommentNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMVariableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMIfNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMUnitNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMSelectNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMCompiler\\RigVMCompiler.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMRerouteNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMParameterNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMPin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\Nodes\\RigVMTemplateNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMModel\\RigVMControllerActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMDeveloper\\Public\\RigVMCompiler\\RigVMAST.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVMDeveloper\\UHT\\RigVMDeveloper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequencerScriptingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScriptingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerScriptingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScriptingEditor\\Public\\SequencerCurveEditorObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScriptingEditor\\Public\\SequencerTools.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerScriptingEditor\\UHT\\SequencerScriptingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LevelSequenceEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelSequenceEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Public\\FilmOverlayToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Public\\Misc\\LevelSequenceEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Public\\LevelSequenceEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Public\\LevelSequenceEditorBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Private\\Factories\\LevelSequenceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Private\\Misc\\LevelSequenceEditorMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Source\\LevelSequenceEditor\\Private\\AssetTools\\AssetDefinition_LevelSequence.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\LevelSequenceEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LevelSequenceEditor\\UHT\\LevelSequenceEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigVMEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVMEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphEnumNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphInvokeEntryNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphUnitNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphFunctionRefNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphVariableNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\EdGraph\\NodeSpawners\\RigVMEdGraphTemplateNodeSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\RigVMEditorBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\Editor\\RigVMDetailsViewWrapperObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVMEditor\\Public\\Editor\\RigVMEditorMenuContext.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigVMEditor\\UHT\\RigVMEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRig", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRig\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigValidationPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig_Library.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig_ExternalSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigControlActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigRuleManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\AdditiveControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigAnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimSoftCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\AnimationHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigGizmoLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\StructReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigBoneHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Constraints\\ControlRigTransformableHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\ControlRigLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\FKControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\ControlRigSequenceObjectReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigModuleDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigConnectionRules.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigSpaceHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigCurveContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimLinearSpring.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigGizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\ControlRigNodeWorkflow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigControlHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigDispatchFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigSpaceChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPoseMirrorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Control\\RigUnit_Control_StaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Settings\\ControlRigSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugLine.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Transform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_ProfilingBracket.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Core\\RigUnit_UserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_AimConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPoseProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigTestData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_BlendTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_ApplyFK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugBezier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigInfluenceMap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Drawing\\RigUnit_DrawContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_IsInteracting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_SequenceExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_BeginExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_InverseExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_VisualDebug.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigUnitContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Control\\RigUnit_Control.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Physics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugPrimitives.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_InteractionExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetRelativeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Quaternion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_BoneName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetInitialBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_OffsetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetControlInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetSpaceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetRelativeBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_RigModules.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ProjectTransformToNewParent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_AddBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_PropagateTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Float.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Collision\\RigUnit_WorldCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Converter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SendEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_TwoBoneIKFK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneTranslation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\RigUnit_HighlevelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_UnsetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlDrivenList.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetRelativeBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Item.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_CurveExists.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetSpaceInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetSpaceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ParentSwitchConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_ModifyBoneTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_GetJointTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_WorldSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Modules\\RigUnit_ConnectionCandidates.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetRelativeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Modules\\RigUnit_ConnectorExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TwistBones.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ControlChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetControlTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_FABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Harmonics\\RigUnit_ChainHarmonics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Harmonics\\RigUnit_BoneHarmonics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Collection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlVisibility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_PrepareForExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Hierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyElements.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_AimBone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ControlChannelFromItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Simulation\\RigUnit_PointSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TwoBoneIKSimple.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_DistributeRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_DynamicHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SlideChain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Animation\\RigUnit_AnimAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_ModifyTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SpringIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_MultiFABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Simulation\\RigUnit_SpringInterp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_FitChainToCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_Metadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SphericalPoseReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TransformConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyController.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Private\\Validation\\ControlRigNumericalValidationPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Private\\Sequencer\\ControlRigLayerInstanceProxy.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRig\\UHT\\ControlRig.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRigDeveloper", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigDeveloper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\ControlRigSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\AnimGraphNode_ControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\ControlRigBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\Graph\\ControlRigGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\Graph\\ControlRigGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigDeveloper\\Public\\Graph\\ControlRigGraph.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigDeveloper\\UHT\\ControlRigDeveloper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRigEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\ControlRigBlueprintEditorLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\ControlRigBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\RigSpacePickerBakeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\Tools\\CreateControlAssetRigSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\ControlRigThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\Tools\\ControlRigSnapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\Tools\\ControlRigPoseThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\Tools\\ControlRigSnapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\EditMode\\ControlRigEditMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Public\\ControlRigSequencerEditorLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\AnimSequenceConverterFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\BakeToControlRigSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\ControlRigGizmoLibraryFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\EditMode\\ControlRigEditModeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\EditMode\\ControlRigControlsProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Editor\\ControlRigWrapperObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\ControlRigDrawingDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Sequencer\\AnimLayerSequencerFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Sequencer\\ControlRigSequencerFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Editor\\ControlRigContextMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Editor\\ControlRigSkeletalMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\ControlRigElementDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Tools\\AssetDefinition_ControlRigPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Sequencer\\AnimLayers\\AnimLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\EditMode\\AnimDetailsProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRigEditor\\Private\\Editor\\SRigHierarchy.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigEditor\\UHT\\ControlRigEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PBIK", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PBIK\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\RigUnit_PBIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\PBIK_Shared.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\Core\\PBIKSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PBIK\\UHT\\PBIK.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IKRig", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRig\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\CurveRemapOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\ActorComponents\\IKRigInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_SetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\ActorComponents\\IKRigComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\PinBoneOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\AnimNodes\\AnimNode_RetargetPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\RootMotionGeneratorOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_PoleSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\AnimNodes\\AnimNode_IKRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\LimbSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_BodyMover.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_LimbSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_FBIKSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRigSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetProcessor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRig\\UHT\\IKRig.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContextualAnimation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContextualAnimation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimActorInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\AnimNotifyState_IKWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\AnimNotifyState_EarlyOutContextualAnimWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSelectionCriterion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSceneActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSceneAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContextualAnimation\\UHT\\ContextualAnimation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyBindingUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyBindingUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtils\\Public\\PropertyBindingPath.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyBindingUtils\\UHT\\PropertyBindingUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActorLayerUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source\\ActorLayerUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorLayerUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source\\ActorLayerUtilities\\Public\\ActorLayerUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorLayerUtilities\\UHT\\ActorLayerUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConsoleVariablesEditorRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditorRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConsoleVariablesEditorRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditorRuntime\\Public\\ConsoleVariablesAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConsoleVariablesEditorRuntime\\UHT\\ConsoleVariablesEditorRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OpenColorIO", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OpenColorIO\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIODisplayExtensionWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOColorTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOConfiguration.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOColorSpace.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OpenColorIO\\UHT\\OpenColorIO.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosCaching", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCaching\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\ChaosCacheInterpolationMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneSpawnableChaosCacheBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneChaosCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneChaosCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Adapters\\GeometryCollectionComponentCacheAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\ChaosCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheManagerActor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Private\\Chaos\\Sequencer\\MovieSceneChaosCacheTemplate.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCaching\\UHT\\ChaosCaching.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosCloth", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCloth\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothingSimulationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothingSimulationInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothConfig.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Private\\ChaosCloth\\ChaosWeightMapTarget.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCloth\\UHT\\ChaosCloth.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosClothAssetEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosClothAssetEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothLodTransitionDataCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothAssetInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Private\\ChaosClothAsset\\ClothSimulationModel.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosClothAssetEngine\\UHT\\ChaosClothAssetEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCommandLineEncoderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCameraSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineFCPXMLExporterSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineAntiAliasingSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineColorSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineGameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineInProcessExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCommandLineEncoder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineConfigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineInProcessExecutorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineDebugSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineHighResSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineSettingBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieJobVariableAssignmentContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineOutputBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineShotConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieRenderDebugWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineOutputSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineRenderPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphBurnInWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineQueueEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelinePrimaryConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphLinearTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDefaultAudioRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineLinearExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelinePythonHostExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphEdge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphCoreTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineViewFamilySetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphApplyCVarPresetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphBurnInNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphAudioOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphDebugNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphNamedResolution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineGameOverrideSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineVideoOutputBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphRenderDataIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphBranchNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRemoveRenderSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphSequenceDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineQueue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetStartEndConsoleCommandsNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSelectNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphUIRendererNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetMetadataAttributesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRenderPassNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphInputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphTraversalContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphPin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphVariableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphWarmUpSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Renderers\\MovieGraphShowFlags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRenderLayerNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphFileOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetCVarValueNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphTimeStepData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphExecuteScriptNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphVideoOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSamplingMethodNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCommandLineEncoderNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphValueContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSubgraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphFilenameResolveParams.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDefaultRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphGlobalOutputSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphModifierNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphGlobalGameOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphRenderLayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieRenderPipelineDataTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Private\\Graph\\Nodes\\MovieGraphWidgetRendererBaseNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineCore\\UHT\\MovieRenderPipelineCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertTransport", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertTransport", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertTransport\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertTransport\\Public\\ConcertTransportMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertTransport\\Public\\IdentifierTable\\ConcertIdentifierTableData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertTransport\\Public\\ConcertTransportSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertTransport\\UHT\\ConcertTransport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Concert", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Concert\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert\\Public\\ConcertTransportEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert\\Public\\ConcertMessageData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert\\Public\\ConcertMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert\\Public\\ConcertSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\Concert\\Public\\ConcertVersion.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Concert\\UHT\\Concert.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertClient", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertClient", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertClient\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertClient\\Public\\ConcertClientSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertClient\\UHT\\ConcertClient.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertSyncCore", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertSyncCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertSyncSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertWorkspaceData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertTransactionEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertWorkspaceMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertPresenceEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Formats\\FullObjectReplicationData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertSyncSessionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\EReplicationResponseErrorCode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ChangeAuthority.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ChangeClientEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ClientQueriedInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ObjectIds.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ClientQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ReplicationFrequencySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ObjectReplicationMap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ReplicationStreamArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\AuthorityConflict.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ReplicationActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ActorLabelRemapping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertSequencerMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ObjectReplication.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\ChangeStream.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\SyncControl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\ConcertDataStoreMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ConcertPropertySelection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\Handshake.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\RestoreContent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\Muting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Messages\\PutState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Source\\ConcertSyncCore\\Public\\Replication\\Data\\ReplicationStream.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertSyncCore\\UHT\\ConcertSyncCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertSyncClient", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertSyncClient\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Public\\ConcertClientObjectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Public\\ConcertClientPresenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Public\\ConcertClientDesktopPresenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Public\\ConcertClientVRPresenceActor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Private\\ConcertAssetContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Source\\ConcertSyncClient\\Private\\ConcertClientWorkspaceData.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertSync\\ConcertSyncClient\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertSyncClient\\UHT\\ConcertSyncClient.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertSharedSlate", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Source\\ConcertSharedSlate", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConShrSlate\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Source\\ConcertSharedSlate\\Public\\ConcertFrontendUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Source\\ConcertSharedSlate\\Public\\ConcertHeaderRowUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Source\\ConcertSharedSlate\\Public\\Session\\Browser\\ConcertSessionBrowserSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertUI\\ConcertSharedSlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConShrSlate\\UHT\\ConcertSharedSlate.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConsoleVariablesEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConsoleVariablesEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditor\\Public\\ConsoleVariablesEditorFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditor\\Public\\ConsoleVariablesEditorProjectSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditor\\Private\\Factories\\ConsoleVariablesEditorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditor\\Private\\MultiUser\\ConsoleVariableSyncData.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConsoleVariablesEditor\\UHT\\ConsoleVariablesEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineBurnInWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineWidgetRenderSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineConsoleVariableSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineBurnInSetting.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineSettings\\UHT\\MovieRenderPipelineSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineRenderPasses", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineRenderPasses\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineImageSequenceOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineWaveOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphPathTracerPassNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineImagePassBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineEXROutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphDeferredPassNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphImagePassBaseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MovieGraphImageSequenceOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineDeferredPasses.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineRenderPasses\\UHT\\MovieRenderPipelineRenderPasses.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigLogicModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\AnimNode_RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\DNAAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\SkelMeshDNAUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\RigUnit_RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\DNACommon.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Private\\DNAIndexMappingDeprecated.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicModule\\UHT\\RigLogicModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraCompileHash.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraMergeable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraCore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraDataInterfaceBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraCore\\UHT\\NiagaraCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraShader", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraShader\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraGenerateMips.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraScriptBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraShared.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraShader\\UHT\\NiagaraShader.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Niagara", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Niagara\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputSimCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayNiagaraID.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputSparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterface2DArrayTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAsyncGpuTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudio.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceColorCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayInt.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceOcclusion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceLandscape.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceMeshRendererInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfacePlatformSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceMeshCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceParticleRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCamera.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCollisionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioOscilloscope.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTarget2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid2DCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVector2DCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTargetCube.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioSpectrum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurlNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCubeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataSetCompiledData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSpriteRendererInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVectorCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVector4Curve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceExport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid2DCollectionReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSpline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid3DCollectionReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVolumeCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid3DCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRW.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTargetVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVectorField.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterDefinitionsBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceNeighborGrid3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceIntRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEmitterHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraGPUSortInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraLensEffectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScriptHighlight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScratchPadContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRasterizationGrid3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEffectType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterDefinitionsSubscriber.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraValidationRuleSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraPlatformSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraValidationRule.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheCustomStorageInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraPerfBaseline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\VolumeCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScriptSourceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScript.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSystem.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraAssetTagDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCompileHashVisitor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentPoolMethodEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentPool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCompilationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCullProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelAccessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraConvertInPlaceUtilityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMessageDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMessageStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfaceEmitterBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelPublic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraEditorDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel_Global.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraLightRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfaceRigidMeshCollisionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScalabilityState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfacePhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSimStageExecutionData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel_Islands.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRenderableMeshInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScriptExecutionParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScalabilityManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraPreviewGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDebuggerCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraStackSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDecalRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraTickBehaviorEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRibbonRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSimulationStageBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraSystemTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraUserRedirectionParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraSystemSpawnSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMeshRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameterBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraFloatParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVolumeRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraColorParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraVectorParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraIntegerParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraBoolParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVariableMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraWorldManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSpriteRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraTypes.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraPrecompileContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraSimCacheDebugData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceSimpleCounter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceMemoryBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessSpawnInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraSystemEmitterState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelWrite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceSocketReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessModule.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceStaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_AccelerationForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CurlNoiseForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_AddVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_InitialMeshOrientation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessEmitterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_MeshIndex.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_GravityForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CalculateAccurateVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessDistribution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_MeshRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CameraOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_Drag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_RotateAroundPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_InitializeParticle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleSpriteSizeBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleMeshSizeBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleSpriteSize.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_DynamicMaterialParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleMeshSize.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ShapeLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SpriteRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SubUVAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SpriteFacingAndAlignment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SolveVelocitiesAndForces.h" + ], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\NDIRenderTargetVolumeSimCacheData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceGBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceDebugDraw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraVectorParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\MovieSceneNiagaraSystemTrackTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\NiagaraAsyncCompile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceEmitterProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceConsoleVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraBoolParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraFloatParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraColorParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraIntegerParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceDynamicMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceUObjectPropertyReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceSimCacheReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceSceneCapture2D.h" + ], + "PublicDefines": [ + "VECTORVM_SUPPORTS_EXPERIMENTAL=1", + "VECTORVM_SUPPORTS_LEGACY=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Niagara\\UHT\\Niagara.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraAssetTagDefinitionsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ActorFactoryNiagara.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraDataChannelAssetFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEmitterFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraClipboard.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\EdGraphSchema_Niagara.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEmitterEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEditorCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEffectTypeFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\EdGraphSchema_NiagaraSystemOverview.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeWriteDataSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraParameterDefinitionsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraParameterCollectionFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeAssignment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraSpawnShortcut.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraOverviewNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeDataSetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Commandlets\\NiagaraScriptValidationCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Commandlets\\NiagaraDumpBytecodeCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraParameterDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraSystemEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeWithDynamicPins.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeCustomHlsl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Commandlets\\NiagaraSystemAuditCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEditorModule.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraScriptFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeReadDataSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeInput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Commandlets\\NiagaraDumpModuleInfoCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraSystemFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNodeFunctionCall.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\UpgradeNiagaraScriptResults.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Commandlets\\NiagaraStatelessAuditCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\VolumeCacheFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraScriptVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraValidationRules.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraScriptSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Customizations\\NiagaraEventScriptPropertiesCustomization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\NiagaraSystemScalabilityViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\NiagaraStackEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\NiagaraSystemSelectionViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\HierarchyEditor\\NiagaraUserParametersHierarchyViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\HierarchyEditor\\NiagaraHierarchyScriptParametersViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\NiagaraCurveSelectionViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\NiagaraScratchPadViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackErrorItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackEmitterPropertiesGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\NiagaraSystemEditorDocumentsViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackCommentCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackEmitterSettingsGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackItemFooter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackEventScriptItemGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackModuleItemOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackModuleItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\HierarchyEditor\\NiagaraSummaryViewViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackPropertyRow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackItemGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\HierarchyEditor\\NiagaraHierarchyViewModelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackRenderItemGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackModuleItemLinkedInputCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackSelection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackSystemPropertiesItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackInputCategory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackNote.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackModuleItemOutputCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackFunctionInput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackSummaryViewInputCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackStatelessEmitterGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackValueCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackScriptItemGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Widgets\\AssetBrowser\\NiagaraAssetBrowserConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackSystemSettingsGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackStatelessEmitterSimulateGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackRendererItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackScriptHierarchyRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackSimulationStageGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\ViewModels\\Stack\\NiagaraStackStatelessEmitterSpawnGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Widgets\\AssetBrowser\\NiagaraMenuFilters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Public\\Widgets\\AssetBrowser\\NiagaraSemanticTagsFrontEndFilterExtension.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraConvertInPlaceEmitterAndSystemState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeIf.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraValidationRuleSetFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraAssetTagDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraDataChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeConvert.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeOutputTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraOutliner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeParameterMapFor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeParameterMapGet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraSimCacheFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraEffectType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraVersionMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeParameterMapBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraBakerSettingsDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraSimCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeStaticSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeSelect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraHlslTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeSimTargetSelector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraValidationRuleSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeParameterMapSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeReroute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraScriptVariableCustomization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\NiagaraNodeUsageSelector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\SimCache\\NiagaraMemoryBufferSimCacheVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraOutlinerCustomization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraComponentDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraParameterDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraScript.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Sequencer\\NiagaraSequence\\NiagaraSequencerFilters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraParameterBindingCustomization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\NiagaraTypeCustomizations.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\AssetDefinitions\\AssetDefinition_NiagaraParameterCollectionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Sequencer\\NiagaraSequence\\Sections\\MovieSceneNiagaraEmitterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Customizations\\SimCache\\NiagaraRenderTargetVolumeSimCacheVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Sequencer\\NiagaraSequence\\NiagaraSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Sequencer\\NiagaraSequence\\MovieSceneNiagaraEmitterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\ViewModels\\NiagaraScriptStatsViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Widgets\\SNiagaraDebuggerSpawn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraEditor\\Private\\Widgets\\DataChannel\\NiagaraDataChannelWizard.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraEditor\\UHT\\NiagaraEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCache", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCache\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackTransformGroupAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackTransformAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecRaw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackStreamable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\NiagaraGeometryCacheRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheMeshData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecV1.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackFlipbookAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecBase.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCache\\UHT\\GeometryCache.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCacheEd", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheEd", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheEd\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheEd\\Classes\\AssetDefinition_GeometryCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheEd\\Classes\\ActorFactoryGeometryCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheEd\\Classes\\GeometryCacheThumbnailRenderer.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheEd\\UHT\\GeometryCacheEd.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HairStrandsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCacheData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCacheImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomBindingAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomPluginSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetRendering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomDesc.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetMeshes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateStrandsTexturesOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateFollicleMaskOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetCards.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetPhysics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\MovieSceneGroomCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetInterpolation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\MovieSceneGroomCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateBindingOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfacePressureGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfaceVelocityGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfaceHairStrands.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Private\\MovieSceneGroomCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsCore\\UHT\\HairStrandsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WebBrowser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WebBrowser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WebBrowser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WebBrowser\\Public\\WebJSFunction.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WebBrowser\\UHT\\WebBrowser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRigSpline", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigSpline\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline\\Public\\ControlRigSplineUnits.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline\\Public\\ControlRigSplineTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ControlRigSpline\\UHT\\ControlRigSpline.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ACLPlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ACLPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimCurveCompressionCodec_ACL.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLCustom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACL.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimationCompressionLibraryDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLSafe.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Public\\ACLImpl.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ACLPlugin\\UHT\\ACLPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationWarpingRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationWarpingRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OverrideRootMotion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\AnimationWarpingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_Steering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_StrideWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OffsetRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_SlopeWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OrientationWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_FootPlacement.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationWarpingRuntime\\UHT\\AnimationWarpingRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SoundUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities\\Public\\SoundUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities\\Public\\SoundSimple.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundUtilities\\UHT\\SoundUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\NamedInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\TurnBasedMatchInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\OnlineStoreInterfaceV2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\OnlineTurnBasedInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "ONLINESUBSYSTEM_PACKAGE=1", + "DEBUG_LAN_BEACON=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystem\\UHT\\OnlineSubsystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemUtils\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\EndMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\FindSessionsCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\EndTurnCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementQueryCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\ConnectionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementWriteCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\FindTurnBasedMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\CreateSessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\DestroySessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseReceiptsCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseQueryCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseRestoreCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseCheckoutCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseFinalizeProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardFlushCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LogoutCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\JoinSessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\IpConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TestBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\OnlineSessionClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\ShowLoginUICallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardQueryCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TurnBasedBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\QuitMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TestBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\IpNetDriver.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconReservation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineAccountStoredCredentials.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeacon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconHostObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\VoipListenerSynthComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconClient.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlinePIESettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestHostObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlineServicesEngineInterfaceImpl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlineEngineInterfaceImpl.h" + ], + "PublicDefines": [ + "ONLINESUBSYSTEMUTILS_PACKAGE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemUtils\\UHT\\OnlineSubsystemUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Landmass", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Landmass\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\BrushEffectsList.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\TerrainCarvingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\FalloffSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Landmass\\UHT\\Landmass.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WinDualShock", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source\\WinDualShock", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WinDualShock\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source\\WinDualShock\\Public\\WinDualShockSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "DUALSHOCK4_SUPPORT=0", + "DUALSENSE_SUPPORT=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WinDualShock\\UHT\\WinDualShock.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EnhancedInput", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EnhancedInput\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputPlatformSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputMappingQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputActionDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputMappingContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableKeySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputDebugKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedPlayerInput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputModifiers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputDeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedActionKeyMapping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableInputConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableKeySlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputSubsystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputActionValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputSubsystems.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputTriggers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\UserSettings\\EnhancedInputUserSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EnhancedInput\\UHT\\EnhancedInput.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModularGameplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModularGameplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\PawnComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\ControllerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\PlayerStateComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponentDelegates.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameStateComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponentManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkInitStateInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModularGameplay\\UHT\\ModularGameplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistryId.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource_DataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource_CurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\SoftDataRegistryOrTable.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataRegistry\\UHT\\DataRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameFeatures", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameFeatures\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddWorldPartitionContent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddWPContent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddCheats.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddChunkOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureOptionalContentInstaller.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_DataRegistrySource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddComponents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AudioActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesSubsystemSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_DataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureVersePathMapperCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesProjectPolicies.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureStateChangeObserver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Private\\GameFeaturePluginStateMachine.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameFeatures\\UHT\\GameFeatures.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Hotfix", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Hotfix\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix\\Public\\UpdateManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix\\Public\\OnlineHotfixManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Hotfix\\UHT\\Hotfix.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SignificanceManager", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source\\SignificanceManager", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SignificanceManager\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source\\SignificanceManager\\Public\\SignificanceManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SignificanceManager\\UHT\\SignificanceManager.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ReplicationGraph", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ReplicationGraph\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\BasicReplicationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\ReplicationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\ReplicationGraphTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ReplicationGraph\\UHT\\ReplicationGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayAbilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayAbilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemTestAttributeSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemTestPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemDebugHUD.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\ActiveGameplayEffectHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemGlobals.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilityBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitiesDeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Static.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AttributeSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySpec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySpecHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Burst.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemReplicationProxyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_HitImpact.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectAttributeCaptureDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectCustomApplicationRequirement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AnimNotify_GameplayCue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Looping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_BurstLatent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\ScalableFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectUIData_TextOnly.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCue_Types.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_SingleLineTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectExecutionCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_ActorPlacement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotifyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\TickableAttributeSetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayModMagnitudeCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityRepAnimMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectUIData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityWorldReticle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetDataFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayTagResponseTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility_CharacterJump.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayEffectApplied.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_Radius.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility_Montage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitAttributeChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityWorldReticle_ActorVisualization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionJumpForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionRadialForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTagCountChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionConstantForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionMoveToForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_PlayAnimAndWait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotion_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_GroundTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayPrediction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_NetworkSyncPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionMoveToActorForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_VisualizeTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_MoveToLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_Repeat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_SpawnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitConfirm.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChangeRatioThreshold.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitConfirmCancel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_PlayMontageAndWait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAbilityActivate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChangeThreshold.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied_Target.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectBlockedImmunity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitCancel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagCountChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAbilityCommit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectRemoved.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_StartAbilityState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied_Self.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectStackChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitVelocityChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitInputRelease.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Sequencer\\MovieSceneGameplayCueSections.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Sequencer\\MovieSceneGameplayCueTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\RemoveOtherGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayAbilityRepAnimMontageNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitTargetData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\MinimalGameplayCueReplicationProxyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitInputPress.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\TargetTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayEffectContextHandleNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AdditionalEffectsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\CustomCanApplyGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\MinimalReplicationTagCountNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitOverlap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\ImmunityGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayEffectContextNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AssetTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitMovementModeChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\TargetTagRequirementsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AbilitiesGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\ChanceToApplyGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\BlockAbilityTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayAbilityTargetingLocationInfoNetSerializer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\InternalMinimalReplicationTagCountMapNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\InternalMinimalGameplayCueReplicationProxyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\AbilitySystemCheatManagerExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\PredictionKeyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Tests\\GameplayCueTests.h" + ], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayAbilities\\UHT\\GameplayAbilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ExternalRpcRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ExternalRpcRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry\\Public\\ExternalRpcRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry\\Public\\ExternalRpcRegistrationComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "USE_RPC_REGISTRY_IN_SHIPPING=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ExternalRpcRegistry\\UHT\\ExternalRpcRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WaveTable", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaveTable\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableBank.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaveTable\\UHT\\WaveTable.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetasoundFrontend", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundFrontend\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundDocumentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendLiteral.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendNodeTemplateRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendDocumentBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendDocument.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundParameterPack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_METASOUND_FRONTEND=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundFrontend\\UHT\\MetasoundFrontend.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetasoundEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundAssetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOperatorCacheSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\Metasound.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundFrontendLiteralBlueprintAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOutputSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundBuilderSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundBuilderBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\Interfaces\\MetasoundOutputFormatInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundGeneratorHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundEngine\\UHT\\MetasoundEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioModulation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioModulation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationDestination.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundControlBusMix.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundControlBus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationStatics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationEnvelopeFollower.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationPatch.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationLFO.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationADEnvelope.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_AUDIOMODULATION=1", + "WITH_AUDIOMODULATION_METASOUND_SUPPORT=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioModulation\\UHT\\AudioModulation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClientPilot", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClientPilot\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotBlackboardManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotBlackboard.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ClientPilot\\UHT\\ClientPilot.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonInput", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonInput\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputTypeEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputActionDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputModeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputBaseTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "UE_COMMONINPUT_PLATFORM_TYPE = PC" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonInput\\UHT\\CommonInput.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonUI", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUI\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActivatableWidgetSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\AnalogSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonGameViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonCustomNavigation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLazyWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonBorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActivatableWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonAnimatedSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonHardwareVisibilityBorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActionHandlerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActionWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonHierarchicalScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonDateTimeTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonPoolableWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTileView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonButtonBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLoadGuard.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIVisibilitySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTreeView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLazyImage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilitySwitcherSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIRichTextData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonRotator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonListView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonRichTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUISettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUILibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUserWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUISubsystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilityWidgetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonNumericTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTabListWidgetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonWidgetCarouselNavBar.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisualAttachment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVideoPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilitySwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Groups\\CommonWidgetGroupBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonWidgetCarousel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionButtonInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUITypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionBar.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\UITag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Groups\\CommonButtonGroupBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonGenericInputActionDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionButton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\UIActionBindingHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonUIInputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Widgets\\CommonActivatableWidgetContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonUIActionRouterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Slate\\SCommonAnimatedSwitcher.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUI\\UHT\\CommonUI.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Gauntlet", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Gauntlet\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestControllerBootTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestControllerErrorTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestController.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Gauntlet\\UHT\\Gauntlet.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Spatialization", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\Spatialization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Spatialization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\Spatialization\\Public\\ITDSpatializationSourceSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Spatialization\\UHT\\Spatialization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\DynamicMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshReplacementChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\UDynamicMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshVertexChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Components\\BaseDynamicMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Components\\DynamicMeshComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryFramework\\UHT\\GeometryFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioAnalyzer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioAnalyzer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzer.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioAnalyzer\\UHT\\AudioAnalyzer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AugmentedReality", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AugmentedReality\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\AROriginActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARLifeCycleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARSharedWorldGameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARBlueprintProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARPin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARSharedWorldGameState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARLightEstimate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARTraceResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARSkyLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARDependencyHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARSharedWorldPlayerController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARGeoTrackingSupport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARSessionConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARTrackableNotifyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARTextures.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARTrackable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AugmentedReality\\Public\\ARTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AugmentedReality\\UHT\\AugmentedReality.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ComputeFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComputeFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraphComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelFromText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelPermutationVector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraphInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelPermutationSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeSourceFromText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ShaderParamTypeDefinition.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComputeFramework\\UHT\\ComputeFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OptimusSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusSettings\\Public\\OptimusSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusSettings\\UHT\\OptimusSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OptimusCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDeformerInstanceAccessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusAlternativeSelectedObjectProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeFunctionLibraryOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComputeKernelDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDataInterfaceProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComputeKernelProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeAdderPinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusExecutionDomainProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNonCollapsibleNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComponentBindingProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusGeneratedClassDefiner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodePairProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeGraphProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeGraphCollectionOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComponentBindingReceiver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNonCopyableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPropertyPinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDeprecatedExecutionDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeSubGraphReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusParameterBindingProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusUnnamedNodePinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusOutputBufferWriter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPersistentBufferProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPinMutabilityDefiner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusBindingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPathResolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusActionStack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusValueProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodePinRouter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusFunctionNodeGraphHeader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusShaderTextProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusKernelSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformerDynamicInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDiagnostic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDataDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusShaderText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusExecutionDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeSubGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusComputeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusFunctionNodeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDataType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeLink.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValidatedName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodePair.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValueContainerStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusResourceDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusVariableDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValueContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodePin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeGraph.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSkeletalMeshComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusVariableActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\OptimusComputeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSceneComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSkinnedMeshComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusResourceActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusComponentBindingActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusNodeActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ControlRig\\RigUnit_Optimus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCopyKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceLoopTerminal.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceDuplicateVertices.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCustomComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceConnectivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceDebugDraw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceHalfEdge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCloth.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ConstantValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GetResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_AnimAttributeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceAnimAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusNodeGraphActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComputeKernelFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GetVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceMorphTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComputeKernelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceAdvancedSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_DataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_FunctionReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshVertexAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshWrite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinWeightsAsVertexMask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_SetResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_CustomComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshExec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GraphTerminal.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_Resource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceRawBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ResourceAccessorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_SubGraphReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_LoopTerminal.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusCore\\UHT\\OptimusCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HairStrandsDeformer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsDeformer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomExec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomGuide.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerGroomComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomWrite.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsDeformer\\UHT\\HairStrandsDeformer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetaHumanSDKRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetaHumanSDKRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanBodyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanComponentUE.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanComponentBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetaHumanSDKRuntime\\UHT\\MetaHumanSDKRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ProceduralMeshComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ProceduralMeshComponent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent\\Public\\ProceduralMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent\\Public\\KismetProceduralMeshLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ProceduralMeshComponent\\UHT\\ProceduralMeshComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingOperators", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingOperators\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CompositionOps\\BooleanMeshesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\EditNormalsOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\RemeshMeshOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CurveOps\\TriangulateCurvesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CompositionOps\\VoxelMorphologyMeshesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\HoleFillOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\RecomputeUVsOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\UVLayoutOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\UVProjectionOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\TexelDensityOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\Properties\\UVLayoutProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\Properties\\RecomputeUVsProperties.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingOperators\\UHT\\ModelingOperators.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingComponents", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingComponents\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\InteractiveToolActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ModelingComponentsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\MeshOpPreviewHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ModelingObjectsCreationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ToolHostCustomizationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PreviewMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Baking\\BakingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseVoxelTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseCreateFromSelectedTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MultiSelectionMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MeshSurfacePointMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MultiTargetWithSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseMeshProcessingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\SingleTargetWithSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\SingleSelectionMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Changes\\DynamicMeshChangeTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Components\\OctreeDynamicMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\LineSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PolyEditPreviewMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\TriangleSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\SpatialCurveDistanceMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PointSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\AxisFilterPropertyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\MeshElementsVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CollectSurfacePathMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\PlaneDistanceFromHitMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\OnAcceptProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\ColorChannelFilterPropertyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\DragAlignmentMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\PolygroupLayersProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\WeightMapSetProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\UVLayoutPreview.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\LatticeControlPointsMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\VoxelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\CreateMeshObjectTypeProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\GeometrySelectionVisualizationProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\SpaceCurveDeformationMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\ConstructionPlaneMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\BoundarySelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\PolyLassoMarqueeMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\MeshWireframeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CurveControlPointsMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PreviewGeometryActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\SelectionEditInteractiveCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\RectangleMarqueeMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\PolygonSelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CollisionPrimitivesMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Snapping\\ModelingSceneSnappingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshCommitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\MeshTopologySelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\GeometrySelectionManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Transforms\\MultiTransformer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingComponents\\UHT\\ModelingComponents.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowEnginePlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEnginePlugin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowConnectionTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEnginePlugin\\UHT\\DataflowEnginePlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowFunctionProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowCollectionAddScalarVertexPropertyNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowContextOverridesNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowCollectionAttributeKeyNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowSkeletalMeshNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowSelectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowStaticMeshNodes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowNodes\\UHT\\DataflowNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingTools", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CombineMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\RecomputeUVsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\AddPrimitiveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CutMeshWithMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CSGMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\DrawAndRevolveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\UVLayoutTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\EditMeshPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\DrawPolygonTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\DisconnectGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\MeshUVChannelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\DeleteGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\RetriangulateGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\UVProjectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\ModifyGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditActivityContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\RevolveProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditCutFacesActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\MeshMaterialProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsetOutsetActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsertEdgeLoopActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditPlanarProjectionUVActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsertEdgeActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditExtrudeActivity.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Private\\ToolActivities\\PolyEditBevelEdgeActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Private\\ToolActivities\\PolyEditExtrudeEdgeActivity.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingTools\\UHT\\MeshModelingTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingComponentsEditorOnly", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingComponentsEditorOnly\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\EditorModelingObjectsCreationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\Operations\\SubdividePoly.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\DynamicMeshComponentToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\SkeletalMeshToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\SkeletalMeshComponentToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\StaticMeshToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\StaticMeshComponentToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponentsEditorOnly\\Public\\ToolTargets\\VolumeComponentToolTarget.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingComponentsEditorOnly\\UHT\\ModelingComponentsEditorOnly.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingToolsExp", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsExp\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\AddPatchTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeMapsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\AlignObjectsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeMapsToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeTransformTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeToolCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ConvertMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeVertexTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMultiMeshAttributeMapsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DynamicMeshBrushTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ConvertToPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditNormalsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DeformMeshPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\CubeGridTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditPivotTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DrawPolyPathTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\LatticeDeformerTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditUVIslandsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DisplaceMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\HoleFillTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DynamicMeshSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshBoundaryToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshInspectorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ProjectToTargetTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\OffsetMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SelfUnionMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SplitMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RevolveBoundaryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshGroupPaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelBlendMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SeamSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\PlaneCutTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SmoothMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshAttributePaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TriangulateSplinesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshVertexPaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MirrorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TransferMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RemoveOccludedTrianglesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshSpaceDeformerTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RevolveSplineTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VolumeToMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshVertexSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RemeshMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\UVTransferTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelMorphologyMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TransformMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\MeshStatisticsProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\RemeshProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelSolidifyMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\WeldMeshEdgesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\MeshAnalysisProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\PatternTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\PhysicsInspectorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\ExtractCollisionGeometryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\CollisionPropertySets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\SimpleCollisionEditorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Polymodeling\\OffsetMeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshBrushOpBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\SetCollisionGeometryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Polymodeling\\ExtrudeMeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshGroupPaintBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshInflateBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshPinchBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshMoveBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSculptBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshPlaneBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSmoothingBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Spline\\BaseMeshFromSplinesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSculptToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshVertexPaintBrushOps.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Private\\Sculpting\\KelvinletBrushOp.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsExp\\UHT\\MeshModelingToolsExp.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCacheTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheTracks\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Classes\\MovieSceneGeometryCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Classes\\MovieSceneGeometryCacheTrack.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Private\\MovieSceneGeometryCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheTracks\\UHT\\GeometryCacheTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Common", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Common\\Public\\MaterialX\\InterchangeMaterialXDefinitions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCommon\\UHT\\InterchangeCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkComponents", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkComponents\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkComponentSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\Controllers\\LiveLinkLightController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkComponentController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\Controllers\\LiveLinkTransformController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkControllerBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkComponents\\UHT\\LiveLinkComponents.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "USDClasses", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\USDClasses\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDDuplicateType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDMetadataImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDDrawModeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDUnrealAssetInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDStageOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDReferenceOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache3.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDProjectSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\USDClasses\\UHT\\USDClasses.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UnrealUSDWrapper", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\UnrealUSDWrapper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealUSDWrapper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\UnrealUSDWrapper\\Public\\UnrealUSDWrapper.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "USD_FORCE_DISABLED=0", + "USE_USD_SDK=1", + "ENABLE_USD_DEBUG_PATH=0", + "USD_USES_SYSTEM_MALLOC=1", + "USD_MERGED_MODULES=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UnrealUSDWrapper\\UHT\\UnrealUSDWrapper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Messages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Messages\\Public\\Fbx\\InterchangeFbxMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeMessages\\UHT\\InterchangeMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeDecalMaterialNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureCubeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureCubeArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTexture2DArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeDecalNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMeshDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMaterialInstanceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeLightNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeVolumeTextureNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeAnimationTrackSetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureLightProfileNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeVariantSetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTexture2DNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeAnimationDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureBlurNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeSceneNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeShaderGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMeshNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeNodes\\UHT\\InterchangeNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCommonParser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\CommonParser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCommonParser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\CommonParser\\Public\\InterchangeCommonAnimationPayload.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeCommonParser\\UHT\\InterchangeCommonParser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeFbxParser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\Fbx", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeFbxParser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\Fbx\\Public\\InterchangeFbxSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeFbxParser\\UHT\\InterchangeFbxParser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VariantManagerContent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManagerContent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\FunctionCaller.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\SwitchActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\VariantSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\VariantObjectBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueSoftObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\Variant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSetsFunctionDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSetsActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValue.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManagerContent\\UHT\\VariantManagerContent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeFactoryNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeFactoryNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSceneImportAssetFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeDecalActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeCommonPipelineDataFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMeshActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelSequenceFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeCameraFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeDecalMaterialFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSceneVariantSetsFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureCubeArrayFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureCubeFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLightFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletalMeshLodDataNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMaterialFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelInstanceActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletonFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureLightProfileFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeVolumeTextureFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeAnimSequenceFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangePhysicsAssetFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTexture2DArrayFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeStaticMeshLodDataNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTexture2DFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletalMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeStaticMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureFactoryNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeFactoryNodes\\UHT\\InterchangeFactoryNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VariantManagerContentEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManagerContentEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor\\Public\\SwitchActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor\\Public\\VariantManagerFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor\\Public\\VariantManagerTestActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor\\Public\\LevelVariantSetsActorFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContentEditor\\Private\\AssetDefinition_LevelVariantSets.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManagerContentEditor\\UHT\\VariantManagerContentEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VariantManager", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source\\VariantManager", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManager\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source\\VariantManager\\Public\\CapturableProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source\\VariantManager\\Public\\VariantManagerBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source\\VariantManager\\Private\\PropertyTemplateObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Source\\VariantManager\\Private\\DisplayNodes\\VariantManagerDisplayNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManager\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\VariantManager\\UHT\\VariantManager.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeImport", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeImport\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeLevelSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeAnimSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeAnimationPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\InterchangeAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Gltf\\InterchangeGltfTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\InterchangeMaterialXTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\MaterialExpressions\\MaterialExpressionSwizzle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeStaticMeshActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeOBJTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Fbx\\InterchangeFbxTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSkeletalMeshActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeVariantSetPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeSkeletonFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\MaterialExpressions\\MaterialExpressionTextureSampleParameterBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSceneVariantSetsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeMeshPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTextureLightProfilePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeCameraActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeDDSTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeBlockedTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeImageWrapperTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeIESTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLightActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeJPGTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeSkeletalMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeUEJPEGTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangePSDTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSceneImportAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLevelFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLevelInstanceActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeStaticMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeDecalActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangePhysicsAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeSlicedTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Material\\InterchangeMaterialFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Usd\\InterchangeUsdTranslator.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionAppend4Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionBurn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionIn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionFractal3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDifference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMatte.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionAppend3Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionLuminance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOut.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDodge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDisjointOver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMinus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionScreen.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRampTopBottom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOverlay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRampLeftRight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPremult.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionUnpremult.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPlus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionSplitTopBottom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionSplitLeftRight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRotate2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPlace2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRamp4.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRemap.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeImport\\UHT\\InterchangeImport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangePipelines", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangePipelines\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeglTFPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericMeshPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAssetsPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericTexturePipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericMaterialPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeMaterialXPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAssetsPipelineSharedSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericScenesPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAnimationPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangePipelineMeshesUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangePipelines\\UHT\\InterchangePipelines.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakeMovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeMovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeMovieScene\\UHT\\TakeMovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakesCore", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakesCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakesCoreBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakeRecorderSources.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakeRecorderSourceProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakePreset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakeMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakesCore\\Public\\TakeRecorderSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakesCore\\UHT\\TakesCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakeTrackRecorders", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeTrackRecorders\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneVisibilityTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\IMovieSceneTrackRecorderHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneTrackRecorderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneAnimationTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieScene3DAttachTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieScene3DTransformTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneParticleTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneSpawnTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieSceneAnimationTrackRecorderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeTrackRecorders\\Public\\TrackRecorders\\MovieScenePropertyTrackRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeTrackRecorders\\UHT\\TakeTrackRecorders.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakeRecorder", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeRecorder\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\TakeRecorderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\Recorder\\TakeRecorderSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\TakeRecorderOverlayWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\Recorder\\TakeRecorderParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\Recorder\\TakeRecorderPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\Recorder\\TakeRecorderBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Public\\Recorder\\TakeRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorder\\Private\\AssetDefinition_TakePreset.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeRecorder\\UHT\\TakeRecorder.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraSimCaching", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraSimCaching\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Public\\Niagara\\Sequencer\\MovieSceneNiagaraCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Public\\Niagara\\Sequencer\\MovieSceneNiagaraCacheSection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Private\\Niagara\\Sequencer\\MovieSceneNiagaraCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraSimCaching\\UHT\\NiagaraSimCaching.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalizableMessage", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizableMessage\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage\\Public\\LocalizableMessageBaseParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage\\Public\\LocalizableMessage.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizableMessage\\UHT\\LocalizableMessage.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalizableMessageBlueprint", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessageBlueprint", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizableMessageBlueprint\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessageBlueprint\\Public\\LocalizableMessageLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocalizableMessageBlueprint\\UHT\\LocalizableMessageBlueprint.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNE", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNE\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeCPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeNPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNEModelData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeGPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNETypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeRDG.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNEAttributeDataType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNEAttributeValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNERuntimeFormat.h" + ], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNE\\UHT\\NNE.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkMessageBusFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkMessageBusFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkMessageBusFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkMessageBusFramework\\Public\\LiveLinkMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkMessageBusFramework\\UHT\\LiveLinkMessageBusFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkAnimationCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkAnimationCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\AnimNode_LiveLinkPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkRetargetAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkRemapAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkAnimationCore\\UHT\\LiveLinkAnimationCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Paper2D", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Paper2D\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\IntMargin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperGroupedSpriteActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperCharacter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperRuntimeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbookActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbook.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainSplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperGroupedSpriteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\SpriteDrawCall.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteAtlas.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbookComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMapActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\SpriteEditorOnlyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSprite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\TileMapBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMapComponent.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Public\\MaterialExpressionSpriteTextureSampler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Paper2D\\UHT\\Paper2D.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RuntimeTests", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source\\RuntimeTests", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RuntimeTests\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source\\RuntimeTests\\Public\\EngineRuntimeTests.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RuntimeTests\\UHT\\RuntimeTests.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayBehaviorsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayBehaviorsModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\BlackboardKeyType_GameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\BTTask_StopGameplayBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehavior_AnimationBased.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorConfig_Animation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorsBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\GameplayBehaviorConfig_BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\GameplayBehavior_BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\ValueOrBBKey_GameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\BTDecorator_GameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehavior.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayBehaviorsModule\\UHT\\GameplayBehaviorsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TargetingSystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TargetingSystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingSelectionTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\TargetingSystem\\TargetingPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Async\\AsyncAction_PerformTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\CollisionQueryTaskData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_ActorClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_BasicFilterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_SortByDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingFilterTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\AbilityTasks\\AbilityTask_PerformTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingSortTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_SourceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_AOE.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSortTask_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\TargetingSystem\\TargetingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Types\\TargetingSystemTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TargetingSystem\\UHT\\TargetingSystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldConditions", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldConditions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionQuery.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldConditions\\UHT\\WorldConditions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SmartObjectsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\EnvQueryGenerator_SmartObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\GenericSmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDebugRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\EnvQueryItemType_SmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\BlackboardKeyType_SOClaimHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectHashGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectContainerRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectOctree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDefinitionReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionObjectTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectUserComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectAnnotation_SlotUserCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\WorldCondition_SmartObjectActorTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionSlotTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectSlotLinkAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectPersistentCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectRuntime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectSlotEntranceAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Private\\SmartObjectSubsystemRenderingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Private\\SmartObjectTestingActor.h" + ], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsModule\\UHT\\SmartObjectsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayBehaviorSmartObjectsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayBhvSO\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\GameplayBehaviorSmartObjectBehaviorDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\GameplayBehaviorSmartObjectsBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\AI\\BTTask_FindAndUseGameplayBehaviorSmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\AI\\AITask_UseGameplayBehaviorSmartObject.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayBhvSO\\UHT\\GameplayBehaviorSmartObjectsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StateTreeModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeLinker.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeEvaluatorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeConditionBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeConsiderationBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeIndexTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeConsiderationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeEvaluatorBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\IStateTreeSchemaProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyFunctionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeNodeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeAnyEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeNodeBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeTaskBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeObjectConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Debugger\\StateTreeTraceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeExecutionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeTaskBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Tasks\\StateTreeRunParallelStateTreeTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeCommonConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyRef.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Debugger\\StateTreeDebuggerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Considerations\\StateTreeCommonConsiderations.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyBindings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeGameplayTagConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeBooleanAlgebraPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeIntPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeIntervalPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\Tasks\\StateTreeDelayTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeFloatPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\Tasks\\StateTreeDebugTextTask.h" + ], + "PublicDefines": [ + "WITH_STATETREE_TRACE=1", + "WITH_STATETREE_TRACE_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeModule\\UHT\\StateTreeModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayStateTreeModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayStateTreeModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeAITask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Conditions\\StateTreeAIConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeRunEnvQueryTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\BehaviorTree\\Tasks\\BTTask_RunStateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\BehaviorTree\\Tasks\\BTTask_RunDynamicStateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeComponentSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeAIComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeMoveToTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeAIComponentSchema.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Private\\PropertyFunctions\\StateTreeActorPropertyFunctions.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayStateTreeModule\\UHT\\GameplayStateTreeModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NavCorridor", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NavCorridor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor\\Public\\NavCorridorTestingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor\\Public\\NavCorridor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NavCorridor\\UHT\\NavCorridor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FullBodyIK", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FullBodyIK\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKDebugOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKConstraintOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKShared.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Private\\RigUnit_FullbodyIK.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FullBodyIK\\UHT\\FullBodyIK.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TemplateSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TemplateSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\SequenceCameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\Tracks\\TemplateSequenceTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequenceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\Sections\\TemplateSequenceSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequencePlayer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Private\\Tests\\SequenceCameraShakeTestUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Private\\Systems\\TemplateSequenceSystem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TemplateSequence\\UHT\\TemplateSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayCameras", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCameras\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameplayCamerasSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraBuildStatus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BuiltInCameraVariables.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraNodeEvaluatorFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BlendStackCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\ObjectTreeGraphRootObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\ObjectTreeGraphObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigProxyTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\DefaultRootCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableReferences.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigProxyAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableTableFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\RootCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigAssetReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableAssets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigTransition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\CameraDirectorStateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\ActivateCameraRigFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\SingleCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\StateTreeCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\StateTreeCameraDirectorTasks.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\PriorityQueueCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\CameraRigParameterInterop.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayControlRotationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\BlueprintCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\ControllerGameplayCameraEvaluationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\PopBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\BlueprintCameraPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Attach\\AttachToPlayerPawnCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\BlueprintCameraVariableTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\CameraNodeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\LinearBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Collision\\OcclusionMaterialCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\SimpleBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\OrbitBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\BoomArmCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\ClippingPlanesCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\ArrayCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Collision\\CollisionPushCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\CameraRigCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\DampenPositionCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\PostProcessCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\SmoothBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\OffsetCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\TargetRayCastCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInput1DSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\CameraFramingZone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\FieldOfViewCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\DollyFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInputSlotTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\InputAxisBinding2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\LensParametersCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\PanningFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\Input1DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\AutoRotateInput2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\FilmbackCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInput2DSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\Input2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Utility\\BlueprintCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\BaseFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\CriticalDamperValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Transitions\\GameplayTagTransitionConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\DoubleIIRValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Transitions\\DefaultTransitionConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\IIRValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\AccelerationDecelerationValueInterpolator.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Private\\Core\\BlendStackRootCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Private\\Core\\CameraRigCombinationRegistry.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCameras\\UHT\\GameplayCameras.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayInteractionsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayInteractions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionSmartObjectBehaviorDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionStateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionsTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionModifySlotTagTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSyncSlotTagTransition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\AI\\AITask_UseGameplayInteraction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionFindSlotTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSendSlotEventTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSyncSlotTagStateTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionGetSlotActorTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionListenSlotEventsTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSetSlotEnabledTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_GetSlotEntranceTags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\PlayMontageStateTreeTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_PlayContextualAnim.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_FindSlotEntranceLocation.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayInteractions\\UHT\\GameplayInteractionsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNEEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\NNEEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNEEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\NNEEditor\\Private\\NNEEditorModelDataFactory.h" + ], + "PublicDefines": [ + "NNEEDITORONNXTOOLS_SUPPORTED", + "NNEEDITORONNXTOOLS_SHAREDLIB_FILENAME=NNEEditorOnnxTools.dll", + "UE_NNEEDITORONNXTOOLS" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNEEditor\\UHT\\NNEEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNEDenoiser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNEDenoiser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserResourceName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserTilingConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserIOMappingData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserTemporalAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNEDenoiser\\UHT\\NNEDenoiser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActorSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequenceObjectReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequenceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequence.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorSequence\\UHT\\ActorSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UdpMessaging", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UdpMessaging\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging\\Public\\Shared\\UdpMessagingSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging\\Private\\Tests\\UdpMessagingTestTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UdpMessaging\\UHT\\UdpMessaging.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TcpMessaging", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source\\TcpMessaging", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TcpMessaging\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source\\TcpMessaging\\Private\\Settings\\TcpMessagingSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TcpMessaging\\UHT\\TcpMessaging.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HoldoutComposite", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HoldoutComposite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HoldoutComposite\\UHT\\HoldoutComposite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaPlate", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlate\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlate\\UHT\\MediaPlate.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMediaEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEngine\\Public\\Unreal\\ImgMediaPlaybackComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaEngine\\UHT\\ImgMediaEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMedia", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMedia", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMedia\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMedia\\Public\\ImgMediaSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMedia\\UHT\\ImgMedia.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaCompositing", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaCompositing\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaPlayerPropertySection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaPlayerPropertyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Private\\MovieScene\\MovieSceneMediaPlayerPropertyTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Private\\MovieScene\\MovieSceneMediaTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaCompositing\\UHT\\MediaCompositing.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioGameplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioGameplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioComponentGroupExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayRequirements.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayTagCacheSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\SoundHandleSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioParameterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\Interfaces\\IAudioGameplayCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioComponentGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\Interfaces\\IAudioGameplayVolumeInteraction.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioGameplay\\UHT\\AudioGameplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioGameplayVolume", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioGameplayVolume\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AttenuationVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\ReverbVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\FilterVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeMutator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\SubmixOverrideVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\SubmixSendVolumeComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioGameplayVolume\\UHT\\AudioGameplayVolume.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioSynesthesia", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioSynesthesia\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\AudioSynesthesia.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\AudioSynesthesiaNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\OnsetNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\ConstantQ.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\LoudnessNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\Meter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\ConstantQNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\Loudness.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\SynesthesiaSpectrumAnalysis.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioSynesthesia\\UHT\\AudioSynesthesia.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioWidgets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeterTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopeEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopeUMG.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeterStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioColorMapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioVectorscopeUMG.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioWidgetsEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrumPlotStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioRadialSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SampledSequenceVectorViewerStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioVectorscopePanelStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrumAnalyzer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrogramViewport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioWidgetsSlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioRadialSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopePanelStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioOscilloscopePanelWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialButton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialMeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialEnvelope.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialEnvelopeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialStyleContainers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\TriggerThresholdLineStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialKnob.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioSpectrumPlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialSlateTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioWidgets\\UHT\\AudioWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationLocomotionLibraryRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimLLRun\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime\\Public\\AnimDistanceMatchingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime\\Public\\AnimCharacterMovementLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimLLRun\\UHT\\AnimationLocomotionLibraryRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryScriptingCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryScriptingCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\GeometryScriptSelectionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ContainmentFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshDecompositionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBooleanFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshComparisonFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\GeometryScriptTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\CollisionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBasicEditFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSubdivideFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBakeFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ListUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSimplifyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshAssetFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBoneWeightFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshTransformFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\VolumeTextureBakeFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshVertexColorFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\SceneUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshModelingFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\TextureMapFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPoolFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshMaterialFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSelectionQueryFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\VectorMathFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPolygroupFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshDeformFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PolyPathFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshRemeshFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSamplingFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshVoxelFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ShapeFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshNormalsFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshRepairFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSpatialFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PolygonFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshQueryFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PointSetFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSelectionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshGeodesicFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPrimitiveFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshUVFunctions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryScriptingCore\\UHT\\GeometryScriptingCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Rejoin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Rejoin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Rejoin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Rejoin\\Public\\RejoinCheck.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Rejoin\\UHT\\Rejoin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Lobby", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Lobby\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconPlayerState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconState.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "LOBBY_PACKAGE=1", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Lobby\\UHT\\Lobby.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Party", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Party\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chatroom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialDebugTools.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialReadOnlyChatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialPrivateMessageChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatRoom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialGroupChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialPartyChatRoom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\PartyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\PartyMember.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\User\\SocialUser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\SocialParty.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "PARTY_PLATFORM_SESSIONS_PSN=0", + "PARTY_PLATFORM_SESSIONS_XBL=0", + "PARTY_PLATFORM_INVITE_PERMISSIONS=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Party\\UHT\\Party.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Qos", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Qos\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosRegionManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Private\\QosEvaluator.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Qos\\UHT\\Qos.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Water", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Water\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\EnvQueryTest_InsideWaterBody.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyCustomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyCustomActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\OceanCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\GerstnerWaterWaveSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\LakeCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BakedShallowWaterSimulationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\NiagaraDataInterfaceWater.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\NiagaraWaterFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyLakeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\GerstnerWaterWaves.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyLakeActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyExclusionVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyOceanActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyHeightmapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyRiverComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyOceanComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyRiverActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyHLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBrushActorInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyStaticMeshSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyIslandActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyWeightmapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterCurveSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterFalloffSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterTerrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterRuntimeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSplineMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBrushEffects.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterWaves.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterZoneActor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Private\\WaterBodyInfoMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Private\\WaterBodyStaticMeshComponent.h" + ], + "PublicDefines": [ + "WITH_WATER_SELECTION_SUPPORT=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Water\\UHT\\Water.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioCapture", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioCapture\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCaptureBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioCapture\\UHT\\AudioCapture.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonConversationRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonConversationRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationEntryPointNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationLinkNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationChoiceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSubNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationParticipantComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationRequirementNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationTaskNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSideEffectNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonConversationRuntime\\UHT\\CommonConversationRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FacialAnimation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FacialAnimation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimation\\Public\\AudioCurveSourceComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FacialAnimation\\UHT\\FacialAnimation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UObjectPlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source\\UObjectPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UObjectPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source\\UObjectPlugin\\Classes\\MyPluginObject.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UObjectPlugin\\UHT\\UObjectPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CableComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CableComponent\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent\\Classes\\CableActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent\\Classes\\CableComponent.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CableComponent\\UHT\\CableComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetTags", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source\\AssetTags", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetTags\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source\\AssetTags\\Public\\AssetTagsSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetTags\\UHT\\AssetTags.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ArchVisCharacter", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ArchVisCharacter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter\\Public\\ArchVisCharMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter\\Public\\ArchVisCharacter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ArchVisCharacter\\UHT\\ArchVisCharacter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidFileServer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidFileServer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServer\\Classes\\AndroidFileServerBPLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidFileServer\\UHT\\AndroidFileServer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidPermission", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidPermission\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission\\Classes\\AndroidPermissionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission\\Classes\\AndroidPermissionFunctionLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidPermission\\UHT\\AndroidPermission.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNERuntimeORT", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNERuntimeORT\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT\\Private\\NNERuntimeORTSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT\\Private\\NNERuntimeORT.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NNERuntimeORT\\UHT\\NNERuntimeORT.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosNiagara", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosNiagara\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Classes\\NiagaraDataInterfacePhysicsField.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Classes\\NiagaraDataInterfaceChaosDestruction.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Public\\NiagaraDataInterfaceGeometryCollection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosNiagara\\UHT\\ChaosNiagara.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FractureEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FractureEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineConvex.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineSampling.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineFracturing.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FractureEngine\\UHT\\FractureEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMaterialNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionArrayNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionOverrideNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSelectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSamplingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromVertexSelectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionFracturingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMakeNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromFloatArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSkeletonToCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionTransferVertexAttributeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMathNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionFieldNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionStaticMeshToCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSkeletalMeshToCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMeshNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionUtilityNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromVertexIndicesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionEditNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionConversionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionDebugNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\CreateColorArrayFromFloatArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionProcessingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionAssetNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionVerticesNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionTriangleBoundaryIndicesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionClusteringNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionVertexScalarToVertexIndicesNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionNodes\\UHT\\GeometryCollectionNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionDepNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionDepNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\GeometryCollectionTransferVertexScalarAttributeDepNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\SetVertexColorFromVertexSelectionDepNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\SetVertexColorFromFloatArrayDepNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionDepNodes\\UHT\\GeometryCollectionDepNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionTracks\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionSection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionTracks\\UHT\\GeometryCollectionTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtils\\Public\\AutomationUtilsBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationUtils\\UHT\\AutomationUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkMovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkMovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionBasicRole.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkStructProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Private\\MovieScene\\MovieSceneLiveLinkSectionTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkMovieScene\\UHT\\LiveLinkMovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLink", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLink\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkAnimationVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkDrivenComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkRetargetAssetReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\VirtualSubjects\\LiveLinkBlueprintVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkTimeSynchronizationSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkMessageBusFinder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkMessageBusSourceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkVirtualSubjectBoneAttachment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkTimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\PreProcessor\\LiveLinkDeadbandPreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\InterpolationProcessor\\LiveLinkBasicFrameInterpolateProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Remapper\\LiveLinkSkeletonRemapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Translator\\LiveLinkTransformRoleToAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Translator\\LiveLinkAnimationRoleToTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\PreProcessor\\LiveLinkAxisSwitchPreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\InterpolationProcessor\\LiveLinkAnimationFrameInterpolateProcessor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Private\\LiveLinkMessageBusSourceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Private\\LiveLinkVirtualSource.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLink\\UHT\\LiveLink.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeExport", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Export", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeExport\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Export\\Public\\InterchangeTextureWriter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeExport\\UHT\\InterchangeExport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GLTFExporter", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GLTFExporter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFAnimSequenceExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFSkeletalMeshExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelVariantSetsExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFMaterialExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelSequenceExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFStaticMeshExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\UserData\\GLTFMaterialUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Options\\GLTFProxyOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Options\\GLTFExportOptions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "GLTF_EXPORT_ENABLE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GLTFExporter\\UHT\\GLTFExporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DatasmithContent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DatasmithContent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithPostProcessVolumeTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAdditionalData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAreaLightActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithCineCameraComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithImportedSequencesActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithContentBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithLandscapeTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSkyLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSpotLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithSceneActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithCustomAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithActorTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithCineCameraActorTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithMaterialInstanceTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithDecalComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithPointLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSceneComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithStaticMeshTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithObjectTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithStaticMeshComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithAreaLightActorTemplate.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DatasmithContent\\UHT\\DatasmithContent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraAnimNotifies", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraAnimNotifies\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies\\Public\\AnimNotify_PlayNiagaraEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies\\Public\\AnimNotifyState_TimedNiagaraEffect.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraAnimNotifies\\UHT\\NiagaraAnimNotifies.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AESGCMHandlerComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AESGCMHandlerComponent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source\\Public\\AESGCMFaultHandler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AESGCMHandlerComponent\\UHT\\AESGCMHandlerComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "XRBase", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\XRBase\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\MotionTrackedDeviceFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\HeadMountedDisplayFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\XRAssetFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\VRNotificationsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\XRLoadingScreenFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Source\\XRBase\\Public\\XRDeviceVisualizationComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\XRBase\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\XRBase\\UHT\\XRBase.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaIOCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaIOCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\FileMediaOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\FileMediaCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\CaptureCardMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\MediaIOCoreDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\MediaIOCoreSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\MediaOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\MediaIOCoreDeinterlacer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOCore\\Public\\MediaCapture.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_MEDIA_IO_AUDIO_DEBUGGING=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaIOCore\\UHT\\MediaIOCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AppleImageUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AppleImageUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils\\Public\\AppleImageUtilsTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils\\Public\\AppleImageUtilsBlueprintProxy.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AppleImageUtils\\UHT\\AppleImageUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RemoteSession", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source\\RemoteSession", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RemoteSession\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source\\RemoteSession\\Public\\RemoteSessionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source\\RemoteSession\\Public\\ImageProviders\\RemoteSessionMediaOutput.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RemoteSession\\UHT\\RemoteSession.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationSharing", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationSharing\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingInstances.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationSharing\\UHT\\AnimationSharing.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OodleNetworkHandlerComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OodleNetworkPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Classes\\OodleNetworkTrainerCommandlet.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Public\\OodleNetworkFaultHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Public\\OodleNetworkHandlerComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OodleNetworkPlugin\\UHT\\OodleNetworkHandlerComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosVDBlueprint", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVDBlueprint", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVDBlueprint\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVDBlueprint\\Public\\ChaosVDRuntimeBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVDBlueprint\\UHT\\ChaosVDBlueprint.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineCameras", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineCameras\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\EngineCamerasSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\CompositeCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\SimpleCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\WaveOscillatorCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\PerlinNoiseCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Animations\\CameraAnimationCameraModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\LegacyCameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\DefaultCameraShakeBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Private\\Tests\\CameraShakeTestObjects.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineCameras\\UHT\\EngineCameras.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldMetricsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldMetricsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsActorTracker.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsActorTrackerSubscriber.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsExtension.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldMetricsCore\\UHT\\WorldMetricsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CsvMetrics", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CsvMetrics\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics\\Public\\CsvActorCountMetric.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics\\Public\\CsvMetricsSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CsvMetrics\\UHT\\CsvMetrics.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldMetricsTest", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsTest", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldMetricsTest\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsTest\\Public\\WorldMetricsTestTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldMetricsTest\\UHT\\WorldMetricsTest.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TraceUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source\\TraceUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TraceUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source\\TraceUtilities\\Public\\TraceUtilLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TraceUtilities\\UHT\\TraceUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Synthesis", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Synthesis\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectBitCrusher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectEQ.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectChorus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectFoldbackDistortion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectDynamicsProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectEnvelopeFollower.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectPanner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectSimpleDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectPhaser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectMidSideSpreader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectRingModulation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectMotionFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectWaveShaper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectStereoDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectFlexiverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectStereoToQuad.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectTapDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectStereoDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentGranulator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectMultiBandCompressor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentWaveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentToneGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\EpicSynth1Component.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentMonoWaveTable.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\EpicSynth1Types.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\SynthesisBlueprintUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\EffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\Synth2DSliderStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthKnobStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthKnob.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthSlateStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\Synth2DSlider.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Synthesis\\UHT\\Synthesis.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SoundFields", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source\\SoundFields", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundFields\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source\\SoundFields\\Public\\SoundFields.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundFields\\UHT\\SoundFields.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MobilePatchingUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source\\MobilePatchingUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MobilePatchingUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source\\MobilePatchingUtils\\Private\\MobilePatchingLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MobilePatchingUtils\\UHT\\MobilePatchingUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocationServicesBPLibrary", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocationServicesBPLibrary\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary\\Classes\\LocationServicesImpl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary\\Classes\\LocationServicesBPLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LocationServicesBPLibrary\\UHT\\LocationServicesBPLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GooglePAD", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePAD", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GooglePAD\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePAD\\Classes\\GooglePADFunctionLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GooglePAD\\UHT\\GooglePAD.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CustomMeshComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source\\CustomMeshComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CustomMeshComponent\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source\\CustomMeshComponent\\Classes\\CustomMeshComponent.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CustomMeshComponent\\UHT\\CustomMeshComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemSteam", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemSteam\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Classes\\SteamNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Classes\\SteamNetDriver.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Private\\OnlineAuthHandlerSteam.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemSteam\\UHT\\OnlineSubsystemSteam.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SteamSockets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SteamSockets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets\\Public\\SteamSocketsNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets\\Public\\SteamSocketsNetConnection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "STEAMSOCKETS_MODULE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SteamSockets\\UHT\\SteamSockets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SocketSubsystemEOS", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SocketSubsystemEOS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS\\Public\\NetDriverEOSBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS\\Private\\NetConnectionEOS.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SocketSubsystemEOS\\UHT\\SocketSubsystemEOS.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemEOS", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemEOS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS\\Public\\EOSSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS\\Private\\NetDriverEOS.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineSubsystemEOS\\UHT\\OnlineSubsystemEOS.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyBindingUtilsTestSuite", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtilsTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyBindingUtilsTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtilsTestSuite\\Private\\PropertyBindingUtilsTest.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyBindingUtilsTestSuite\\UHT\\PropertyBindingUtilsTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationData", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Source\\AnimationData", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationData\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Source\\AnimationData\\Private\\AnimSequencerDataModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Source\\AnimationData\\Private\\AnimSequencerController.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationData\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationData\\UHT\\AnimationData.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EnvironmentQueryEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EnvironmentQueryEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\ActorFactoryEnvironmentQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EdGraphSchema_EnvironmentQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryGraphNode_Option.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryGraphNode_Test.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Public\\EnvironmentQueryGraphNode_Root.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Source\\EnvironmentQueryEditor\\Private\\AssetDefinition_EnvironmentQuery.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AI\\EnvironmentQueryEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EnvironmentQueryEditor\\UHT\\EnvironmentQueryEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationModifierLibrary", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationModifierLibrary\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\EncodeRootBoneModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\MotionExtractorTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\CopyBonesModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\MotionExtractorUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\ZeroOutRootBoneModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\ReOrientRootBoneModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\FootstepAnimEventsModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Source\\AnimationModifierLibrary\\Public\\MotionExtractorModifier.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationModifierLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationModifierLibrary\\UHT\\AnimationModifierLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationWarpingEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationWarpingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_FootPlacement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_OffsetRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimationModifiers\\OrientationWarpingModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_OrientationWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_OverrideRootMotion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_Steering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_SlopeWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Editor\\Public\\AnimGraph\\AnimGraphNode_StrideWarping.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationWarpingEditor\\UHT\\AnimationWarpingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlueprintMaterialTextureNodes", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintMaterialTextureNodes\\Source\\BlueprintMaterialTextureNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintMaterialTextureNodes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintMaterialTextureNodes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintMaterialTextureNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintMaterialTextureNodes\\Source\\BlueprintMaterialTextureNodes\\Public\\BlueprintMaterialTextureNodesBPLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintMaterialTextureNodes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintMaterialTextureNodes\\UHT\\BlueprintMaterialTextureNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InputEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputEditor\\Public\\EnhancedInputEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputEditor\\Public\\EnhancedInputEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputEditor\\Public\\InputEditorModule.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputEditor\\Private\\Tests\\InputTestFramework.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputEditor\\UHT\\InputEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataValidation", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataValidation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\DataValidationChangelist.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\DataValidationCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\DirtyFilesChangelistValidator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\DataValidationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\EditorValidator_Material.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\EditorValidator_Localization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\EditorValidatorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Public\\EditorValidatorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Private\\PackageFileValidator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Source\\DataValidation\\Private\\WorldPartitionChangelistValidator.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\DataValidation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataValidation\\UHT\\DataValidation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InputBlueprintNodes", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputBlueprintNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Public\\K2Node_EnhancedInputAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Public\\K2Node_GetInputActionValue.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Private\\K2Node_InputActionValueAccessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Private\\K2Node_EnhancedInputActionEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Private\\EnhancedInputUserWidgetValidator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Private\\K2Node_InputDebugKey.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\InputBlueprintNodes\\Private\\K2Node_InputDebugKeyEvent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InputBlueprintNodes\\UHT\\InputBlueprintNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MoviePipelineMaskRenderPass", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source\\MoviePipelineMaskRenderPass", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MoviePipelineMaskRenderPass\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source\\MoviePipelineMaskRenderPass\\Private\\MoviePipelineObjectIdPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source\\MoviePipelineMaskRenderPass\\Private\\Graph\\MovieGraphObjectIdNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source\\MoviePipelineMaskRenderPass\\Private\\MoviePipelineObjectIdUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Source\\MoviePipelineMaskRenderPass\\Private\\MoviePipelinePanoramicPass.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MoviePipelineMaskRenderPass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MoviePipelineMaskRenderPass\\UHT\\MoviePipelineMaskRenderPass.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CacheTrackRecorder", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\CacheTrackRecorder", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CacheTrackRecorder\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\CacheTrackRecorder\\Public\\Recorder\\CacheTrackRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CacheTrackRecorder\\UHT\\CacheTrackRecorder.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigLogicEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicEditor\\Public\\DNAAssetImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicEditor\\Public\\DNAAssetImportUI.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicEditor\\UHT\\RigLogicEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigLogicDeveloper", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicDeveloper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicDeveloper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicDeveloper\\Public\\AnimGraphNode_RigLogic.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RigLogicDeveloper\\UHT\\RigLogicDeveloper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldConditionsTestSuite", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditionsTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldConditionsTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditionsTestSuite\\Public\\WorldConditionTestTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldConditionsTestSuite\\UHT\\WorldConditionsTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SmartObjectsTestSuite", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsTestSuite\\Public\\SmartObjectTestTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsTestSuite\\UHT\\SmartObjectsTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RewindDebuggerInterface", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\RewindDebuggerInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebuggerInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Editor\\RewindDebuggerInterface\\Public\\IRewindDebugger.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebuggerInterface\\UHT\\RewindDebuggerInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StateTreeEditorModule", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeEditorModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\IStateTreeEditorHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeCompilerLog.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorPropertyBindings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeNodeClassCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeViewModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreeEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Public\\StateTreePropertyBindingCompiler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\AssetDefinition_StateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\K2Node_StateTreeNodeGetPropertyDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\K2Node_StateTreeBlueprintPropertyRef.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\StateTreeEditorUILayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\Commandlets\\StateTreeCompileAllCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeEditorModule\\Private\\Customizations\\StateTreeBlueprintPropertyRefDetails.h" + ], + "PublicDefines": [ + "WITH_STATETREE_TRACE=1", + "WITH_STATETREE_TRACE_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeEditorModule\\UHT\\StateTreeEditorModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StateTreeTestSuite", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeTestSuite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeTestSuite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeTestSuite\\Private\\StateTreeTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeTestSuite\\Private\\StateTreeTestTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StateTreeTestSuite\\UHT\\StateTreeTestSuite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WaveTableEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTableEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaveTableEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTableEditor\\Public\\WaveTableCurveEditorViewStacked.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTableEditor\\Private\\WaveTableBankFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaveTableEditor\\UHT\\WaveTableEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetasoundEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraphCommentNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraphInputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraphMemberDefaults.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Public\\MetasoundEditorGraphSchema.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Private\\MetasoundAssetDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Private\\MetasoundEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEditor\\Private\\MetasoundEditorSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetasoundEditor\\UHT\\MetasoundEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationLocomotionLibraryEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Editor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimLLEd\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Editor\\Public\\DistanceCurveModifier.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimLLEd\\UHT\\AnimationLocomotionLibraryEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineBlueprintSupport", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineBlueprintSupport\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseCheckout.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseFinalize.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchase2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseQuery2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_LeaderboardQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseQueryOwnedProducts.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseUnprocessed2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseRestoreOwnedProducts.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseQueryOwned2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseRestore2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_InAppPurchaseGetKnownReceipts.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineBlueprintSupport\\Classes\\K2Node_LeaderboardFlush.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OnlineBlueprintSupport\\UHT\\OnlineBlueprintSupport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTagsEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTagsEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_MultiCompareGameplayTagContainerSingleTags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_LiteralGameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_MultiCompareGameplayTagAssetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_MultiCompareGameplayTagAssetInterfaceSingleTags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_SwitchGameplayTagContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_MultiCompareGameplayTagContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_MultiCompareBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Classes\\GameplayTagsK2Node_SwitchGameplayTag.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Public\\AssetDefinition_GameplayTagAssetBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Source\\GameplayTagsEditor\\Private\\GameplayTagSearchFilter.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GameplayTagsEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayTagsEditor\\UHT\\GameplayTagsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakeRecorderSources", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeRecorderSources\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderLevelSequenceSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderLevelVisibilitySource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderMicrophoneAudioManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderCameraCutSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderNearbySpawnedActorSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderPlayerSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderWorldSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderActorSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeRecorderSources\\Private\\TakeRecorderMicrophoneAudioSource.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TakeRecorderSources\\UHT\\TakeRecorderSources.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConcertServer", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertServer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertServer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertServer\\Public\\ConcertServerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Source\\ConcertServer\\Private\\ConcertServerSessionRepositories.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\Concert\\ConcertMain\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ConcertServer\\UHT\\ConcertServer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonConversationGraph", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonConversationGraph\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_Choice.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_EntryPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_SideEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_Requirement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_Knot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphNode_Task.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationGraph\\Public\\ConversationGraphTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonConversationGraph\\UHT\\CommonConversationGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataRegistryEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistryEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataRegistryEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistryEditor\\Private\\DataRegistryFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistryEditor\\Private\\DataRegistryIdCustomization.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataRegistryEditor\\UHT\\DataRegistryEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraBlueprintNodes", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraBlueprintNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraBlueprintNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraBlueprintNodes\\Internal\\K2Node_WriteDataChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraBlueprintNodes\\Internal\\K2Node_DataChannelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraBlueprintNodes\\Internal\\K2Node_ReadDataChannel.h" + ], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraBlueprintNodes\\UHT\\NiagaraBlueprintNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContentBrowserAssetDataSource", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserAssetDataSource\\Source\\ContentBrowserAssetDataSource", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserAssetDataSource\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserAssetDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBAssetDataSource\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserAssetDataSource\\Source\\ContentBrowserAssetDataSource\\Public\\ContentBrowserAssetDataSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserAssetDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBAssetDataSource\\UHT\\ContentBrowserAssetDataSource.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetManagerEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetManagerEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Public\\ReferenceViewer\\EdGraphNode_Reference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Public\\ReferenceViewer\\EdGraph_ReferenceViewer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Public\\ReferenceViewer\\ReferenceViewerSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Public\\ReferenceViewer\\EdGraphNode_ReferencedProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Public\\ReferenceViewer\\ReferenceViewerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Source\\AssetManagerEditor\\Private\\SSizeMap.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetManagerEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetManagerEditor\\UHT\\AssetManagerEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyAccessNode", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PropertyAccessNode\\Source\\PropertyAccessNode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PropertyAccessNode\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PropertyAccessNode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyAccessNode\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PropertyAccessNode\\Source\\PropertyAccessNode\\Private\\K2Node_PropertyAccess.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PropertyAccessNode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PropertyAccessNode\\UHT\\PropertyAccessNode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PlasticSourceControl", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PlasticSourceControl\\Source\\PlasticSourceControl", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PlasticSourceControl\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PlasticSourceControl\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PlasticSourceControl\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PlasticSourceControl\\Source\\PlasticSourceControl\\Private\\PlasticSourceControlProjectSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\PlasticSourceControl\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PlasticSourceControl\\UHT\\PlasticSourceControl.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkSequencer", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkSequencer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer\\Public\\LiveLinkSequencerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer\\Public\\MovieSceneLiveLinkControllerTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer\\Public\\MovieSceneLiveLinkControllerMapTrackRecorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer\\Public\\MovieSceneLiveLinkTrackRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkSequencer\\Private\\TakeRecorderSource\\TakeRecorderLiveLinkSource.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkSequencer\\UHT\\LiveLinkSequencer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkGraphNode", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkGraphNode\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode\\Public\\AnimGraphNode_LiveLinkPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode\\Public\\K2Node_UpdateVirtualSubjectDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode\\Public\\K2Node_EvaluateLiveLinkFrame.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode\\Private\\K2Node_EvaluateLiveLinkCustom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkGraphNode\\Private\\K2Node_UpdateVirtualSubjectDataTyped.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkGraphNode\\UHT\\LiveLinkGraphNode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IKRigDeveloper", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigDeveloper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRigDeveloper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigDeveloper\\Public\\AnimGraphNode_RetargetPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigDeveloper\\Public\\AnimGraphNode_IKRig.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRigDeveloper\\UHT\\IKRigDeveloper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldPartitionHLODUtilities", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldPartitionHLODUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source\\Public\\WorldPartition\\HLOD\\Builders\\HLODBuilderInstancing.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source\\Public\\WorldPartition\\HLOD\\Builders\\HLODBuilderMeshSimplify.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source\\Public\\WorldPartition\\HLOD\\Modifiers\\HLODModifierMeshDestruction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source\\Public\\WorldPartition\\HLOD\\Builders\\HLODBuilderMeshMerge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Source\\Public\\WorldPartition\\HLOD\\Builders\\HLODBuilderMeshApproximate.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\WorldPartitionHLODUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WorldPartitionHLODUtilities\\UHT\\WorldPartitionHLODUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayAbilitiesEditor", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayAbilitiesEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\GameplayAbilitiesBlueprintFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\GameplayAbilityGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\GameplayAbilityAudit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\GameplayAbilityGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\GameplayEffectCreationMenu.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\K2Node_LatentAbilityCall.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilitiesEditor\\Public\\K2Node_GameplayCueEvent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayAbilitiesEditor\\UHT\\GameplayAbilitiesEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AppleImageUtilsBlueprintSupport", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtilsBlueprintSupport", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AppleImageUtilsBlueprintSupport\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtilsBlueprintSupport\\Classes\\AppleImageUtilsBlueprintSupport.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AppleImageUtilsBlueprintSupport\\UHT\\AppleImageUtilsBlueprintSupport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayCamerasUncookedOnly", + "ModuleType": "EngineUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasUncookedOnly", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCamerasUncookedOnly\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasUncookedOnly\\Private\\BlueprintGraph\\K2Node_SetCameraRigParameters.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCamerasUncookedOnly\\UHT\\GameplayCamerasUncookedOnly.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CQTest", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CQTest", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTest\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CQTest\\Public\\TestGameInstance.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTest\\UHT\\CQTest.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CQTestTests", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source\\CQTestTests", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTestTests\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source\\CQTestTests\\Private\\Components\\CQTestGameInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source\\CQTestTests\\Private\\Components\\CQTestGameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source\\CQTestTests\\Private\\Components\\TestReplicatedActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Source\\CQTestTests\\Private\\TestActorWithProperties.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTest\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTestTests\\UHT\\CQTestTests.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CQTestEnhancedInputTests", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTestEnhancedInput\\Source\\CQTestEnhancedInputTests", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTestEnhancedInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTestEnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTestEnhancedInputTests\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTestEnhancedInput\\Source\\CQTestEnhancedInputTests\\Private\\CQTestInputTestHelper.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\CQTestEnhancedInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CQTestEnhancedInputTests\\UHT\\CQTestEnhancedInputTests.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RenderDocPlugin", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\RenderDocPlugin\\Source\\RenderDocPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\RenderDocPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\RenderDocPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RenderDocPlugin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\RenderDocPlugin\\Source\\RenderDocPlugin\\Public\\RenderDocPluginSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\RenderDocPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RenderDocPlugin\\UHT\\RenderDocPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContextualAnimationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContextualAnimationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimEditorTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimMovieSceneNotifyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimMovieSceneSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimMovieSceneNotifySection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimMovieSceneSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimationEditor\\Public\\ContextualAnimMovieSceneTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ContextualAnimationEditor\\UHT\\ContextualAnimationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EditorScriptingUtilities", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorScriptingUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorDialogLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorAssetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorSkeletalMeshLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorFilterLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorLevelLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Source\\EditorScriptingUtilities\\Public\\EditorStaticMeshLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EditorScriptingUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EditorScriptingUtilities\\UHT\\EditorScriptingUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetaHumanSDKEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetaHumanSDKEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKEditor\\Private\\MetaHumanSDKSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MetaHumanSDKEditor\\UHT\\MetaHumanSDKEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MegascansPlugin", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\MegascansPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MegascansPlugin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\MegascansPlugin\\Public\\MSSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\MegascansPlugin\\Private\\MSAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\MegascansPlugin\\Private\\Utilities\\VersionInfoHandler.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MegascansPlugin\\UHT\\MegascansPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Bridge", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\Bridge", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Bridge\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\Bridge\\Private\\NodeCommManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\Bridge\\Private\\NodePort.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Source\\Bridge\\Private\\UI\\BrowserBinding.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Bridge\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Bridge\\UHT\\Bridge.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlendSpaceMotionAnalysis", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Source\\BlendSpaceMotionAnalysis", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlendSpaceMotionAnalysis\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Source\\BlendSpaceMotionAnalysis\\Public\\LocomotionAnalysis.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Source\\BlendSpaceMotionAnalysis\\Public\\RootMotionAnalysis.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Source\\BlendSpaceMotionAnalysis\\Public\\BlendSpaceMotionAnalysis.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\BlendSpaceMotionAnalysis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlendSpaceMotionAnalysis\\UHT\\BlendSpaceMotionAnalysis.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ACLPluginEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPluginEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ACLPluginEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPluginEditor\\Classes\\AnimationCompressionLibraryDatabaseFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPluginEditor\\Classes\\ACLDatabaseBuildCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPluginEditor\\Classes\\ACLStatsDumpCommandlet.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ACLPluginEditor\\UHT\\ACLPluginEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SoundUtilitiesEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilitiesEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundUtilitiesEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilitiesEditor\\Private\\SoundSimpleFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SoundUtilitiesEditor\\UHT\\SoundUtilitiesEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetReferenceRestrictions", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source\\AssetReferenceRestrictions", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetReferenceRestrictions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source\\AssetReferenceRestrictions\\Public\\AssetReferencingPolicySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source\\AssetReferenceRestrictions\\Public\\AssetReferencingPolicySettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source\\AssetReferenceRestrictions\\Private\\EditorValidator_PluginAssetReferences.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Source\\AssetReferenceRestrictions\\Private\\AssetValidator_AssetReferenceRestrictions.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetReferenceRestrictions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetReferenceRestrictions\\UHT\\AssetReferenceRestrictions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameFeaturesEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeaturesEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameFeaturesEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeaturesEditor\\Private\\GameFeatureActionConvertContentBundleWorldPartitionBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeaturesEditor\\Private\\GameFeaturesEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeaturesEditor\\Private\\IllegalPluginDependenciesValidator.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameFeaturesEditor\\UHT\\GameFeaturesEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FunctionalTestingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FunctionalTestingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Source\\Public\\EditorFunctionalTest.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Source\\Private\\GroundTruthDataFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\FunctionalTestingEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FunctionalTestingEditor\\UHT\\FunctionalTestingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SpatializationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\SpatializationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SpatializationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\SpatializationEditor\\Public\\ITDSpatializationSourceSettingsFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SpatializationEditor\\UHT\\SpatializationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayInsightsEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\GameplayInsightsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayInsightsEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\GameplayInsightsEditor\\Public\\InsightsSkeletalMeshComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayInsightsEditor\\UHT\\GameplayInsightsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RewindDebuggerVLog", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebuggerVLog", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebuggerVLog\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebuggerVLog\\Private\\RewindDebuggerVLogSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebuggerVLog\\Private\\VLogRenderingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebuggerVLog\\Private\\VLogDetailsObject.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebuggerVLog\\UHT\\RewindDebuggerVLog.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RewindDebugger", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebugger", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebugger\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Source\\RewindDebugger\\Private\\RewindDebuggerSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\GameplayInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RewindDebugger\\UHT\\RewindDebugger.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetSearch", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetSearch\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Source\\Private\\Settings\\SearchProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Source\\Private\\Settings\\SearchUserSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\AssetSearch\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AssetSearch\\UHT\\AssetSearch.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BaseCharacterFXEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Source\\BaseCharacterFXEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BCFXEd\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Source\\BaseCharacterFXEditor\\Public\\BaseCharacterFXEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Source\\BaseCharacterFXEditor\\Public\\BaseCharacterFXEditorModeUILayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Source\\BaseCharacterFXEditor\\Public\\BaseCharacterFXEditorMode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CharacterFXEditor\\BaseCharacterFXEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BCFXEd\\UHT\\BaseCharacterFXEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletalMeshModifiers", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\SkeletalMeshModifiers", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshModifiers\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\SkeletalMeshModifiers\\Public\\SkeletonModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\SkeletalMeshModifiers\\Public\\SkeletonClipboard.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\SkeletalMeshModifiers\\Public\\SkinWeightModifier.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkeletalMeshModifiers\\UHT\\SkeletalMeshModifiers.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingOperatorsEditorOnly", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingOperatorsEditorOnly\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly\\Public\\CleaningOps\\SimplifyMeshOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly\\Public\\CuttingOps\\EmbedPolygonsOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly\\Public\\ParameterizationOps\\CalculateTangentsOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly\\Public\\ParameterizationOps\\ParameterizeMeshOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperatorsEditorOnly\\Public\\Properties\\ParameterizeMeshProperties.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingOperatorsEditorOnly\\UHT\\ModelingOperatorsEditorOnly.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingToolsEditorOnlyExp", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsEditorOnlyExp\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\AddPivotActorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\AttributeEditorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\BspConversionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\BakeRenderCaptureTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\EditMeshMaterialsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\DrawSplineTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\HarvestInstancesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\ISMEditorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\MergeMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\MeshTangentsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\MeshToVolumeTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\PolygonOnMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\ShapeSprayTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SimplifyMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SubdividePolyTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\VoxelCSGMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SkeletalMesh\\SkeletalMeshEditionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SkeletalMesh\\SkeletonTransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SkeletalMesh\\SkinWeightsBindingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SkeletalMesh\\SkeletonEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsEditorOnlyExp\\Public\\SkeletalMesh\\SkinWeightsPaintTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsEditorOnlyExp\\UHT\\MeshModelingToolsEditorOnlyExp.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\AssetDefinition_DataflowContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\AssetDefinition_DataflowAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowComponentToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowEditorModeUILayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowSCommentNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowSimulationScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowSNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\Dataflow\\DataflowToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\DataflowEditorTools\\DataflowEditorToolBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Public\\DataflowEditorTools\\DataflowEditorWeightMapPaintTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Private\\Dataflow\\DataflowEditorCollectionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEditor\\Private\\DataflowEditorTools\\DataflowEditorWeightMapPaintBrushOps.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DataflowEditor\\UHT\\DataflowEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCacheStreamer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheStreamer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheStreamer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheStreamer\\Public\\GeometryCacheStreamerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCacheStreamer\\UHT\\GeometryCacheStreamer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\InterchangeEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\InterchangeEditor\\Public\\InterchangeFbxAssetImportDataConverter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\InterchangeEditor\\Private\\AssetDefinition_InterchangeSceneImportAsset.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditor\\UHT\\InterchangeEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AlembicLibrary", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AlembicLibrary\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicLibrary\\Public\\AbcAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicLibrary\\Public\\AbcImportSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicLibrary\\Private\\AlembicTestCommandlet.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AlembicLibrary\\UHT\\AlembicLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AlembicImporter", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicImporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AlembicImporter\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Source\\AlembicImporter\\Classes\\AlembicImportFactory.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Importers\\AlembicImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AlembicImporter\\UHT\\AlembicImporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraSimCachingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCachingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraSimCachingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCachingEditor\\Public\\Sequencer\\MovieSceneNiagaraTrackRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\NiagaraSimCachingEditor\\UHT\\NiagaraSimCachingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Fab", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Fab\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\FabBrowserApi.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\FabBrowser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\FabAuthentication.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\FabSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Importers\\ActorSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Pipelines\\Factories\\InterchangeInstancedFoliageTypeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Pipelines\\InterchangeMegascansPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Pipelines\\Nodes\\InterchangeInstancedFoliageTypeFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Utilities\\FabLocalAssets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Source\\Fab\\Private\\Utilities\\QuixelAssetTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Fab\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Fab\\UHT\\Fab.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TedsCore", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TedsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Public\\Compatibility\\Columns\\TypedElement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Public\\Memento\\TypedElementMementoTranslators.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\DynamicColumnGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\EditorDataStorageSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\TypedElementDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\TypedElementDatabaseUI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\TypedElementDatabaseCompatibility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\TypedElementDataStorageSharedColumn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementActorIconOverrideQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementActorLabelQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementActorParentQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TedsTypedElementActorHandleFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TedsTypedElementBridgeQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementActorViewportProcessors.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementActorTransformQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementObjectReinstancingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Debug\\TypedElementDatabaseDebugTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Memento\\TypedElementMementoRowTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Compatibility\\TypedElementUObjectWorldQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Memento\\TypedElementMementoizedColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Queries\\TypedElementAlertQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Processors\\TypedElementProcessorAdaptors.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Queries\\TypedElementHierarchyQueries.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsCore\\Private\\Queries\\TypedElementMiscQueries.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TedsCore\\UHT\\TedsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TedsUI", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TedsUI\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Public\\Widgets\\CounterWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Public\\Widgets\\ExportedTextWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Public\\Widgets\\LabelWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Public\\Widgets\\GeneralWidgetRegistrationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Public\\Widgets\\PackagePathWidget.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Private\\Widgets\\SlateColorWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Source\\TedsUI\\Private\\Processors\\WidgetReferenceColumnUpdateProcessor.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\EditorDataStorage\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TedsUI\\UHT\\TedsUI.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Paper2DEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Paper2DEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperFlipbookActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperFlipbookFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperFlipbookThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperSpriteActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperSpriteFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperImporterSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperSpriteThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperTileMapFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperTileMapPromotionFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperTileSetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\TerrainSplineActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\TileMapActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\PaperTileSetThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Classes\\TileMapAssetImportData.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\Atlasing\\PaperSpriteAtlasFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\ExtractSprites\\PaperExtractSpritesSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\FlipbookEditor\\FlipbookEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\SpriteEditor\\SpriteEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\TileMapEditing\\TileMapEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\TileSetEditor\\TileSetEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2DEditor\\Private\\TileSetEditor\\TileSheetPaddingFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\Paper2DEditor\\UHT\\Paper2DEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PaperTiledImporter", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperTiledImporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PaperTiledImporter\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperTiledImporter\\Classes\\PaperTiledImporterFactory.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PaperTiledImporter\\UHT\\PaperTiledImporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PaperSpriteSheetImporter", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperSpriteSheetImporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PaperSpriteSheetImporter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperSpriteSheetImporter\\Private\\PaperSpriteSheet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperSpriteSheetImporter\\Private\\PaperSpriteSheetReimportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\PaperSpriteSheetImporter\\Private\\PaperSpriteSheetImportFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PaperSpriteSheetImporter\\UHT\\PaperSpriteSheetImporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ComputeFrameworkEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFrameworkEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComputeFrameworkEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFrameworkEditor\\Private\\ComputeFramework\\ComputeKernelFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFrameworkEditor\\Private\\ComputeFramework\\ComputeKernelFromTextFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ComputeFrameworkEditor\\UHT\\ComputeFrameworkEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OptimusEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusDeformerFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusEditorGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusEditorGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusEditorGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusEditorGraphSchemaActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusEditor\\Private\\OptimusSourceFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OptimusEditor\\UHT\\OptimusEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HairStrandsEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomBindingActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomBindingFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomCacheActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\GroomFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\HairStrandsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\ReimportGroomCacheFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Public\\ReimportHairStrandsFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsEditor\\Private\\GroomImportOptionsWindow.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\HairStrandsEditor\\UHT\\HairStrandsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SmartObjectsEditorModule", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsEditorModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule\\Public\\SmartObjectAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule\\Public\\WorldPartitionSmartObjectCollectionBuilder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule\\Private\\SmartObjectAssetEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule\\Private\\AssetDefinition_SmartObjectDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsEditorModule\\Private\\SmartObjectDefinitionFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SmartObjectsEditorModule\\UHT\\SmartObjectsEditorModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshPaintingToolset", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaintingToolset\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\BaseMeshPaintingToolProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshPaintHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshPaintInteractions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshPaintingToolsetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshSelect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshVertexPaintingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\TexturePaintToolset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintingToolset\\Public\\MeshTexturePaintingTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaintingToolset\\UHT\\MeshPaintingToolset.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshPaintEditorMode", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintEditorMode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaintEditorMode\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintEditorMode\\Public\\MeshPaintModeHelpers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintEditorMode\\Private\\ImportVertexColorOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintEditorMode\\Private\\MeshPaintModeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Source\\MeshPaintEditorMode\\Private\\MeshPaintMode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MeshPainting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshPaintEditorMode\\UHT\\MeshPaintEditorMode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WmfMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WmfMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaFactory\\Public\\WmfMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WmfMediaFactory\\UHT\\WmfMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WmfMediaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WmfMediaEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaEditor\\Private\\WmfFileMediaSourceFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WmfMediaEditor\\UHT\\WmfMediaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaPlayerEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlayerEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\FileMediaSourceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\MediaPlaylistFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\MediaPlayerFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\MediaTextureFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\PlatformMediaSourceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Factories\\StreamMediaSourceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Shared\\MediaPlayerEditorMediaContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Shared\\MediaPlayerEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Shared\\MediaSourceRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Source\\MediaPlayerEditor\\Private\\Shared\\MediaSourceThumbnailRenderer.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlayerEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlayerEditor\\UHT\\MediaPlayerEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaFactory\\Public\\ImgMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaFactory\\UHT\\ImgMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaCompositingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaCompositingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositingEditor\\Private\\Sequencer\\MediaSequenceRecorderExtender.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositingEditor\\Private\\Sequencer\\MediaPlayerRecording.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositingEditor\\Private\\Sequencer\\MediaSequencerFilters.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaCompositingEditor\\UHT\\MediaCompositingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaPlateEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlateEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlateEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlateEditor\\Private\\ActorFactoryMediaPlate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlateEditor\\Private\\AssetTools\\AssetDefinition_MediaPlate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaPlateEditor\\UHT\\MediaPlateEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioInsightsEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioInsights\\Source\\AudioInsightsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioInsights\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioInsightsEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioInsights\\Source\\AudioInsightsEditor\\Public\\AudioInsightsEditorSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioInsights\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioInsightsEditor\\UHT\\AudioInsightsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioModulationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioModulationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Public\\AudioModulationClassTemplates.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Private\\Factories\\SoundControlBusFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Private\\Factories\\SoundControlBusMixFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Private\\Factories\\SoundModulationGeneratorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Private\\Factories\\SoundModulationParameterFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulationEditor\\Private\\Factories\\SoundModulationPatchFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioModulationEditor\\UHT\\AudioModulationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryScriptingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryScriptingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryActors\\EditorGeometryGenerationSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryActors\\GeneratedDynamicMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryScript\\CreateNewAssetUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryScript\\EditorDynamicMeshUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryScript\\EditorTextureMapFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingEditor\\Public\\GeometryScript\\OpenSubdivUtilityFunctions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryScriptingEditor\\UHT\\GeometryScriptingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StylusInput", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\StylusInput\\Source\\StylusInput", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\StylusInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\StylusInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StylusInput\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\StylusInput\\Source\\StylusInput\\Public\\IStylusInputModule.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\StylusInput\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\StylusInput\\UHT\\StylusInput.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonUIEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUIEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUIEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUIEditor\\Public\\CommonGenericInputActionDataTableFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUIEditor\\UHT\\CommonUIEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WaterEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaterEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Public\\CausticsGeneratorActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Public\\WaterEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Public\\WaterEditorSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\AssetDefinition_WaterWaves.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\JumpFloodComponent2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBodyIslandActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBodyBrushCacheContainerThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBodyActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBrushCacheContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBrushManagerFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterLandscapeBrush.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterBrushManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterSplineMetadataDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterWavesAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterSplineComponentVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Editor\\Private\\WaterZoneActorFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WaterEditor\\UHT\\WaterEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LandmassEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Editor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandmassEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Editor\\Public\\LandmassBPEditorExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Editor\\Public\\LandmassActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Editor\\Public\\LandmassErosionBrushBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Editor\\Public\\LandmassManagerBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LandmassEditor\\UHT\\LandmassEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosCachingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCachingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCachingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCachingEditor\\Public\\Chaos\\ActorFactoryCacheManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCachingEditor\\Public\\Chaos\\CacheCollectionFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCachingEditor\\Public\\Sequencer\\TakeRecorderChaosCacheSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCachingEditor\\Public\\Sequencer\\MovieSceneChaosCacheTrackRecorder.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosCachingEditor\\UHT\\ChaosCachingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMediaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEditor\\Private\\Factories\\ImgMediaSourceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEditor\\Private\\Factories\\ImgMediaSourceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEditor\\Private\\Widgets\\ImgMediaProcessEXROptions.h" + ], + "PublicDefines": [ + "IMGMEDIAEDITOR_EXR_SUPPORTED_PLATFORM=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ImgMediaEditor\\UHT\\ImgMediaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AvfMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AvfMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaFactory\\Public\\AvfMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AvfMediaFactory\\UHT\\AvfMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AvfMediaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AvfMediaEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaEditor\\Private\\AvfFileMediaSourceFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AvfMediaEditor\\UHT\\AvfMediaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source\\AndroidMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source\\AndroidMediaFactory\\Public\\AndroidMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidMediaFactory\\UHT\\AndroidMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidMediaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source\\AndroidMediaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidMediaEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Source\\AndroidMediaEditor\\Private\\AndroidFileMediaSourceFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AndroidMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidMediaEditor\\UHT\\AndroidMediaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeEditorUtilities", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Utilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditorUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Utilities\\Public\\InterchangeEditorUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Utilities\\Public\\InterchangeOpenFileDialog.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditorUtilities\\UHT\\InterchangeEditorUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeEditorPipelines", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditorPipelines\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines\\Public\\InterchangeCardsPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines\\Public\\InterchangeEditorBlueprintPipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines\\Public\\InterchangePipelineConfigurationGeneric.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines\\Public\\InterchangeGraphInspectorPipeline.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Source\\Pipelines\\Private\\InterchangePipelineFactories.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Editor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeEditorPipelines\\UHT\\InterchangeEditorPipelines.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryMode", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryMode\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Create.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Delete.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Clip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Edit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Extrude.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Flip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Lathe.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Optimize.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Split.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Triangulate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Pen.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Turn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Classes\\GeomModifier_Weld.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Source\\GeometryMode\\Private\\BrushEditingSubsystemImpl.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\GeometryMode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryMode\\UHT\\GeometryMode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FacialAnimationEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimationEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FacialAnimationEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimationEditor\\Private\\FacialAnimationBulkImporterSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FacialAnimationEditor\\UHT\\FacialAnimationEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineAssetDefinitions", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineAssetDefinitions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Public\\AssetDefinition_Redirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Public\\AssetDefinition_World.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Public\\Script\\AssetDefinition_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Public\\Script\\AssetDefinition_ClassTypeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Public\\AssetDefinition_DataAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ActorFolder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ActorFoliageSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_CurveFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_CanvasRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_CurveLinearColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Curve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_CurveVector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_CurveLinearColorAtlas.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_DataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_DataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_EditorUtilityBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_EditorUtilityWidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ExternalDataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_FbxSceneImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Font.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_FontFace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ForceFeedbackAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ForceFeedbackEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_HapticFeedbackEffectBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_HapticFeedbackEffectCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_HapticFeedbackEffectSoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_HLODLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_HLODProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_InstancedFoliageSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_LandscapeLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_LandscapeGrassType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_LightWeightInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_NodeMappingContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ObjectLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_NeuralProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_PhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_PhysicalMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SlateBrush.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_ProceduralFoliageSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SlateWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SpecularProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_StaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Texture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SubUVAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_SubsurfaceProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Texture2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_Texture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureCube.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureCubeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureLightProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureRenderTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureRenderTarget2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureRenderTargetCube.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TextureRenderTargetVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_TouchInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_UserDefinedEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_UserDefinedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_VectorField.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_VectorFieldAnimated.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_VectorFieldStatic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\AssetDefinition_VolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AimOffset1D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimationAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AimOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimComposite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_AnimStreamable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_BlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_BlendSpace1D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_PoseAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_SkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Animation\\AssetDefinition_Skeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_Material.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialFunctionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialInstanceDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Script\\AssetDefinition_BlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Script\\AssetDefinition_Class.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Table\\AssetDefinition_CompositeCurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Table\\AssetDefinition_CompositeDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Table\\AssetDefinition_CurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Material\\AssetDefinition_MaterialInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Table\\AssetDefinition_DataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Source\\Private\\Table\\AssetDefinition_MirrorDataTable.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\EngineAssetDefinitions\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\EngineAssetDefinitions\\UHT\\EngineAssetDefinitions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CurveEditorTools", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source\\CurveEditorTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CurveEditorTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source\\CurveEditorTools\\Private\\Filters\\CurveEditorFFTFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source\\CurveEditorTools\\Private\\Tools\\CurveEditorMultiScaleTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source\\CurveEditorTools\\Private\\Tools\\CurveEditorRetimeTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Source\\CurveEditorTools\\Private\\Tools\\CurveEditorTransformTool.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CurveEditorTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CurveEditorTools\\UHT\\CurveEditorTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CryptoKeys", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Source\\CryptoKeys", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CryptoKeys\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Source\\CryptoKeys\\Classes\\CryptoKeysCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Source\\CryptoKeys\\Classes\\CryptoKeysSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\CryptoKeys\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CryptoKeys\\UHT\\CryptoKeys.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContentBrowserClassDataSource", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserClassDataSource\\Source\\ContentBrowserClassDataSource", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserClassDataSource\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserClassDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBClassDataSource\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserClassDataSource\\Source\\ContentBrowserClassDataSource\\Public\\ContentBrowserClassDataSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ContentBrowser\\ContentBrowserClassDataSource\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CBClassDataSource\\UHT\\ContentBrowserClassDataSource.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ObjectMixerEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ObjectMixerEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\ObjectMixerEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\ObjectMixerFilterFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\ObjectMixerEditorSerializedData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\ObjectFilter\\ObjectMixerEditorObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\Views\\List\\SObjectMixerEditorList.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\Views\\List\\Modes\\ObjectMixerOutlinerMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\Views\\Widgets\\ObjectMixerEditorListMenuContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Source\\ObjectMixer\\Public\\Views\\Widgets\\ObjectMixerEditorUWidget.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\ObjectMixer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ObjectMixerEditor\\UHT\\ObjectMixerEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ColorGradingEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ColorGrading\\Source\\ColorGradingEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ColorGrading\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ColorGrading\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ColorGradingEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ColorGrading\\Source\\ColorGradingEditor\\Private\\ColorGradingMixerObjectFilter.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ColorGrading\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ColorGradingEditor\\UHT\\ColorGradingEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BlueprintHeaderView", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintHeaderView\\Source\\BlueprintHeaderView", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintHeaderView\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintHeaderView\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintHeaderView\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintHeaderView\\Source\\BlueprintHeaderView\\Public\\BlueprintHeaderViewSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\BlueprintHeaderView\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\BlueprintHeaderView\\UHT\\BlueprintHeaderView.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidFileServerEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServerEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidFileServerEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServerEditor\\Public\\AndroidFileServerRuntimeSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidFileServerEditor\\UHT\\AndroidFileServerEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidDeviceProfileSelector", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source\\AndroidDeviceProfileSelector", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidDPS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source\\AndroidDeviceProfileSelector\\Public\\AndroidJavaSurfaceViewDevices.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source\\AndroidDeviceProfileSelector\\Private\\AndroidDeviceProfileMatchingRules.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidDPS\\UHT\\AndroidDeviceProfileSelector.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidDeviceProfileCommandlets", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source\\AndroidDeviceProfileCommandlets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidDeviceProfileCommandlets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Source\\AndroidDeviceProfileCommandlets\\Private\\CreateAndroidPreviewDataFromADBCommandlet.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidDeviceProfileSelector\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AndroidDeviceProfileCommandlets\\UHT\\AndroidDeviceProfileCommandlets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosSolverEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Source\\ChaosSolverEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosSolverEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Source\\ChaosSolverEditor\\Public\\Chaos\\ChaosSolverFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Source\\ChaosSolverEditor\\Private\\Chaos\\ActorFactoryChaosSolver.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosSolverPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosSolverEditor\\UHT\\ChaosSolverEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor\\Public\\GeometryCollection\\AssetDefinition_GeometryCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor\\Public\\GeometryCollection\\GeometryCollectionCacheFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor\\Public\\GeometryCollection\\GeometryCollectionFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor\\Public\\GeometryCollection\\GeometryCollectionThumbnailRenderer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionEditor\\Private\\GeometryCollection\\ActorFactoryGeometryCollection.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GeometryCollectionEditor\\UHT\\GeometryCollectionEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FractureEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FractureEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Public\\FractureEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Public\\FractureModeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Public\\FractureSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Public\\FractureEditorModeToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Public\\FractureTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolAutoCluster.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolBrick.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolClusterCutter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolClustering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolClusterMagnet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolConvert.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolConvex.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolEmbed.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolCustomVoronoi.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolEditing.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolGenerators.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolMaterials.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolPlaneCut.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolMeshCut.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolFixTinyGeo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolCutter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolRadial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolProximity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolRecomputeNormals.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolResample.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolSelection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolSlice.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolUniform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolSelectors.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\FractureToolUV.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\SGeometryCollectionOutliner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Source\\FractureEditor\\Private\\SGeometryCollectionHistogram.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\FractureEditor\\UHT\\FractureEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationUtilsEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtilsEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationUtilsEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtilsEditor\\Public\\ScreenshotComparisonCommandlet.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AutomationUtilsEditor\\UHT\\AutomationUtilsEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ToolPresetAsset", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetAsset", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolPresetAsset\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetAsset\\Public\\ToolPresetAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetAsset\\Public\\ToolPresetAssetSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetAsset\\Private\\AssetDefinition_ToolPresetAsset.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolPresetAsset\\UHT\\ToolPresetAsset.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ToolPresetEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolPresetEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Source\\ToolPresetEditor\\Public\\ToolPresetSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ToolPresets\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ToolPresetEditor\\UHT\\ToolPresetEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshLODToolset", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshLODToolset\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\Tools\\LODGenerationSettingsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\AssetDefinition_StaticMeshLODGenerationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\Tools\\LODGenerationSettingsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\Tools\\GenerateStaticMeshLODAssetTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\Tools\\LODManagerTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Source\\MeshLODToolset\\Public\\Graphs\\GenerateStaticMeshLODProcess.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\MeshLODToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshLODToolset\\UHT\\MeshLODToolset.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingToolsEditorOnly", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingToolsEditorOnly", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsEditorOnly\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingToolsEditorOnly\\Public\\ParameterizeMeshTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MeshModelingToolsEditorOnly\\UHT\\MeshModelingToolsEditorOnly.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingToolsEditorMode", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingToolsEditorMode\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode\\Public\\ModelingToolsEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode\\Public\\ModelingSelectionInteraction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode\\Public\\ModelingToolsHostCustomizationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode\\Public\\ModelingToolsEditorModeSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Source\\ModelingToolsEditorMode\\Private\\ModelingToolsEditablePaletteConfig.h" + ], + "PublicDefines": [ + "WITH_PROXYLOD=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ModelingToolsEditorMode\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModelingToolsEditorMode\\UHT\\ModelingToolsEditorMode.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletalMeshModelingTools", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source\\SkeletalMeshModelingTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkelMeshModTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source\\SkeletalMeshModelingTools\\Private\\SkeletalMeshEditorUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source\\SkeletalMeshModelingTools\\Private\\SkeletalMeshGizmoUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source\\SkeletalMeshModelingTools\\Private\\SkeletalMeshModelingToolsEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Source\\SkeletalMeshModelingTools\\Private\\SkeletalMeshModelingToolsMeshConverter.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\SkeletalMeshModelingTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SkelMeshModTools\\UHT\\SkeletalMeshModelingTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor\\Public\\LiveLinkEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor\\Public\\VirtualSubjects\\LiveLinkBlueprintVirtualSubjectFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor\\Private\\LiveLinkPreviewController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor\\Private\\LiveLinkTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkEditor\\Private\\Sequencer\\LiveLinkSequencerFilters.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LiveLinkEditor\\UHT\\LiveLinkEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IKRigEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRigEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargetAnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargetAnimInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargetBatchOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargetDetails.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargeterThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargeterPoseGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargeterController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\IKRetargetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigAnimInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigAnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RetargetEditor\\SRetargetAnimAssetsWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigDefinitionFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigEditorController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\IKRigThumbnailRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRigEditor\\Public\\RigEditor\\SIKRigRetargetChainList.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\IKRigEditor\\UHT\\IKRigEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DatasmithContentEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContentEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DatasmithContentEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContentEditor\\Private\\AssetDefinition_DatasmithScene.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\DatasmithContentEditor\\UHT\\DatasmithContentEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UVEditorTools", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditorTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorBrushSelectTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorLayoutTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorLayerEditTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorMechanicAdapterTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorRecomputeUVsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorSeamTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorTexelDensityTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorTransformTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Actions\\UVSplitAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVEditorUVSnapshotTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Actions\\UVMakeIslandAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Actions\\UVSeamSewAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\UVSelectTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Actions\\UVToolAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\ContextObjects\\UVToolViewportButtonsAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Drawing\\BasicTriangleSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\ContextObjects\\UVToolContextObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Drawing\\BasicLineSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\ContextObjects\\UVToolAssetInputsContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Operators\\UVEditorUVTransformOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Drawing\\BasicPointSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Selection\\UVEditorMeshSelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\TargetInterfaces\\UVUnwrapDynamicMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Selection\\UVToolSelectionHighlightMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\Selection\\UVToolSelectionAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorTools\\Public\\ToolTargets\\UVEditorToolMeshInput.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditorTools\\UHT\\UVEditorTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UVEditorToolsEditorOnly", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorToolsEditorOnly", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditorToolsEditorOnly\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditorToolsEditorOnly\\Public\\UVEditorParameterizeMeshTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditorToolsEditorOnly\\UHT\\UVEditorToolsEditorOnly.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UVEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorBackgroundPreview.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorDistortionVisualization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorInitializationContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorModeChannelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorModeUILayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Public\\UVEditorMode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Private\\UVEditor3DViewportMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Private\\UVEditorUXPropertySets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Source\\UVEditor\\Private\\Actions\\UnsetUVsAction.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UVEditor\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UVEditor\\UHT\\UVEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UMGWidgetPreview", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source\\UMGWidgetPreview", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMGWidgetPreview\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source\\UMGWidgetPreview\\Public\\WidgetPreview.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source\\UMGWidgetPreview\\Private\\AssetDefinition_WidgetPreview.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source\\UMGWidgetPreview\\Private\\WidgetPreviewFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Source\\UMGWidgetPreview\\Private\\WidgetPreviewEditor.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\UMGWidgetPreview\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UMGWidgetPreview\\UHT\\UMGWidgetPreview.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SpeedTreeImporter", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Source\\SpeedTreeImporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SpeedTreeImporter\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Source\\SpeedTreeImporter\\Classes\\SpeedTreeImportFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Source\\SpeedTreeImporter\\Classes\\ReimportSpeedTreeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Source\\SpeedTreeImporter\\Classes\\SpeedTreeImportData.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SpeedTreeImporter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SpeedTreeImporter\\UHT\\SpeedTreeImporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequencerAnimTools", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source\\SequencerAnimTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerAnimTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source\\SequencerAnimTools\\Public\\BaseSequencerAnimTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source\\SequencerAnimTools\\Public\\SequencerToolsEditMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source\\SequencerAnimTools\\Public\\MotionTrailTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Source\\SequencerAnimTools\\Public\\SequencerAnimEditPivotTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\SequencerAnimTools\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SequencerAnimTools\\UHT\\SequencerAnimTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PluginBrowser", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Source\\PluginBrowser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PluginBrowser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Source\\PluginBrowser\\Private\\NewPluginDescriptorData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Source\\PluginBrowser\\Private\\PluginMetadataObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Source\\PluginBrowser\\Private\\SPluginPaths.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\PluginBrowser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PluginBrowser\\UHT\\PluginBrowser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LightMixer", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Source\\LightMixer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LightMixer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Source\\LightMixer\\Public\\LightMixerEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Source\\LightMixer\\Public\\LightMixerObjectFilter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ObjectMixer\\LightMixer\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LightMixer\\UHT\\LightMixer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActorPalette", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ActorPalette\\Source\\ActorPalette", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ActorPalette\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ActorPalette\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorPalette\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ActorPalette\\Source\\ActorPalette\\Private\\ActorPaletteSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ActorPalette\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ActorPalette\\UHT\\ActorPalette.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OpenColorIOEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIOEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OpenColorIOEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIOEditor\\Public\\OpenColorIOEditorBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIOEditor\\Private\\AssetDefinition_OpenColorIOConfiguration.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIOEditor\\Private\\Factories\\OpenColorIOConfigurationFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIOEditor\\Private\\OpenColorIOEditorSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\OpenColorIOEditor\\UHT\\OpenColorIOEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaIOEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaIOEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Source\\MediaIOEditor\\Private\\FileMediaOutputFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaIOFramework\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MediaIOEditor\\UHT\\MediaIOEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RemoteSessionEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source\\RemoteSessionEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RemoteSessionEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Source\\RemoteSessionEditor\\Private\\Widgets\\SRemoteSessionStream.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\RemoteSession\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\RemoteSessionEditor\\UHT\\RemoteSessionEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MoviePipelineNewProcessExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MoviePipelinePIEExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MoviePipelineEditorBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\Graph\\MovieGraphConfigFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MoviePipelineConfigFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MovieRenderPipelineSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Public\\MoviePipelineQueueSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\AssetDefinition_PipelinePrimaryConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\AssetDefinition_PipelineQueue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\AssetDefinition_PipelineShotConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\MoviePipelineAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\MoviePipelineFunctionalTestBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\MoviePipelinePIEExecutorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\AssetDefinition_MovieGraphConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieEdGraphInputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieEdGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieEdGraphOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MoviePipelineEdGraphSubgraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieEdGraphVariableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Tests\\MovieGraphEditorTestUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieEdGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineEditor\\Private\\Graph\\MovieGraphSchema.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\MovieRenderPipelineEditor\\UHT\\MovieRenderPipelineEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationSharingEd", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharingEd", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationSharingEd\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharingEd\\Public\\AnimationSharingSetupFactory.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AnimationSharingEd\\UHT\\AnimationSharingEd.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosVD", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVD\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDCharacterGroundConstraintDataProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDCollisionDataProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDGeometryDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDEditorMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDParticleActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDSkySphereInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDPlaybackController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDSolverDataSelection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\ChaosVDScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Actors\\ChaosVDGeometryContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Actors\\ChaosVDGameFrameInfoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Actors\\ChaosVDDataContainerBaseActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDConstraintDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Actors\\ChaosVDSolverInfoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDSceneQueryDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDParticleDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDSolverDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDSolverCharacterGroundConstraintDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDGenericDebugDrawDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDGTAccelerationStructuresDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDSolverJointConstraintDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDSolverCollisionDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Interfaces\\ChaosVDSelectableObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Components\\ChaosVDStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Interfaces\\ChaosVDPooledObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDAccelerationStructureVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDCollisionVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDCharacterConstraintsVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDGenericDebugDrawSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDSceneQueryVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDJointConstraintVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDMiscSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDParticleVisualizationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDCoreSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Settings\\ChaosVDSolverTrackSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Utils\\ChaosVDUserInterfaceUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Visualizers\\ChaosVDGTAccelerationStructureDataComponentVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Visualizers\\ChaosVDSceneQueryDataComponentVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Visualizers\\ChaosVDSolverCollisionDataComponentVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDLogBrowserToolbar.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDMainTab.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDRecordingControls.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDSceneQueryBrowser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDRecordedLogBrowser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDSolverTracks.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVD\\Private\\Widgets\\SChaosVDTimelineWidget.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ChaosVD\\UHT\\ChaosVD.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TemplateSequenceEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TemplateSequenceEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\AssetTools\\AssetDefinition_CameraAnimationSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\Factories\\CameraAnimationSequenceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\AssetTools\\AssetDefinition_TemplateSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\Factories\\TemplateSequenceFactoryNew.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\Systems\\TemplateSequenceCameraPreviewSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequenceEditor\\Private\\Misc\\TemplateSequenceEditorSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TemplateSequenceEditor\\UHT\\TemplateSequenceEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayCamerasEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCamerasEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\GameplayCamerasEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\AssetTools\\CameraAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\AssetTools\\CameraRigProxyAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\AssetTools\\CameraVariableCollectionEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\AssetTools\\CameraRigAssetEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\AssetTools\\CameraRigTransitionEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraNodeGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraNodeGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraRigNodeGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraRigInterfaceParameterGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraRigTransitionGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraSharedTransitionGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\ObjectTreeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\CameraRigTransitionGraphSchemaBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\ObjectTreeGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Editors\\ObjectTreeGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Toolkits\\CameraAssetEditorToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Toolkits\\CameraRigAssetEditorToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Public\\Toolkits\\CameraVariableCollectionEditorToolkit.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\AssetTools\\AssetDefinition_CameraRigProxyAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\AssetTools\\AssetDefinition_CameraRigAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\AssetTools\\AssetDefinition_CameraAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\AssetTools\\AssetDefinition_CameraVariableCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\Factories\\CameraAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\Factories\\CameraRigProxyAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\Factories\\CameraRigAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\Debugger\\SGameplayCamerasDebugger.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCamerasEditor\\Private\\Factories\\CameraVariableCollectionFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayCamerasEditor\\UHT\\GameplayCamerasEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeTests", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeTests\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeImportTestSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeImportTestPlan.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeImportTestStepBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeImportTestStepReimport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeImportTestStepImport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\InterchangeTestFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\ActorImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\AssetImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\ImportTestFunctionsBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\LevelVariantSetsImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\InterchangeResultImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\LevelSequenceImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\AnimationImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\MaterialImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\PointLightImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\LightImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\TextureImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\SpotLightImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\StaticMeshImportTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\MaterialXTestFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTests\\Public\\ImportTestFunctions\\SkeletalMeshImportTestFunctions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeTests\\UHT\\InterchangeTests.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeTestEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTestEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeTestEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTestEditor\\Private\\InterchangeImportTestPlanFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Source\\InterchangeTestEditor\\Private\\AssetDefinition_InterchangeImportTestPlan.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\InterchangeTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\InterchangeTestEditor\\UHT\\InterchangeTestEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WebMMediaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WebMMedia\\Source\\WebMMediaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WebMMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WebMMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WebMMediaEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WebMMedia\\Source\\WebMMediaEditor\\Private\\WebMFileMediaSourceFactory.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WebMMedia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\WebMMediaEditor\\UHT\\WebMMediaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SynthesisEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\SynthesisEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SynthesisEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\SynthesisEditor\\Classes\\AudioImpulseResponseAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\SynthesisEditor\\Classes\\SynthesisEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\SynthesisEditor\\Classes\\EpicSynth1PresetBank.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\SynthesisEditor\\Classes\\MonoWaveTablePresetBank.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\SynthesisEditor\\UHT\\SynthesisEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GooglePADEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePADEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GooglePADEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePADEditor\\Public\\GooglePADRuntimeSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GooglePADEditor\\UHT\\GooglePADEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioSynesthesiaEditor", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesiaEditor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioSynesthesiaEditor\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesiaEditor\\Classes\\AudioSynesthesiaNRTSettingsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesiaEditor\\Classes\\AudioSynesthesiaNRTFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesiaEditor\\Classes\\AudioSynesthesiaSettingsFactory.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\AudioSynesthesiaEditor\\UHT\\AudioSynesthesiaEditor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModularGameplayActors", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModularGameplayActors\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularAIController.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularCharacter.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularGameMode.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularGameState.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPawn.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPlayerController.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPlayerState.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ModularGameplayActors\\UHT\\ModularGameplayActors.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonLoadingScreen", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonLoadingScreen\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingProcessTask.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingScreenManager.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingProcessInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Private\\CommonLoadingScreenSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonLoadingScreen\\UHT\\CommonLoadingScreen.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonUser", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\AsyncAction_CommonUserInitialize.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserBasicPresence.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonSessionSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserTypes.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "COMMONUSER_OSSV1=1" + ], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonUser\\UHT\\CommonUser.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonGame", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonGame\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonGameInstance.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonLocalPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonPlayerController.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonPlayerInputKey.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonUIExtensions.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\GameUIManagerSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\GameUIPolicy.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\PrimaryGameLayout.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_CreateWidgetAsync.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Messaging\\CommonGameDialog.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_PushContentToLayerForPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_ShowConfirmation.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Messaging\\CommonMessagingSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\CommonGame\\UHT\\CommonGame.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UIExtension", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UIExtension\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\Public\\Widgets\\UIExtensionPointWidget.h", + "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\Public\\UIExtensionSystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\UIExtension\\UHT\\UIExtension.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayMessageRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayMessageRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\AsyncAction_ListenForGameplayMessage.h", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\GameplayMessageSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\GameplayMessageTypes2.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayMessageRuntime\\UHT\\GameplayMessageRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameSubtitles", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameSubtitles\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\SubtitleDisplayOptions.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\SubtitleDisplaySubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\Players\\MediaSubtitlesPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\Widgets\\SubtitleDisplay.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameSubtitles\\UHT\\GameSubtitles.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameSettings", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSetting.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingAction.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingCollection.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingFilterState.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingRegistry.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValue.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueDiscrete.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueDiscreteDynamic.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueScalarDynamic.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueScalar.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingDetailExtension.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingListEntry.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingListView.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingDetailView.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingPanel.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\IGameSettingActionInterface.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingScreen.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\GameSettingPressAnyKey.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\GameSettingRotator.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingVisualData.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\KeyAlreadyBoundWarning.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Private\\Widgets\\Responsive\\GameResponsivePanelSlot.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Private\\Widgets\\Responsive\\GameResponsivePanel.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameSettings\\UHT\\GameSettings.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LyraGame", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Source\\LyraGame", + "IncludeBase": "E:\\Projects\\cross_platform\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraGame\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySourceInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySystemGlobals.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySystemComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilityTagRelationshipMapping.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayAbilityTargetData_SingleTargetHit.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayCueManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayEffectContext.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGlobalAbilitySystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraTaggedActor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_InventoryItem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_ItemTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_PlayerTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilitySimpleFailureMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Jump.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Death.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Reset.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraCombatSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraAttributeSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraHealthSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Executions\\LyraDamageExecution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Executions\\LyraHealExecution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Phases\\LyraGamePhaseAbility.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Phases\\LyraGamePhaseSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Animation\\LyraAnimInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Audio\\LyraAudioMixEffectsSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Audio\\LyraAudioSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraAssistInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraMode.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraMode_ThirdPerson.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraPlayerCameraManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraUICameraManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraPenetrationAvoidanceFeeler.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacterWithAbilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacterMovementComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacter.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraHealthComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawn.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraHeroComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCharacterPartTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawnData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawnExtensionComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraControllerComponent_CharacterParts.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticAnimationTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraBotCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticDeveloperSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraPlatformEmulationSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraGameplayAbility_FromEquipment.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraPickupDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraPawnComponent_CharacterParts.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsLibrary.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraDamagePopStyle.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\AnimNotify_LyraContextEffects.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent_NiagaraText.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraQuickBarComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraDeveloperSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddInputBinding.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddAbilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraDamagePopStyleNiagara.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddInputContextMapping.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\LyraGameFeaturePolicy.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddGameplayCuePath.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent_MeshText.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\AsyncAction_ExperienceReady.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraBotCreationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceActionSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraUserFacingExperienceDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraGameState.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraGameMode.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraRuntimeOptions.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_SplitscreenConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_WorldActionBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraWorldSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionQuery.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionOption.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputModifiers.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\IInteractionInstigator.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_GrantNearbyInteraction.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraHotfixManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\IInteractableTarget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Abilities\\LyraGameplayAbility_Interact.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_SetStats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraAimSensitivityData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_WaitForInteractableTargets_SingleLineTrace.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_EquippableItem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_QuickBarIcon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_PickupIcon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\LyraInteractionDurationMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Abilities\\GameplayAbilityTargetActor_Interact.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\IPickupable.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_WaitForInteractableTargets.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessageHelpers.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputUserSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryItemDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraPlayerMappableKeyProfile.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraNotificationMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceStatSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessageReplication.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraDebugCameraController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceStatTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryItemInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerStart.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraLocalPlayer.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerSpawningManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingAction_SafeZoneEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerState.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingKeyboardInput.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraCheatManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_PerfStat.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Physics\\PhysicalMaterialWithTags.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Replays\\LyraReplaySubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\GameplayMessageProcessor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Replays\\AsyncAction_QueryReplays.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_Resolution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_Language.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Screens\\LyraSafeZoneEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_OverallQuality.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraGameSettingRegistry.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Screens\\LyraBrightnessEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerBotController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameEngine.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraActorUtilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraTextHotfixConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscreteDynamic_AudioOutputDevice.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraSettingsLocal.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraDevelopmentStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\GameplayTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameSession.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraSettingsShared.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraphSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraSignificanceManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraAssetManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraph.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Tests\\LyraGameplayRpcRegistrationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamPublicInfo.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\AsyncAction_ObserveTeam.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Widgets\\LyraSettingsListEntrySetting_KeyboardInput.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamDisplayAsset.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Tests\\LyraTestControllerBootTest.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraSettingScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraHUD.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraSystemStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraphTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraTaggedWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraJoystickWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamAgentInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraSimulatedInputWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamPrivateInfo.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraBoundActionButton.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamCreationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraHUDLayout.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraTabButtonBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_MobileFPSType.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamInfoBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\AsyncAction_ObserveTeamColors.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraWidgetFactory.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraTouchRegion.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraGameViewportClient.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraWidgetFactory_Class.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Basic\\MaterialProgressBar.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraListView.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraLoadingScreenSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraControllerDisconnectedScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraConfirmationScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\ApplyFrontendPerfSettingsAction.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\LyraFrontendStateComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraTabListWidgetBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraActionWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraActivatableWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorLayer.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\PerformanceStats\\LyraPerfStatContainerBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Subsystem\\LyraUIManagerSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Subsystem\\LyraUIMessaging.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorDescriptor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\InventoryFragment_ReticleConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\LyraIndicatorManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\LyraWeaponUserInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IActorIndicatorWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraDamageLogDebuggerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponDebugSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorLibrary.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponStateComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\PerformanceStats\\LyraPerfStatWidgetBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\LyraLobbyBackground.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraRangedWeaponInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponSpawner.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\HitMarkerConfirmationWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraButtonBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\SCircumferenceMarkerWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraGameplayAbility_RangedWeapon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\CircumferenceMarkerWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\LyraReticleWidgetBase.h" + ], + "PublicDefines": [ + "SHIPPING_DRAW_DEBUG_ERROR=1", + "WITH_RPC_REGISTRY=1", + "WITH_HTTPSERVER_LISTENERS=1", + "WITH_GAMEPLAY_DEBUGGER_CORE=1", + "WITH_GAMEPLAY_DEBUGGER=1", + "WITH_GAMEPLAY_DEBUGGER_MENU=1", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraGame\\UHT\\LyraGame.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ShooterTestsRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ShooterTestsRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime\\Private\\ShooterTestsDevicePropertyTester.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ShooterTestsRuntime\\UHT\\ShooterTestsRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TopDownArenaRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TopDownArenaRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Public\\LyraCameraMode_TopDownArenaCamera.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaMovementComponent.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaAttributeSet.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaPickupUIData.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\TopDownArenaRuntime\\UHT\\TopDownArenaRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ShooterCoreRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ShooterCoreRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\ShooterCoreRuntimeSettings.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\LyraWorldCollectable.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Accolades\\LyraAccoladeDefinition.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Accolades\\LyraAccoladeHostWidget.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistTargetComponent.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\IAimAssistTargetInterface.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistTargetManagerComponent.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistInputModifier.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\AssistProcessor.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\ElimChainProcessor.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Messages\\ControlPointStatusMessage.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\ElimStreakProcessor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Private\\TDM_PlayerSpawningManagmentComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\ShooterCoreRuntime\\UHT\\ShooterCoreRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PocketWorlds", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PocketWorlds\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketCapture.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketCaptureSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevel.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevelSystem.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevelInstance.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\PocketWorlds\\UHT\\PocketWorlds.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayMessageNodes", + "ModuleType": "GameUncooked", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageNodes", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayMessageNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageNodes\\Public\\K2Node_AsyncAction_ListenForGameplayMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\GameplayMessageNodes\\UHT\\GameplayMessageNodes.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LyraExtTool", + "ModuleType": "GameEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Source\\LyraExtTool", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraExtTool\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Source\\LyraExtTool\\Public\\BPFunctionLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\LyraExtTool\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraExtTool\\UHT\\LyraExtTool.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LyraEditor", + "ModuleType": "GameEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Source\\LyraEditor", + "IncludeBase": "E:\\Projects\\cross_platform\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraEditor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\LyraEditorEngine.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Commandlets\\ContentValidationCommandlet.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Private\\LyraContextEffectsLibraryFactory.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Validation\\EditorValidator.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Validation\\EditorValidator_Load.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Validation\\EditorValidator_SourceControl.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Validation\\EditorValidator_Blueprints.h", + "E:\\Projects\\cross_platform\\Source\\LyraEditor\\Validation\\EditorValidator_MaterialFunctions.h" + ], + "PublicDefines": [ + "WITH_RPC_REGISTRY=1", + "WITH_HTTPSERVER_LISTENERS=1", + "SHIPPING_DRAW_DEBUG_ERROR=1" + ], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealEditor\\Inc\\LyraEditor\\UHT\\LyraEditor.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + } + ], + "UhtPlugins": [] +} \ No newline at end of file diff --git a/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtpath b/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtpath new file mode 100644 index 00000000..f49f5cfa --- /dev/null +++ b/Intermediate/Build/Win64/LyraEditor/Development/LyraEditor.uhtpath @@ -0,0 +1 @@ +E:\Games\UE_5.5\Engine\Binaries\DotNET\UnrealBuildTool\EpicGames.UHT.dll \ No newline at end of file diff --git a/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.deps b/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.deps new file mode 100644 index 00000000..e69de29b diff --git a/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtmanifest b/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtmanifest new file mode 100644 index 00000000..349412fe --- /dev/null +++ b/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtmanifest @@ -0,0 +1,10959 @@ +{ + "IsGameTarget": true, + "RootLocalPath": "E:\\Games\\UE_5.5", + "TargetName": "LyraGame", + "ExternalDependenciesFile": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\LyraGame\\Shipping\\LyraGame.deps", + "Modules": [ + { + "Name": "CoreUObject", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CoreUObject\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\Misc\\DataValidation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\Misc\\EditorPathObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\InstancedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\SharedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\UserDefinedStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\PropertyBag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\UserDefinedStructEditorUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\StructUtils\\InstancedStructContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\CookedMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\CoreNetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\NoExportTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\OverriddenPropertySet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\PerPlatformProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\UObject\\PropertyText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMPackageTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseEffectSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Public\\VerseVM\\VVMVerseStruct.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Private\\UObject\\PropertyHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Tests\\OptionalPropertyTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreUObject\\Tests\\UObject\\InstanceDataObjectUtilsTest.h" + ], + "PublicDefines": [ + "WITH_VERSE_COMPILER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CoreUObject\\UHT\\CoreUObject.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NetCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NetCore\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Classes\\Net\\Core\\Analytics\\NetAnalyticsAggregatorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Classes\\Net\\Serialization\\FastArraySerializer.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\EscalationStates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetConnectionFaultRecoveryBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetCloseResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\NetEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\Connection\\StateStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Net\\Core\\Public\\Net\\Core\\PushModel\\PushModel.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NetCore\\UHT\\NetCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "BuildPatchServices", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Online\\BuildPatchServices", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\BuildPatchServices\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Online\\BuildPatchServices\\Private\\Data\\ManifestUObject.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\BuildPatchServices\\UHT\\BuildPatchServices.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyPath", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PropertyPath\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath\\Public\\PropertyPathHelpers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PropertyPath\\Private\\Tests\\PropertyPathHelpersTest.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PropertyPath\\UHT\\PropertyPath.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Chaos", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Chaos\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\ChaosSolverConfiguration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\SolverEventFilters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\PhysicsCoreTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\PhysicsObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\SoftsSimulationSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Chaos\\Deformable\\ChaosDeformableSolverProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\Field\\FieldSystemTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionConvexUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionProximityUtility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\GeometryCollectionSimulationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\ManagedArrayCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Chaos\\Public\\GeometryCollection\\RecordedTransformTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "COMPILE_WITHOUT_UNREAL_SUPPORT=0", + "CHAOS_MEMORY_TRACKING=0", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Chaos\\UHT\\Chaos.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DeveloperSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DeveloperSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\DeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\DeveloperSettingsBackedByCVars.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\PlatformSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\DeveloperSettings\\Public\\Engine\\PlatformSettingsManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DeveloperSettings\\UHT\\DeveloperSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InputCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InputCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InputCore\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InputCore\\Classes\\InputCoreTypes.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InputCore\\UHT\\InputCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowAnyType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowCoreNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowInputOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowMathNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowOverrideNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowSelection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowTerminalNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Core\\Public\\Dataflow\\DataflowVectorNodes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowCore\\UHT\\DataflowCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescriptionBaseBulkData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescriptionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MeshDescription\\Public\\MeshDescription.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshDescription\\UHT\\MeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StaticMeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\StaticMeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription\\Public\\StaticMeshDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\StaticMeshDescription\\Public\\UVMapSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\StaticMeshDescription\\UHT\\StaticMeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SkeletalMeshDescription", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SkeletalMeshDescription\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription\\Public\\SkeletalMeshElementTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SkeletalMeshDescription\\Public\\SkeletalMeshDescription.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SkeletalMeshDescription\\UHT\\SkeletalMeshDescription.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IrisCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\IrisCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\DataStream\\DataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\DataStream\\DataStreamManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationState\\IrisFastArraySerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationState\\ReplicationStateDescriptorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetObjectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ObjectReplicationBridgeConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ObjectReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\ReplicationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\FilterOutNetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\WorldLocations.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectGridFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\ReplicationFilteringConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NopNetObjectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\NetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\SphereWithOwnerBoostNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetBlob\\SequentialPartialNetBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\LocationBasedNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\FloatNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\InstancedStructNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\DateTimeNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IrisObjectReferencePackageMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IntRangeNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\EnumNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\IntNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PackedIntNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\GuidNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\ObjectNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\SoftObjectNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\QuatNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PolymorphicNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\PackedVectorNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectFilterDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\UintNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\UintRangeNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\VectorNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Filtering\\NetObjectConnectionFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\NetBlob\\NetBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\NetObjectCountLimiter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\SphereNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\ReplicationSystem\\Prioritization\\FieldOfViewNetObjectPrioritizer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\NetSerializerConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\StringNetSerializers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Public\\Iris\\Serialization\\RotatorNetSerializers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\DataStream\\DataStreamDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetTokenDataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\ReplicationDataStream.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetBlobHandlerDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetObjectBlobHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\NetRPCHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\NetBlob\\PartialNetObjectAttachmentHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\ReplicationSystem\\Prioritization\\NetObjectPrioritizerDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Iris\\Core\\Private\\Iris\\Serialization\\InternalNetSerializers.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\IrisCore\\UHT\\IrisCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PhysicsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PhysicsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodyInstanceCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodySetupEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\BodySetupCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicsSettingsEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicsSettingsCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\Chaos\\ChaosEngineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\Chaos\\ChaosPhysicalMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicalMaterials\\PhysicalMaterialPropertyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PhysicsCore\\Public\\PhysicalMaterials\\PhysicalMaterial.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PhysicsCore\\UHT\\PhysicsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeInterface", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothSysRuntimeIntrfc\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothCollisionData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothCollisionPrim.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothConfigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingAssetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSimulationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSimulationInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothingSystemRuntimeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothPhysicalMeshDataBase_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeInterface\\Public\\ClothVertBoneData.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothSysRuntimeIntrfc\\UHT\\ClothingSystemRuntimeInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioLinkCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioLinkCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkCore\\Public\\AudioLinkSettingsAbstract.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioLinkCore\\UHT\\AudioLinkCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioExtensions", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioExtensions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioPropertiesSheetAssetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\AudioParameterControllerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioEndpoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioPropertiesSheet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioModulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundfieldEndpoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IAudioExtensionPlugin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\SoundGeneratorOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundWaveCloudStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\IWaveformTransformation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioExtensions\\Public\\ISoundfieldFormat.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioExtensions\\UHT\\AudioExtensions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioPlatformConfiguration", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioPlatformConfiguration", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioPlatformConfiguration\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioPlatformConfiguration\\Public\\AudioCompressionSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioPlatformConfiguration\\UHT\\AudioPlatformConfiguration.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PacketHandler", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PacketHandler\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler\\Classes\\HandlerComponentFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\PacketHandlers\\PacketHandler\\Classes\\PacketHandlerProfileConfig.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PacketHandler\\UHT\\PacketHandler.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineSettings\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\ConsoleSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameMapsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameNetworkManagerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GameSessionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GeneralEngineSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\GeneralProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineSettings\\Classes\\HudSettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineSettings\\UHT\\EngineSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages\\Public\\TraceControlMessages.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EngineMessages\\Public\\EngineServiceMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineMessages\\UHT\\EngineMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AssetRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Public\\AssetRegistry\\AssetRegistryHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Public\\AssetRegistry\\IAssetRegistry.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AssetRegistry\\Private\\AssetRegistry.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AssetRegistry\\UHT\\AssetRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "JsonUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\JsonUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\JsonUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\JsonUtilities\\Public\\JsonObjectWrapper.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\JsonUtilities\\UHT\\JsonUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FieldNotification", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FieldNotification\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification\\Public\\FieldNotificationId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\FieldNotification\\Public\\INotifyFieldValueChanged.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FieldNotification\\UHT\\FieldNotification.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CoreOnline", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CoreOnline\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline\\Public\\Online\\CoreOnline.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CoreOnline\\Private\\Online\\CoreOnlinePrivate.h" + ], + "PublicDefines": [ + "PLATFORM_MAX_LOCAL_PLAYERS=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CoreOnline\\UHT\\CoreOnline.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UniversalObjectLocator", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UniversalObjectLocator\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\DirectPathObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\SubObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UniversalObjectLocator\\Public\\UniversalObjectLocatorResolveParams.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UniversalObjectLocator\\UHT\\UniversalObjectLocator.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SlateCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SlateCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Debugging\\SlateDebugging.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontBulkData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\CompositeFont.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontFaceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontRasterizationMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\FontSdfSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Fonts\\SlateFontInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Input\\Events.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Input\\NavigationReply.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Clipping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\FlowDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Margin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Layout\\Geometry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Rendering\\RenderingCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Rendering\\SlateRendererTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Sound\\SlateSound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateBrush.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SegmentedControlStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleContainerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleContainerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\ToolBarStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\SlateWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Styling\\StyleColors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Types\\SlateEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Types\\SlateVector2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateCore\\Public\\Widgets\\WidgetPixelSnapping.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_FREETYPE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SlateCore\\UHT\\SlateCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TypedElementFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TypedElementFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementAlertColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementCompatibilityColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementFolderColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementIconOverrideColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementMiscColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementOverrideColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementLabelColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementRevisionControlColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementHiearchyColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementPackageColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementTypeInfoColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementSlateWidgetColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementSelectionColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementUIColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementViewportColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementValueCacheColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Common\\TypedElementHandles.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Common\\TypedElementCommonTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementCounter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementListProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Interfaces\\TypedElementDataStorageFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementPivotOffsetColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Interfaces\\TypedElementDataStorageUiInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Columns\\TypedElementTransformColumns.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Public\\Elements\\Framework\\TypedElementRegistry.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Private\\TypedElementFrameworkTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Private\\Elements\\Framework\\TypedElementListLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Tests\\Elements\\Framework\\TypedElementDataStoragePerformanceTestCommands.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementFramework\\Tests\\Elements\\Framework\\TypedElementTestColumns.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TypedElementFramework\\UHT\\TypedElementFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TypedElementRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TypedElementRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Framework\\TypedElementSelectionSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementPrimitiveCustomDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Public\\Elements\\Interfaces\\TypedElementObjectInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TypedElementRuntime\\Private\\Elements\\Framework\\TypedElementSelectionSetLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TypedElementRuntime\\UHT\\TypedElementRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImageCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImageCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageCore\\Public\\ImageCoreBP.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImageCore\\UHT\\ImageCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Slate", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Slate\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\SlateSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Application\\SlateApplication.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Commands\\InputChord.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Commands\\UICommandInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\MultiBox\\MultiBoxDefs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\MultiBox\\ToolMenuBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ButtonWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\CheckBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ComboBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\EditableTextWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ScrollBarWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ProgressWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ScrollBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\EditableTextBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\SpinBoxWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\TextBlockWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Text\\CharRangeList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Text\\TextLayout.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Views\\ITypedTableView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Input\\IVirtualKeyboardEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Framework\\Styling\\ComboButtonWidgetStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\Anchors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\SScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Layout\\SScaleBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Notifications\\SProgressBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Text\\ISlateEditableTextWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Slate\\Public\\Widgets\\Views\\STableViewBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Slate\\UHT\\Slate.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\AnimationDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\EulerTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\FABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\TransformNoScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\NodeHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\CommonAnimTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\Constraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimationCore\\Public\\NodeChain.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationCore\\UHT\\AnimationCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MassEntity", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MassEntity\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassCommands.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassDebugger.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntitySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntitySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessingPhaseManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassRequirements.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassSubsystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassEntityQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MassEntity\\Public\\MassObserverRegistry.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MassEntity\\UHT\\MassEntity.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HttpNetworkReplayStreaming", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\HttpNetworkReplayStreaming", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HttpReplayStreaming\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\HttpNetworkReplayStreaming\\Public\\HttpNetworkReplayStreaming.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HttpReplayStreaming\\UHT\\HttpNetworkReplayStreaming.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalFileNetworkReplayStreaming", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\LocalFileNetworkReplayStreaming", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LFNRS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NetworkReplayStreaming\\LocalFileNetworkReplayStreaming\\Public\\LocalFileNetworkReplayStreaming.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LFNRS\\UHT\\LocalFileNetworkReplayStreaming.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieSceneCapture", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieSceneCapture\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\IMovieSceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureEnvironment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureProtocolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\AudioCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\UserDefinedCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\MovieSceneCaptureSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\VideoCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\CompositionGraphCaptureProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\ImageSequenceProtocol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\LevelCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneCapture\\Public\\Protocols\\FrameGrabberProtocol.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieSceneCapture\\UHT\\MovieSceneCapture.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EyeTracker", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EyeTracker\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker\\Public\\EyeTrackerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\EyeTracker\\Public\\EyeTrackerFunctionLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EyeTracker\\UHT\\EyeTracker.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CinematicCamera", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CinematicCamera\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CameraRig_Crane.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CameraRig_Rail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\CinematicCamera\\Public\\CineCameraActor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CinematicCamera\\UHT\\CinematicCamera.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LevelSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LevelSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceAnimSequenceLink.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\DefaultLevelSequenceInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceBurnIn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceCameraSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\SequenceMediaController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceBindingReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\AnimSequenceLevelSequenceLink.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceLegacyObjectReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Public\\LevelSequenceDirector.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Private\\LegacyLazyObjectPtrFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LevelSequence\\Private\\LevelSequenceProjectSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LevelSequence\\UHT\\LevelSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Landscape", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Landscape\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ControlPointMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ControlPointMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Landscape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoActiveActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeEditLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGizmoRenderComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeInfoMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeNaniteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineControlPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineMeshesActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplinesComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeTextureStorageProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeStreamingProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeGrassOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapePhysicalMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeVisibilityMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\ILandscapeSplineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerCoords.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\Materials\\MaterialExpressionLandscapeLayerWeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeHeightfieldCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeSplineSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshProxyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeGrassType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeLayerInfoObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMeshCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeMaterialInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Classes\\LandscapeWeightmapUsage.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeConfigHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeBlueprintBrushBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditLayerRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditResourcesSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeHLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\LandscapeEditTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Public\\GlobalMergeLegacySupportUtil.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Landscape\\Private\\LandscapeEditLayerRendererPrivate.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Landscape\\UHT\\Landscape.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Foliage", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Foliage\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageTypeObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageStatistics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\InstancedFoliageActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\InteractiveFoliageActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageBlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageSpawner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\GrassInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\ProceduralFoliageTile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Public\\FoliageType_InstancedStaticMesh.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Foliage\\Private\\InteractiveFoliageComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Foliage\\UHT\\Foliage.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaAssets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaAssets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\BaseMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlaylist.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlayerProxyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSourceOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaTextureTracker.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\Misc\\MediaBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSoundComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\FileMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\StreamMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\TimeSynchronizableMediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaSourceRendererInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\MediaPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaAssets\\Public\\PlatformMediaSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaAssets\\UHT\\MediaAssets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioMixer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioMixer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectEQ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\Generators\\AudioGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Classes\\SubmixEffects\\AudioMixerSubmixEffectDynamicsProcessor.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioBusSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioMixerBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioDeviceNotificationSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Components\\SynthComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Quartz\\AudioMixerClockHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\Quartz\\QuartzSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Public\\AudioMixerDevice.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioMixer\\Private\\AudioMixerSourceManager.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioMixer\\UHT\\AudioMixer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioLinkEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioLinkEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioLink\\AudioLinkEngine\\Public\\IAudioLinkBlueprintInterface.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioLinkEngine\\UHT\\AudioLinkEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTags", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayTags\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\BlueprintGameplayTagLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagAssetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagsManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Classes\\GameplayTagsSettings.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagRedirectors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Public\\GameplayTagContainerNetSerializer.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTags\\Private\\InternalGameplayTagContainerNetSerializer.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayTags\\UHT\\GameplayTags.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MRMesh", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MRMesh\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MockDataMeshTrackerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MeshReconstructorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MRMesh\\Public\\MRMeshComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MRMesh\\UHT\\MRMesh.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MediaUtils\\Public\\MediaPlayerOptions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaUtils\\UHT\\MediaUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UMG", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UMG\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieScene2DTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneMarginSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneWidgetMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneWidgetMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\UMGSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\MovieSceneMarginTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\UMGSequenceTickManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationPlayCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\BoolBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\BrushBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Animation\\WidgetAnimationBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\DynamicPropertyPath.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\FloatBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\CheckedStateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\ColorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\Int32Binding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\PropertyBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\MouseCursorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\TextBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\VisibilityBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\WidgetBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateBitfield.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateRegistration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Binding\\States\\WidgetStateSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\AsyncTaskDownloadImage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\GameViewportSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\DragDropOperation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\IUserListEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\IUserObjectListEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\SlateBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidgetBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\UserWidgetPool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetChild.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetLayoutLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Blueprint\\WidgetNavigation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BackgroundBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BackgroundBlurSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Border.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Button.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\BorderSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ButtonSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CheckBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CanvasPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CanvasPanelSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\CircularThrobber.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBoxKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ComboBoxString.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\DynamicEntryBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ContentWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ExpandableArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\EditableTextBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\GridSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\DynamicEntryBoxBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\InputKeySelector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\HorizontalBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Image.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\HorizontalBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\InvalidationBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ListView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NamedSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NativeWidgetHost.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MenuAnchor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\OverlaySlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\NamedSlotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Overlay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MultiLineEditableText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ListViewBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PostBufferUpdate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PostBufferBlurUpdater.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RetainerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PanelSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RadialBoxSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlockImageDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\RichTextBlockDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\PanelWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScaleBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScaleBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SafeZoneSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SizeBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SlateWrapperTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SpinBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\StackBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Slider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\StackBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TextWidgetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Throbber.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Spacer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TreeView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\VerticalBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\VerticalBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Visual.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Widget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetInteractionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetSwitcherSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WrapBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\Viewport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UserWidgetExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WindowTitleBarArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\UniformGridSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\WidgetBlueprintGeneratedClassExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WindowTitleBarAreaSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UIComponentContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\FieldNotification\\WidgetEventField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Slate\\SlateVectorArtData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WidgetSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Slate\\WidgetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\EditableText.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\GridPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\MultiLineEditableTextBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ProgressBar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SafeZone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\SizeBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\ScrollBoxSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\TileView.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Extensions\\UIComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\UniformGridPanel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Public\\Components\\WrapBoxSlot.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Binding\\WidgetFieldNotificationExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Animation\\MovieSceneMarginPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\UMG\\Private\\Blueprint\\ListViewDesignerPreviewItem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UMG\\UHT\\UMG.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieSceneTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieSceneTracks\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneReplaceableActorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\MovieSceneTracksComponentTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneSpawnableActorBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneDoublePerlinNoiseChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneDoublePerlinNoiseChannelContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneCameraShakeSourceTriggerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneFloatPerlinNoiseChannelContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneEventChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneStringChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieScenePlatformCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieSceneDirectorBlueprintCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Conditions\\MovieSceneScalabilityCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\EntitySystem\\Interrogation\\MovieSceneInterrogatedPropertyInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Evaluation\\MovieSceneBaseCacheTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DAttachSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DPathSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DTransformSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScene3DConstraintSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Evaluation\\MovieSceneParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneAudioSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSourceShakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCinematicShotSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneConsoleVariableTrackInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraCutSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneByteSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCustomPrimitiveDataSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneDoubleSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneConstrainedSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneComponentMaterialParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventTriggerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventSectionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneFadeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneIntegerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneFloatSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEventRepeaterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneObjectPropertySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneLevelVisibilitySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneStringSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneSkeletalAnimationSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneVectorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneSlomoSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieScenePrimitiveMaterialSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\DoubleChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\BoolChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\DoublePerlinNoiseChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\ByteChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneVisibilitySection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\FloatChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\FloatPerlinNoiseChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScene3DTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\IntegerChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBaseValueEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBoolPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneBytePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneCameraShakeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentMobilitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentTransformSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneCustomPrimitiveDataSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneConstraintSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEnumPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneDoublePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEulerTransformPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneDeferredComponentMovementSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneEventSystems.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneFloatPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneInitialValueSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneHierarchicalBiasSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneIntegerPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialParameterCollectionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialParameterSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMotionVectorSimulationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneObjectPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseBoolBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseDoubleBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseEnumBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseByteBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePiecewiseIntegerBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePredictionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePropertyInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieScenePropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneQuaternionBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneRotatorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneSkeletalAnimationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneQuaternionInterpolationRotationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneTransformOriginSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneVectorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneVisibilitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\ObjectPathChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\WeightAndEasingEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneStringPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tests\\MovieSceneTestDataBuilders.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\TrackInstances\\MovieSceneCameraCutTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\IMovieSceneSectionsToKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DPathTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\StringChannelEvaluatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\IMovieSceneTransformOrigin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DConstraintTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DAttachTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneBoolTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeSourceShakeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraCutTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneAudioTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneByteTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeSourceTriggerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneColorTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCinematicShotTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCustomPrimitiveDataTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneDataLayerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCVarTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneDoubleTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEnumTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEventTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneFadeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneFloatTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneColorPropertySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneIntegerTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneLevelVisibilityTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneMaterialParameterCollectionTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneObjectPropertyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneParticleTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScenePrimitiveMaterialTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScenePropertyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneRotatorTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneVisibilityTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneStringTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneSkeletalAnimationTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneReplaceableDirectorBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Bindings\\MovieSceneSpawnableDirectorBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Channels\\MovieSceneFloatPerlinNoiseChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneColorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneActorReferenceSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneBaseCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCameraShakeSourceTriggerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneDataLayerSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneCVarSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneEnumSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneParticleSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneRotatorSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Sections\\MovieSceneParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneMaterialSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieScene3DTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneActorReferenceTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneCameraShakeTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneEulerTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Systems\\MovieSceneComponentAttachmentSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneParticleParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneTransformTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneSlomoTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Public\\Tracks\\MovieSceneVectorTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneActorReferenceTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneEventTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieScene3DPathTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Tests\\MovieSceneDecomposerTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneParticleParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneFadeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieSceneParticleTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\TrackInstances\\MovieSceneCVarTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneDataLayerSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneAudioSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Evaluation\\MovieScenePropertyTemplates.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Tests\\MovieScenePartialEvaluationTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneLevelVisibilitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieSceneTracks\\Private\\Systems\\MovieSceneSlomoSystem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieSceneTracks\\UHT\\MovieSceneTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Constraints", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Constraints\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\TransformableHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\ConstraintsScripting.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Public\\TransformConstraint.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Animation\\Constraints\\Private\\ConstraintSubsystem.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Constraints\\UHT\\Constraints.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimGraphRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimGraphRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimationStateMachineLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimSequencerInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendSpacePlayerLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimSequencerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendListBaseLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\KismetAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\LinkedAnimGraphLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SkeletalControlLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\CommonAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_AimOffsetLookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BlendSpaceLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByBool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceGraphBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpacePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CopyPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendBoneByChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendListByInt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceSampleResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_LayeredBoneBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CallFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_ModifyCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RefPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RandomPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotateRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotationOffsetBlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_SequenceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_RotationOffsetBlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Slot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimExecutionContextLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Sync.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_TwoWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ApplyLimits.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNotifies\\AnimNotify_PlayMontageNotify.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_BoneDrivenController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Constraint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CopyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Fabrik.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CopyBoneDelta.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_HandIKRetargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_LegIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ModifyBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RigidBody.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ObserveBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RotationMultiplier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ResetRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_LookAt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SplineIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_Trail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SkeletalControlBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_SpringBone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\BoneControllerSolvers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_ScaleChainLength.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\BoneControllerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_TwoBoneIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_TwistCorrectiveNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\RBF\\RBFSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\KismetAnimationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\LayeredBoneBlendLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_AnimDynamics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\MirrorAnimLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\PlayMontageCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencerAnimationOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequenceEvaluatorLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencerAnimationSupport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\ModifyCurveLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\SequencePlayerLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_ApplyAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseBlendNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_Mirror.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_CurveSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_MakeDynamicAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_BlendSpaceEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseByName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_MultiWayBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\AnimNodes\\AnimNode_PoseDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AnimGraphRuntime\\Public\\BoneControllers\\AnimNode_RigidBody_Library.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimGraphRuntime\\UHT\\AnimGraphRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosBreakingEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosCollisionEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosRemovalEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\ChaosTrailingEventFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDamagePropagationData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDebugDrawActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionEngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionExternalRenderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolSubSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionRenderLevelSetActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionISMPoolActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Public\\GeometryCollection\\GeometryCollectionComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Private\\GeometryCollection\\GeometryCollectionISMPoolRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\GeometryCollectionEngine\\Private\\GeometryCollection\\GeometryCollectionRootProxyRenderer.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionEngine\\UHT\\GeometryCollectionEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FieldSystemEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FieldSystemEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\FieldSystem\\Source\\FieldSystemEngine\\Public\\Field\\FieldSystemComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FieldSystemEngine\\UHT\\FieldSystemEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosSolverEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosSolverEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosDebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosDebugDrawSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosEventListenerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosNotifyHandlerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosGameplayEventDispatcher.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolverActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\ChaosSolverEngine\\Public\\Chaos\\ChaosSolverSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosSolverEngine\\UHT\\ChaosSolverEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowSimulation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowSimulation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowCollisionObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\DataflowSimulationProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowConstraintObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowPhysicsObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowInterfaceGeometryCachable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Simulation\\Public\\Dataflow\\Interfaces\\DataflowPhysicsSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowSimulation\\UHT\\DataflowSimulation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowContent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowEdNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowContextObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowEngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Experimental\\Dataflow\\Engine\\Public\\Dataflow\\DataflowPreview.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowEngine\\UHT\\DataflowEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneBoundObjectProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingEventReceiverInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingReferences.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneDynamicBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieScene.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFolder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFrameMigration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneKeyStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneKeyProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneMarkedFrame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneNameableTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieScenePossessable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequencePlaybackSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickInterval.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSpawnable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickManagerClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequenceTickManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTimeUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSignedObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTrackEvaluationField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneReplaceableBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\IMovieSceneChannelOverrideProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneCustomBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\IMovieSceneChannelOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneBoolChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\ActorForWorldTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneByteChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneAudioTriggerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannelOverrideContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneDoubleChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneFloatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneIntegerChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\IMovieSceneDeterminismSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneCurveChannelCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneTimeWarpChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneSectionChannelOverrideRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\MovieSceneCompiledDataManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\MovieSceneDeterminismFence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Conditions\\MovieSceneCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Conditions\\MovieSceneGroupCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\BuiltInComponentTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\IMovieSceneBlenderSystemSupport.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBoundObjectInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBlenderSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\IMovieSceneEntityProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBindingLifetimeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Compilation\\IMovieSceneTrackTemplateProducer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneDecompositionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntityInstantiatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntityGroupingSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystemLinker.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEntitySystemGraphs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEvaluationHookSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\TrackInstance\\MovieSceneTrackInstanceSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\IMovieSceneCustomClockSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneCompletionMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationOperand.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvaluationTemplateInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieScenePropertyTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSectionParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSegment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieSceneSequencePlayerObserver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneSequenceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTimeWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTrackImplementation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTimeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneTrackIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\Blending\\MovieSceneBlendType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Generators\\MovieSceneEasingFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneBindingLifetimeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSectionTimingParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSubSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Generators\\MovieSceneEasingCurves.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneBoolSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneSpawnTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieScenePlayRateCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\IMovieScenePlaybackClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpVariantPayloads.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneSpawnSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneObjectBindingID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingOwnerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneBindingOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\INodeAndChannelMappings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\KeyParams.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\MovieSceneSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Bindings\\MovieSceneSpawnableBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneObjectPathChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Channels\\MovieSceneChannelData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneBoundSceneComponentInstantiator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\IMovieSceneEvaluationHook.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\TrackInstance\\MovieSceneTrackInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieScenePreAnimatedStateSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvalTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneEvalTimeSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Evaluation\\MovieSceneEvalTemplateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieScenePropertyBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneSpawnablesSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\EntitySystem\\MovieSceneRootInstantiatorSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneTimeWarpTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneNumericVariantGetter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneTimeWarpSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneSubTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneCachedTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneTimeWarpGetter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Sections\\MovieSceneHookSection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Variants\\MovieSceneNumericVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Public\\Tracks\\MovieSceneBindingLifetimeTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MovieScene\\Private\\Tests\\MovieSceneTestObjects.h" + ], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieScene\\UHT\\MovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TimeManagement", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TimeManagement\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\FixedFrameRateCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedFixedRateCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\GenlockedTimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\ITimedDataInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\TimeManagementBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\TimeSynchronizationSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TimeManagement\\Public\\FrameNumberDisplayFormat.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TimeManagement\\UHT\\TimeManagement.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SlateRHIRenderer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SlateRHIRenderer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlateFXSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\SlateRHIRendererSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlatePostBufferBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SlateRHIRenderer\\Public\\FX\\SlateRHIPostBufferProcessor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SlateRHIRenderer\\UHT\\SlateRHIRenderer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MoviePlayer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MoviePlayer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer\\Public\\MoviePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MoviePlayer\\Public\\MoviePlayerSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MoviePlayer\\UHT\\MoviePlayer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HeadMountedDisplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HeadMountedDisplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\HeadMountedDisplayTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\IIdentifiableXRDevice.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\IMotionController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\HeadMountedDisplay\\Public\\MotionControllerComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HeadMountedDisplay\\UHT\\HeadMountedDisplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Renderer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Renderer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Renderer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Renderer\\Private\\SparseVolumeTexture\\SparseVolumeTextureViewerComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Renderer\\UHT\\Renderer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MaterialShaderQualitySettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MSQS\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings\\Classes\\MaterialShaderQualitySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\MaterialShaderQualitySettings\\Classes\\ShaderPlatformQualitySettings.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MSQS\\UHT\\MaterialShaderQualitySettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImageWriteQueue", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImageWriteQueue\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue\\Public\\ImageWriteBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ImageWriteQueue\\Public\\ImageWriteTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImageWriteQueue\\UHT\\ImageWriteQueue.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Engine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Engine\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\AISystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\NavigationSystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\AvoidanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAgentSelector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\NavigationSystemConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavEdgeProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavCollisionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavDataGatheringMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavAreaBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationAvoidanceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataChunk.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationDataResolution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationInvokerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationInvokerPriority.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavigationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavLinkDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavPathObserverInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\NavRelevantInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\AI\\Navigation\\PathFollowingAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AimOffsetBlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AimOffsetBlendSpace1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationAssetExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationRecordingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBoneCompressionCodec.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimBoneCompressionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimClassInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimComposite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompositeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_LeastDestructive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveEverySecondKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_PerTrackCompression.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_CompressedRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveTrivialKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_UniformIndexable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_BitwiseCompressOnly.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCompress_RemoveLinearKeys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimExecutionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionCodec_UniformlySampled.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimInertializationRequest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimCurveCompressionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimLinkableElement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimLayerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeFunctionRef.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeSpaceConversions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_ApplyMeshSpaceAdditive.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNodeReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_CustomProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_DeadBlending.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_Inertialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedAnimLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_AssetPlayerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_Root.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_RelevantAssetPlayerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedAnimGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_SequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_SaveCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_TransitionPoseEvaluator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_StateMachine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_TransitionResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_UseCachedPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNode_LinkedInputPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSequenceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSlotEvaluationPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimStreamable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimStateMachineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimSingleNodeInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AttributeCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AssetMappingTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BlendSpace1D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\CurveSourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\CustomAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\BuiltInAttributeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\InputScaleBias.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\PoseAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MeshDeformerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MorphTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\PreviewAssetAttachComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MirrorDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\MeshDeformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\SmartName.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\SkeletalMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AnimDataModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\TimeStretchCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\CurveIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\IAnimationDataModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\IAnimationDataController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\BoneMaskFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_TimedParticleEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\Skeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PauseClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AttributeIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResetClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_DisableRootMotion.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResumeClothingSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PlaySound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Audio\\ActorSoundParameterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Atmosphere\\AtmosphericFogComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_ResetDynamics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotify_PlayParticleEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Atmosphere\\AtmosphericFog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraLensEffectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraModifier_CameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimData\\AnimDataNotifications.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\Commandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\PluginCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\PlayerCameraManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraShakeSourceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ApplicationLifecycleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ArrowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BillboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoundsCopyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoxReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BrushComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Commandlets\\SmokeTestCommandlet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\CapsuleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ChildActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DirectionalLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DrawFrustumComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DrawSphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ForceFeedbackComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\HierarchicalInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\InterpToMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\DecalComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ExponentialHeightFogComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightmassPortalComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LocalFogVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LineBatchComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\MaterialBillboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\MeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ModelComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PawnNoiseEmitterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LightComponentBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlaneReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlatformEventsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PlanarReflectionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PointLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LocalLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PostProcessComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PoseableMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\PrimitiveComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\RectLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\RuntimeVirtualTextureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponentCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkeletalMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkyAtmosphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SceneCaptureComponent2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\ShapeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SphereComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SplineMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkinnedMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SpotLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\StaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SphereReflectionCaptureComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\TextRenderComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\VolumetricCloudComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\VectorFieldComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\WindDirectionalSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\WorldPartitionStreamingSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\StereoLayerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveLinearColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveLinearColorAtlas.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\CurveEdPresetCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\KeyHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\NameCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\IndexedCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\RichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\ReporterGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DataDrivenCVars\\DataDrivenCVars.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\DebugDrawService.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\ReporterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\StringCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatConstantCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\Distribution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatUniform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatUniformCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\DeviceProfiles\\DeviceProfileMatching.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorParticleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorUniform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\IntegralCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphPin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\RealCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EditorFramework\\AssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphNode_Documentation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EditorFramework\\ThumbnailInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorInstanceManagerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ActorInstanceHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionFloatParticleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AutoDestroySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Attenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlendableInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlueprintCore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\VariableFrameStrippingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookMark2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookmarkBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BookMark.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Brush.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BoxReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BrushShape.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CancellableAsyncAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CanvasRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Canvas.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ChildConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Channel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Animation\\AnimNotifies\\AnimNotifyState_Trail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\BrushBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Camera\\CameraStackTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\AudioComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\BoxComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CloudStorageBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CollisionProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ComponentDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CompositeCurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CompositeDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Console.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ControlChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CoreSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CullDistanceVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\CurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DamageEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DataAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraControllerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DecalActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugDisplayProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DirectionalLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineBaseTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DPICustomScalingRule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DynamicBlueprintBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DemoPendingNetGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ExponentialHeightFog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DebugCameraHUD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\EngineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Engine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Font.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameEngine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\FontFace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GameViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\DocumentationActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GeneratedMeshAreaLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InGameAdManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\HLODProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\HeterogeneousVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InheritableComponentHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputActionDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\GeneratedBlueprintDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputAxisDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InterpCurveEdSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\IntSerialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputAxisKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputVectorAxisDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LatentActionManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelActorContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputTouchDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingAlwaysLoaded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelScriptBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelScriptActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\InputKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Light.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MapBuildDataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Level.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LevelStreamingPersistent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LocalFogVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LocalPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LODActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MaterialMerging.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MicroTransactionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MemberReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetworkSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NetSerialization.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\LightMapTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Note.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NeuralProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ObjectLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ObjectReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\OverlapResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\MeshMergeCullingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlatformInterfaceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PackageMapClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PendingNetGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlayerStartPIE.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlatformInterfaceWebResponse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PointLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Player.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlanarReflection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PlaneReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PoseWatch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PreviewMeshCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PostProcessVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\PrimaryAssetLabel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ProxyLODMeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RectLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RendererSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\RuntimeOptionsBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReplicatedState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCaptureCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ReplicationDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Scene.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ScriptViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ServerStatReplicator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SCS_Node.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshEditorData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SceneCapture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshLODSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSimplificationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSourceModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ShadowMapTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkinnedAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SimpleConstructionScript.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkeletalMeshSampling.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SplineMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpecularProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SphereReflectionCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SplineMeshComponentDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SoftWorldReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpotLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SpringInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StreamableRenderAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkyLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\StaticMeshSourceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SubsurfaceProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SystemTimeTimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TargetPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextRenderActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureAllMipDataProviderFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCubeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\LODSyncComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureLightProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureLODSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureStreamingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTargetCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureMipDataProviderFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimelineTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimecodeProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerCapsule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TwitterIntegrationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\UserDefinedEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TextureRenderTargetVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TimerHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\VolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ViewportSplitScreen.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\WindDirectionalSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\TriggerVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\UserInterfaceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\WorldComposition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\World.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CharacterMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CharacterMovementReplication.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Character.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CameraBlockingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DebugTextInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Exporters\\Exporter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DamageType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\AsyncActionHandleSaveGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\FloatingPawnMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DefaultPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\DefaultPhysicsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Controller.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameModeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\EngineMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ForceFeedbackEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameSession.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameNetworkManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\GameStateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\HUD.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Info.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\KillZVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceStaticMeshManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\NavMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDevicePropertyHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\OnlineSession.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LocalMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\LightWeightInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\OnlineReplStructs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\InputDeviceLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Pawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PainCausingVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PhysicsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\NavMovementInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerMuteList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PlayerStart.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\RootMotionSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\ProjectileMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\RotatingMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpectatorPawnMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpringArmComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\UpdateLevelVisibilityLevelInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\TouchInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\Volume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\WorldSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SaveGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Buffer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_ActorSubobject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_AssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_Curve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Haptics\\HapticFeedbackEffect_SoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_AsyncCompilation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_CollisionDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_BoneReferenceSkeletonProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_PostProcessVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Intrinsic\\Model.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\NetworkPredictionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\Interface_PreviewMeshProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Interfaces\\IPhysicsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintAsyncActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintMapLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintSetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintPathsLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\GameplayStatics.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintInstancedStructLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\BlueprintPlatformLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetArrayLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\DataTableFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\GameplayStaticsTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetInputLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetInternationalizationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\ImportanceSamplingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetNodeHelperLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetRenderingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetMaterialLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetGuidLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetSystemLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetStringTableLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetMathLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetTextLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassImportanceVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassPortal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmappedSurfaceCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Kismet\\KismetStringLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\PrecomputedVisibilityVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Layers\\Layer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\MeshVertexPainter\\MeshVertexPainterKismetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassPrimitiveSettingsObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\VolumetricLightmapDensityVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\MeshVertexPainter\\MeshVertexPainter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\LightmassCharacterIndirectDetailVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Lightmass\\PrecomputedVisibilityOverrideVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PacketHandlers\\EngineHandlerComponentFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Emitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleModule.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\EmitterCameraLensEffectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleEventManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleModuleRequired.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleLODLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSpriteEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUVAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemReplay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\WorldPSCPool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAcceleration.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationDrag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\ParticleSystemManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\SkyLightComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationDragScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorLine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorPointGravity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Beam\\ParticleModuleBeamTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Camera\\ParticleModuleCameraBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollisionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Collision\\ParticleModuleCollisionGPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColorScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Camera\\ParticleModuleCameraOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Color\\ParticleModuleColor_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverKillParticles.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverSpawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventReceiverBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventSendToGame.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Kill\\ParticleModuleKillHeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetimeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetime_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLightBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Light\\ParticleModuleLight_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationEmitterDirect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationBoneSocket.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveCylinder_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationDirect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveCylinder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationWorldOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveSphere_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleSourceMovement.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationPrimitiveTriangle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationWorldOffset_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Modules\\Location\\ParticleModulePivotOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Components\\TimelineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orientation\\ParticleModuleOrientationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Debug\\DebugDrawComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Parameter\\ParticleModuleParameterDynamic_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleMeshRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotationOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\EdGraph\\EdGraphSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleRotation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRateMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRateOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorConstantCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRateMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRateBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Rotation\\ParticleModuleMeshRotation_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleMeshRotationRate_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeMultiplyLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSizeScaleBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\RotationRate\\ParticleModuleRotationRate_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Size\\ParticleModuleSize_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawnPerUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUVMovie.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Trail\\ParticleModuleTrailBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Spawn\\ParticleModuleSpawnBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataAnimTrail.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataBeam2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataGpu.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Trail\\ParticleModuleTrailSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldGlobal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\TypeData\\ParticleModuleTypeDataRibbon.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldScaleOverLife.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\VectorField\\ParticleModuleVectorFieldScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityInheritParent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocity_Seeded.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Velocity\\ParticleModuleVelocityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\AggregateGeom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicalMaterials\\PhysicalMaterialMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\SubUV\\ParticleModuleSubUVBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BoxElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ChaosBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionReplicatedProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ClusterUnionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\BodyInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConvexElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintInstanceBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ExternalSpatialAccelerationPayload.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsCollisionHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ConstraintDrives.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicalAnimationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsObjectBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\LevelSetElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsHandleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RadialForceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsThruster.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsConstraintTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsThrusterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\PhysicsSpringComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RigidBodyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SkeletalBodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SphereElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SkinnedLevelSetElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\TaperedCapsuleElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsField\\PhysicsFieldComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\ShapeElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\CheckboxStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\SlateBrushAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\SphylElem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Slate\\ButtonStyleAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioOutputTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AudioSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\AmbientSound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueSoundWaveProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\DialogueVoice.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\QuartzQuantizationUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\ReverbEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundAttenuationEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\ReverbSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundConcurrency.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundCue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundGroups.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundModulationDestination.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundMix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeAssetReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeAttenuation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeBranch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeConcatenator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDistanceCrossFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDoppler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundEffectSubmix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeDialoguePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeGroupControl.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeEnveloper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeMature.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeMixer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeModulator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeLooping.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeOscillator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeModulatorContinuous.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeSoundClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeParamCrossFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeQualityLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSourceBusSend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeWavePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSourceBus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundNodeWaveParam.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSubmixSend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundSubmix.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveProcedural.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundTimecodeOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveLoadingBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWaveTimecodeInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\StreamedAudioChunkSeekTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Sound\\SoundWave.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\SparseVolumeTexture\\SparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Tests\\AutomationTestSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Tests\\TextPropertyTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldStatic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VisualLogger\\VisualLoggerAutomationTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Vehicles\\TireType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldAnimated.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VectorField\\VectorFieldVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\LightmapVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\MeshPaintVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\RuntimeVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\RuntimeVirtualTextureVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTextureBuildSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VisualLogger\\VisualLoggerKismetLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Distributions\\DistributionVectorUniformCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\VT\\VirtualTexturePoolConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Curves\\SimpleCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManagerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManagerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\AssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\FontImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ImportantToggleSettingInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\HitResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\NavigationObjectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Polys.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2DDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\Texture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\VoiceChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\ViewportStatsSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\CheatManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\MovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\PawnMovementComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\GameFramework\\SpectatorPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Acceleration\\ParticleModuleAccelerationOverLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Attractor\\ParticleModuleAttractorParticle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Event\\ParticleModuleEventGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Lifetime\\ParticleModuleLifetime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Location\\ParticleModuleLocationSkelVertSurface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Material\\ParticleModuleMaterialBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Material\\ParticleModuleMeshMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orbit\\ParticleModuleOrbit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orbit\\ParticleModuleOrbitBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Particles\\Orientation\\ParticleModuleOrientationAxisLock.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\PhysicsEngine\\RadialForceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Classes\\Engine\\SkinnedAssetCommon.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActiveSoundUpdateInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AlphaBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorFolder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AssetExportTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AssetCompilingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AudioEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\CharacterMovementComponentAsync.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\CanvasTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ComponentInstanceDataCache.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DeformableInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DestructibleInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\DeletedObjectPlaceholder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HitProxies.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\IAssetRegistryTagProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\IViewportSelectableObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LegacyScreenPercentageDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialCachedData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LocationVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialShared.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LODSyncInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MaterialSceneTextureId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshBudgetProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshReductionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshDrawCommandStatsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ObjectTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ParticleHelper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshUVChannelInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PerQualityLevelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PluginBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplaySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\RepMovementNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplayNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneUtils.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ShaderCompiler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ReplayTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SingleAnimationPlayData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SkeletalMeshReductionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SkeletalMeshMerge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\SceneViewExtensionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\StaticMeshComponentLODInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\StaticParameterSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\TextureEncodingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorPartition\\PartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ActorPartition\\ActorPartitionSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\AI\\RVOAvoidanceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\ActiveStateMachineScope.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCompressionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCurveMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNode_StateResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyQueue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNodeConstantData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyMirrorInspectionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimCurveTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyStateMachineInspectionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSingleNodeInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimPhysicsSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_SharedLinkedAnimLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_BlendSpaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\BoneReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\BoneSocketReference.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\CachedAnimData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\ExposedValueHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\MotionTrajectoryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\CachedAnimDataLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\NodeMappingContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\NodeMappingProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\PoseSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\PreviewCollectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkeletalMeshVertexAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkinWeightProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\SkinWeightProfileManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\AudioWidgetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\AudioPanelWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundParameterControllerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundSubmixWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Audio\\SoundEffectPresetWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Blueprint\\BlueprintExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Actor\\ActorElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Component\\ComponentElementCounterInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Framework\\EngineElementsLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Framework\\TypedElementCommonActions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementSelectionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementPrimitiveCustomDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementId.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceElementHierarchyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Engine\\HitResultNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\SMInstance\\SMInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\CharacterNetworkSerializationPackedBitsNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\FieldNotification\\FieldNotificationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\RootMotionSourceGroupNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODBatchingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\UniqueNetIdReplNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\GameFramework\\PlayerStateCountLimiterConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODProxyDesc.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODLevelExclusion.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\HLOD\\HLODProxyMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Instances\\InstancedPlacementPartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Instances\\InstancedPlacementClientInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMComponentData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Internationalization\\StringTable.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMComponentDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorPivotActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstancePropertyOverrideAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\Material.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstancePropertyOverridePolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ISMPartition\\ISMPartitionActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAbsorptionMediumMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAbs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionActorPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAntialiasedTextureMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpression.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArcsine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArccosineFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAdd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArccosine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent2Fast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAppendVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericLightColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericLightVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBentNormalCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBindlessSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArcsineFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBlackBody.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBreakMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionArctangentFast.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCameraVectorWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBinaryOp.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBumpOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCameraPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionChannelMaskParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCeil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionClamp.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionChannelMaskParameterColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCloudLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionClearCoatNormalCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComposite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant2Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionComponentMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCollectionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant4Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstantBiasScale.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCrossProduct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCosine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCurveAtlasRowParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCustomOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionCustom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDDX.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDBufferTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDataDrivenShaderPlatformInfoSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDDY.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalDerivative.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDeltaTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalMipmapLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDepthOfFieldFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDecalLifetimeOpacity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDesaturation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDeriveNormalZ.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceCullFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldGradient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDepthFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldApproxAO.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceToNearestSurface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDistanceFieldsRenderingSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDivide.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDynamicParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDoubleVectorParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionDotProduct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExecBegin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExponential.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExecEnd.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionExponential2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionEyeAdaptationInverse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionEyeAdaptation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFirstPersonOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFeatureLevelSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFloor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFmod.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFloatToUInt.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSignedDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFontSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFrac.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionForLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFresnel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFunctionInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGetLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGenericConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGIReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionGetMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionFunctionOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHairAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIfThenElse.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHsvToRgb.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIf.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionInverseLinearInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLength.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionIsOrthographic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightmapUVs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionHairColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightmassReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLinearInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLocalPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLightVector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm10.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionLogarithm.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialAttributeLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMapARPassthroughCameraUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMakeMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialLayerOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureCoordinateIndex.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialFunctionCall.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMeshPaintTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMultiply.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMin.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNaniteReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMax.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNamedReroute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionModulo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNeuralPostProcessNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectLocalBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectPositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectOrientation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionOneMinus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPanner.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionNormalize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionObjectRadius.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleMotionBlurFade.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRadius.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleMacroUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticlePositionWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRelativeTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSpriteRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSubUVProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingBufferTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPathTracingRayTypeSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceCustomData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceFadeAmount.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPinBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPixelNormalWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPostVolumeUserFlagTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPixelDepth.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedLocalBounds.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPower.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPrecomputedAOMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedNormal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreSkinnedPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPreviousFrameSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRayTracingQualitySwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReflectionCapturePassSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReflectionVectorWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionReroute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRequiredSamplersSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRerouteBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRotateAboutAxis.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRotator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRgbToHsv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionRuntimeVirtualTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSamplePhysicsField.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionScalarParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSaturate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneDepth.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneDepthWithoutWater.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneTexelSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSceneTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionScreenPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShaderStageSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSetLocal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadingPathSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadowReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSine.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSingleLayerWaterMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionShadingModel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereLightIlluminance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereViewLuminance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSmoothStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSign.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyLightEnvMapSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSobol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSquareRoot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSpeedTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticBool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSRGBColorToWorkingColorSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticComponentMaskParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSphereMask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticBoolParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStaticSwitchParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionStep.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubsurfaceMediumMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubstrate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTangentOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTemporalSobol.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCoordinate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCollectionParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObjectFromCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureObjectParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSample.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter2D.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameter2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterCubeArray.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterCube.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterSubUV.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTextureSampleParameterVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionThinTranslucentMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTruncate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTransformPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionUserSceneTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTruncateLWC.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVectorNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVectorParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexTangentWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVertexNormalWS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionViewProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTwoSidedSign.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionWhileLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVolumetricAdvancedMaterialInput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVolumetricAdvancedMaterialOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionViewSize.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionWorldPosition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionMaterialLayerBlend.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionMaterialLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceBasePropertyOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstanceConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialFunctionInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialLayersFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialOverrideNanite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialParameterCollectionInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshInstancingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshApproximationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshMergingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\MeshMerge\\MeshProxySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\BandwidthTestActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetConnectionFaultRecovery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\OnlineBlueprintCallProxyBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetworkMetricsDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetPushModelHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetPing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\OnlineEngineInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\ReplayResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\RPCDoSDetection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\VoiceConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\NetActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\EngineReplicationBridge.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Iris\\ReplicationSystem\\NetSubObjectFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\NetworkMetricsConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Net\\Subsystems\\NetworkSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\PackedLevelActor\\PackedLevelActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\AsyncPhysicsInputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\NetworkPhysicsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\NetworkPhysicsSettingsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\AsyncPhysicsData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\ChaosEventRelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\ChaosEventType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Physics\\Experimental\\PhysicsThreadLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ProfilingDebugging\\HealthSnapshot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\ProfilingDebugging\\LevelStreamingProfilingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Slate\\SGameLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Slate\\SlateTextureAtlasInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\ActorTextureStreamingBuildDataComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\ServerStreamingLevelsVisibility.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\EngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\AudioEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\SubsystemBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\LocalPlayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Streaming\\StreamingWorldSubsystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\Subsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\GameInstanceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Subsystems\\WorldSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\ActorLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\AssetLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VisualLogger\\VisualLoggerDebugSnapshotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\UniversalObjectLocatorScriptingExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VisualLogger\\VisualLoggerFilterVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\UniversalObjectLocators\\AnimInstanceLocatorFragment.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\IWorldPartitionObjectResolver.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\VT\\RuntimeVirtualTextureEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ActorDescContainerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionActorContainerID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionActorLoaderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorLoaderAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionLevelStreamingDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionMiniMapVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionPropertyOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionLevelStreamingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionReplay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellDataSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionMiniMap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeContainerResolving.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformerISM.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformerLog.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeLevelStreamingCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeSpatialHashGridPreviewer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeSpatialHash.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionStreamingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionStreamingSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleDescriptor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleEditor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleTypeFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleWorldSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ActorDataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\Cook\\WorldPartitionCookPackageInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceWithAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstancePrivate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerLoadingPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DeprecatedDataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerInjectionPolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\ExternalDataLayerUID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayerInstanceNames.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\Filter\\WorldPartitionActorFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\WorldDataLayers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODProviderInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODInstancedStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActorsFromCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODRuntimeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODSourceActorsFromLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\LevelInstance\\LevelInstanceContainerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\NavigationData\\NavigationDataChunkActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionLHGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartition.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionPersistent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\WorldPartitionRuntimeCellDataHashSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\RuntimePartitionLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\RuntimeHashSet\\WorldPartitionRuntimeHashSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\StaticLightingData\\VolumetricLightmapGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\StaticLightingData\\MapBuildDataActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_NodeRelevancy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNotifyLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimNodeData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystemInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Animation\\AnimSubsystem_Tag.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Interfaces\\TypedElementWorldInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementAssetDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Elements\\Object\\ObjectElementObjectInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\LevelInstance\\LevelInstanceEditorPivotInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionAtmosphericFogColor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionBlendMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionConstant3Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionMaterialProxyReplace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionParticleRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionPerInstanceRandom.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSetMaterialAttributes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSkyAtmosphereLightDirection.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSparseVolumeTextureBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSphericalParticleOpacity.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionSubtract.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionTangent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\Materials\\MaterialExpressionVirtualTextureFeatureSwitch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionEditorPerProjectUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCell.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\WorldPartitionRuntimeCellTransformer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\ContentBundle\\ContentBundleStatus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\DataLayer\\DataLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODDestruction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\DestructibleHLODComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Public\\WorldPartition\\HLOD\\HLODModifier.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Internal\\Kismet\\BlueprintTypeConversions.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Internal\\Materials\\MaterialExpressionMaterialSample.h" + ], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\DebugGarbageCollectionGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\AsyncActionLoadPrimaryAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\TextureEncodingSettingsPrivate.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Animation\\AnimBlueprintClassSubsystem_PropertyAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Components\\SkeletalMeshComponentInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\GameFramework\\InternalUniqueNetIdReplNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\LevelInstanceEditorObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\Test\\LevelInstancePropertyOverrideSamplePolicy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\LevelInstance\\LevelInstanceEditorPropertyOverrideLevelStreaming.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Net\\RPCDoSDetectionConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Net\\Experimental\\Iris\\DataStreamChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestObject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\PieFixupTestObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestBodySetup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestPrimitiveComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\TransactionDiffingTests.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestAnotherActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\WorldPartition\\LevelInstance\\LevelInstancePropertyOverrideContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestLevel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\AutoRTFM\\AutoRTFMTestChildActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\Loading\\AsyncLoadingTests_ConvertFromType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Engine\\Private\\Tests\\Loading\\AsyncLoadingTests_Shared.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0", + "GPUPARTICLE_LOCAL_VF_ONLY=0", + "WITH_ODSC=0", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Engine\\UHT\\Engine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldMetricsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WorldMetricsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsActorTracker.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsActorTrackerSubscriber.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\WorldMetricsCore\\Public\\WorldMetricsSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WorldMetricsCore\\UHT\\WorldMetricsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CsvMetrics", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CsvMetrics\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics\\Public\\CsvActorCountMetric.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Source\\CsvMetrics\\Public\\CsvMetricsSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\WorldMetrics\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CsvMetrics\\UHT\\CsvMetrics.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TraceUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source\\TraceUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TraceUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Source\\TraceUtilities\\Public\\TraceUtilLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\TraceUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TraceUtilities\\UHT\\TraceUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Synthesis", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Synthesis\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectBitCrusher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectDynamicsProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectFoldbackDistortion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectEQ.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectMidSideSpreader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectEnvelopeFollower.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectRingModulation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectPanner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectSimpleDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectFlexiverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectWaveShaper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectTapDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectMultiBandCompressor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentMonoWaveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\EpicSynth1Component.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectStereoDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentWaveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentGranulator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SynthComponents\\SynthComponentToneGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectChorus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectStereoToQuad.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectStereoDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectMotionFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SourceEffects\\SourceEffectPhaser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Classes\\SubmixEffects\\SubmixEffectDelay.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\EffectConvolutionReverb.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\EpicSynth1Types.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\SynthesisBlueprintUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\Synth2DSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthKnobStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthSlateStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\Synth2DSliderStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Source\\Synthesis\\Public\\UI\\SynthKnob.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Synthesis\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Synthesis\\UHT\\Synthesis.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SoundFields", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source\\SoundFields", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SoundFields\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Source\\SoundFields\\Public\\SoundFields.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundFields\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SoundFields\\UHT\\SoundFields.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MobilePatchingUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source\\MobilePatchingUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MobilePatchingUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Source\\MobilePatchingUtils\\Private\\MobilePatchingLibrary.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MobilePatchingUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MobilePatchingUtils\\UHT\\MobilePatchingUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocationServicesBPLibrary", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocationServicesBPLibrary\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary\\Classes\\LocationServicesImpl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Source\\LocationServicesBPLibrary\\Classes\\LocationServicesBPLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\LocationServicesBPLibrary\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocationServicesBPLibrary\\UHT\\LocationServicesBPLibrary.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GooglePAD", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePAD", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GooglePAD\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Source\\GooglePAD\\Classes\\GooglePADFunctionLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GooglePAD\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GooglePAD\\UHT\\GooglePAD.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CustomMeshComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source\\CustomMeshComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CustomMeshComponent\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Source\\CustomMeshComponent\\Classes\\CustomMeshComponent.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CustomMeshComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CustomMeshComponent\\UHT\\CustomMeshComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CableComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CableComponent\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent\\Classes\\CableActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Source\\CableComponent\\Classes\\CableComponent.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CableComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CableComponent\\UHT\\CableComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AssetTags", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source\\AssetTags", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AssetTags\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Source\\AssetTags\\Public\\AssetTagsSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AssetTags\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AssetTags\\UHT\\AssetTags.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ArchVisCharacter", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ArchVisCharacter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter\\Public\\ArchVisCharacter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Source\\ArchVisCharacter\\Public\\ArchVisCharMovementComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ArchVisCharacter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ArchVisCharacter\\UHT\\ArchVisCharacter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AppleImageUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AppleImageUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils\\Public\\AppleImageUtilsTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Source\\AppleImageUtils\\Public\\AppleImageUtilsBlueprintProxy.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AppleImageUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AppleImageUtils\\UHT\\AppleImageUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidPermission", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AndroidPermission\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission\\Classes\\AndroidPermissionFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Source\\AndroidPermission\\Classes\\AndroidPermissionCallbackProxy.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidPermission\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AndroidPermission\\UHT\\AndroidPermission.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AndroidFileServer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AndroidFileServer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Source\\AndroidFileServer\\Classes\\AndroidFileServerBPLibrary.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AndroidFileServer\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AndroidFileServer\\UHT\\AndroidFileServer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\OnlineStoreInterfaceV2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\TurnBasedMatchInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\Interfaces\\OnlineTurnBasedInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Source\\Public\\NamedInterfaces.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "ONLINESUBSYSTEM_PACKAGE=1", + "DEBUG_LAN_BEACON=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystem\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystem\\UHT\\OnlineSubsystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemUtils\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\ConnectionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\EndMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\CreateSessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseCheckoutCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\EndTurnCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseQueryCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementQueryCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\IpNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\IpConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseReceiptsCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\JoinSessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardQueryCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseRestoreCallbackProxy2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LeaderboardFlushCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\LogoutCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TestBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\ShowLoginUICallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\QuitMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TestBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\OnlineSessionClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\TurnBasedBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\DestroySessionCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementWriteCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\FindTurnBasedMatchCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\FindSessionsCallbackProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\InAppPurchaseFinalizeProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Classes\\AchievementBlueprintLibrary.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineAccountStoredCredentials.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeacon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\VoipListenerSynthComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconReservation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\SpectatorBeaconState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\PartyBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Public\\OnlineBeaconHostObject.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlineEngineInterfaceImpl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlinePIESettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestNetDriver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestHostObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\OnlineServicesEngineInterfaceImpl.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Source\\OnlineSubsystemUtils\\Private\\Tests\\OnlineBeaconUnitTestHost.h" + ], + "PublicDefines": [ + "ONLINESUBSYSTEMUTILS_PACKAGE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemUtils\\UHT\\OnlineSubsystemUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNE", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNE\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeGPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeNPU.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeRDG.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNEModelData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNETypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Public\\NNERuntimeCPU.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNEAttributeDataType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNEAttributeValue.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NNE\\Internal\\NNERuntimeFormat.h" + ], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNE\\UHT\\NNE.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNERuntimeORT", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNERuntimeORT\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT\\Private\\NNERuntimeORT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Source\\NNERuntimeORT\\Private\\NNERuntimeORTSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNERuntimeORT\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNERuntimeORT\\UHT\\NNERuntimeORT.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NNEDenoiser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNEDenoiser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserIOMappingData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserTilingConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserResourceName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserTemporalAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Source\\NNEDenoiser\\Public\\NNEDenoiserSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\NNE\\NNEDenoiser\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NNEDenoiser\\UHT\\NNEDenoiser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActorSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ActorSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequenceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Source\\ActorSequence\\Public\\ActorSequenceObjectReference.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\ActorSequence\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ActorSequence\\UHT\\ActorSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Serialization", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Serialization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Serialization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Serialization\\Private\\Tests\\StructSerializerTestTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Serialization\\UHT\\Serialization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UdpMessaging", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UdpMessaging\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging\\Public\\Shared\\UdpMessagingSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Source\\UdpMessaging\\Private\\Tests\\UdpMessagingTestTypes.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\UdpMessaging\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UdpMessaging\\UHT\\UdpMessaging.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TcpMessaging", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source\\TcpMessaging", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TcpMessaging\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Source\\TcpMessaging\\Private\\Settings\\TcpMessagingSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Messaging\\TcpMessaging\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TcpMessaging\\UHT\\TcpMessaging.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HoldoutComposite", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HoldoutComposite\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Source\\HoldoutComposite\\Public\\HoldoutCompositeComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Compositing\\HoldoutComposite\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HoldoutComposite\\UHT\\HoldoutComposite.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaPlate", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaPlate\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Source\\MediaPlate\\Public\\MediaPlateAssetUserData.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaPlate\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaPlate\\UHT\\MediaPlate.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MediaCompositing", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaCompositing\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaPlayerPropertySection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaPlayerPropertyTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Public\\MovieSceneMediaSection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Private\\MovieScene\\MovieSceneMediaPlayerPropertyTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Source\\MediaCompositing\\Private\\MovieScene\\MovieSceneMediaTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\MediaCompositing\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MediaCompositing\\UHT\\MediaCompositing.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMediaEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMediaEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaEngine\\Public\\Unreal\\ImgMediaPlaybackComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMediaEngine\\UHT\\ImgMediaEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMedia", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMedia", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMedia\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMedia\\Public\\ImgMediaSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMedia\\UHT\\ImgMedia.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VectorVM", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\VectorVM", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\VectorVM\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\VectorVM\\Public\\VectorVMCommon.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "VECTORVM_SUPPORTS_EXPERIMENTAL=1", + "VECTORVM_SUPPORTS_LEGACY=1", + "VECTORVM_SUPPORTS_SERIALIZATION=0", + "VECTORVM_DEBUG_PRINTF=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\VectorVM\\UHT\\VectorVM.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraCore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraMergeable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraDataInterfaceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraCore\\Public\\NiagaraCompileHash.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraCore\\UHT\\NiagaraCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraShader", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraShader\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraGenerateMips.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraScriptBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraShader\\Public\\NiagaraShared.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraShader\\UHT\\NiagaraShader.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Niagara", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Niagara\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputSimCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputSparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputTexture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerOutputVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraBakerSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterface2DArrayTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAsyncGpuTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioOscilloscope.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioSpectrum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayNiagaraID.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayInt.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudio.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceColorCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCollisionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid2DCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid2DCollectionReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurveBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceLandscape.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid3DCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCurlNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceMeshRendererInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceMeshCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceIntRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceParticleRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRasterizationGrid3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceGrid3DCollectionReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfacePlatformSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTarget2DArray.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceAudioPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRW.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceOcclusion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTargetCube.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTargetVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSpriteRendererInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVector4Curve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSparseVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSpline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVector2DCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVolumeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVolumeCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVectorField.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataSetCompiledData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEffectType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEmitterHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraGPUSortInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraLensEffectBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterDefinitionsBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraParameterDefinitionsSubscriber.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraPerfBaseline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraPlatformSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScratchPadContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScript.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScriptHighlight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraScriptSourceBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheCustomStorageInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSimCacheFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraValidationRule.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraValidationRuleSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\VolumeCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCamera.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceCubeTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceArrayFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceNeighborGrid3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceExport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceVectorCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceRenderTarget2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Classes\\NiagaraDataInterfaceSkeletalMesh.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraAssetTagDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCompilationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCompileHashVisitor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentPoolMethodEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentPool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponentRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraCullProxyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel_Global.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelPublic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfaceEmitterBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfacePhysicsAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataInterfaceRigidMeshCollisionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannel_Islands.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDebuggerCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDataChannelAccessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraDecalRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraEditorDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMeshRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraLightRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMessageStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraMessageDataBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameterBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRenderableMeshInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraPreviewGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraRibbonRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScalabilityState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScalabilityManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraScriptExecutionParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSimulationStageBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSimStageExecutionData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraStackSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraSpriteRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraTickBehaviorEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVariableMetaData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVolumeRendererProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraUserRedirectionParameterStore.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraWorldManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraSystemSpawnSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraColorParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraSystemTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\MovieSceneNiagaraTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraBoolParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraVectorParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraIntegerParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraConvertInPlaceUtilityBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\NiagaraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Public\\MovieScene\\Parameters\\MovieSceneNiagaraFloatParameterTrack.h" + ], + "InternalHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraPrecompileContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraSimCacheDebugData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\NiagaraSystemEmitterState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceSimpleCounter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceDataChannelWrite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceMemoryBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceSocketReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessEmitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessEmitterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessModule.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\DataInterface\\NiagaraDataInterfaceStaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessDistribution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\NiagaraStatelessSpawnInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_AddVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CameraOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_Drag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_AccelerationForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_InitializeParticle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_RotateAroundPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_InitialMeshOrientation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_GravityForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleMeshSizeBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleSpriteSizeBySpeed.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SubUVAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SpriteFacingAndAlignment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SolveVelocitiesAndForces.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_DynamicMaterialParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleMeshSize.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CalculateAccurateVelocity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_CurlNoiseForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ShapeLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_SpriteRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_MeshIndex.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_MeshRotationRate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Internal\\Stateless\\Modules\\NiagaraStatelessModule_ScaleSpriteSize.h" + ], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\NiagaraAsyncCompile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceDebugDraw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceConsoleVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceDynamicMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceEmitterProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceSceneCapture2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceGBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceSimCacheReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceUObjectPropertyReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\MovieSceneNiagaraSystemTrackTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\DataInterface\\NiagaraDataInterfaceVirtualTexture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraColorParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraIntegerParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraBoolParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraFloatParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraVectorParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\MovieScene\\Parameters\\MovieSceneNiagaraParameterSectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\Niagara\\Private\\NDIRenderTargetVolumeSimCacheData.h" + ], + "PublicDefines": [ + "VECTORVM_SUPPORTS_EXPERIMENTAL=1", + "VECTORVM_SUPPORTS_LEGACY=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Niagara\\UHT\\Niagara.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraSimCaching", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraSimCaching\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Public\\Niagara\\Sequencer\\MovieSceneNiagaraCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Public\\Niagara\\Sequencer\\MovieSceneNiagaraCacheTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Source\\NiagaraSimCaching\\Private\\Niagara\\Sequencer\\MovieSceneNiagaraCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\NiagaraSimCaching\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraSimCaching\\UHT\\NiagaraSimCaching.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalizableMessage", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocalizableMessage\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage\\Public\\LocalizableMessage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessage\\Public\\LocalizableMessageBaseParameters.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocalizableMessage\\UHT\\LocalizableMessage.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LocalizableMessageBlueprint", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessageBlueprint", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocalizableMessageBlueprint\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Source\\LocalizableMessageBlueprint\\Public\\LocalizableMessageLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\LocalizableMessage\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LocalizableMessageBlueprint\\UHT\\LocalizableMessageBlueprint.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NavigationSystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NavigationSystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\BaseGeneratedNavLinksProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\AbstractNavData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkCustomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\CrowdManagerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\SplineNavModifierComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationPath.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkTrivial.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavAreaMeta_SwitchByAgent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavAreaMeta.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Default.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Null.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_LowHeight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea_Obstacle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavFilters\\NavigationQueryFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraphNodeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\LinkGenerationDebugFlags.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavMeshBoundsVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavMeshRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\NavTestRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\RecastNavMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\LinkGenerationConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationTestingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavMesh\\RecastNavMeshDataChunk.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkCustomInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavNodeInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavModifierComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavSystemConfigOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationInvokerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavLinkHostInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavRelevantComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavigationPathGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavAreas\\NavArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavModifierVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavFilters\\RecastFilter_UseDefaultArea.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Public\\NavGraph\\NavigationGraph.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\NavigationSystem\\Private\\NavigationObjectRepository.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0", + "WITH_RECAST=1", + "WITH_NAVMESH_SEGMENT_LINKS=1", + "WITH_NAVMESH_CLUSTER_LINKS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NavigationSystem\\UHT\\NavigationSystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayTasks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayTasks\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTaskOwnerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_WaitDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_SpawnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTaskResource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_TimeLimitedExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\Tasks\\GameplayTask_ClaimResource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GameplayTasks\\Classes\\GameplayTasksComponent.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayTasks\\UHT\\GameplayTasks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AIModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AIModule\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIResourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIResources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AISystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AITypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\AISubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\GenericTeamAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\GridPathAIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DetourCrowdAIController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnActionsComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Move.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Repeat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Actions\\PawnAction_Wait.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BehaviorTreeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\VisualLoggerExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardAssetProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTAuxiliaryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTCompositeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BlackboardComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTDecorator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTService.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTTaskNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\ValueOrBBKey.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\BTNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Class.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Bool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Float.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_NativeEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Enum.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Object.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Name.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Int.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Struct.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_String.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_Selector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Composites\\BTComposite_SimpleParallel.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Rotator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Blackboard\\BlackboardKeyType_Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Blackboard.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_CompareBBEntries.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_CheckGameplayTagsOnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ConditionalLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Cooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_DoesPathExist.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ConeCheck.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ForceSuccess.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_IsAtLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_KeepInCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_IsBBEntryOfClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_ReachedMoveGoal.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_Loop.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_SetTagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_TagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Decorators\\BTDecorator_TimeLimit.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_RunEQS.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Services\\BTService_DefaultFocus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_BlackboardBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_FinishWithResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MakeNoise.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PawnActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PlayAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MoveDirectlyToward.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_MoveTo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PushPawnAction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RotateToFaceBBEntry.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunBehaviorDynamic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_RunEQSQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_GameplayTaskBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_WaitBlackboardTime.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_Wait.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Blueprint\\AIAsyncTaskBlueprintProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_PlaySound.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Blueprint\\AIBlueprintHelperLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\BehaviorTree\\Tasks\\BTTask_SetTagCooldown.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\DataProviders\\AIDataProvider_QueryParams.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryDebugHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryInstanceBlueprintWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryOption.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryTest.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EnvQueryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSQueryResultSourceInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\EQSTestingPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_Item.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Contexts\\EnvQueryContext_Querier.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_ActorsOfClass.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_BlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Cone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_CurrentLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Composite.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_OnCircle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_Donut.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_PathingGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_PerceivedActors.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_ProjectedPoints.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Direction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Generators\\EnvQueryGenerator_SimpleGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_VectorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Distance.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_ActorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Pathfinding.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Dot.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Items\\EnvQueryItemType_Point.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Overlap.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_PathfindingBatch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_GameplayTags.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Project.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\EnvironmentQuery\\Tests\\EnvQueryTest_Volume.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\HotSpots\\AIHotSpotManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdAgentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\CrowdManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\GridPathFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\GeneratedNavLinksProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavLinkProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavFilter_AIControllerDefault.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\PathFollowingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\PathFollowingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\NavLocalGridManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Navigation\\RecastGraphAStar.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionListenerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseBlueprintListener.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AIPerceptionStimuliSourceComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Sight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Prediction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Team.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseConfig_Touch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISenseEvent_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Blueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Damage.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Hearing.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Prediction.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Team.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Sight.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISightTargetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\AISense_Touch.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Perception\\PawnSensingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_LockLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_MoveTo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Classes\\Tasks\\AITask_RunEQS.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Public\\SequentialID.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Public\\IndexedHandle.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AIModule\\Private\\BehaviorTree\\ValueOrBBKeyBlueprintUtility.h" + ], + "PublicDefines": [ + "WITH_RECAST=1", + "WITH_GAMEPLAY_DEBUGGER_CORE=0", + "WITH_GAMEPLAY_DEBUGGER=0", + "WITH_GAMEPLAY_DEBUGGER_MENU=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AIModule\\UHT\\AIModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosNiagara", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosNiagara\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Classes\\NiagaraDataInterfaceChaosDestruction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Classes\\NiagaraDataInterfacePhysicsField.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Source\\ChaosNiagara\\Public\\NiagaraDataInterfaceGeometryCollection.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosNiagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosNiagara\\UHT\\ChaosNiagara.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FractureEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FractureEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineConvex.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineFracturing.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineSampling.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Source\\FractureEngine\\Public\\FractureEngineUtility.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Fracture\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FractureEngine\\UHT\\FractureEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InteractiveToolsFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InteractiveToolsFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputBehaviorSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ContextObjectStore.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmoBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InputRouter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SelectionSet.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\MultiSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SingleSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargetManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolContextInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\ClickDragBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\DoubleClickBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\KeyAsModifierInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MouseHoverBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MouseWheelBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleClickOrDragBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleKeyCaptureBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\KeyInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\SingleClickBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ComponentBoundTransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\MultiClickSequenceInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoBaseComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementHitTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementRectangle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementRenderState.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementArc.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoLineHandleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoViewContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoRectangleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\HitTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\IntervalGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\SimpleSingleClickGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterToTransformAdapters.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterSourcesFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\StateTargets.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\PlanePositionGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ParameterSourcesVec2.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\BaseBrushTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\ClickDragTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ScalableSphereGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\MeshSurfacePointTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MaterialProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MeshDescriptionProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseTools\\SingleClickTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\StaticMeshBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\MeshDescriptionCommitter.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\PrimitiveComponentBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargets\\ToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\PhysicsDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\ToolTargets\\PrimitiveComponentToolTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\SkeletalMeshBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolQueryInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveGizmoManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\InteractiveToolsContext.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisPositionGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\BrushStampIndicator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisAngleGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\CombinedTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\AnyButtonInputBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseBehaviors\\Widgets\\WidgetBaseBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementBox.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCircle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCylinder.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoCircleComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoArrowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCone.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\AxisSources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoBoxComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementCircleBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementArrow.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementTorus.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementShared.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementSphere.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementLineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\GizmoElementTriangleList.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\ViewAdjustedStaticMeshGizmoComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformGizmoUtil.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\RepositionableTransformGizmo.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\BaseGizmos\\TransformSources.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\TargetInterfaces\\AssetBackedTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\InteractiveToolsFramework\\Public\\SceneQueries\\SceneSnappingManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InteractiveToolsFramework\\UHT\\InteractiveToolsFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\UDynamicMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshReplacementChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\DynamicMeshActor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Changes\\MeshVertexChange.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Components\\BaseDynamicMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\GeometryFramework\\Public\\Components\\DynamicMeshComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryFramework\\UHT\\GeometryFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowEnginePlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowEnginePlugin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowEnginePlugin\\Public\\Dataflow\\DataflowConnectionTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowEnginePlugin\\UHT\\DataflowEnginePlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataflowNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowFunctionProperty.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowCollectionAddScalarVertexPropertyNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowCollectionAttributeKeyNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowStaticMeshNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowSkeletalMeshNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowSelectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Source\\DataflowNodes\\Public\\Dataflow\\DataflowContextOverridesNodes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Dataflow\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataflowNodes\\UHT\\DataflowNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionArrayNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionAssetNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionDebugNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMakeNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionClusteringNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionFieldNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionConversionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionProcessingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionFracturingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionStaticMeshToCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMaterialNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionVerticesNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionVertexScalarToVertexIndicesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromVertexIndicesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromFloatArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionUtilityNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMeshNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionEditNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\SetVertexColorFromVertexSelectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\CreateColorArrayFromFloatArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionMathNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSkeletalMeshToCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionTriangleBoundaryIndicesNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSamplingNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionOverrideNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSelectionNodes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionTransferVertexAttributeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionNodes\\Public\\Dataflow\\GeometryCollectionSkeletonToCollectionNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionNodes\\UHT\\GeometryCollectionNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionDepNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionDepNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\GeometryCollectionTransferVertexScalarAttributeDepNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\SetVertexColorFromFloatArrayDepNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionDepNodes\\Private\\Dataflow\\SetVertexColorFromVertexSelectionDepNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionDepNodes\\UHT\\GeometryCollectionDepNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCollectionTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionTracks\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Source\\GeometryCollectionTracks\\Public\\MovieSceneGeometryCollectionTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GeometryCollectionPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCollectionTracks\\UHT\\GeometryCollectionTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AutomationUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AutomationUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Source\\AutomationUtils\\Public\\AutomationUtilsBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\AutomationUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AutomationUtils\\UHT\\AutomationUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkInterface", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkInterface\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\ILiveLinkSource.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\ILiveLinkClient.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkController.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFrameTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSourceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationBlueprintStructs.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkRefSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkBasicRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkLightRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkCameraRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkAnimationRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkLightTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkTransformTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSourceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkInputDeviceRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkCurveRemapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkPresetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkBasicTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFrameInterpolationProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkInputDeviceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkTransformRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkFramePreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkRole.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSubjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\LiveLinkSubjectRemapper.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkInterface\\Public\\Roles\\LiveLinkCameraTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkInterface\\UHT\\LiveLinkInterface.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkMovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkMovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkStructProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionBasicRole.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Public\\MovieScene\\MovieSceneLiveLinkSubSectionProperties.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkMovieScene\\Private\\MovieScene\\MovieSceneLiveLinkSectionTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkMovieScene\\UHT\\LiveLinkMovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkMessageBusFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkMessageBusFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkMessageBusFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkMessageBusFramework\\Public\\LiveLinkMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkMessageBusFramework\\UHT\\LiveLinkMessageBusFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkAnimationCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkAnimationCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\AnimNode_LiveLinkPose.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkRemapAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkRetargetAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\LiveLinkAnimationCore\\Public\\LiveLinkInstance.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkAnimationCore\\UHT\\LiveLinkAnimationCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLink", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLink\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkAnimationVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkDrivenComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkMessageBusFinder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkRetargetAssetReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkMessageBusSourceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\InterpolationProcessor\\LiveLinkBasicFrameInterpolateProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Translator\\LiveLinkAnimationRoleToTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Remapper\\LiveLinkSkeletonRemapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkVirtualSubjectBoneAttachment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\PreProcessor\\LiveLinkAxisSwitchPreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\PreProcessor\\LiveLinkDeadbandPreProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\VirtualSubjects\\LiveLinkBlueprintVirtualSubject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\InterpolationProcessor\\LiveLinkAnimationFrameInterpolateProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkCustomTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkTimeSynchronizationSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\Translator\\LiveLinkTransformRoleToAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Public\\LiveLinkTimecodeProvider.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Private\\LiveLinkMessageBusSourceSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLink\\Private\\LiveLinkVirtualSource.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLink\\UHT\\LiveLink.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Common", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Common\\Public\\MaterialX\\InterchangeMaterialXDefinitions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCommon\\UHT\\InterchangeCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LiveLinkComponents", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkComponents\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkComponentSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkComponentController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\LiveLinkControllerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\Controllers\\LiveLinkLightController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Source\\LiveLinkComponents\\Public\\Controllers\\LiveLinkTransformController.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\LiveLink\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LiveLinkComponents\\UHT\\LiveLinkComponents.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCache", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCache\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecRaw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheCodecV1.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheMeshData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackTransformAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackStreamable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackTransformGroupAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\GeometryCacheTrackFlipbookAnimation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCache\\Classes\\NiagaraGeometryCacheRendererProperties.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCache\\UHT\\GeometryCache.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HairStrandsCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HairStrandsCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetInterpolation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetRendering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetCards.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomBindingAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateStrandsTexturesOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateBindingOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomDesc.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCreateFollicleMaskOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomPluginSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\MovieSceneGroomCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\MovieSceneGroomCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfaceVelocityGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfaceHairStrands.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\Niagara\\NiagaraDataInterfacePressureGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetMeshes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCacheData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomAssetPhysics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Public\\GroomCacheImportOptions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsCore\\Private\\MovieSceneGroomCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HairStrandsCore\\UHT\\HairStrandsCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "USDClasses", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\USDClasses\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDDuplicateType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache2.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDReferenceOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetCache3.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDStageOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDMetadataImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDDrawModeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\USDClasses\\Public\\USDUnrealAssetInfo.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\USDClasses\\UHT\\USDClasses.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UnrealUSDWrapper", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\UnrealUSDWrapper", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UnrealUSDWrapper\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Source\\UnrealUSDWrapper\\Public\\UnrealUSDWrapper.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "USD_FORCE_DISABLED=1", + "USE_USD_SDK=0", + "USD_USES_SYSTEM_MALLOC=0", + "USD_MERGED_MODULES=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\USDCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UnrealUSDWrapper\\UHT\\UnrealUSDWrapper.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigVM", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RigVM\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVM.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMByteCode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDispatchFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDebugInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMExternalVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMGraphFunctionDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryDeprecated.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMGraphFunctionHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMExecuteContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryStorage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMDrawInstruction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMNodeLayout.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMProfilingInfo.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMNativized.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMStatistics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMTrait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMUserWorkflow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMUnknownType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Array.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_CastEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_CastObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMVariant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Constant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Core.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_If.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_MakeStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Print.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_ControlFlow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Select.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunctionDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_Name.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMDispatch_Switch.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimEvalRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\RigVMFunction_String.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimRichCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugLine.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_TimeConversion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_GetDeltaTime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_UserDefinedEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBox.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_Context.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathMatrix.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathDouble.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathRay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathRBFInterpolate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_Noise.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMMathLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathInt.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_Random.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Accumulate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathQuaternion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_AlphaInterp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Verlet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_SimBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMCore\\RigVMMemoryStorageStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Kalman.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_TimeOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_Timeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Simulation\\RigVMFunction_DeltaFromPrevious.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_Sequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimEasing.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugPrimitives.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Math\\RigVMFunction_MathVector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_VisualDebug.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Execution\\RigVMFunction_ForLoop.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_AnimBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Animation\\RigVMFunction_GetWorldTime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Source\\RigVM\\Public\\RigVMFunctions\\Debug\\RigVMFunction_DebugBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\RigVM\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RigVM\\UHT\\RigVM.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRig", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ControlRig\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig_Library.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\AnimNode_ControlRig_ExternalSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigAnimInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigBlueprintGeneratedClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigGizmoActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigControlActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigGizmoLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigValidationPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ControlRigTestData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigModel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\ModularRigRuleManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\StructReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Constraints\\ControlRigTransformableHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimLinearSpring.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimSoftCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Math\\Simulation\\CRSimPointContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\AnimationHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigBoneHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigCurveContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigControlHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\AdditiveControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyElements.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigInfluenceMap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigSpaceHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigModuleDefines.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigHierarchyController.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\ControlRigSequenceObjectReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Settings\\ControlRigSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigInstanceData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigParameterTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\MovieSceneControlRigSpaceChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPoseMirrorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Tools\\ControlRigPoseProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\FKControlRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\ControlRigNodeWorkflow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigDispatchFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigUnitContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\RigUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Rigs\\RigConnectionRules.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Animation\\RigUnit_AnimAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Collision\\RigUnit_WorldCollision.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Control\\RigUnit_Control.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Core\\RigUnit_UserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Control\\RigUnit_Control_StaticMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugBezier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugLine.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugLineStrip.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugPrimitives.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_DebugTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_ProfilingBracket.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Debug\\RigUnit_VisualDebug.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Sequencer\\ControlRigLayerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_AimConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_BlendTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Converter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_TwoBoneIKFK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_GetJointTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Float.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Transform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\Math\\RigUnit_Quaternion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Item.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_DynamicHierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Hierarchy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_IsInteracting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Physics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_AddBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_PrepareForExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetControlTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_InteractionExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_CurveExists.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_BoneName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ParentSwitchConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_OffsetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetControlInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Deprecated\\RigUnit_ApplyFK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_PropagateTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneTranslation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlDrivenList.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_Collection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetSpaceInitialTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetSpaceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetRelativeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_WorldSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_UnsetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\RigUnit_HighlevelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Harmonics\\RigUnit_ChainHarmonics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_CCDIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_FABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_FitChainToCurve.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_AimBone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_ModifyTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_ModifyBoneTransforms.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_DistributeRotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SphericalPoseReader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SlideChain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TransformConstraint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_MultiFABRIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TwoBoneIKSimple.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Modules\\RigUnit_ConnectionCandidates.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Modules\\RigUnit_ConnectorExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_SpringIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Hierarchy\\RigUnit_TwistBones.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Simulation\\RigUnit_SpringInterp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Simulation\\RigUnit_PointSimulation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_BeginExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ControlChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_InverseExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_SequenceExecution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Execution\\RigUnit_RigModules.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Drawing\\RigUnit_DrawContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetSpaceTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetInitialBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetRelativeBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_Metadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SendEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ControlChannelFromItem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetRelativeTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_GetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_ProjectTransformToNewParent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetRelativeBoneTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetCurveValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlVisibility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Hierarchy\\RigUnit_SetControlOffset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Public\\Units\\Highlevel\\Harmonics\\RigUnit_BoneHarmonics.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Private\\Sequencer\\ControlRigLayerInstanceProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Source\\ControlRig\\Private\\Validation\\ControlRigNumericalValidationPass.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRig\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ControlRig\\UHT\\ControlRig.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeFactoryBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangePipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeResult.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeSourceData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeTranslatorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeResultsContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeBaseNodeContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\InterchangeWriterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeSourceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeUserDefinedAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeBaseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Core\\Public\\Nodes\\InterchangeFactoryBaseNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCore\\UHT\\InterchangeCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Messages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Messages\\Public\\Fbx\\InterchangeFbxMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeMessages\\UHT\\InterchangeMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeAnimationDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeDecalMaterialNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMeshNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureBlurNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureLightProfileNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureCubeNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureCubeArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeVariantSetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTextureNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeVolumeTextureNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTexture2DNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeShaderGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeLightNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMeshDefinitions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeTexture2DArrayNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeAnimationTrackSetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeSceneNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeDecalNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Nodes\\Public\\InterchangeMaterialInstanceNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeNodes\\UHT\\InterchangeNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeCommonParser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\CommonParser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCommonParser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Parsers\\CommonParser\\Public\\InterchangeCommonAnimationPayload.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeCommonParser\\UHT\\InterchangeCommonParser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeBlueprintPipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeEditorUtilitiesBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeFilePickerBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeMeshUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangePipelineConfigurationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangePythonPipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Interchange\\Engine\\Public\\InterchangeSceneImportAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeEngine\\UHT\\InterchangeEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "VariantManagerContent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\VariantManagerContent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSetsActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\LevelVariantSetsFunctionDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueColor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\FunctionCaller.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\PropertyValueSoftObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\VariantObjectBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\SwitchActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\Variant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Source\\VariantManagerContent\\Public\\VariantSet.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\VariantManagerContent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\VariantManagerContent\\UHT\\VariantManagerContent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TextureUtilitiesCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TextureUtilitiesCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon\\Public\\TextureImportUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\TextureUtilitiesCommon\\Public\\TextureImportSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TextureUtilitiesCommon\\UHT\\TextureUtilitiesCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeFactoryNodes", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeFactoryNodes\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeCameraFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeCommonPipelineDataFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeAnimSequenceFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeDecalMaterialFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeDecalActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelInstanceActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLevelSequenceFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeLightFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMaterialFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMeshActorFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangePhysicsAssetFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSceneImportAssetFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSceneVariantSetsFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletonFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeStaticMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletalMeshLodDataNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeSkeletalMeshFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTexture2DFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureCubeArrayFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureLightProfileFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeStaticMeshLodDataNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTexture2DArrayFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeTextureCubeFactoryNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\FactoryNodes\\Public\\InterchangeVolumeTextureFactoryNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeFactoryNodes\\UHT\\InterchangeFactoryNodes.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeCommon", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothingSystemRuntimeCommon\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothConfig_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothingAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothLODData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothLODData_Legacy.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothPhysicalMeshData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\ClothTetherData.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeCommon\\Public\\PointWeightMap.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothingSystemRuntimeCommon\\UHT\\ClothingSystemRuntimeCommon.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeImport", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeImport\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\InterchangeAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeAnimationPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeLevelSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Animation\\InterchangeAnimSequenceFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Gltf\\InterchangeGltfTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\InterchangeMaterialXTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Material\\InterchangeMaterialFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Fbx\\InterchangeFbxTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\MaterialExpressions\\MaterialExpressionTextureSampleParameterBlur.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\MaterialX\\MaterialExpressions\\MaterialExpressionSwizzle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeMeshPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeOBJTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeSkeletalMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangePhysicsAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeSkeletonFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Mesh\\InterchangeStaticMeshFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeDecalActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeCameraActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLevelFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSceneImportAssetFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSkeletalMeshActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLevelInstanceActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeVariantSetPayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeSceneVariantSetsFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeLightActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeBlockedTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeJPGTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangePSDTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeSlicedTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeDDSTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTextureFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTextureLightProfilePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeTexturePayloadInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeIESTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Usd\\InterchangeUsdTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeUEJPEGTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Scene\\InterchangeStaticMeshActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Public\\Texture\\InterchangeImageWrapperTranslator.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionAppend3Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionAppend4Vector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionBurn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDifference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDisjointOver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionDodge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionFractal3D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionIn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionLuminance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOut.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMatte.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionMinus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOverlay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionOver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRemap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPlace2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRotate2D.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRampLeftRight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionUnpremult.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionSplitLeftRight.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionSplitTopBottom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPlus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRamp4.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionPremult.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionRampTopBottom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Import\\Private\\MaterialX\\MaterialExpressions\\MaterialExpressionScreen.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeImport\\UHT\\InterchangeImport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangePipelines", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangePipelines\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAnimationPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAssetsPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericMeshPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericMaterialPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericScenesPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericAssetsPipelineSharedSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeglTFPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeGenericTexturePipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangeMaterialXPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Pipelines\\Public\\InterchangePipelineMeshesUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangePipelines\\UHT\\InterchangePipelines.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "InterchangeExport", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Export", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeExport\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Source\\Export\\Public\\InterchangeTextureWriter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Interchange\\Runtime\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\InterchangeExport\\UHT\\InterchangeExport.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GLTFExporter", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GLTFExporter\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFAnimSequenceExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFMaterialExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelVariantSetsExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFLevelSequenceExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Options\\GLTFProxyOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Options\\GLTFExportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\UserData\\GLTFMaterialUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFStaticMeshExporter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Source\\GLTFExporter\\Public\\Exporters\\GLTFSkeletalMeshExporter.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "GLTF_EXPORT_ENABLE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\GLTFExporter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GLTFExporter\\UHT\\GLTFExporter.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DatasmithContent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DatasmithContent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAdditionalData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAssetImportData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAreaLightActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithContentBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithCustomAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithImportOptions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithImportedSequencesActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithAreaLightActorTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithActorTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\DatasmithSceneActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithDecalComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithLandscapeTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithCineCameraComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithCineCameraActorTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithObjectTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithPointLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithMaterialInstanceTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSkyLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSceneComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithSpotLightComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithPostProcessVolumeTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithStaticMeshComponentTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithStaticMeshTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Source\\DatasmithContent\\Public\\ObjectTemplates\\DatasmithLightComponentTemplate.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Enterprise\\DatasmithContent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DatasmithContent\\UHT\\DatasmithContent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FacialAnimation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FacialAnimation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Source\\FacialAnimation\\Public\\AudioCurveSourceComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\FacialAnimation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FacialAnimation\\UHT\\FacialAnimation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UObjectPlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source\\UObjectPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UObjectPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Source\\UObjectPlugin\\Classes\\MyPluginObject.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\UObjectPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UObjectPlugin\\UHT\\UObjectPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SignificanceManager", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source\\SignificanceManager", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SignificanceManager\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Source\\SignificanceManager\\Public\\SignificanceManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SignificanceManager\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SignificanceManager\\UHT\\SignificanceManager.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationSharing", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationSharing\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingInstances.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingSetup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Source\\AnimationSharing\\Public\\AnimationSharingTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Developer\\AnimationSharing\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationSharing\\UHT\\AnimationSharing.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OodleNetworkHandlerComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OodleNetworkPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Classes\\OodleNetworkTrainerCommandlet.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Public\\OodleNetworkFaultHandler.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Source\\Public\\OodleNetworkHandlerComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compression\\OodleNetwork\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OodleNetworkPlugin\\UHT\\OodleNetworkHandlerComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosVDBlueprint", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVDBlueprint", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosVDBlueprint\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Source\\ChaosVDBlueprint\\Public\\ChaosVDRuntimeBlueprintLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosVD\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosVDBlueprint\\UHT\\ChaosVDBlueprint.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TemplateSequence", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TemplateSequence\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequence.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\CameraAnimationSequenceSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\SequenceCameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequenceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\TemplateSequencePlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\Sections\\TemplateSequenceSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Public\\Tracks\\TemplateSequenceTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Private\\Systems\\TemplateSequenceSystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Source\\TemplateSequence\\Private\\Tests\\SequenceCameraShakeTestUtil.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\TemplateSequence\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TemplateSequence\\UHT\\TemplateSequence.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EngineCameras", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineCameras\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\EngineCamerasSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Animations\\CameraAnimationCameraModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\LegacyCameraShake.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\DefaultCameraShakeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\CompositeCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\SimpleCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\PerlinNoiseCameraShakePattern.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Public\\Shakes\\WaveOscillatorCameraShakePattern.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Source\\EngineCameras\\Private\\Tests\\CameraShakeTestObjects.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\EngineCameras\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EngineCameras\\UHT\\EngineCameras.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "StateTreeModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\StateTreeModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeAnyEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\IStateTreeSchemaProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeNodeBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyFunctionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyRef.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreePropertyBindings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeConditionBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeConsiderationBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeTaskBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeEvaluatorBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeNodeBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Blueprint\\StateTreeTaskBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeCommonConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeGameplayTagConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Conditions\\StateTreeObjectConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Considerations\\StateTreeCommonConsiderations.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Debugger\\StateTreeDebuggerTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Debugger\\StateTreeTraceTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\Tasks\\StateTreeRunParallelStateTreeTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeConsiderationBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeEvaluatorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeIndexTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeLinker.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeExecutionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Public\\StateTreeInstanceData.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeFloatPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeBooleanAlgebraPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeIntPropertyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\Tasks\\StateTreeDelayTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\Tasks\\StateTreeDebugTextTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Source\\StateTreeModule\\Private\\PropertyFunctions\\StateTreeIntervalPropertyFunctions.h" + ], + "PublicDefines": [ + "WITH_STATETREE_TRACE=0", + "WITH_STATETREE_TRACE_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\StateTree\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\StateTreeModule\\UHT\\StateTreeModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "EnhancedInput", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EnhancedInput\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputActionDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputDeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedActionKeyMapping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputPlatformSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputSubsystems.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputActionValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputTriggers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputMappingContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedPlayerInput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableKeySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableKeySlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputMappingQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\UserSettings\\EnhancedInputUserSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\PlayerMappableInputConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\EnhancedInputSubsystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputDebugKeyDelegateBinding.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Source\\EnhancedInput\\Public\\InputModifiers.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\EnhancedInput\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\EnhancedInput\\UHT\\EnhancedInput.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayCameras", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayCameras\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameplayCamerasSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BlendStackCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableReferences.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraBuildStatus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigProxyAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraNodeEvaluatorFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\ObjectTreeGraphRootObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\RootCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\DefaultRootCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\CameraDirectorStateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\BlueprintCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\SingleCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\PriorityQueueCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\StateTreeCameraDirector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\BlueprintCameraPose.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Directors\\StateTreeCameraDirectorTasks.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\ControllerGameplayCameraEvaluationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\BlueprintCameraVariableTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Attach\\AttachToPlayerPawnCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\SmoothBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\ArrayCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\PopBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Collision\\CollisionPushCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\ClippingPlanesCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\FilmbackCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\FieldOfViewCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\DampenPositionCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\TargetRayCastCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\OffsetCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\BaseFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\DollyFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\PanningFramingCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Framing\\CameraFramingZone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInputSlotTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInput2DSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\CameraRigInput1DSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\Input2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\Input1DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Transitions\\DefaultTransitionConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigTransition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Utility\\BlueprintCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\IIRValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\DoubleIIRValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\CriticalDamperValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\ValueInterpolators\\AccelerationDecelerationValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\BuiltInCameraVariables.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraParameters.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableTableFwd.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigAssetReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\ObjectTreeGraphObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraValueInterpolator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraRigProxyTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayControlRotationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\CameraRigParameterInterop.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Core\\CameraVariableAssets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\BoomArmCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\SimpleBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\ActivateCameraRigFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraSystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\CameraNodeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\GameFramework\\GameplayCameraComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\OrbitBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\PostProcessCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Blends\\LinearBlendCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Collision\\OcclusionMaterialCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\CameraRigCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Common\\LensParametersCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\AutoRotateInput2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Nodes\\Input\\InputAxisBinding2DCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Public\\Transitions\\GameplayTagTransitionConditions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Private\\Core\\CameraRigCombinationRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Source\\GameplayCameras\\Private\\Core\\BlendStackRootCameraNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Cameras\\GameplayCameras\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayCameras\\UHT\\GameplayCameras.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RigLogicModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RigLogicModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\AnimNode_RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\DNACommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\DNAAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\RigUnit_RigLogic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Public\\SkelMeshDNAUtils.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Source\\RigLogicModule\\Private\\DNAIndexMappingDeprecated.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\RigLogic\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RigLogicModule\\UHT\\RigLogicModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ComputeFramework", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ComputeFramework\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeDataProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraphInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraphComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelPermutationVector.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeSourceFromText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ShaderParamTypeDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelFromText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Source\\ComputeFramework\\Public\\ComputeFramework\\ComputeKernelPermutationSet.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ComputeFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ComputeFramework\\UHT\\ComputeFramework.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OptimusSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OptimusSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusSettings\\Public\\OptimusSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OptimusSettings\\UHT\\OptimusSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OptimusCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OptimusCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComputeKernelDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusAlternativeSelectedObjectProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComputeKernelProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDeformerInstanceAccessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDataInterfaceProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeAdderPinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeFunctionLibraryOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeGraphCollectionOwner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodePairProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeGraphProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodePinRouter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNodeSubGraphReferencer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusOutputBufferWriter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusParameterBindingProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNonCollapsibleNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPersistentBufferProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusNonCopyableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPinMutabilityDefiner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusActionStack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusBindingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusConstant.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusComputeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDataDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformerDynamicInstanceManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDataType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDiagnostic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformerInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusDeformer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusFunctionNodeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusExecutionDomain.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusFunctionNodeGraphHeader.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodePair.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeLink.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusResourceDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodePin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusShaderText.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusNodeSubGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusVariableDescription.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValidatedName.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValueContainerStruct.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusValueContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComponentBindingReceiver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusComponentBindingProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusDeprecatedExecutionDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusExecutionDomainProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusGeneratedClassDefiner.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPathResolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusPropertyPinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusUnnamedNodePinProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusValueProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\IOptimusShaderTextProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Public\\OptimusKernelSource.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\OptimusComputeGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusNodeGraphActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusComponentBindingActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusResourceActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceAnimAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceAdvancedSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSkinnedMeshComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCopyKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCloth.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceCustomComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ControlRig\\RigUnit_Optimus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceLoopTerminal.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceConnectivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceMorphTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceHalfEdge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshRead.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshVertexAttribute.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ConstantValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_FunctionReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GetResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_AnimAttributeDataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_Resource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_SetResource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GetVariable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_GraphTerminal.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComputeKernelFunction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceDebugDraw.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusNodeActions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSkeletalMeshComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\ComponentSources\\OptimusSceneComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceDuplicateVertices.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceRawBuffer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceScene.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinWeightsAsVertexMask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_CustomComputeKernel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComputeKernelBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_DataInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshWrite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMeshExec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\DataInterfaces\\OptimusDataInterfaceSkinnedMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_SubGraphReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_ResourceAccessorBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Nodes\\OptimusNode_LoopTerminal.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Source\\OptimusCore\\Private\\Actions\\OptimusVariableActions.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\DeformerGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OptimusCore\\UHT\\OptimusCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "HairStrandsDeformer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HairStrandsDeformer\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomExec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomGuide.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerGroomComponentSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Source\\HairStrandsDeformer\\Private\\DeformerDataInterfaceGroomWrite.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\HairStrands\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\HairStrandsDeformer\\UHT\\HairStrandsDeformer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetaHumanSDKRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetaHumanSDKRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanBodyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanComponentBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Source\\MetaHumanSDKRuntime\\Public\\MetaHumanComponentUE.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MetaHuman\\MetaHumanSDK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetaHumanSDKRuntime\\UHT\\MetaHumanSDKRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ControlRigSpline", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ControlRigSpline\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline\\Public\\ControlRigSplineTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Source\\ControlRigSpline\\Public\\ControlRigSplineUnits.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ControlRigSpline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ControlRigSpline\\UHT\\ControlRigSpline.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ACLPlugin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ACLPlugin\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimationCompressionLibraryDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACL.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLCustom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimBoneCompressionCodec_ACLSafe.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Classes\\AnimCurveCompressionCodec_ACL.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Source\\ACLPlugin\\Public\\ACLImpl.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\ACLPlugin\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ACLPlugin\\UHT\\ACLPlugin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Paper2D", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Paper2D\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\IntMargin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbook.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperCharacter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperGroupedSpriteActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbookActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperGroupedSpriteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperFlipbookComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSprite.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperRuntimeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteAtlas.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileLayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainMaterial.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperSpriteComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\SpriteEditorOnlyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\TileMapBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMapComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\SpriteDrawCall.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTerrainSplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Classes\\PaperTileMapActor.h" + ], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Source\\Paper2D\\Public\\MaterialExpressionSpriteTextureSampler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\2D\\Paper2D\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Paper2D\\UHT\\Paper2D.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "RuntimeTests", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source\\RuntimeTests", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RuntimeTests\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Source\\RuntimeTests\\Public\\EngineRuntimeTests.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Tests\\RuntimeTests\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\RuntimeTests\\UHT\\RuntimeTests.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "DataRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource_CurveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistrySource_DataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistryTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\SoftDataRegistryOrTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Source\\DataRegistry\\Public\\DataRegistryId.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\DataRegistry\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\DataRegistry\\UHT\\DataRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayAbilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayAbilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemGlobals.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemDebugHUD.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemTestPawn.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\ActiveGameplayEffectHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemReplicationProxyInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AbilitySystemTestAttributeSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AttributeSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\AnimNotify_GameplayCue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilityBlueprint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitiesDeveloperSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotifyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Actor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Burst.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_BurstLatent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Static.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_HitImpact.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueTranslator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueNotify_Looping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueSet.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCue_Types.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectAttributeCaptureDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectCustomApplicationRequirement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectExecutionCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectUIData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayPrediction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectUIData_TextOnly.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayTagResponseTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\ScalableFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySpec.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\TickableAttributeSetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityRepAnimMontage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_GroundTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetDataFilter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityWorldReticle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityWorldReticle_ActorVisualization.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayCueInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility_CharacterJump.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbility_Montage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitAttributeChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayEffectApplied.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTagCountChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayAbilitySpecHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionConstantForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Async\\AbilityAsync_WaitGameplayEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionMoveToActorForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionRadialForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionJumpForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotionMoveToForce.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_ApplyRootMotion_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_MoveToLocation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_PlayAnimAndWait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_Repeat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_NetworkSyncPoint.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_PlayMontageAndWait.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_SpawnActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAbilityActivate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_VisualizeTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAbilityCommit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChangeThreshold.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitAttributeChangeRatioThreshold.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitConfirm.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_StartAbilityState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitCancel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitDelay.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitConfirmCancel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied_Self.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectBlockedImmunity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectApplied_Target.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectRemoved.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitInputPress.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitInputRelease.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitMovementModeChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitTargetData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayEffectStackChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AbilitiesGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitOverlap.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTagCountChanged.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitGameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\Tasks\\AbilityTask_WaitVelocityChange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\BlockAbilityTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AssetTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\AdditionalEffectsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\TargetTagRequirementsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\ChanceToApplyGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\CustomCanApplyGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\TargetTagsGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\RemoveOtherGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Sequencer\\MovieSceneGameplayCueSections.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayAbilityRepAnimMontageNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayEffectContextHandleNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayAbilityTargetingLocationInfoNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\GameplayEffectContextNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\MinimalGameplayCueReplicationProxyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Serialization\\MinimalReplicationTagCountNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayModMagnitudeCalculation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_Radius.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_ActorPlacement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_SingleLineTrace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Abilities\\GameplayAbilityTargetActor_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\GameplayEffectComponents\\ImmunityGameplayEffectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Public\\Sequencer\\MovieSceneGameplayCueTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\AbilitySystemCheatManagerExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\InternalMinimalGameplayCueReplicationProxyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\PredictionKeyNetSerializer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Tests\\GameplayCueTests.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Source\\GameplayAbilities\\Private\\Serialization\\InternalMinimalReplicationTagCountMapNetSerializer.h" + ], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=0", + "WITH_GAMEPLAY_DEBUGGER=0", + "WITH_GAMEPLAY_DEBUGGER_MENU=0", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayAbilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayAbilities\\UHT\\GameplayAbilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayBehaviorsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayBehaviorsModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\BlackboardKeyType_GameplayTag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorsBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorConfig_Animation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehaviorConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\GameplayBehaviorConfig_BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\GameplayBehavior_BehaviorTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\BTTask_StopGameplayBehavior.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\BTDecorator_GameplayTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\GameplayBehavior_AnimationBased.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Source\\GameplayBehaviorsModule\\Public\\AI\\ValueOrBBKey_GameplayTag.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayBehaviors\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayBehaviorsModule\\UHT\\GameplayBehaviorsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PropertyBindingUtils", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtils", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PropertyBindingUtils\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Source\\PropertyBindingUtils\\Public\\PropertyBindingPath.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PropertyBindingUtils\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PropertyBindingUtils\\UHT\\PropertyBindingUtils.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TargetingSystem", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TargetingSystem\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\AbilityTasks\\AbilityTask_PerformTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Async\\AsyncAction_PerformTargeting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\TargetingSystem\\TargetingSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\CollisionQueryTaskData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingFilterTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\TargetingSystem\\TargetingPreset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingSortTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\SimpleTargetingSelectionTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_BasicFilterTemplate.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_ActorClass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_AOE.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingFilterTask_SortByDistance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_Trace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSortTask_Base.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingSelectionTask_SourceActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Tasks\\TargetingTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Source\\GameplayTargetingSystem\\Public\\Types\\TargetingSystemTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\GameplayTargetingSystem\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TargetingSystem\\UHT\\TargetingSystem.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WorldConditions", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WorldConditions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Source\\WorldConditions\\Public\\WorldConditionSchema.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WorldConditions\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WorldConditions\\UHT\\WorldConditions.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SmartObjectsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SmartObjectsModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\BlackboardKeyType_SOClaimHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\GenericSmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\EnvQueryItemType_SmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectContainerRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectHashGrid.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDefinitionReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectOctree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectRuntime.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectPersistentCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectSlotEntranceAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectUserComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectSlotLinkAnnotation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionObjectTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\SmartObjectWorldConditionSlotTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\WorldConditions\\WorldCondition_SmartObjectActorTagQuery.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\EnvQueryGenerator_SmartObjects.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\SmartObjectDebugRenderingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Public\\Annotations\\SmartObjectAnnotation_SlotUserCollision.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Private\\SmartObjectSubsystemRenderingActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Source\\SmartObjectsModule\\Private\\SmartObjectTestingActor.h" + ], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=0", + "WITH_GAMEPLAY_DEBUGGER=0", + "WITH_GAMEPLAY_DEBUGGER_MENU=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SmartObjects\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SmartObjectsModule\\UHT\\SmartObjectsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayBehaviorSmartObjectsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayBhvSO\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\GameplayBehaviorSmartObjectsBlueprintFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\AI\\AITask_UseGameplayBehaviorSmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\AI\\BTTask_FindAndUseGameplayBehaviorSmartObject.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Source\\GameplayBehaviorSmartObjectsModule\\Public\\GameplayBehaviorSmartObjectBehaviorDefinition.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayBehaviorSmartObjects\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayBhvSO\\UHT\\GameplayBehaviorSmartObjectsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "FullBodyIK", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FullBodyIK\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKConstraintOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKDebugOption.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Public\\FBIKShared.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\FullBodyIK\\Private\\RigUnit_FullbodyIK.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\FullBodyIK\\UHT\\FullBodyIK.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NavCorridor", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NavCorridor\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor\\Public\\NavCorridorTestingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Source\\NavCorridor\\Public\\NavCorridor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\NavCorridor\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NavCorridor\\UHT\\NavCorridor.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayStateTreeModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayStateTreeModule\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\BehaviorTree\\Tasks\\BTTask_RunDynamicStateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\BehaviorTree\\Tasks\\BTTask_RunStateTree.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeAIComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Conditions\\StateTreeAIConditionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeRunEnvQueryTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeAITask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeAIComponentSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Tasks\\StateTreeMoveToTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Public\\Components\\StateTreeComponentSchema.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Source\\GameplayStateTreeModule\\Private\\PropertyFunctions\\StateTreeActorPropertyFunctions.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayStateTree\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayStateTreeModule\\UHT\\GameplayStateTreeModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PBIK", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PBIK\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\PBIK_Shared.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\RigUnit_PBIK.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Source\\PBIK\\Public\\Core\\PBIKSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\FullBodyIK\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PBIK\\UHT\\PBIK.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "IKRig", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\IKRig\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\AnimNodes\\AnimNode_RetargetPoseFromMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\ActorComponents\\IKRigInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\ActorComponents\\IKRigComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetProfile.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\RootMotionGeneratorOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\CurveRemapOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\RetargetOps\\PinBoneOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_LimbSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigSkeleton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_BodyMover.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_FBIKSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_SetTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\LimbSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\AnimNodes\\AnimNode_IKRig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetProcessor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Retargeter\\IKRetargetOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\IKRigDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRigSolver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Source\\IKRig\\Public\\Rig\\Solvers\\IKRig_PoleSolver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\IKRig\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\IKRig\\UHT\\IKRig.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MotionWarping", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MotionWarping\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\AnimNotifyState_MotionWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\AttributeBasedRootMotionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\MotionWarpingCharacterAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier_AdjustmentBlendWarp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Source\\MotionWarping\\Public\\RootMotionModifier_SkewWarp.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\MotionWarping\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MotionWarping\\UHT\\MotionWarping.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ContextualAnimation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ContextualAnimation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimActorInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\AnimNotifyState_IKWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSceneActorComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSceneAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimSelectionCriterion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\AnimNotifyState_EarlyOutContextualAnimWindow.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Source\\ContextualAnimation\\Public\\ContextualAnimUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Animation\\ContextualAnimation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ContextualAnimation\\UHT\\ContextualAnimation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayInteractionsModule", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayInteractions\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionStateTreeSchema.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionSmartObjectBehaviorDefinition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Public\\GameplayInteractionsTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\AI\\AITask_UseGameplayInteraction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionConditions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionFindSlotTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionModifySlotTagTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionListenSlotEventsTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSyncSlotTagTransition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionGetSlotActorTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSyncSlotTagStateTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\PlayMontageStateTreeTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_GetSlotEntranceTags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_PlayContextualAnim.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSendSlotEventTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\GameplayInteractionSetSlotEnabledTask.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Source\\GameplayInteractionsModule\\Private\\StateTree\\StateTreeTask_FindSlotEntranceLocation.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameplayInteractions\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayInteractions\\UHT\\GameplayInteractionsModule.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Spatialization", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\Spatialization", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Spatialization\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Source\\Spatialization\\Public\\ITDSpatializationSourceSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Spatialization\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Spatialization\\UHT\\Spatialization.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingOperators", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModelingOperators\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\EditNormalsOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\RemeshMeshOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CompositionOps\\BooleanMeshesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CleaningOps\\HoleFillOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\UVLayoutOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CurveOps\\TriangulateCurvesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\TexelDensityOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\Properties\\RecomputeUVsProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\UVProjectionOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\Properties\\UVLayoutProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\CompositionOps\\VoxelMorphologyMeshesOp.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingOperators\\Public\\ParameterizationOps\\RecomputeUVsOp.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModelingOperators\\UHT\\ModelingOperators.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModelingComponents", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModelingComponents\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\MeshOpPreviewHelpers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\InteractiveToolActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ModelingComponentsSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PreviewMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ModelingObjectsCreationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\ToolHostCustomizationAPI.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Baking\\BakingTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseMeshProcessingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseCreateFromSelectedTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MultiTargetWithSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\BaseVoxelTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MultiSelectionMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\SingleSelectionMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\MeshSurfacePointMeshEditingTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\BaseTools\\SingleTargetWithSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Changes\\DynamicMeshChangeTarget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Components\\OctreeDynamicMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\MeshWireframeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\LineSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\TriangleSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PointSetComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PolyEditPreviewMesh.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\UVLayoutPreview.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\PreviewGeometryActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CollectSurfacePathMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CollisionPrimitivesMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\DragAlignmentMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\CurveControlPointsMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\PlaneDistanceFromHitMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\RectangleMarqueeMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\PolyLassoMarqueeMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\LatticeControlPointsMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\SpaceCurveDeformationMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\ColorChannelFilterPropertyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\AxisFilterPropertyType.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\OnAcceptProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\GeometrySelectionVisualizationProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\CreateMeshObjectTypeProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\VoxelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\PolygroupLayersProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\PropertySets\\WeightMapSetProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\BoundarySelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Drawing\\MeshElementsVisualizer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\GeometrySelectionManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\MeshTopologySelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\PolygonSelectionMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Selection\\SelectionEditInteractiveCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshProvider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshCommitter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\TargetInterfaces\\DynamicMeshSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Snapping\\ModelingSceneSnappingManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Transforms\\MultiTransformer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\ConstructionPlaneMechanic.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\ModelingComponents\\Public\\Mechanics\\SpatialCurveDistanceMechanic.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModelingComponents\\UHT\\ModelingComponents.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingTools", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshModelingTools\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CSGMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\AddPrimitiveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CutMeshWithMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\CombineMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\DrawAndRevolveTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\DrawPolygonTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\EditMeshPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\RecomputeUVsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\UVProjectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\DeleteGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\DisconnectGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\UVLayoutTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\RetriangulateGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\MeshMaterialProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\MeshUVChannelProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Properties\\RevolveProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\Commands\\ModifyGeometrySelectionCommand.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditCutFacesActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditExtrudeActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditActivityContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsetOutsetActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsertEdgeLoopActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditInsertEdgeActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Public\\ToolActivities\\PolyEditPlanarProjectionUVActivity.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Private\\ToolActivities\\PolyEditBevelEdgeActivity.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Source\\MeshModelingTools\\Private\\ToolActivities\\PolyEditExtrudeEdgeActivity.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\MeshModelingToolset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshModelingTools\\UHT\\MeshModelingTools.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MeshModelingToolsExp", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshModelingToolsExp\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\AlignObjectsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\AddPatchTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeMapsToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeTransformTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ConvertToPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeMapsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ConvertMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DisplaceMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DeformMeshPolygonsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditPivotTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeVertexTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditUVIslandsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\EditNormalsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\HoleFillTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\LatticeDeformerTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshInspectorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DynamicMeshBrushTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshAttributePaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DynamicMeshSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshBoundaryToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshVertexPaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\PatternTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshSpaceDeformerTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\OffsetMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MirrorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RemoveOccludedTrianglesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RemeshMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\PlaneCutTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\ProjectToTargetTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RevolveSplineTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\RevolveBoundaryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SeamSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SelfUnionMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TransformMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TransferMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\UVTransferTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\TriangulateSplinesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelBlendMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VolumeToMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelSolidifyMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\WeldMeshEdgesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\CollisionPropertySets.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\ExtractCollisionGeometryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\PhysicsInspectorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\SetCollisionGeometryTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Physics\\SimpleCollisionEditorTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Polymodeling\\OffsetMeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\MeshAnalysisProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Polymodeling\\ExtrudeMeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\RemeshProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Properties\\MeshStatisticsProperties.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshGroupPaintBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshInflateBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshBrushOpBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshPinchBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshMoveBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSculptBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshPlaneBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSculptToolBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshVertexPaintBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Spline\\BaseMeshFromSplinesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\Sculpting\\MeshSmoothingBrushOps.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMultiMeshAttributeMapsTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\DrawPolyPathTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\BakeMeshAttributeToolCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\CubeGridTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshGroupPaintTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshVertexSculptTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\MeshSelectionTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SplitMeshesTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\SmoothMeshTool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Public\\VoxelMorphologyMeshesTool.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Source\\MeshModelingToolsExp\\Private\\Sculpting\\KelvinletBrushOp.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\MeshModelingToolsetExp\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MeshModelingToolsExp\\UHT\\MeshModelingToolsExp.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ProceduralMeshComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ProceduralMeshComponent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent\\Public\\ProceduralMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Source\\ProceduralMeshComponent\\Public\\KismetProceduralMeshLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ProceduralMeshComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ProceduralMeshComponent\\UHT\\ProceduralMeshComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryCacheTracks", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCacheTracks\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Classes\\MovieSceneGeometryCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Classes\\MovieSceneGeometryCacheTrack.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Source\\GeometryCacheTracks\\Private\\MovieSceneGeometryCacheTemplate.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryCache\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryCacheTracks\\UHT\\GeometryCacheTracks.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioCapture", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioCapture\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCapture.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCaptureBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Source\\AudioCapture\\Public\\AudioCaptureComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioCapture\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioCapture\\UHT\\AudioCapture.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TakeMovieScene", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TakeMovieScene\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Source\\TakeMovieScene\\Public\\MovieSceneTakeTrack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\VirtualProduction\\Takes\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TakeMovieScene\\UHT\\TakeMovieScene.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SequencerScripting", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SequencerScripting\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\SequencerScriptingRange.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\SequenceTimeUnit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneBindingExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneEventTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneFolderExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneMaterialTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieScenePrimitiveMaterialTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieScenePropertyTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneSectionExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneSequenceExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneTimeWarpExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\MovieSceneVectorTrackExtensions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Public\\ExtensionLibraries\\SequencerScriptingRangeExtensions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingByte.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingBool.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingActorReference.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingDouble.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingEvent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingFloat.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingInteger.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingObjectPath.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Source\\SequencerScripting\\Private\\KeysAndChannels\\MovieSceneScriptingString.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\SequencerScripting\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SequencerScripting\\UHT\\SequencerScripting.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ConsoleVariablesEditorRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditorRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ConsoleVariablesEditorRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Source\\ConsoleVariablesEditorRuntime\\Public\\ConsoleVariablesAsset.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Editor\\ConsoleVariablesEditor\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ConsoleVariablesEditorRuntime\\UHT\\ConsoleVariablesEditorRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ActorLayerUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source\\ActorLayerUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ActorLayerUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Source\\ActorLayerUtilities\\Public\\ActorLayerUtilities.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ActorLayerUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ActorLayerUtilities\\UHT\\ActorLayerUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OpenColorIO", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OpenColorIO\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOColorSpace.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOColorTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOConfiguration.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIODisplayExtensionWrapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Source\\OpenColorIO\\Public\\OpenColorIOSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Compositing\\OpenColorIO\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OpenColorIO\\UHT\\OpenColorIO.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosCaching", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosCaching\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheCollection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheEvents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\CacheManagerActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\ChaosCacheInterpolationMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\ChaosCache.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Adapters\\GeometryCollectionComponentCacheAdapter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneChaosCacheSection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneChaosCacheTrack.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Public\\Chaos\\Sequencer\\MovieSceneSpawnableChaosCacheBinding.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Source\\ChaosCaching\\Private\\Chaos\\Sequencer\\MovieSceneChaosCacheTemplate.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\ChaosCaching\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosCaching\\UHT\\ChaosCaching.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosCloth", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosCloth\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothingSimulationFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Public\\ChaosCloth\\ChaosClothingSimulationInteractor.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Source\\ChaosCloth\\Private\\ChaosCloth\\ChaosWeightMapTarget.h" + ], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosCloth\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosCloth\\UHT\\ChaosCloth.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ChaosClothAssetEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosClothAssetEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothAsset.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothAssetInteractor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Public\\ChaosClothAsset\\ClothLodTransitionDataCache.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Source\\ChaosClothAssetEngine\\Private\\ChaosClothAsset\\ClothSimulationModel.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\ChaosClothAsset\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ChaosClothAssetEngine\\UHT\\ChaosClothAssetEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieJobVariableAssignmentContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCommandLineEncoderSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCommandLineEncoder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineFCPXMLExporterSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineConfigBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineGameMode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineInProcessExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineInProcessExecutorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineOutputBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineDebugSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineLinearExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelinePrimaryConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineHighResSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelinePythonHostExecutor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineQueue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineRenderPass.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineOutputSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineQueueEngineSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineSettingBlueprintBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineVideoOutputBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineViewFamilySetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineShotConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieRenderDebugWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MovieRenderPipelineDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphCommon.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphBurnInWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphBlueprintLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineAntiAliasingSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphConfig.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDataTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphCoreTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDefaultAudioRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphEdge.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphDefaultRenderer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphFilenameResolveParams.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphNamedResolution.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphLinearTimeStep.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphPipeline.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphPin.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphRenderDataIdentifier.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphRenderLayerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphSequenceDataSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphProjectSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphTraversalContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphTimeStepData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphApplyCVarPresetNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphValueContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphBurnInNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphBranchNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphAudioOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCameraNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphExecuteScriptNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphDebugNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphFileOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCommandLineEncoderNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphModifierNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphInputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSamplingMethodNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRenderLayerNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRemoveRenderSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetCVarValueNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSelectNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphUIRendererNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphVariableNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSubgraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetStartEndConsoleCommandsNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphVideoOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphWarmUpSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Renderers\\MovieGraphShowFlags.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineCameraSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineColorSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\MoviePipelineGameOverrideSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\MovieGraphNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphCollectionNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphGlobalGameOverrides.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphGlobalOutputSettingNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphRenderPassNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Public\\Graph\\Nodes\\MovieGraphSetMetadataAttributesNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineCore\\Private\\Graph\\Nodes\\MovieGraphWidgetRendererBaseNode.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineCore\\UHT\\MovieRenderPipelineCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineSettings", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineBurnInWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineBurnInSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineConsoleVariableSetting.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineSettings\\Public\\MoviePipelineWidgetRenderSetting.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineSettings\\UHT\\MovieRenderPipelineSettings.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MovieRenderPipelineRenderPasses", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineRenderPasses\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MovieGraphImageSequenceOutputNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineDeferredPasses.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineImagePassBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineEXROutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineImageSequenceOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\MoviePipelineWaveOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphDeferredPassNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphImagePassBaseNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Source\\MovieRenderPipelineRenderPasses\\Public\\Graph\\Nodes\\MovieGraphPathTracerPassNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\MovieScene\\MovieRenderPipeline\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MovieRenderPipelineRenderPasses\\UHT\\MovieRenderPipelineRenderPasses.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationWarpingRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationWarpingRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\AnimationWarpingLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_FootPlacement.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OffsetRootBone.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OverrideRootMotion.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_OrientationWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_SlopeWarping.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_Steering.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Source\\Runtime\\Public\\BoneControllers\\AnimNode_StrideWarping.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationWarping\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimationWarpingRuntime\\UHT\\AnimationWarpingRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SoundUtilities", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SoundUtilities\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities\\Public\\SoundUtilities.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Source\\SoundUtilities\\Public\\SoundSimple.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\SoundUtilities\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SoundUtilities\\UHT\\SoundUtilities.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioGameplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioGameplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioAssetUserData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioComponentGroup.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioComponentGroupExtension.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayRequirements.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioGameplayTagCacheSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\AudioParameterComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\SoundHandleSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\Interfaces\\IAudioGameplayCondition.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Source\\AudioGameplay\\Public\\Interfaces\\IAudioGameplayVolumeInteraction.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplay\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioGameplay\\UHT\\AudioGameplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioGameplayVolume", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioGameplayVolume\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AttenuationVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeMutator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeProxy.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\AudioGameplayVolumeSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\FilterVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\ReverbVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\SubmixSendVolumeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Source\\AudioGameplayVolume\\Public\\SubmixOverrideVolumeComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\AudioGameplayVolume\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioGameplayVolume\\UHT\\AudioGameplayVolume.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AnimationLocomotionLibraryRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimLLRun\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime\\Public\\AnimCharacterMovementLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Source\\Runtime\\Public\\AnimDistanceMatchingLibrary.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Animation\\AnimationLocomotionLibrary\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AnimLLRun\\UHT\\AnimationLocomotionLibraryRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GeometryScriptingCore", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryScriptingCore\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\CollisionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ContainmentFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ListUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\GeometryScriptSelectionTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshAssetFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBakeFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBasicEditFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\GeometryScriptTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBooleanFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshDecompositionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPolygroupFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshComparisonFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshMaterialFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPrimitiveFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshNormalsFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSelectionQueryFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshRepairFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshQueryFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSubdivideFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSamplingFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSelectionFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshTransformFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshVertexColorFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshVoxelFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PolygonFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\ShapeFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\VectorMathFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshBoneWeightFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshModelingFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshDeformFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshGeodesicFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshPoolFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshRemeshFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\SceneUtilityFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSimplifyFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshSpatialFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\MeshUVFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PolyPathFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\TextureMapFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\PointSetFunctions.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Source\\GeometryScriptingCore\\Public\\GeometryScript\\VolumeTextureBakeFunctions.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GeometryScripting\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GeometryScriptingCore\\UHT\\GeometryScriptingCore.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemSteam", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemSteam\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Classes\\SteamNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Classes\\SteamNetDriver.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Source\\Private\\OnlineAuthHandlerSteam.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemSteam\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemSteam\\UHT\\OnlineSubsystemSteam.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SteamSockets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SteamSockets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets\\Public\\SteamSocketsNetConnection.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Source\\SteamSockets\\Public\\SteamSocketsNetDriver.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "STEAMSOCKETS_MODULE=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Steam\\SteamSockets\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SteamSockets\\UHT\\SteamSockets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SocketSubsystemEOS", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SocketSubsystemEOS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS\\Public\\NetDriverEOSBase.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Source\\SocketSubsystemEOS\\Private\\NetConnectionEOS.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\SocketSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SocketSubsystemEOS\\UHT\\SocketSubsystemEOS.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "OnlineSubsystemEOS", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemEOS\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS\\Public\\EOSSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Source\\OnlineSubsystemEOS\\Private\\NetDriverEOS.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineSubsystemEOS\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\OnlineSubsystemEOS\\UHT\\OnlineSubsystemEOS.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioAnalyzer", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioAnalyzer\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzer.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AudioAnalyzer\\Classes\\AudioAnalyzerAsset.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioAnalyzer\\UHT\\AudioAnalyzer.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioSynesthesia", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioSynesthesia\\UHT", + "ClassesHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\AudioSynesthesiaNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\AudioSynesthesia.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\Loudness.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\Meter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\LoudnessNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\SynesthesiaSpectrumAnalysis.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\ConstantQ.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\OnsetNRT.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Source\\AudioSynesthesia\\Classes\\ConstantQNRT.h" + ], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioSynesthesia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioSynesthesia\\UHT\\AudioSynesthesia.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AdvancedWidgets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AdvancedWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets\\Public\\Styling\\ColorGradingSpinBoxStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\AdvancedWidgets\\Public\\Components\\RadialSlider.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AdvancedWidgets\\UHT\\AdvancedWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioWidgets", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioWidgets\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioColorMapper.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeterTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMeterStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopeEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopePanelStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioOscilloscopeUMG.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrogramViewport.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrumAnalyzer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioSpectrumPlotStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioVectorscopePanelStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioRadialSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioVectorscopeUMG.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioWidgetsEnums.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioWidgetsSlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SampledSequenceVectorViewerStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioRadialSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioSpectrumPlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\SAudioOscilloscopePanelWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\TriggerThresholdLineStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialButton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialEnvelopeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialEnvelope.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialMeter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialKnob.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialSlateTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialStyleContainers.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Source\\AudioWidgets\\Public\\AudioMaterialSlate\\AudioMaterialSlider.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioWidgets\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioWidgets\\UHT\\AudioWidgets.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WaveTable", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WaveTable\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableTransform.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableBank.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Source\\WaveTable\\Public\\WaveTableSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\WaveTable\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WaveTable\\UHT\\WaveTable.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetasoundFrontend", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetasoundFrontend\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundDocumentInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendDocument.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendLiteral.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendDocumentBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundFrontendNodeTemplateRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundFrontend\\Public\\MetasoundParameterPack.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_METASOUND_FRONTEND=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetasoundFrontend\\UHT\\MetasoundFrontend.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "MetasoundEngine", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetasoundEngine\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\Metasound.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOutput.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOperatorCacheSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\Interfaces\\MetasoundOutputFormatInterfaces.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundBuilderSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundBuilderBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundSource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundFrontendLiteralBlueprintAccess.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundAssetSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundGeneratorHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundOutputSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Source\\MetasoundEngine\\Public\\MetasoundSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Metasound\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\MetasoundEngine\\UHT\\MetasoundEngine.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WebBrowser", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WebBrowser", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WebBrowser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WebBrowser\\Public\\WebJSFunction.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WebBrowser\\UHT\\WebBrowser.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Rejoin", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Rejoin", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Rejoin\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Rejoin\\Public\\RejoinCheck.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Rejoin\\UHT\\Rejoin.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Lobby", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Lobby\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconPlayerState.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Lobby\\Public\\LobbyBeaconClient.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "LOBBY_PACKAGE=1", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Lobby\\UHT\\Lobby.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Party", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Party\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chatroom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialDebugTools.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialToolkit.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialGroupChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialPartyChatRoom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\PartyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\PartyMember.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialReadOnlyChatChannel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\User\\SocialUser.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Party\\SocialParty.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\SocialSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialChatRoom.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Party\\Public\\Chat\\SocialPrivateMessageChannel.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "PARTY_PLATFORM_SESSIONS_PSN=0", + "PARTY_PLATFORM_SESSIONS_XBL=0", + "PARTY_PLATFORM_INVITE_PERMISSIONS=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Party\\UHT\\Party.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Qos", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Qos\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosBeaconHost.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosBeaconClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Public\\QosRegionManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Qos\\Private\\QosEvaluator.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Qos\\UHT\\Qos.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Landmass", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Landmass\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\FalloffSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\TerrainCarvingSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Source\\Runtime\\Public\\BrushEffectsList.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Landmass\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Landmass\\UHT\\Landmass.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Water", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Water\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BakedShallowWaterSimulationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\BuoyancyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\GerstnerWaterWaves.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\EnvQueryTest_InsideWaterBody.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\GerstnerWaterWaveSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\LakeCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\NiagaraWaterFunctionLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\NiagaraDataInterfaceWater.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\OceanCollisionComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyCustomComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyExclusionVolume.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyHeightmapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyHLODBuilder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyCustomActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyIslandActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyLakeActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyOceanActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyWeightmapSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBrushActorInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyStaticMeshSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterCurveSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyRiverComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBrushEffects.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyRiverActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterFalloffSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterRuntimeSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSplineComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSplineMetadata.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyLakeComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterZoneActor.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterWaves.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterTerrainComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Public\\WaterBodyOceanComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Private\\WaterBodyStaticMeshComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Source\\Runtime\\Private\\WaterBodyInfoMeshComponent.h" + ], + "PublicDefines": [ + "WITH_WATER_SELECTION_SUPPORT=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Water\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Water\\UHT\\Water.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WinDualShock", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source\\WinDualShock", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WinDualShock\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Source\\WinDualShock\\Public\\WinDualShockSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "DUALSHOCK4_SUPPORT=0", + "DUALSENSE_SUPPORT=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\Windows\\WinDualShock\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WinDualShock\\UHT\\WinDualShock.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModularGameplay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModularGameplay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponentDelegates.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkComponentManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\PlayerStateComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\ControllerComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameStateComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\GameFrameworkInitStateInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Source\\ModularGameplay\\Public\\Components\\PawnComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ModularGameplay\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModularGameplay\\UHT\\ModularGameplay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameFeatures", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameFeatures\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddActorFactory.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddCheats.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddChunkOverride.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddComponents.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddWorldPartitionContent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AddWPContent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_DataRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_AudioActionBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureAction_DataRegistrySource.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureOptionalContentInstaller.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesProjectPolicies.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeaturesSubsystemSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureStateChangeObserver.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Public\\GameFeatureVersePathMapperCommandlet.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Source\\GameFeatures\\Private\\GameFeaturePluginStateMachine.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\GameFeatures\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameFeatures\\UHT\\GameFeatures.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonConversationRuntime", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonConversationRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationContext.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationChoiceNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationEntryPointNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationInstance.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationLinkNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationParticipantComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationLibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSideEffectNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationTaskNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationSubNode.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationRegistry.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationDatabase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Source\\CommonConversationRuntime\\Public\\ConversationRequirementNode.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\CommonConversation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonConversationRuntime\\UHT\\CommonConversationRuntime.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "NiagaraAnimNotifies", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraAnimNotifies\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies\\Public\\AnimNotifyState_TimedNiagaraEffect.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Source\\NiagaraAnimNotifies\\Public\\AnimNotify_PlayNiagaraEffect.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\FX\\Niagara\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\NiagaraAnimNotifies\\UHT\\NiagaraAnimNotifies.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AESGCMHandlerComponent", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AESGCMHandlerComponent\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Source\\Public\\AESGCMFaultHandler.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\PacketHandlers\\AESGCMHandlerComponent\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AESGCMHandlerComponent\\UHT\\AESGCMHandlerComponent.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Hotfix", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Hotfix\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix\\Public\\UpdateManager.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Source\\Hotfix\\Public\\OnlineHotfixManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Online\\OnlineFramework\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Hotfix\\UHT\\Hotfix.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ReplicationGraph", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ReplicationGraph\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\BasicReplicationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\ReplicationGraph.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Source\\Public\\ReplicationGraphTypes.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_GAMEPLAY_DEBUGGER_CORE=0", + "WITH_GAMEPLAY_DEBUGGER=0", + "WITH_GAMEPLAY_DEBUGGER_MENU=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\ReplicationGraph\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ReplicationGraph\\UHT\\ReplicationGraph.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ExternalRpcRegistry", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ExternalRpcRegistry\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry\\Public\\ExternalRpcRegistrationComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ExternalRPCRegistry\\Public\\ExternalRpcRegistry.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "USE_RPC_REGISTRY_IN_SHIPPING=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ExternalRpcRegistry\\UHT\\ExternalRpcRegistry.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AudioModulation", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioModulation\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationDestination.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundControlBusMix.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationStyle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationParameter.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundControlBus.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\AudioModulationStatics.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationLFO.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationGenerator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationPatch.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\SoundModulationValue.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationADEnvelope.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Source\\AudioModulation\\Public\\Generators\\SoundModulationEnvelopeFollower.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_AUDIOMODULATION=1", + "WITH_AUDIOMODULATION_METASOUND_SUPPORT=1" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\AudioModulation\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AudioModulation\\UHT\\AudioModulation.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClientPilot", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClientPilot\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotBlackboardManager.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotComponent.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClientPilot\\Public\\ClientPilotBlackboard.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClientPilot\\UHT\\ClientPilot.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonInput", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonInput\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputBaseTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputModeTypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputTypeEnum.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputSubsystem.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonInput\\Public\\CommonInputActionDomain.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "UE_COMMONINPUT_PLATFORM_TYPE = PC" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonInput\\UHT\\CommonInput.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WidgetCarousel", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WidgetCarousel", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WidgetCarousel\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\WidgetCarousel\\Public\\WidgetCarouselStyle.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WidgetCarousel\\UHT\\WidgetCarousel.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonUI", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonUI\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\AnalogSlider.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActionWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActionHandlerInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonAnimatedSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActivatableWidgetSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonActivatableWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonBorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonDateTimeTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonCustomNavigation.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonGameViewportClient.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonHierarchicalScrollBox.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLazyImage.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLoadGuard.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonListView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonNumericTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonRichTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTabListWidgetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonButtonBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonRotator.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonPoolableWidgetInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTileView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTreeView.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonTextBlock.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonLazyWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIRichTextData.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUISettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUISubsystemBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIEditorSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUITypes.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVideoPlayer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilitySwitcherSlot.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilityWidgetBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUserWidget.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonWidgetCarousel.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisibilitySwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonWidgetCarouselNavBar.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonVisualAttachment.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\UITag.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonHardwareVisibilityBorder.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Groups\\CommonWidgetGroupBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionButton.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionButtonInterface.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Groups\\CommonButtonGroupBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonGenericInputActionDataTable.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonUIActionRouterBase.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\UIActionBindingHandle.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonBoundActionBar.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Slate\\SCommonAnimatedSwitcher.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Input\\CommonUIInputSettings.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\Widgets\\CommonActivatableWidgetContainer.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUILibrary.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Source\\CommonUI\\Public\\CommonUIVisibilitySubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Runtime\\CommonUI\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonUI\\UHT\\CommonUI.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Gauntlet", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Gauntlet\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestControllerBootTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestControllerErrorTest.h", + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Source\\Gauntlet\\Public\\GauntletTestController.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Experimental\\Gauntlet\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Gauntlet\\UHT\\Gauntlet.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "SessionMessages", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SessionMessages", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SessionMessages\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\SessionMessages\\Public\\SessionServiceMessages.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\SessionMessages\\UHT\\SessionMessages.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ClothingSystemRuntimeNv", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothingSystemRuntimeNv\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothConfigNv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothingSimulationFactoryNv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothingSimulationInteractorNv.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\ClothingSystemRuntimeNv\\Public\\ClothPhysicalMeshDataNv_Legacy.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "WITH_CLOTH_COLLISION_DETECTION=1", + "WITH_CHAOS_VISUAL_DEBUGGER=0" + ], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ClothingSystemRuntimeNv\\UHT\\ClothingSystemRuntimeNv.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "Overlay", + "ModuleType": "EngineRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Overlay\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\LocalizedOverlays.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\BasicOverlays.h", + "E:\\Games\\UE_5.5\\Engine\\Source\\Runtime\\Overlay\\Public\\Overlays.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\Overlay\\UHT\\Overlay.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CQTest", + "ModuleType": "EngineDeveloper", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CQTest", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CQTest\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Source\\Developer\\CQTest\\Public\\TestGameInstance.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CQTest\\UHT\\CQTest.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "WmfMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WmfMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Source\\WmfMediaFactory\\Public\\WmfMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\WmfMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\WmfMediaFactory\\UHT\\WmfMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ImgMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Source\\ImgMediaFactory\\Public\\ImgMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\ImgMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ImgMediaFactory\\UHT\\ImgMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "AvfMediaFactory", + "ModuleType": "EngineEditor", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaFactory", + "IncludeBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source", + "OutputDirectory": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AvfMediaFactory\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Source\\AvfMediaFactory\\Public\\AvfMediaSettings.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Games\\UE_5.5\\Engine\\Plugins\\Media\\AvfMedia\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\AvfMediaFactory\\UHT\\AvfMediaFactory.gen", + "SaveExportedHeaders": false, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonLoadingScreen", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonLoadingScreen\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingProcessInterface.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingProcessTask.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Public\\LoadingScreenManager.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Source\\CommonLoadingScreen\\Private\\CommonLoadingScreenSettings.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonLoadingScreen\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonLoadingScreen\\UHT\\CommonLoadingScreen.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ModularGameplayActors", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModularGameplayActors\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularAIController.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularCharacter.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularGameState.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularGameMode.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPlayerController.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPawn.h", + "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Source\\ModularGameplayActors\\Public\\ModularPlayerState.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\ModularGameplayActors\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ModularGameplayActors\\UHT\\ModularGameplayActors.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonUser", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonUser\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\AsyncAction_CommonUserInitialize.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonSessionSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserTypes.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserBasicPresence.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Source\\CommonUser\\Public\\CommonUserSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [ + "COMMONUSER_OSSV1=1" + ], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonUser\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonUser\\UHT\\CommonUser.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "CommonGame", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonGame\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonLocalPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonGameInstance.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonUIExtensions.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\PrimaryGameLayout.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\GameUIManagerSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\GameUIPolicy.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonPlayerInputKey.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_PushContentToLayerForPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_ShowConfirmation.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Messaging\\CommonMessagingSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Messaging\\CommonGameDialog.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\CommonPlayerController.h", + "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Source\\Public\\Actions\\AsyncAction_CreateWidgetAsync.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\CommonGame\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\CommonGame\\UHT\\CommonGame.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "UIExtension", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UIExtension\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\Public\\UIExtensionSystem.h", + "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Source\\Public\\Widgets\\UIExtensionPointWidget.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\UIExtension\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\UIExtension\\UHT\\UIExtension.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameplayMessageRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayMessageRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\GameplayMessageTypes2.h", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\AsyncAction_ListenForGameplayMessage.h", + "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Source\\GameplayMessageRuntime\\Public\\GameFramework\\GameplayMessageSubsystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameplayMessageRouter\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameplayMessageRuntime\\UHT\\GameplayMessageRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameSubtitles", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameSubtitles\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\SubtitleDisplayOptions.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\SubtitleDisplaySubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\Players\\MediaSubtitlesPlayer.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Source\\Public\\Widgets\\SubtitleDisplay.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameSubtitles\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameSubtitles\\UHT\\GameSubtitles.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "GameSettings", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameSettings\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingAction.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingFilterState.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSetting.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingCollection.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingRegistry.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueDiscreteDynamic.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValue.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueDiscrete.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueScalar.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\GameSettingValueScalarDynamic.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingDetailView.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingListEntry.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingDetailExtension.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingScreen.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingListView.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingPanel.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\GameSettingVisualData.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\IGameSettingActionInterface.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\KeyAlreadyBoundWarning.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\GameSettingRotator.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Public\\Widgets\\Misc\\GameSettingPressAnyKey.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Private\\Widgets\\Responsive\\GameResponsivePanel.h", + "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Source\\Private\\Widgets\\Responsive\\GameResponsivePanelSlot.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameSettings\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\GameSettings\\UHT\\GameSettings.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "LyraGame", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Source\\LyraGame", + "IncludeBase": "E:\\Projects\\cross_platform\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LyraGame\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySourceInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilityTagRelationshipMapping.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySystemComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayAbilityTargetData_SingleTargetHit.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayEffectContext.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraAbilitySystemGlobals.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGameplayCueManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_InventoryItem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraTaggedActor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_PlayerTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Reset.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraAttributeSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Death.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraGameplayAbility_Jump.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraHealthSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Attributes\\LyraCombatSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Phases\\LyraGamePhaseAbility.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Phases\\LyraGamePhaseSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Executions\\LyraHealExecution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Executions\\LyraDamageExecution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraAssistInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Animation\\LyraAnimInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Audio\\LyraAudioMixEffectsSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraMode_ThirdPerson.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraUICameraManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Audio\\LyraAudioSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacterMovementComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraPenetrationAvoidanceFeeler.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraHealthComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacter.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraCameraMode.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraHeroComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawn.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraCharacterWithAbilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraControllerComponent_CharacterParts.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCharacterPartTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticDeveloperSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraCosmeticAnimationTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraPlatformEmulationSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraBotCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Development\\LyraDeveloperSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraPickupDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraEquipmentInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\AnimNotify_LyraContextEffects.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraGameplayAbility_FromEquipment.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Equipment\\LyraQuickBarComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsLibrary.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraDamagePopStyle.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraDamagePopStyleNiagara.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent_MeshText.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\NumberPops\\LyraNumberPopComponent_NiagaraText.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddAbilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddGameplayCuePath.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddInputBinding.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\LyraGlobalAbilitySystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddInputContextMapping.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_SplitscreenConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_AddWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\GameFeatureAction_WorldActionBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameFeatures\\LyraGameFeaturePolicy.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\AsyncAction_ExperienceReady.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraBotCreationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceActionSet.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraGameMode.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraUserFacingExperienceDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraExperienceManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraWorldSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\GameModes\\LyraGameState.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraHotfixManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraRuntimeOptions.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Hotfix\\LyraTextHotfixConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputModifiers.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraAimSensitivityData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraPlayerMappableKeyProfile.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Input\\LyraInputUserSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\IInteractionInstigator.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\IInteractableTarget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionOption.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionQuery.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\InteractionStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\LyraInteractionDurationMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Abilities\\GameplayAbilityTargetActor_Interact.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_GrantNearbyInteraction.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Abilities\\LyraGameplayAbility_Interact.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_WaitForInteractableTargets.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Interaction\\Tasks\\AbilityTask_WaitForInteractableTargets_SingleLineTrace.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_PickupIcon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_QuickBarIcon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_SetStats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\IPickupable.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\InventoryFragment_EquippableItem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryItemDefinition.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryItemInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\GameplayMessageProcessor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Inventory\\LyraInventoryManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraNotificationMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessageReplication.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Messages\\LyraVerbMessageHelpers.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceStatSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Performance\\LyraPerformanceStatTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Physics\\PhysicalMaterialWithTags.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraCheatManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraDebugCameraController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraLocalPlayer.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerBotController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerController.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Replays\\AsyncAction_QueryReplays.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerState.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerSpawningManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraGameSettingRegistry.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Replays\\LyraReplaySubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraSettingsShared.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingAction_SafeZoneEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingKeyboardInput.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_Language.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscreteDynamic_AudioOutputDevice.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_MobileFPSType.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_Resolution.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_PerfStat.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Screens\\LyraSafeZoneEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\CustomSettings\\LyraSettingValueDiscrete_OverallQuality.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Widgets\\LyraSettingsListEntrySetting_KeyboardInput.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\GameplayTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\Screens\\LyraBrightnessEditor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilityCost_ItemTagStack.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraAssetManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraDevelopmentStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameEngine.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameSession.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraph.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraphSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraReplicationGraphTypes.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraGameInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraSystemStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraSignificanceManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\AsyncAction_ObserveTeamColors.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamCheats.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamAgentInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamInfoBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamPrivateInfo.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamPublicInfo.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamCreationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamStatics.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Tests\\LyraGameplayRpcRegistrationComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraGameViewportClient.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraHUD.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraActivatableWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraHUDLayout.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraJoystickWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraTaggedWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraTouchRegion.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Basic\\MaterialProgressBar.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraBoundActionButton.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraListView.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraTabButtonBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\AbilitySystem\\Abilities\\LyraAbilitySimpleFailureMessage.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraWidgetFactory_Class.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraWidgetFactory.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Common\\LyraTabListWidgetBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraActionWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraConfirmationScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraButtonBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraLoadingScreenSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IActorIndicatorWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\ApplyFrontendPerfSettingsAction.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\LyraLobbyBackground.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Frontend\\LyraFrontendStateComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorDescriptor.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\LyraIndicatorManagerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorLayer.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\IndicatorSystem\\IndicatorLibrary.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\PerformanceStats\\LyraPerfStatContainerBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\PerformanceStats\\LyraPerfStatWidgetBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Subsystem\\LyraUIManagerSubsystem.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\LyraReticleWidgetBase.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Foundation\\LyraControllerDisconnectedScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\InventoryFragment_ReticleConfig.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\CircumferenceMarkerWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Camera\\LyraPlayerCameraManager.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraGameplayAbility_RangedWeapon.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraRangedWeaponInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraDamageLogDebuggerComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponDebugSettings.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponInstance.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponSpawner.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Weapons\\LyraWeaponStateComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawnData.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Character\\LyraPawnExtensionComponent.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Cosmetics\\LyraPawnComponent_CharacterParts.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Feedback\\ContextEffects\\LyraContextEffectsInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Player\\LyraPlayerStart.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Settings\\LyraSettingsLocal.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\System\\LyraActorUtilities.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\AsyncAction_ObserveTeam.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Teams\\LyraTeamDisplayAsset.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\Tests\\LyraTestControllerBootTest.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraSettingScreen.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\LyraSimulatedInputWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Subsystem\\LyraUIMessaging.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\LyraWeaponUserInterface.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\HitMarkerConfirmationWidget.h", + "E:\\Projects\\cross_platform\\Source\\LyraGame\\UI\\Weapons\\SCircumferenceMarkerWidget.h" + ], + "PublicDefines": [ + "SHIPPING_DRAW_DEBUG_ERROR=1", + "WITH_RPC_REGISTRY=0", + "WITH_HTTPSERVER_LISTENERS=0", + "WITH_GAMEPLAY_DEBUGGER_CORE=0", + "WITH_GAMEPLAY_DEBUGGER=0", + "WITH_GAMEPLAY_DEBUGGER_MENU=0", + "UE_WITH_IRIS=1" + ], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\LyraGame\\UHT\\LyraGame.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ShooterTestsRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ShooterTestsRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Source\\ShooterTestsRuntime\\Private\\ShooterTestsDevicePropertyTester.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterTests\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ShooterTestsRuntime\\UHT\\ShooterTestsRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "TopDownArenaRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TopDownArenaRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Public\\LyraCameraMode_TopDownArenaCamera.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaAttributeSet.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaMovementComponent.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Source\\TopDownArenaRuntime\\Private\\TopDownArenaPickupUIData.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\TopDownArena\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\TopDownArenaRuntime\\UHT\\TopDownArenaRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "ShooterCoreRuntime", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ShooterCoreRuntime\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Accolades\\LyraAccoladeDefinition.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistInputModifier.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Accolades\\LyraAccoladeHostWidget.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\LyraWorldCollectable.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\IAimAssistTargetInterface.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\AssistProcessor.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\ShooterCoreRuntimeSettings.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Messages\\ControlPointStatusMessage.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistTargetComponent.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\ElimChainProcessor.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\MessageProcessors\\ElimStreakProcessor.h", + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Public\\Input\\AimAssistTargetManagerComponent.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Source\\ShooterCoreRuntime\\Private\\TDM_PlayerSpawningManagmentComponent.h" + ], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\GameFeatures\\ShooterCore\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\ShooterCoreRuntime\\UHT\\ShooterCoreRuntime.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + }, + { + "Name": "PocketWorlds", + "ModuleType": "GameRuntime", + "OverrideModuleType": "None", + "BaseDirectory": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source", + "IncludeBase": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source", + "OutputDirectory": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PocketWorlds\\UHT", + "ClassesHeaders": [], + "PublicHeaders": [ + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketCapture.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevelInstance.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketCaptureSubsystem.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevel.h", + "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Source\\Public\\PocketLevelSystem.h" + ], + "InternalHeaders": [], + "PrivateHeaders": [], + "PublicDefines": [], + "GeneratedCPPFilenameBase": "E:\\Projects\\cross_platform\\Plugins\\PocketWorlds\\Intermediate\\Build\\Win64\\UnrealGame\\Inc\\PocketWorlds\\UHT\\PocketWorlds.gen", + "SaveExportedHeaders": true, + "UHTGeneratedCodeVersion": "None", + "VersePath": "", + "VerseScope": "PublicUser", + "HasVerse": false, + "VersePluginName": "" + } + ], + "UhtPlugins": [] +} \ No newline at end of file diff --git a/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtpath b/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtpath new file mode 100644 index 00000000..f49f5cfa --- /dev/null +++ b/Intermediate/Build/Win64/LyraGame/Shipping/LyraGame.uhtpath @@ -0,0 +1 @@ +E:\Games\UE_5.5\Engine\Binaries\DotNET\UnrealBuildTool\EpicGames.UHT.dll \ No newline at end of file diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.gen.cpp new file mode 100644 index 00000000..5ba8d67f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Commandlets/ContentValidationCommandlet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeContentValidationCommandlet() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCommandlet(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UContentValidationCommandlet(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UContentValidationCommandlet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UContentValidationCommandlet +void UContentValidationCommandlet::StaticRegisterNativesUContentValidationCommandlet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UContentValidationCommandlet); +UClass* Z_Construct_UClass_UContentValidationCommandlet_NoRegister() +{ + return UContentValidationCommandlet::StaticClass(); +} +struct Z_Construct_UClass_UContentValidationCommandlet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Commandlets/ContentValidationCommandlet.h" }, + { "ModuleRelativePath", "Commandlets/ContentValidationCommandlet.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UContentValidationCommandlet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommandlet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UContentValidationCommandlet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UContentValidationCommandlet_Statics::ClassParams = { + &UContentValidationCommandlet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UContentValidationCommandlet_Statics::Class_MetaDataParams), Z_Construct_UClass_UContentValidationCommandlet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UContentValidationCommandlet() +{ + if (!Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton, Z_Construct_UClass_UContentValidationCommandlet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UContentValidationCommandlet.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UContentValidationCommandlet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UContentValidationCommandlet); +UContentValidationCommandlet::~UContentValidationCommandlet() {} +// End Class UContentValidationCommandlet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UContentValidationCommandlet, UContentValidationCommandlet::StaticClass, TEXT("UContentValidationCommandlet"), &Z_Registration_Info_UClass_UContentValidationCommandlet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UContentValidationCommandlet), 3892784367U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_2650959484(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.generated.h new file mode 100644 index 00000000..37b47da0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/ContentValidationCommandlet.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Commandlets/ContentValidationCommandlet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_ContentValidationCommandlet_generated_h +#error "ContentValidationCommandlet.generated.h already included, missing '#pragma once' in ContentValidationCommandlet.h" +#endif +#define LYRAEDITOR_ContentValidationCommandlet_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_INCLASS \ +private: \ + static void StaticRegisterNativesUContentValidationCommandlet(); \ + friend struct Z_Construct_UClass_UContentValidationCommandlet_Statics; \ +public: \ + DECLARE_CLASS(UContentValidationCommandlet, UCommandlet, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UContentValidationCommandlet) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UContentValidationCommandlet(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UContentValidationCommandlet) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UContentValidationCommandlet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UContentValidationCommandlet); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UContentValidationCommandlet(UContentValidationCommandlet&&); \ + UContentValidationCommandlet(const UContentValidationCommandlet&); \ +public: \ + NO_API virtual ~UContentValidationCommandlet(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_INCLASS \ + FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h_15_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Commandlets_ContentValidationCommandlet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.gen.cpp new file mode 100644 index 00000000..78100753 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Validation/EditorValidator.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeEditorValidator() {} + +// Begin Cross Module References +DATAVALIDATION_API UClass* Z_Construct_UClass_UEditorValidatorBase(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UEditorValidator +void UEditorValidator::StaticRegisterNativesUEditorValidator() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator); +UClass* Z_Construct_UClass_UEditorValidator_NoRegister() +{ + return UEditorValidator::StaticClass(); +} +struct Z_Construct_UClass_UEditorValidator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Validation/EditorValidator.h" }, + { "ModuleRelativePath", "Validation/EditorValidator.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UEditorValidator_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEditorValidatorBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Statics::ClassParams = { + &UEditorValidator::StaticClass, + "Editor", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UEditorValidator() +{ + if (!Z_Registration_Info_UClass_UEditorValidator.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator.OuterSingleton, Z_Construct_UClass_UEditorValidator_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UEditorValidator.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UEditorValidator::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator); +UEditorValidator::~UEditorValidator() {} +// End Class UEditorValidator + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UEditorValidator, UEditorValidator::StaticClass, TEXT("UEditorValidator"), &Z_Registration_Info_UClass_UEditorValidator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator), 3444806564U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_2253846137(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.generated.h new file mode 100644 index 00000000..055a669c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Validation/EditorValidator.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_EditorValidator_generated_h +#error "EditorValidator.generated.h already included, missing '#pragma once' in EditorValidator.h" +#endif +#define LYRAEDITOR_EditorValidator_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUEditorValidator(); \ + friend struct Z_Construct_UClass_UEditorValidator_Statics; \ +public: \ + DECLARE_CLASS(UEditorValidator, UEditorValidatorBase, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UEditorValidator) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UEditorValidator(UEditorValidator&&); \ + UEditorValidator(const UEditorValidator&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator) \ + NO_API virtual ~UEditorValidator(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_80_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h_83_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.gen.cpp new file mode 100644 index 00000000..ed521842 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Validation/EditorValidator_Blueprints.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeEditorValidator_Blueprints() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Blueprints(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Blueprints_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UEditorValidator_Blueprints +void UEditorValidator_Blueprints::StaticRegisterNativesUEditorValidator_Blueprints() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_Blueprints); +UClass* Z_Construct_UClass_UEditorValidator_Blueprints_NoRegister() +{ + return UEditorValidator_Blueprints::StaticClass(); +} +struct Z_Construct_UClass_UEditorValidator_Blueprints_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Validation/EditorValidator_Blueprints.h" }, + { "ModuleRelativePath", "Validation/EditorValidator_Blueprints.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UEditorValidator_Blueprints_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEditorValidator, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Blueprints_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Blueprints_Statics::ClassParams = { + &UEditorValidator_Blueprints::StaticClass, + "Editor", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Blueprints_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Blueprints_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UEditorValidator_Blueprints() +{ + if (!Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton, Z_Construct_UClass_UEditorValidator_Blueprints_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UEditorValidator_Blueprints.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UEditorValidator_Blueprints::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_Blueprints); +UEditorValidator_Blueprints::~UEditorValidator_Blueprints() {} +// End Class UEditorValidator_Blueprints + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UEditorValidator_Blueprints, UEditorValidator_Blueprints::StaticClass, TEXT("UEditorValidator_Blueprints"), &Z_Registration_Info_UClass_UEditorValidator_Blueprints, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_Blueprints), 2506970041U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_685620427(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.generated.h new file mode 100644 index 00000000..7e8d2132 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Blueprints.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Validation/EditorValidator_Blueprints.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_EditorValidator_Blueprints_generated_h +#error "EditorValidator_Blueprints.generated.h already included, missing '#pragma once' in EditorValidator_Blueprints.h" +#endif +#define LYRAEDITOR_EditorValidator_Blueprints_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUEditorValidator_Blueprints(); \ + friend struct Z_Construct_UClass_UEditorValidator_Blueprints_Statics; \ +public: \ + DECLARE_CLASS(UEditorValidator_Blueprints, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UEditorValidator_Blueprints) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UEditorValidator_Blueprints(UEditorValidator_Blueprints&&); \ + UEditorValidator_Blueprints(const UEditorValidator_Blueprints&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_Blueprints); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_Blueprints); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_Blueprints) \ + NO_API virtual ~UEditorValidator_Blueprints(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Blueprints_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.gen.cpp new file mode 100644 index 00000000..ca76f2cc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Validation/EditorValidator_Load.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeEditorValidator_Load() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Load(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_Load_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UEditorValidator_Load +void UEditorValidator_Load::StaticRegisterNativesUEditorValidator_Load() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_Load); +UClass* Z_Construct_UClass_UEditorValidator_Load_NoRegister() +{ + return UEditorValidator_Load::StaticClass(); +} +struct Z_Construct_UClass_UEditorValidator_Load_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Validation/EditorValidator_Load.h" }, + { "ModuleRelativePath", "Validation/EditorValidator_Load.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UEditorValidator_Load_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEditorValidator, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Load_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_Load_Statics::ClassParams = { + &UEditorValidator_Load::StaticClass, + "Editor", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_Load_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_Load_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UEditorValidator_Load() +{ + if (!Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton, Z_Construct_UClass_UEditorValidator_Load_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UEditorValidator_Load.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UEditorValidator_Load::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_Load); +UEditorValidator_Load::~UEditorValidator_Load() {} +// End Class UEditorValidator_Load + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UEditorValidator_Load, UEditorValidator_Load::StaticClass, TEXT("UEditorValidator_Load"), &Z_Registration_Info_UClass_UEditorValidator_Load, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_Load), 2258776956U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_2776871130(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.generated.h new file mode 100644 index 00000000..28d9fbed --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_Load.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Validation/EditorValidator_Load.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_EditorValidator_Load_generated_h +#error "EditorValidator_Load.generated.h already included, missing '#pragma once' in EditorValidator_Load.h" +#endif +#define LYRAEDITOR_EditorValidator_Load_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUEditorValidator_Load(); \ + friend struct Z_Construct_UClass_UEditorValidator_Load_Statics; \ +public: \ + DECLARE_CLASS(UEditorValidator_Load, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UEditorValidator_Load) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UEditorValidator_Load(UEditorValidator_Load&&); \ + UEditorValidator_Load(const UEditorValidator_Load&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_Load); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_Load); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_Load) \ + NO_API virtual ~UEditorValidator_Load(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_Load_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.gen.cpp new file mode 100644 index 00000000..0e524270 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Validation/EditorValidator_MaterialFunctions.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeEditorValidator_MaterialFunctions() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UEditorValidator_MaterialFunctions +void UEditorValidator_MaterialFunctions::StaticRegisterNativesUEditorValidator_MaterialFunctions() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_MaterialFunctions); +UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions_NoRegister() +{ + return UEditorValidator_MaterialFunctions::StaticClass(); +} +struct Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Validation/EditorValidator_MaterialFunctions.h" }, + { "ModuleRelativePath", "Validation/EditorValidator_MaterialFunctions.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEditorValidator, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::ClassParams = { + &UEditorValidator_MaterialFunctions::StaticClass, + "Editor", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UEditorValidator_MaterialFunctions() +{ + if (!Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton, Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UEditorValidator_MaterialFunctions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_MaterialFunctions); +UEditorValidator_MaterialFunctions::~UEditorValidator_MaterialFunctions() {} +// End Class UEditorValidator_MaterialFunctions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UEditorValidator_MaterialFunctions, UEditorValidator_MaterialFunctions::StaticClass, TEXT("UEditorValidator_MaterialFunctions"), &Z_Registration_Info_UClass_UEditorValidator_MaterialFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_MaterialFunctions), 674000733U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_107240475(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.generated.h new file mode 100644 index 00000000..c26fa3a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_MaterialFunctions.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Validation/EditorValidator_MaterialFunctions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_EditorValidator_MaterialFunctions_generated_h +#error "EditorValidator_MaterialFunctions.generated.h already included, missing '#pragma once' in EditorValidator_MaterialFunctions.h" +#endif +#define LYRAEDITOR_EditorValidator_MaterialFunctions_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUEditorValidator_MaterialFunctions(); \ + friend struct Z_Construct_UClass_UEditorValidator_MaterialFunctions_Statics; \ +public: \ + DECLARE_CLASS(UEditorValidator_MaterialFunctions, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UEditorValidator_MaterialFunctions) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UEditorValidator_MaterialFunctions(UEditorValidator_MaterialFunctions&&); \ + UEditorValidator_MaterialFunctions(const UEditorValidator_MaterialFunctions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_MaterialFunctions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_MaterialFunctions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_MaterialFunctions) \ + NO_API virtual ~UEditorValidator_MaterialFunctions(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_MaterialFunctions_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.gen.cpp new file mode 100644 index 00000000..92a75513 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Validation/EditorValidator_SourceControl.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeEditorValidator_SourceControl() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_SourceControl(); +LYRAEDITOR_API UClass* Z_Construct_UClass_UEditorValidator_SourceControl_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class UEditorValidator_SourceControl +void UEditorValidator_SourceControl::StaticRegisterNativesUEditorValidator_SourceControl() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UEditorValidator_SourceControl); +UClass* Z_Construct_UClass_UEditorValidator_SourceControl_NoRegister() +{ + return UEditorValidator_SourceControl::StaticClass(); +} +struct Z_Construct_UClass_UEditorValidator_SourceControl_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Validation/EditorValidator_SourceControl.h" }, + { "ModuleRelativePath", "Validation/EditorValidator_SourceControl.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UEditorValidator_SourceControl_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEditorValidator, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_SourceControl_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UEditorValidator_SourceControl_Statics::ClassParams = { + &UEditorValidator_SourceControl::StaticClass, + "Editor", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UEditorValidator_SourceControl_Statics::Class_MetaDataParams), Z_Construct_UClass_UEditorValidator_SourceControl_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UEditorValidator_SourceControl() +{ + if (!Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton, Z_Construct_UClass_UEditorValidator_SourceControl_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UEditorValidator_SourceControl.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return UEditorValidator_SourceControl::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UEditorValidator_SourceControl); +UEditorValidator_SourceControl::~UEditorValidator_SourceControl() {} +// End Class UEditorValidator_SourceControl + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UEditorValidator_SourceControl, UEditorValidator_SourceControl::StaticClass, TEXT("UEditorValidator_SourceControl"), &Z_Registration_Info_UClass_UEditorValidator_SourceControl, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UEditorValidator_SourceControl), 2415754281U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_1871705097(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.generated.h new file mode 100644 index 00000000..f23de95f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/EditorValidator_SourceControl.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Validation/EditorValidator_SourceControl.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_EditorValidator_SourceControl_generated_h +#error "EditorValidator_SourceControl.generated.h already included, missing '#pragma once' in EditorValidator_SourceControl.h" +#endif +#define LYRAEDITOR_EditorValidator_SourceControl_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUEditorValidator_SourceControl(); \ + friend struct Z_Construct_UClass_UEditorValidator_SourceControl_Statics; \ +public: \ + DECLARE_CLASS(UEditorValidator_SourceControl, UEditorValidator, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(UEditorValidator_SourceControl) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UEditorValidator_SourceControl(UEditorValidator_SourceControl&&); \ + UEditorValidator_SourceControl(const UEditorValidator_SourceControl&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UEditorValidator_SourceControl); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UEditorValidator_SourceControl); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UEditorValidator_SourceControl) \ + NO_API virtual ~UEditorValidator_SourceControl(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Validation_EditorValidator_SourceControl_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.gen.cpp new file mode 100644 index 00000000..6f7b6ff8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/Private/LyraContextEffectsLibraryFactory.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsLibraryFactory() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory(); +LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory_NoRegister(); +UNREALED_API UClass* Z_Construct_UClass_UFactory(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class ULyraContextEffectsLibraryFactory +void ULyraContextEffectsLibraryFactory::StaticRegisterNativesULyraContextEffectsLibraryFactory() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsLibraryFactory); +UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory_NoRegister() +{ + return ULyraContextEffectsLibraryFactory::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Object" }, + { "IncludePath", "LyraContextEffectsLibraryFactory.h" }, + { "ModuleRelativePath", "Private/LyraContextEffectsLibraryFactory.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UFactory, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::ClassParams = { + &ULyraContextEffectsLibraryFactory::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsLibraryFactory() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return ULyraContextEffectsLibraryFactory::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsLibraryFactory); +ULyraContextEffectsLibraryFactory::~ULyraContextEffectsLibraryFactory() {} +// End Class ULyraContextEffectsLibraryFactory + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectsLibraryFactory, ULyraContextEffectsLibraryFactory::StaticClass, TEXT("ULyraContextEffectsLibraryFactory"), &Z_Registration_Info_UClass_ULyraContextEffectsLibraryFactory, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsLibraryFactory), 1260297978U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_3943478111(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.generated.h new file mode 100644 index 00000000..3fc0216a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraContextEffectsLibraryFactory.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraContextEffectsLibraryFactory.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_LyraContextEffectsLibraryFactory_generated_h +#error "LyraContextEffectsLibraryFactory.generated.h already included, missing '#pragma once' in LyraContextEffectsLibraryFactory.h" +#endif +#define LYRAEDITOR_LyraContextEffectsLibraryFactory_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_INCLASS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsLibraryFactory(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsLibraryFactory_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsLibraryFactory, UFactory, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraEditor"), LYRAEDITOR_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsLibraryFactory) + + +#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAEDITOR_API ULyraContextEffectsLibraryFactory(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsLibraryFactory) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAEDITOR_API, ULyraContextEffectsLibraryFactory); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsLibraryFactory); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsLibraryFactory(ULyraContextEffectsLibraryFactory&&); \ + ULyraContextEffectsLibraryFactory(const ULyraContextEffectsLibraryFactory&); \ +public: \ + LYRAEDITOR_API virtual ~ULyraContextEffectsLibraryFactory(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_INCLASS \ + FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h_16_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_Private_LyraContextEffectsLibraryFactory_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditor.init.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditor.init.gen.cpp new file mode 100644 index 00000000..540d1435 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditor.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEditor_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LyraEditor; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LyraEditor() + { + if (!Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/LyraEditor", + nullptr, + 0, + PKG_CompiledIn | 0x00000040, + 0x6DD9A7FA, + 0x3A149F16, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_LyraEditor.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LyraEditor(Z_Construct_UPackage__Script_LyraEditor, TEXT("/Script/LyraEditor"), Z_Registration_Info_UPackage__Script_LyraEditor, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x6DD9A7FA, 0x3A149F16)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorClasses.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.gen.cpp new file mode 100644 index 00000000..24d3dae0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraEditor/LyraEditorEngine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEditorEngine() {} + +// Begin Cross Module References +LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraEditorEngine(); +LYRAEDITOR_API UClass* Z_Construct_UClass_ULyraEditorEngine_NoRegister(); +UNREALED_API UClass* Z_Construct_UClass_UUnrealEdEngine(); +UPackage* Z_Construct_UPackage__Script_LyraEditor(); +// End Cross Module References + +// Begin Class ULyraEditorEngine +void ULyraEditorEngine::StaticRegisterNativesULyraEditorEngine() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEditorEngine); +UClass* Z_Construct_UClass_ULyraEditorEngine_NoRegister() +{ + return ULyraEditorEngine::StaticClass(); +} +struct Z_Construct_UClass_ULyraEditorEngine_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "LyraEditorEngine.h" }, + { "ModuleRelativePath", "LyraEditorEngine.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraEditorEngine_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UUnrealEdEngine, + (UObject* (*)())Z_Construct_UPackage__Script_LyraEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEditorEngine_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEditorEngine_Statics::ClassParams = { + &ULyraEditorEngine::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008000AEu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEditorEngine_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEditorEngine_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEditorEngine() +{ + if (!Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton, Z_Construct_UClass_ULyraEditorEngine_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEditorEngine.OuterSingleton; +} +template<> LYRAEDITOR_API UClass* StaticClass() +{ + return ULyraEditorEngine::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEditorEngine); +ULyraEditorEngine::~ULyraEditorEngine() {} +// End Class ULyraEditorEngine + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEditorEngine, ULyraEditorEngine::StaticClass, TEXT("ULyraEditorEngine"), &Z_Registration_Info_UClass_ULyraEditorEngine, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEditorEngine), 2981122782U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_2990093127(TEXT("/Script/LyraEditor"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.generated.h new file mode 100644 index 00000000..b93f0e00 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/LyraEditorEngine.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraEditorEngine.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAEDITOR_LyraEditorEngine_generated_h +#error "LyraEditorEngine.generated.h already included, missing '#pragma once' in LyraEditorEngine.h" +#endif +#define LYRAEDITOR_LyraEditorEngine_generated_h + +#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEditorEngine(); \ + friend struct Z_Construct_UClass_ULyraEditorEngine_Statics; \ +public: \ + DECLARE_CLASS(ULyraEditorEngine, UUnrealEdEngine, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraEditor"), NO_API) \ + DECLARE_SERIALIZER(ULyraEditorEngine) + + +#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEditorEngine(ULyraEditorEngine&&); \ + ULyraEditorEngine(const ULyraEditorEngine&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEditorEngine); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEditorEngine); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEditorEngine) \ + NO_API virtual ~ULyraEditorEngine(); + + +#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEDITOR_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraEditor_LyraEditorEngine_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/Timestamp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/Timestamp new file mode 100644 index 00000000..a3205fee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraEditor/UHT/Timestamp @@ -0,0 +1,8 @@ +E:\Projects\cross_platform\Source\LyraEditor\LyraEditorEngine.h +E:\Projects\cross_platform\Source\LyraEditor\Commandlets\ContentValidationCommandlet.h +E:\Projects\cross_platform\Source\LyraEditor\Private\LyraContextEffectsLibraryFactory.h +E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator.h +E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Load.h +E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_SourceControl.h +E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Blueprints.h +E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_MaterialFunctions.h diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp new file mode 100644 index 00000000..ce5af538 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp @@ -0,0 +1,166 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_GrantNearbyInteraction() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors +struct Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics +{ + struct AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms + { + UGameplayAbility* OwningAbility; + float InteractionScanRange; + float InteractionScanRate; + UAbilityTask_GrantNearbyInteraction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "TRUE" }, + { "Category", "Ability|Tasks" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements */" }, +#endif + { "DefaultToSelf", "OwningAbility" }, + { "HidePin", "OwningAbility" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, nullptr, "GrantAbilitiesForNearbyInteractors", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate); + P_FINISH; + P_NATIVE_BEGIN; + *(UAbilityTask_GrantNearbyInteraction**)Z_Param__Result=UAbilityTask_GrantNearbyInteraction::GrantAbilitiesForNearbyInteractors(Z_Param_OwningAbility,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate); + P_NATIVE_END; +} +// End Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors + +// Begin Class UAbilityTask_GrantNearbyInteraction +void UAbilityTask_GrantNearbyInteraction::StaticRegisterNativesUAbilityTask_GrantNearbyInteraction() +{ + UClass* Class = UAbilityTask_GrantNearbyInteraction::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GrantAbilitiesForNearbyInteractors", &UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_GrantNearbyInteraction); +UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister() +{ + return UAbilityTask_GrantNearbyInteraction::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors, "GrantAbilitiesForNearbyInteractors" }, // 3457003903 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams = { + &UAbilityTask_GrantNearbyInteraction::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton, Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_GrantNearbyInteraction::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_GrantNearbyInteraction); +UAbilityTask_GrantNearbyInteraction::~UAbilityTask_GrantNearbyInteraction() {} +// End Class UAbilityTask_GrantNearbyInteraction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, UAbilityTask_GrantNearbyInteraction::StaticClass, TEXT("UAbilityTask_GrantNearbyInteraction"), &Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_GrantNearbyInteraction), 3415391662U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_2736015225(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h new file mode 100644 index 00000000..4d3224b7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAbilityTask_GrantNearbyInteraction; +class UGameplayAbility; +#ifdef LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h +#error "AbilityTask_GrantNearbyInteraction.generated.h already included, missing '#pragma once' in AbilityTask_GrantNearbyInteraction.h" +#endif +#define LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \ + DECLARE_FUNCTION(execGrantAbilitiesForNearbyInteractors); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_GrantNearbyInteraction(); \ + friend struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_GrantNearbyInteraction, UAbilityTask, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_GrantNearbyInteraction) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_GrantNearbyInteraction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_GrantNearbyInteraction) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_GrantNearbyInteraction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_GrantNearbyInteraction); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_GrantNearbyInteraction(UAbilityTask_GrantNearbyInteraction&&); \ + UAbilityTask_GrantNearbyInteraction(const UAbilityTask_GrantNearbyInteraction&); \ +public: \ + NO_API virtual ~UAbilityTask_GrantNearbyInteraction(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp new file mode 100644 index 00000000..9ca802c1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp @@ -0,0 +1,153 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" +#include "LyraGame/Interaction/InteractionOption.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FInteractableObjectsChangedEvent +struct Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms + { + TArray InteractableOptions; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableOptions_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractableOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InteractableOptions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner = { "InteractableOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions = { "InteractableOptions", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms, InteractableOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableOptions_MetaData), NewProp_InteractableOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "InteractableObjectsChangedEvent__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray const& InteractableOptions) +{ + struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms + { + TArray InteractableOptions; + }; + _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms Parms; + Parms.InteractableOptions=InteractableOptions; + InteractableObjectsChangedEvent.ProcessMulticastDelegate(&Parms); +} +// End Delegate FInteractableObjectsChangedEvent + +// Begin Class UAbilityTask_WaitForInteractableTargets +void UAbilityTask_WaitForInteractableTargets::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets); +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister() +{ + return UAbilityTask_WaitForInteractableTargets::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableObjectsChanged_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_InteractableObjectsChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged = { "InteractableObjectsChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets, InteractableObjectsChanged), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableObjectsChanged_MetaData), NewProp_InteractableObjectsChanged_MetaData) }; // 1804386273 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams = { + &UAbilityTask_WaitForInteractableTargets::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers), + 0, + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_WaitForInteractableTargets::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets); +UAbilityTask_WaitForInteractableTargets::~UAbilityTask_WaitForInteractableTargets() {} +// End Class UAbilityTask_WaitForInteractableTargets + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets, UAbilityTask_WaitForInteractableTargets::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets), 3643238578U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_444856477(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h new file mode 100644 index 00000000..dd9343ae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FInteractionOption; +#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h +#error "AbilityTask_WaitForInteractableTargets.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets.h" +#endif +#define LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_19_DELEGATE \ +LYRAGAME_API void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray const& InteractableOptions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets(); \ + friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets, UAbilityTask, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_WaitForInteractableTargets(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_WaitForInteractableTargets(UAbilityTask_WaitForInteractableTargets&&); \ + UAbilityTask_WaitForInteractableTargets(const UAbilityTask_WaitForInteractableTargets&); \ +public: \ + NO_API virtual ~UAbilityTask_WaitForInteractableTargets(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp new file mode 100644 index 00000000..e1020b6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp @@ -0,0 +1,216 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#include "GameplayAbilities/Public/Abilities/GameplayAbilityTargetTypes.h" +#include "LyraGame/Interaction/InteractionQuery.h" +#include "Runtime/Engine/Classes/Engine/CollisionProfile.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets_SingleLineTrace() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FCollisionProfileName(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace +struct Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics +{ + struct AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms + { + UGameplayAbility* OwningAbility; + FInteractionQuery InteractionQuery; + FCollisionProfileName TraceProfile; + FGameplayAbilityTargetingLocationInfo StartLocation; + float InteractionScanRange; + float InteractionScanRate; + bool bShowDebug; + UAbilityTask_WaitForInteractableTargets_SingleLineTrace* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "TRUE" }, + { "Category", "Ability|Tasks" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wait until we trace new set of interactables. This task automatically loops. */" }, +#endif + { "CPP_Default_bShowDebug", "false" }, + { "CPP_Default_InteractionScanRange", "100.000000" }, + { "CPP_Default_InteractionScanRate", "0.100000" }, + { "DefaultToSelf", "OwningAbility" }, + { "HidePin", "OwningAbility" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wait until we trace new set of interactables. This task automatically loops." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility; + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery; + static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProfile; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static void NewProp_bShowDebug_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowDebug; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(0, nullptr) }; // 2707672158 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile = { "TraceProfile", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, TraceProfile), Z_Construct_UScriptStruct_FCollisionProfileName, METADATA_PARAMS(0, nullptr) }; // 3816324900 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(0, nullptr) }; // 1311887580 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit(void* Obj) +{ + ((AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms*)Obj)->bShowDebug = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug = { "bShowDebug", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, nullptr, "WaitForInteractableTargets_SingleLineTrace", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility); + P_GET_STRUCT(FInteractionQuery,Z_Param_InteractionQuery); + P_GET_STRUCT(FCollisionProfileName,Z_Param_TraceProfile); + P_GET_STRUCT(FGameplayAbilityTargetingLocationInfo,Z_Param_StartLocation); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate); + P_GET_UBOOL(Z_Param_bShowDebug); + P_FINISH; + P_NATIVE_BEGIN; + *(UAbilityTask_WaitForInteractableTargets_SingleLineTrace**)Z_Param__Result=UAbilityTask_WaitForInteractableTargets_SingleLineTrace::WaitForInteractableTargets_SingleLineTrace(Z_Param_OwningAbility,Z_Param_InteractionQuery,Z_Param_TraceProfile,Z_Param_StartLocation,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate,Z_Param_bShowDebug); + P_NATIVE_END; +} +// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace + +// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace +void UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace() +{ + UClass* Class = UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "WaitForInteractableTargets_SingleLineTrace", &UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister() +{ + return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionQuery_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartLocation_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace, "WaitForInteractableTargets_SingleLineTrace" }, // 509663215 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionQuery_MetaData), NewProp_InteractionQuery_MetaData) }; // 2707672158 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartLocation_MetaData), NewProp_StartLocation_MetaData) }; // 1311887580 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams = { + &UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); +UAbilityTask_WaitForInteractableTargets_SingleLineTrace::~UAbilityTask_WaitForInteractableTargets_SingleLineTrace() {} +// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets_SingleLineTrace"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets_SingleLineTrace), 2541355024U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_1827922283(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h new file mode 100644 index 00000000..e6a46e1b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAbilityTask_WaitForInteractableTargets_SingleLineTrace; +class UGameplayAbility; +struct FCollisionProfileName; +struct FGameplayAbilityTargetingLocationInfo; +struct FInteractionQuery; +#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h +#error "AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#endif +#define LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \ + DECLARE_FUNCTION(execWaitForInteractableTargets_SingleLineTrace); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace(); \ + friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets_SingleLineTrace) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_WaitForInteractableTargets_SingleLineTrace(UAbilityTask_WaitForInteractableTargets_SingleLineTrace&&); \ + UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const UAbilityTask_WaitForInteractableTargets_SingleLineTrace&); \ +public: \ + NO_API virtual ~UAbilityTask_WaitForInteractableTargets_SingleLineTrace(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp new file mode 100644 index 00000000..b3110b57 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp @@ -0,0 +1,767 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAnimNotify_LyraContextEffects() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UAnimNotify(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_ECollisionChannel(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects(); +LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings(); +PHYSICSCORE_API UEnum* Z_Construct_UEnum_PhysicsCore_EPhysicalSurface(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraContextEffectAnimNotifyVFXSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyVFXSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyVFXSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyVFXSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Scale_MetaData[] = { + { "Category", "FX" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Scale; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale = { "Scale", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyVFXSettings, Scale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Scale_MetaData), NewProp_Scale_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyVFXSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyVFXSettings), + alignof(FLyraContextEffectAnimNotifyVFXSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyVFXSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyAudioSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyAudioSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyAudioSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyAudioSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VolumeMultiplier_MetaData[] = { + { "Category", "Sound" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Volume Multiplier\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Volume Multiplier" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PitchMultiplier_MetaData[] = { + { "Category", "Sound" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Pitch Multiplier\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pitch Multiplier" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_VolumeMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PitchMultiplier; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier = { "VolumeMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, VolumeMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VolumeMultiplier_MetaData), NewProp_VolumeMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier = { "PitchMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, PitchMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PitchMultiplier_MetaData), NewProp_PitchMultiplier_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyAudioSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyAudioSettings), + alignof(FLyraContextEffectAnimNotifyAudioSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyAudioSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyTraceSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyTraceSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyTraceSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyTraceSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceChannel_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Trace Channel\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Trace Channel" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EndTraceLocationOffset_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Vector offset from Effect Location\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Vector offset from Effect Location" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIgnoreActor_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ignore this Actor when getting trace result\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ignore this Actor when getting trace result" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_TraceChannel; + static const UECodeGen_Private::FStructPropertyParams NewProp_EndTraceLocationOffset; + static void NewProp_bIgnoreActor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIgnoreActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel = { "TraceChannel", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, TraceChannel), Z_Construct_UEnum_Engine_ECollisionChannel, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceChannel_MetaData), NewProp_TraceChannel_MetaData) }; // 756624936 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset = { "EndTraceLocationOffset", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, EndTraceLocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EndTraceLocationOffset_MetaData), NewProp_EndTraceLocationOffset_MetaData) }; +void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit(void* Obj) +{ + ((FLyraContextEffectAnimNotifyTraceSettings*)Obj)->bIgnoreActor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor = { "bIgnoreActor", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyTraceSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIgnoreActor_MetaData), NewProp_bIgnoreActor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyTraceSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyTraceSettings), + alignof(FLyraContextEffectAnimNotifyTraceSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyTraceSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyPreviewSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewPhysicalSurfaceAsContext_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If true, will attempt to match selected Surface Type to Context Tag via Project Settings\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, will attempt to match selected Surface Type to Context Tag via Project Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewPhysicalSurface_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Surface Type\n" }, +#endif + { "EditCondition", "bPreviewPhysicalSurfaceAsContext" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Surface Type" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContextEffectsLibrary_MetaData[] = { + { "AllowedClasses", "/Script/LyraGame.LyraContextEffectsLibrary" }, + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Preview Library\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview Library" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContexts_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Preview Context\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview Context" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewPhysicalSurfaceAsContext; + static const UECodeGen_Private::FBytePropertyParams NewProp_PreviewPhysicalSurface; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContextEffectsLibrary; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContexts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj) +{ + ((FLyraContextEffectAnimNotifyPreviewSettings*)Obj)->bPreviewPhysicalSurfaceAsContext = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext = { "bPreviewPhysicalSurfaceAsContext", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyPreviewSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewPhysicalSurfaceAsContext_MetaData), NewProp_bPreviewPhysicalSurfaceAsContext_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface = { "PreviewPhysicalSurface", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewPhysicalSurface), Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewPhysicalSurface_MetaData), NewProp_PreviewPhysicalSurface_MetaData) }; // 161619406 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary = { "PreviewContextEffectsLibrary", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContextEffectsLibrary), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContextEffectsLibrary_MetaData), NewProp_PreviewContextEffectsLibrary_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts = { "PreviewContexts", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContexts_MetaData), NewProp_PreviewContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyPreviewSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyPreviewSettings), + alignof(FLyraContextEffectAnimNotifyPreviewSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings + +// Begin Class UAnimNotify_LyraContextEffects Function SetParameters +#if WITH_EDITOR +struct Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics +{ + struct AnimNotify_LyraContextEffects_eventSetParameters_Parms + { + FGameplayTag EffectIn; + FVector LocationOffsetIn; + FRotator RotationOffsetIn; + FLyraContextEffectAnimNotifyVFXSettings VFXPropertiesIn; + FLyraContextEffectAnimNotifyAudioSettings AudioPropertiesIn; + bool bAttachedIn; + FName SocketNameIn; + bool bPerformTraceIn; + FLyraContextEffectAnimNotifyTraceSettings TracePropertiesIn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffsetIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffsetIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXPropertiesIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_AudioPropertiesIn; + static void NewProp_bAttachedIn_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttachedIn; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketNameIn; + static void NewProp_bPerformTraceIn_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTraceIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_TracePropertiesIn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn = { "EffectIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, EffectIn), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn = { "LocationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, LocationOffsetIn), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn = { "RotationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, RotationOffsetIn), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn = { "VFXPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, VFXPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(0, nullptr) }; // 817972917 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn = { "AudioPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, AudioPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(0, nullptr) }; // 2521679084 +void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit(void* Obj) +{ + ((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bAttachedIn = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn = { "bAttachedIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn = { "SocketNameIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, SocketNameIn), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit(void* Obj) +{ + ((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bPerformTraceIn = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn = { "bPerformTraceIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn = { "TracePropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, TracePropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(0, nullptr) }; // 2936355306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAnimNotify_LyraContextEffects, nullptr, "SetParameters", nullptr, nullptr, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x64820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams); + } + return ReturnFunction; +} +#endif // WITH_EDITOR +#if WITH_EDITOR +DEFINE_FUNCTION(UAnimNotify_LyraContextEffects::execSetParameters) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_EffectIn); + P_GET_STRUCT(FVector,Z_Param_LocationOffsetIn); + P_GET_STRUCT(FRotator,Z_Param_RotationOffsetIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyVFXSettings,Z_Param_VFXPropertiesIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyAudioSettings,Z_Param_AudioPropertiesIn); + P_GET_UBOOL(Z_Param_bAttachedIn); + P_GET_PROPERTY(FNameProperty,Z_Param_SocketNameIn); + P_GET_UBOOL(Z_Param_bPerformTraceIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyTraceSettings,Z_Param_TracePropertiesIn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetParameters(Z_Param_EffectIn,Z_Param_LocationOffsetIn,Z_Param_RotationOffsetIn,Z_Param_VFXPropertiesIn,Z_Param_AudioPropertiesIn,Z_Param_bAttachedIn,Z_Param_SocketNameIn,Z_Param_bPerformTraceIn,Z_Param_TracePropertiesIn); + P_NATIVE_END; +} +#endif // WITH_EDITOR +// End Class UAnimNotify_LyraContextEffects Function SetParameters + +// Begin Class UAnimNotify_LyraContextEffects +void UAnimNotify_LyraContextEffects::StaticRegisterNativesUAnimNotify_LyraContextEffects() +{ +#if WITH_EDITOR + UClass* Class = UAnimNotify_LyraContextEffects::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetParameters", &UAnimNotify_LyraContextEffects::execSetParameters }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +#endif // WITH_EDITOR +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAnimNotify_LyraContextEffects); +UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister() +{ + return UAnimNotify_LyraContextEffects::StaticClass(); +} +struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "Play Context Effects" }, + { "HideCategories", "Object Object" }, + { "IncludePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effect_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Effect to Play\n" }, +#endif + { "DisplayName", "Effect" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Effect to Play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Location offset from the socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Location offset from the socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation offset from socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation offset from socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VFXProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAttached_MetaData[] = { + { "Category", "AttachmentProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should attach to the bone/socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should attach to the bone/socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SocketName_MetaData[] = { + { "Category", "AttachmentProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// SocketName to attach to\n" }, +#endif + { "EditCondition", "bAttached" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SocketName to attach to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPerformTrace_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Will perform a trace, required for SurfaceType to Context Conversion\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Will perform a trace, required for SurfaceType to Context Conversion" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "EditCondition", "bPerformTrace" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewInEditor_MetaData[] = { + { "Category", "PreviewProperties" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewProperties_MetaData[] = { + { "Category", "PreviewProperties" }, + { "EditCondition", "bPreviewInEditor" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXProperties; + static const UECodeGen_Private::FStructPropertyParams NewProp_AudioProperties; + static void NewProp_bAttached_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttached; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static void NewProp_bPerformTrace_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTrace; + static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProperties; +#if WITH_EDITORONLY_DATA + static void NewProp_bPreviewInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewInEditor; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewProperties; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); +#if WITH_EDITOR + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters, "SetParameters" }, // 1208848875 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); +#endif // WITH_EDITOR + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effect_MetaData), NewProp_Effect_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties = { "VFXProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, VFXProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VFXProperties_MetaData), NewProp_VFXProperties_MetaData) }; // 817972917 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties = { "AudioProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, AudioProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioProperties_MetaData), NewProp_AudioProperties_MetaData) }; // 2521679084 +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bAttached = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached = { "bAttached", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAttached_MetaData), NewProp_bAttached_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, SocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SocketName_MetaData), NewProp_SocketName_MetaData) }; +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bPerformTrace = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace = { "bPerformTrace", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPerformTrace_MetaData), NewProp_bPerformTrace_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties = { "TraceProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, TraceProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceProperties_MetaData), NewProp_TraceProperties_MetaData) }; // 2936355306 +#if WITH_EDITORONLY_DATA +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bPreviewInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor = { "bPreviewInEditor", nullptr, (EPropertyFlags)0x0010000800004011, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewInEditor_MetaData), NewProp_bPreviewInEditor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties = { "PreviewProperties", nullptr, (EPropertyFlags)0x0010000800000011, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, PreviewProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewProperties_MetaData), NewProp_PreviewProperties_MetaData) }; // 1783893619 +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAnimNotify, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams = { + &UAnimNotify_LyraContextEffects::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + IF_WITH_EDITOR(FuncInfo, nullptr), + Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + IF_WITH_EDITOR(UE_ARRAY_COUNT(FuncInfo), 0), + UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers), + 0, + 0x001120A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams), Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects() +{ + if (!Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton, Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAnimNotify_LyraContextEffects::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAnimNotify_LyraContextEffects); +UAnimNotify_LyraContextEffects::~UAnimNotify_LyraContextEffects() {} +// End Class UAnimNotify_LyraContextEffects + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraContextEffectAnimNotifyVFXSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyVFXSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyVFXSettings), 817972917U) }, + { FLyraContextEffectAnimNotifyAudioSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyAudioSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyAudioSettings), 2521679084U) }, + { FLyraContextEffectAnimNotifyTraceSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyTraceSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyTraceSettings), 2936355306U) }, + { FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyPreviewSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyPreviewSettings), 1783893619U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAnimNotify_LyraContextEffects, UAnimNotify_LyraContextEffects::StaticClass, TEXT("UAnimNotify_LyraContextEffects"), &Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAnimNotify_LyraContextEffects), 2277929134U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_535087911(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h new file mode 100644 index 00000000..750fce68 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayTag; +struct FLyraContextEffectAnimNotifyAudioSettings; +struct FLyraContextEffectAnimNotifyTraceSettings; +struct FLyraContextEffectAnimNotifyVFXSettings; +#ifdef LYRAGAME_AnimNotify_LyraContextEffects_generated_h +#error "AnimNotify_LyraContextEffects.generated.h already included, missing '#pragma once' in AnimNotify_LyraContextEffects.h" +#endif +#define LYRAGAME_AnimNotify_LyraContextEffects_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_31_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_49_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_70_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#if WITH_EDITOR +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \ + DECLARE_FUNCTION(execSetParameters); +#else // WITH_EDITOR +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD +#endif // WITH_EDITOR + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAnimNotify_LyraContextEffects(); \ + friend struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics; \ +public: \ + DECLARE_CLASS(UAnimNotify_LyraContextEffects, UAnimNotify, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAnimNotify_LyraContextEffects) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAnimNotify_LyraContextEffects(UAnimNotify_LyraContextEffects&&); \ + UAnimNotify_LyraContextEffects(const UAnimNotify_LyraContextEffects&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAnimNotify_LyraContextEffects); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAnimNotify_LyraContextEffects); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UAnimNotify_LyraContextEffects) \ + NO_API virtual ~UAnimNotify_LyraContextEffects(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_93_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp new file mode 100644 index 00000000..5dcf3a9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/ApplyFrontendPerfSettingsAction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeApplyFrontendPerfSettingsAction() {} + +// Begin Cross Module References +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UApplyFrontendPerfSettingsAction +void UApplyFrontendPerfSettingsAction::StaticRegisterNativesUApplyFrontendPerfSettingsAction() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UApplyFrontendPerfSettingsAction); +UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister() +{ + return UApplyFrontendPerfSettingsAction::StaticClass(); +} +struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings\n */" }, +#endif + { "DisplayName", "Use Frontend Perf Settings" }, + { "IncludePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" }, + { "ModuleRelativePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams = { + &UApplyFrontendPerfSettingsAction::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams), Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction() +{ + if (!Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton, Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UApplyFrontendPerfSettingsAction::StaticClass(); +} +UApplyFrontendPerfSettingsAction::UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UApplyFrontendPerfSettingsAction); +UApplyFrontendPerfSettingsAction::~UApplyFrontendPerfSettingsAction() {} +// End Class UApplyFrontendPerfSettingsAction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UApplyFrontendPerfSettingsAction, UApplyFrontendPerfSettingsAction::StaticClass, TEXT("UApplyFrontendPerfSettingsAction"), &Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UApplyFrontendPerfSettingsAction), 3626913931U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_3821545779(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h new file mode 100644 index 00000000..fd76ffdc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/ApplyFrontendPerfSettingsAction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h +#error "ApplyFrontendPerfSettingsAction.generated.h already included, missing '#pragma once' in ApplyFrontendPerfSettingsAction.h" +#endif +#define LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUApplyFrontendPerfSettingsAction(); \ + friend struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics; \ +public: \ + DECLARE_CLASS(UApplyFrontendPerfSettingsAction, UGameFeatureAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UApplyFrontendPerfSettingsAction) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UApplyFrontendPerfSettingsAction(UApplyFrontendPerfSettingsAction&&); \ + UApplyFrontendPerfSettingsAction(const UApplyFrontendPerfSettingsAction&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UApplyFrontendPerfSettingsAction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UApplyFrontendPerfSettingsAction); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UApplyFrontendPerfSettingsAction) \ + LYRAGAME_API virtual ~UApplyFrontendPerfSettingsAction(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp new file mode 100644 index 00000000..5180fc03 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp @@ -0,0 +1,203 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/AsyncAction_ExperienceReady.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ExperienceReady() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FExperienceReadyAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "ExperienceReadyAsyncDelegate__DelegateSignature", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate) +{ + ExperienceReadyAsyncDelegate.ProcessMulticastDelegate(NULL); +} +// End Delegate FExperienceReadyAsyncDelegate + +// Begin Class UAsyncAction_ExperienceReady Function WaitForExperienceReady +struct Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics +{ + struct AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms + { + UObject* WorldContextObject; + UAsyncAction_ExperienceReady* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Waits for the experience to be determined and loaded\n" }, +#endif + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Waits for the experience to be determined and loaded" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ExperienceReady, nullptr, "WaitForExperienceReady", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ExperienceReady::execWaitForExperienceReady) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ExperienceReady**)Z_Param__Result=UAsyncAction_ExperienceReady::WaitForExperienceReady(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class UAsyncAction_ExperienceReady Function WaitForExperienceReady + +// Begin Class UAsyncAction_ExperienceReady +void UAsyncAction_ExperienceReady::StaticRegisterNativesUAsyncAction_ExperienceReady() +{ + UClass* Class = UAsyncAction_ExperienceReady::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "WaitForExperienceReady", &UAsyncAction_ExperienceReady::execWaitForExperienceReady }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ExperienceReady); +UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister() +{ + return UAsyncAction_ExperienceReady::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\n * immediately if the game state is valid already.\n */" }, +#endif + { "IncludePath", "GameModes/AsyncAction_ExperienceReady.h" }, + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\nimmediately if the game state is valid already." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnReady_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the experience has been determined and is ready/loaded\n" }, +#endif + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the experience has been determined and is ready/loaded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnReady; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady, "WaitForExperienceReady" }, // 2633865634 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady = { "OnReady", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ExperienceReady, OnReady), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnReady_MetaData), NewProp_OnReady_MetaData) }; // 1589972845 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams = { + &UAsyncAction_ExperienceReady::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton, Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ExperienceReady::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ExperienceReady); +UAsyncAction_ExperienceReady::~UAsyncAction_ExperienceReady() {} +// End Class UAsyncAction_ExperienceReady + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ExperienceReady, UAsyncAction_ExperienceReady::StaticClass, TEXT("UAsyncAction_ExperienceReady"), &Z_Registration_Info_UClass_UAsyncAction_ExperienceReady, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ExperienceReady), 70995253U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_3656380995(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h new file mode 100644 index 00000000..d5954921 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/AsyncAction_ExperienceReady.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ExperienceReady; +class UObject; +#ifdef LYRAGAME_AsyncAction_ExperienceReady_generated_h +#error "AsyncAction_ExperienceReady.generated.h already included, missing '#pragma once' in AsyncAction_ExperienceReady.h" +#endif +#define LYRAGAME_AsyncAction_ExperienceReady_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_14_DELEGATE \ +LYRAGAME_API void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \ + DECLARE_FUNCTION(execWaitForExperienceReady); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ExperienceReady(); \ + friend struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ExperienceReady, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ExperienceReady) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ExperienceReady(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ExperienceReady) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ExperienceReady); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ExperienceReady); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ExperienceReady(UAsyncAction_ExperienceReady&&); \ + UAsyncAction_ExperienceReady(const UAsyncAction_ExperienceReady&); \ +public: \ + NO_API virtual ~UAsyncAction_ExperienceReady(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp new file mode 100644 index 00000000..bca65136 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp @@ -0,0 +1,286 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/AsyncAction_ObserveTeam.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ObserveTeam() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FTeamObservedAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bTeamSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTeamSet; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit(void* Obj) +{ + ((_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms*)Obj)->bTeamSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet = { "bTeamSet", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms), &Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "TeamObservedAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FTeamObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamObservedAsyncDelegate, bool bTeamSet, int32 TeamId) +{ + struct _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + }; + _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms Parms; + Parms.bTeamSet=bTeamSet ? true : false; + Parms.TeamId=TeamId; + TeamObservedAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FTeamObservedAsyncDelegate + +// Begin Class UAsyncAction_ObserveTeam Function ObserveTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics +{ + struct AsyncAction_ObserveTeam_eventObserveTeam_Parms + { + UObject* TeamAgent; + UAsyncAction_ObserveTeam* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes on the specified team agent\n// - It will will fire once immediately to give the current team assignment\n// - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n// it will also listen for team assignment changes in the future\n" }, +#endif + { "Keywords", "Watch" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes on the specified team agent\n - It will will fire once immediately to give the current team assignment\n - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n it will also listen for team assignment changes in the future" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventObserveTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventObserveTeam_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeam, nullptr, "ObserveTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::AsyncAction_ObserveTeam_eventObserveTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::AsyncAction_ObserveTeam_eventObserveTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeam::execObserveTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ObserveTeam**)Z_Param__Result=UAsyncAction_ObserveTeam::ObserveTeam(Z_Param_TeamAgent); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeam Function ObserveTeam + +// Begin Class UAsyncAction_ObserveTeam Function OnWatchedAgentChangedTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics +{ + struct AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeam, nullptr, "OnWatchedAgentChangedTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeam::execOnWatchedAgentChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnWatchedAgentChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeam Function OnWatchedAgentChangedTeam + +// Begin Class UAsyncAction_ObserveTeam +void UAsyncAction_ObserveTeam::StaticRegisterNativesUAsyncAction_ObserveTeam() +{ + UClass* Class = UAsyncAction_ObserveTeam::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ObserveTeam", &UAsyncAction_ObserveTeam::execObserveTeam }, + { "OnWatchedAgentChangedTeam", &UAsyncAction_ObserveTeam::execOnWatchedAgentChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ObserveTeam); +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister() +{ + return UAsyncAction_ObserveTeam::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team changes in the specified object\n */" }, +#endif + { "IncludePath", "Teams/AsyncAction_ObserveTeam.h" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified object" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the team is set or changed\n" }, +#endif + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the team is set or changed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam, "ObserveTeam" }, // 3434540837 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam, "OnWatchedAgentChangedTeam" }, // 3319083712 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::NewProp_OnTeamChanged = { "OnTeamChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ObserveTeam, OnTeamChanged), Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChanged_MetaData), NewProp_OnTeamChanged_MetaData) }; // 1906233519 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::NewProp_OnTeamChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::ClassParams = { + &UAsyncAction_ObserveTeam::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton, Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ObserveTeam::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ObserveTeam); +UAsyncAction_ObserveTeam::~UAsyncAction_ObserveTeam() {} +// End Class UAsyncAction_ObserveTeam + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ObserveTeam, UAsyncAction_ObserveTeam::StaticClass, TEXT("UAsyncAction_ObserveTeam"), &Z_Registration_Info_UClass_UAsyncAction_ObserveTeam, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ObserveTeam), 2466180019U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_4079579659(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h new file mode 100644 index 00000000..99944bdc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/AsyncAction_ObserveTeam.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ObserveTeam; +class UObject; +#ifdef LYRAGAME_AsyncAction_ObserveTeam_generated_h +#error "AsyncAction_ObserveTeam.generated.h already included, missing '#pragma once' in AsyncAction_ObserveTeam.h" +#endif +#define LYRAGAME_AsyncAction_ObserveTeam_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_14_DELEGATE \ +LYRAGAME_API void FTeamObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamObservedAsyncDelegate, bool bTeamSet, int32 TeamId); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_RPC_WRAPPERS \ + DECLARE_FUNCTION(execOnWatchedAgentChangedTeam); \ + DECLARE_FUNCTION(execObserveTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ObserveTeam(); \ + friend struct Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ObserveTeam, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ObserveTeam) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ObserveTeam(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ObserveTeam) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ObserveTeam); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ObserveTeam); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ObserveTeam(UAsyncAction_ObserveTeam&&); \ + UAsyncAction_ObserveTeam(const UAsyncAction_ObserveTeam&); \ +public: \ + NO_API virtual ~UAsyncAction_ObserveTeam(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp new file mode 100644 index 00000000..51725e0d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp @@ -0,0 +1,343 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/AsyncAction_ObserveTeamColors.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ObserveTeamColors() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FTeamColorObservedAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bTeamSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTeamSet; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit(void* Obj) +{ + ((_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms*)Obj)->bTeamSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet = { "bTeamSet", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms), &Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "TeamColorObservedAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FTeamColorObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamColorObservedAsyncDelegate, bool bTeamSet, int32 TeamId, const ULyraTeamDisplayAsset* DisplayAsset) +{ + struct _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + const ULyraTeamDisplayAsset* DisplayAsset; + }; + _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms Parms; + Parms.bTeamSet=bTeamSet ? true : false; + Parms.TeamId=TeamId; + Parms.DisplayAsset=DisplayAsset; + TeamColorObservedAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FTeamColorObservedAsyncDelegate + +// Begin Class UAsyncAction_ObserveTeamColors Function ObserveTeamColors +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics +{ + struct AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms + { + UObject* TeamAgent; + UAsyncAction_ObserveTeamColors* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes on the specified team agent\n// - It will will fire once immediately to give the current team assignment\n// - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n// it will also listen for team assignment changes in the future\n" }, +#endif + { "Keywords", "Watch" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes on the specified team agent\n - It will will fire once immediately to give the current team assignment\n - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n it will also listen for team assignment changes in the future" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "ObserveTeamColors", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execObserveTeamColors) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ObserveTeamColors**)Z_Param__Result=UAsyncAction_ObserveTeamColors::ObserveTeamColors(Z_Param_TeamAgent); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function ObserveTeamColors + +// Begin Class UAsyncAction_ObserveTeamColors Function OnDisplayAssetChanged +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics +{ + struct AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "OnDisplayAssetChanged", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execOnDisplayAssetChanged) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDisplayAssetChanged(Z_Param_DisplayAsset); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function OnDisplayAssetChanged + +// Begin Class UAsyncAction_ObserveTeamColors Function OnWatchedAgentChangedTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics +{ + struct AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "OnWatchedAgentChangedTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execOnWatchedAgentChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnWatchedAgentChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function OnWatchedAgentChangedTeam + +// Begin Class UAsyncAction_ObserveTeamColors +void UAsyncAction_ObserveTeamColors::StaticRegisterNativesUAsyncAction_ObserveTeamColors() +{ + UClass* Class = UAsyncAction_ObserveTeamColors::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ObserveTeamColors", &UAsyncAction_ObserveTeamColors::execObserveTeamColors }, + { "OnDisplayAssetChanged", &UAsyncAction_ObserveTeamColors::execOnDisplayAssetChanged }, + { "OnWatchedAgentChangedTeam", &UAsyncAction_ObserveTeamColors::execOnWatchedAgentChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ObserveTeamColors); +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister() +{ + return UAsyncAction_ObserveTeamColors::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team color changes in the specified object\n */" }, +#endif + { "IncludePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team color changes in the specified object" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the team is set or changed\n" }, +#endif + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the team is set or changed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors, "ObserveTeamColors" }, // 2199349967 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged, "OnDisplayAssetChanged" }, // 2635215523 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam, "OnWatchedAgentChangedTeam" }, // 995044120 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::NewProp_OnTeamChanged = { "OnTeamChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ObserveTeamColors, OnTeamChanged), Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChanged_MetaData), NewProp_OnTeamChanged_MetaData) }; // 715123841 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::NewProp_OnTeamChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::ClassParams = { + &UAsyncAction_ObserveTeamColors::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton, Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ObserveTeamColors::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ObserveTeamColors); +UAsyncAction_ObserveTeamColors::~UAsyncAction_ObserveTeamColors() {} +// End Class UAsyncAction_ObserveTeamColors + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ObserveTeamColors, UAsyncAction_ObserveTeamColors::StaticClass, TEXT("UAsyncAction_ObserveTeamColors"), &Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ObserveTeamColors), 487872272U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_2295996095(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h new file mode 100644 index 00000000..3c2e04fd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/AsyncAction_ObserveTeamColors.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ObserveTeamColors; +class ULyraTeamDisplayAsset; +class UObject; +#ifdef LYRAGAME_AsyncAction_ObserveTeamColors_generated_h +#error "AsyncAction_ObserveTeamColors.generated.h already included, missing '#pragma once' in AsyncAction_ObserveTeamColors.h" +#endif +#define LYRAGAME_AsyncAction_ObserveTeamColors_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_14_DELEGATE \ +LYRAGAME_API void FTeamColorObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamColorObservedAsyncDelegate, bool bTeamSet, int32 TeamId, const ULyraTeamDisplayAsset* DisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_RPC_WRAPPERS \ + DECLARE_FUNCTION(execOnDisplayAssetChanged); \ + DECLARE_FUNCTION(execOnWatchedAgentChangedTeam); \ + DECLARE_FUNCTION(execObserveTeamColors); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ObserveTeamColors(); \ + friend struct Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ObserveTeamColors, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ObserveTeamColors) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ObserveTeamColors(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ObserveTeamColors) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ObserveTeamColors); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ObserveTeamColors); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ObserveTeamColors(UAsyncAction_ObserveTeamColors&&); \ + UAsyncAction_ObserveTeamColors(const UAsyncAction_ObserveTeamColors&); \ +public: \ + NO_API virtual ~UAsyncAction_ObserveTeamColors(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp new file mode 100644 index 00000000..737037bb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp @@ -0,0 +1,228 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Replays/AsyncAction_QueryReplays.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_QueryReplays() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_QueryReplays(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FQueryReplayAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms + { + ULyraReplayList* Results; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms, Results), Z_Construct_UClass_ULyraReplayList_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::NewProp_Results, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "QueryReplayAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FQueryReplayAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& QueryReplayAsyncDelegate, ULyraReplayList* Results) +{ + struct _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms + { + ULyraReplayList* Results; + }; + _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms Parms; + Parms.Results=Results; + QueryReplayAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FQueryReplayAsyncDelegate + +// Begin Class UAsyncAction_QueryReplays Function QueryReplays +struct Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics +{ + struct AsyncAction_QueryReplays_eventQueryReplays_Parms + { + APlayerController* PlayerController; + UAsyncAction_QueryReplays* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes in the specified player controller\n" }, +#endif + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified player controller" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_QueryReplays_eventQueryReplays_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_QueryReplays_eventQueryReplays_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_QueryReplays, nullptr, "QueryReplays", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::AsyncAction_QueryReplays_eventQueryReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::AsyncAction_QueryReplays_eventQueryReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_QueryReplays::execQueryReplays) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_QueryReplays**)Z_Param__Result=UAsyncAction_QueryReplays::QueryReplays(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class UAsyncAction_QueryReplays Function QueryReplays + +// Begin Class UAsyncAction_QueryReplays +void UAsyncAction_QueryReplays::StaticRegisterNativesUAsyncAction_QueryReplays() +{ + UClass* Class = UAsyncAction_QueryReplays::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "QueryReplays", &UAsyncAction_QueryReplays::execQueryReplays }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_QueryReplays); +UClass* Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister() +{ + return UAsyncAction_QueryReplays::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_QueryReplays_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team changes in the specified player controller\n */" }, +#endif + { "IncludePath", "Replays/AsyncAction_QueryReplays.h" }, + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified player controller" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_QueryComplete_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the replay query completes\n" }, +#endif + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the replay query completes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ResultList_MetaData[] = { + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_QueryComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ResultList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays, "QueryReplays" }, // 2349585692 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_QueryComplete = { "QueryComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_QueryReplays, QueryComplete), Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_QueryComplete_MetaData), NewProp_QueryComplete_MetaData) }; // 1544130346 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_ResultList = { "ResultList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_QueryReplays, ResultList), Z_Construct_UClass_ULyraReplayList_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ResultList_MetaData), NewProp_ResultList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_QueryComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_ResultList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::ClassParams = { + &UAsyncAction_QueryReplays::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_QueryReplays() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton, Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_QueryReplays::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_QueryReplays); +UAsyncAction_QueryReplays::~UAsyncAction_QueryReplays() {} +// End Class UAsyncAction_QueryReplays + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_QueryReplays, UAsyncAction_QueryReplays::StaticClass, TEXT("UAsyncAction_QueryReplays"), &Z_Registration_Info_UClass_UAsyncAction_QueryReplays, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_QueryReplays), 58345850U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_3227735304(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h new file mode 100644 index 00000000..12b08079 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Replays/AsyncAction_QueryReplays.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_QueryReplays; +class ULyraReplayList; +#ifdef LYRAGAME_AsyncAction_QueryReplays_generated_h +#error "AsyncAction_QueryReplays.generated.h already included, missing '#pragma once' in AsyncAction_QueryReplays.h" +#endif +#define LYRAGAME_AsyncAction_QueryReplays_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_17_DELEGATE \ +LYRAGAME_API void FQueryReplayAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& QueryReplayAsyncDelegate, ULyraReplayList* Results); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execQueryReplays); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_QueryReplays(); \ + friend struct Z_Construct_UClass_UAsyncAction_QueryReplays_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_QueryReplays, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_QueryReplays) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_QueryReplays(UAsyncAction_QueryReplays&&); \ + UAsyncAction_QueryReplays(const UAsyncAction_QueryReplays&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_QueryReplays); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_QueryReplays); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_QueryReplays) \ + NO_API virtual ~UAsyncAction_QueryReplays(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp new file mode 100644 index 00000000..2667708e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp @@ -0,0 +1,218 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/CircumferenceMarkerWidget.h" +#include "LyraGame/UI/Weapons/SCircumferenceMarkerWidget.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCircumferenceMarkerWidget() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UCircumferenceMarkerWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_UCircumferenceMarkerWidget_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UCircumferenceMarkerWidget Function SetRadius +struct Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics +{ + struct CircumferenceMarkerWidget_eventSetRadius_Parms + { + float InRadius; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the radius of the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the radius of the circle." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::NewProp_InRadius = { "InRadius", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CircumferenceMarkerWidget_eventSetRadius_Parms, InRadius), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::NewProp_InRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCircumferenceMarkerWidget, nullptr, "SetRadius", nullptr, nullptr, Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::CircumferenceMarkerWidget_eventSetRadius_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::CircumferenceMarkerWidget_eventSetRadius_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCircumferenceMarkerWidget::execSetRadius) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InRadius); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetRadius(Z_Param_InRadius); + P_NATIVE_END; +} +// End Class UCircumferenceMarkerWidget Function SetRadius + +// Begin Class UCircumferenceMarkerWidget +void UCircumferenceMarkerWidget::StaticRegisterNativesUCircumferenceMarkerWidget() +{ + UClass* Class = UCircumferenceMarkerWidget::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetRadius", &UCircumferenceMarkerWidget::execSetRadius }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCircumferenceMarkerWidget); +UClass* Z_Construct_UClass_UCircumferenceMarkerWidget_NoRegister() +{ + return UCircumferenceMarkerWidget::StaticClass(); +} +struct Z_Construct_UClass_UCircumferenceMarkerWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MarkerList_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The list of positions/orientations to draw the markers at. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of positions/orientations to draw the markers at." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Radius_MetaData[] = { + { "Category", "Appearance" }, + { "ClampMin", "0.000000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The radius of the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The radius of the circle." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to place around the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to place around the circle." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bReticleCornerOutsideSpreadRadius_MetaData[] = { + { "Category", "Corner" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether reticle corner images are placed outside the spread radius *///@TODO: Make this a 0-1 float alignment instead (e.g., inside/on/outside the radius)?\n" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether reticle corner images are placed outside the spread radius //@TODO: Make this a 0-1 float alignment instead (e.g., inside/on/outside the radius)?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MarkerList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MarkerList; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Radius; + static const UECodeGen_Private::FStructPropertyParams NewProp_MarkerImage; + static void NewProp_bReticleCornerOutsideSpreadRadius_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bReticleCornerOutsideSpreadRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius, "SetRadius" }, // 1066622100 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList_Inner = { "MarkerList", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry, METADATA_PARAMS(0, nullptr) }; // 3476315904 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList = { "MarkerList", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, MarkerList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MarkerList_MetaData), NewProp_MarkerList_MetaData) }; // 3476315904 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_Radius = { "Radius", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, Radius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Radius_MetaData), NewProp_Radius_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerImage = { "MarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, MarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MarkerImage_MetaData), NewProp_MarkerImage_MetaData) }; // 4269649686 +void Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius_SetBit(void* Obj) +{ + ((UCircumferenceMarkerWidget*)Obj)->bReticleCornerOutsideSpreadRadius = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius = { "bReticleCornerOutsideSpreadRadius", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UCircumferenceMarkerWidget), &Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bReticleCornerOutsideSpreadRadius_MetaData), NewProp_bReticleCornerOutsideSpreadRadius_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_Radius, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerImage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::ClassParams = { + &UCircumferenceMarkerWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCircumferenceMarkerWidget() +{ + if (!Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton, Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UCircumferenceMarkerWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCircumferenceMarkerWidget); +UCircumferenceMarkerWidget::~UCircumferenceMarkerWidget() {} +// End Class UCircumferenceMarkerWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCircumferenceMarkerWidget, UCircumferenceMarkerWidget::StaticClass, TEXT("UCircumferenceMarkerWidget"), &Z_Registration_Info_UClass_UCircumferenceMarkerWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCircumferenceMarkerWidget), 2693132380U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_4024659510(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h new file mode 100644 index 00000000..5a6954d2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/CircumferenceMarkerWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_CircumferenceMarkerWidget_generated_h +#error "CircumferenceMarkerWidget.generated.h already included, missing '#pragma once' in CircumferenceMarkerWidget.h" +#endif +#define LYRAGAME_CircumferenceMarkerWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetRadius); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCircumferenceMarkerWidget(); \ + friend struct Z_Construct_UClass_UCircumferenceMarkerWidget_Statics; \ +public: \ + DECLARE_CLASS(UCircumferenceMarkerWidget, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UCircumferenceMarkerWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCircumferenceMarkerWidget(UCircumferenceMarkerWidget&&); \ + UCircumferenceMarkerWidget(const UCircumferenceMarkerWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCircumferenceMarkerWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCircumferenceMarkerWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCircumferenceMarkerWidget) \ + NO_API virtual ~UCircumferenceMarkerWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp new file mode 100644 index 00000000..4ec1d73c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp @@ -0,0 +1,398 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddAbilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddAbilities() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataTable_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityGrant(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAttributeSetGrant(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilityGrant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityGrant; +class UScriptStruct* FLyraAbilityGrant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityGrant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityGrant")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityGrant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityType_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAbilityGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Type of ability to grant\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Type of ability to grant" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_AbilityType; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewProp_AbilityType = { "AbilityType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityGrant, AbilityType), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityType_MetaData), NewProp_AbilityType_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewProp_AbilityType, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityGrant", + Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers), + sizeof(FLyraAbilityGrant), + alignof(FLyraAbilityGrant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityGrant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton; +} +// End ScriptStruct FLyraAbilityGrant + +// Begin ScriptStruct FLyraAttributeSetGrant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant; +class UScriptStruct* FLyraAttributeSetGrant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAttributeSetGrant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAttributeSetGrant")); + } + return Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAttributeSetGrant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttributeSetType_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAttributeSetGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability set to grant\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability set to grant" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitializationData_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAttributeSetGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Data table referent to initialize the attributes with, if any (can be left unset)\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Data table referent to initialize the attributes with, if any (can be left unset)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_AttributeSetType; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InitializationData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_AttributeSetType = { "AttributeSetType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAttributeSetGrant, AttributeSetType), Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttributeSetType_MetaData), NewProp_AttributeSetType_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_InitializationData = { "InitializationData", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAttributeSetGrant, InitializationData), Z_Construct_UClass_UDataTable_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitializationData_MetaData), NewProp_InitializationData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_AttributeSetType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_InitializationData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAttributeSetGrant", + Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers), + sizeof(FLyraAttributeSetGrant), + alignof(FLyraAttributeSetGrant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAttributeSetGrant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton, Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton; +} +// End ScriptStruct FLyraAttributeSetGrant + +// Begin ScriptStruct FGameFeatureAbilitiesEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry; +class UScriptStruct* FGameFeatureAbilitiesEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameFeatureAbilitiesEntry")); + } + return Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameFeatureAbilitiesEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorClass_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base actor class to add to\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base actor class to add to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAbilities_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of abilities to grant to actors of the specified class\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of abilities to grant to actors of the specified class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributes_MetaData[] = { + { "Category", "Attributes" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of attribute sets to grant to actors of the specified class \n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of attribute sets to grant to actors of the specified class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAbilitySets_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Attributes" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of ability sets to grant to actors of the specified class\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of ability sets to grant to actors of the specified class" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ActorClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAbilities_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAttributes_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributes; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_GrantedAbilitySets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAbilitySets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_ActorClass = { "ActorClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, ActorClass), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorClass_MetaData), NewProp_ActorClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities_Inner = { "GrantedAbilities", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilityGrant, METADATA_PARAMS(0, nullptr) }; // 23572149 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities = { "GrantedAbilities", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAbilities), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAbilities_MetaData), NewProp_GrantedAbilities_MetaData) }; // 23572149 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes_Inner = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAttributeSetGrant, METADATA_PARAMS(0, nullptr) }; // 2721527875 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAttributes), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributes_MetaData), NewProp_GrantedAttributes_MetaData) }; // 2721527875 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets_Inner = { "GrantedAbilitySets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets = { "GrantedAbilitySets", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAbilitySets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAbilitySets_MetaData), NewProp_GrantedAbilitySets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_ActorClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GameFeatureAbilitiesEntry", + Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers), + sizeof(FGameFeatureAbilitiesEntry), + alignof(FGameFeatureAbilitiesEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry() +{ + if (!Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton; +} +// End ScriptStruct FGameFeatureAbilitiesEntry + +// Begin Class UGameFeatureAction_AddAbilities +void UGameFeatureAction_AddAbilities::StaticRegisterNativesUGameFeatureAction_AddAbilities() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddAbilities); +UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities_NoRegister() +{ + return UGameFeatureAction_AddAbilities::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Add Abilities" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitiesList_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + { "ShowOnlyInnerProperties", "" }, + { "TitleProperty", "ActorClass" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilitiesList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitiesList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList_Inner = { "AbilitiesList", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry, METADATA_PARAMS(0, nullptr) }; // 3194784580 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList = { "AbilitiesList", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddAbilities, AbilitiesList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitiesList_MetaData), NewProp_AbilitiesList_MetaData) }; // 3194784580 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::ClassParams = { + &UGameFeatureAction_AddAbilities::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddAbilities::StaticClass(); +} +UGameFeatureAction_AddAbilities::UGameFeatureAction_AddAbilities(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddAbilities); +UGameFeatureAction_AddAbilities::~UGameFeatureAction_AddAbilities() {} +// End Class UGameFeatureAction_AddAbilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityGrant::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewStructOps, TEXT("LyraAbilityGrant"), &Z_Registration_Info_UScriptStruct_LyraAbilityGrant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityGrant), 23572149U) }, + { FLyraAttributeSetGrant::StaticStruct, Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewStructOps, TEXT("LyraAttributeSetGrant"), &Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAttributeSetGrant), 2721527875U) }, + { FGameFeatureAbilitiesEntry::StaticStruct, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewStructOps, TEXT("GameFeatureAbilitiesEntry"), &Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameFeatureAbilitiesEntry), 3194784580U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddAbilities, UGameFeatureAction_AddAbilities::StaticClass, TEXT("UGameFeatureAction_AddAbilities"), &Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddAbilities), 4006559623U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_1745660388(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h new file mode 100644 index 00000000..4277600a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddAbilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddAbilities_generated_h +#error "GameFeatureAction_AddAbilities.generated.h already included, missing '#pragma once' in GameFeatureAction_AddAbilities.h" +#endif +#define LYRAGAME_GameFeatureAction_AddAbilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_35_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_49_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddAbilities(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddAbilities, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddAbilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddAbilities(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddAbilities(UGameFeatureAction_AddAbilities&&); \ + UGameFeatureAction_AddAbilities(const UGameFeatureAction_AddAbilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddAbilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddAbilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddAbilities) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddAbilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_74_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp new file mode 100644 index 00000000..1ba061a7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp @@ -0,0 +1,120 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddGameplayCuePath.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddGameplayCuePath() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FDirectoryPath(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_AddGameplayCuePath +void UGameFeatureAction_AddGameplayCuePath::StaticRegisterNativesUGameFeatureAction_AddGameplayCuePath() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddGameplayCuePath); +UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_NoRegister() +{ + return UGameFeatureAction_AddGameplayCuePath::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for adding gameplay cue paths to the gameplay cue manager.\n *\n * @see UAbilitySystemGlobals::GameplayCueNotifyPaths\n */" }, +#endif + { "DisplayName", "Add Gameplay Cue Path" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for adding gameplay cue paths to the gameplay cue manager.\n\n@see UAbilitySystemGlobals::GameplayCueNotifyPaths" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DirectoryPathsToAdd_MetaData[] = { + { "Category", "Game Feature | Gameplay Cues" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of paths to register to the gameplay cue manager. These are relative tot he game content directory */" }, +#endif + { "LongPackageName", "" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, + { "RelativeToGameContentDir", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of paths to register to the gameplay cue manager. These are relative tot he game content directory" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DirectoryPathsToAdd_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DirectoryPathsToAdd; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd_Inner = { "DirectoryPathsToAdd", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FDirectoryPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd = { "DirectoryPathsToAdd", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddGameplayCuePath, DirectoryPathsToAdd), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DirectoryPathsToAdd_MetaData), NewProp_DirectoryPathsToAdd_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::ClassParams = { + &UGameFeatureAction_AddGameplayCuePath::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddGameplayCuePath::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddGameplayCuePath); +UGameFeatureAction_AddGameplayCuePath::~UGameFeatureAction_AddGameplayCuePath() {} +// End Class UGameFeatureAction_AddGameplayCuePath + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath, UGameFeatureAction_AddGameplayCuePath::StaticClass, TEXT("UGameFeatureAction_AddGameplayCuePath"), &Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddGameplayCuePath), 3820482031U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_3240366981(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h new file mode 100644 index 00000000..7c9d4c87 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddGameplayCuePath_generated_h +#error "GameFeatureAction_AddGameplayCuePath.generated.h already included, missing '#pragma once' in GameFeatureAction_AddGameplayCuePath.h" +#endif +#define LYRAGAME_GameFeatureAction_AddGameplayCuePath_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddGameplayCuePath(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddGameplayCuePath, UGameFeatureAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddGameplayCuePath) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddGameplayCuePath(UGameFeatureAction_AddGameplayCuePath&&); \ + UGameFeatureAction_AddGameplayCuePath(const UGameFeatureAction_AddGameplayCuePath&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddGameplayCuePath); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddGameplayCuePath); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameFeatureAction_AddGameplayCuePath) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddGameplayCuePath(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp new file mode 100644 index 00000000..74ec707c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputBinding.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddInputBinding() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_AddInputBinding +void UGameFeatureAction_AddInputBinding::StaticRegisterNativesUGameFeatureAction_AddInputBinding() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddInputBinding); +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding_NoRegister() +{ + return UGameFeatureAction_AddInputBinding::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Adds InputMappingContext to local players' EnhancedInput system. \n * Expects that local players are set up to use the EnhancedInput system.\n */" }, +#endif + { "DisplayName", "Add Input Binds" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds InputMappingContext to local players' EnhancedInput system.\nExpects that local players are set up to use the EnhancedInput system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfigs_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~ End UObject interface\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InputConfigs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InputConfigs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs_Inner = { "InputConfigs", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInputConfig_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs = { "InputConfigs", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddInputBinding, InputConfigs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfigs_MetaData), NewProp_InputConfigs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::ClassParams = { + &UGameFeatureAction_AddInputBinding::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddInputBinding::StaticClass(); +} +UGameFeatureAction_AddInputBinding::UGameFeatureAction_AddInputBinding(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddInputBinding); +UGameFeatureAction_AddInputBinding::~UGameFeatureAction_AddInputBinding() {} +// End Class UGameFeatureAction_AddInputBinding + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddInputBinding, UGameFeatureAction_AddInputBinding::StaticClass, TEXT("UGameFeatureAction_AddInputBinding"), &Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddInputBinding), 3548439855U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_1118814399(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h new file mode 100644 index 00000000..ffbece7f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddInputBinding.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddInputBinding_generated_h +#error "GameFeatureAction_AddInputBinding.generated.h already included, missing '#pragma once' in GameFeatureAction_AddInputBinding.h" +#endif +#define LYRAGAME_GameFeatureAction_AddInputBinding_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddInputBinding(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddInputBinding, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddInputBinding) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddInputBinding(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddInputBinding(UGameFeatureAction_AddInputBinding&&); \ + UGameFeatureAction_AddInputBinding(const UGameFeatureAction_AddInputBinding&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddInputBinding); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddInputBinding); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddInputBinding) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddInputBinding(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp new file mode 100644 index 00000000..278ba9dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp @@ -0,0 +1,213 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddInputContextMapping() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputMappingContext_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInputMappingContextAndPriority +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority; +class UScriptStruct* FInputMappingContextAndPriority::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInputMappingContextAndPriority, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InputMappingContextAndPriority")); + } + return Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInputMappingContextAndPriority::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMapping_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Input" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Higher priority input mappings will be prioritized over mappings with a lower priority.\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Higher priority input mappings will be prioritized over mappings with a lower priority." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRegisterWithSettings_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, then this mapping context will be registered with the settings when this game feature action is registered. */" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, then this mapping context will be registered with the settings when this game feature action is registered." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InputMapping; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static void NewProp_bRegisterWithSettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRegisterWithSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_InputMapping = { "InputMapping", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInputMappingContextAndPriority, InputMapping), Z_Construct_UClass_UInputMappingContext_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMapping_MetaData), NewProp_InputMapping_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInputMappingContextAndPriority, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +void Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings_SetBit(void* Obj) +{ + ((FInputMappingContextAndPriority*)Obj)->bRegisterWithSettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings = { "bRegisterWithSettings", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FInputMappingContextAndPriority), &Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRegisterWithSettings_MetaData), NewProp_bRegisterWithSettings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_InputMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InputMappingContextAndPriority", + Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers), + sizeof(FInputMappingContextAndPriority), + alignof(FInputMappingContextAndPriority), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority() +{ + if (!Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton, Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton; +} +// End ScriptStruct FInputMappingContextAndPriority + +// Begin Class UGameFeatureAction_AddInputContextMapping +void UGameFeatureAction_AddInputContextMapping::StaticRegisterNativesUGameFeatureAction_AddInputContextMapping() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddInputContextMapping); +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_NoRegister() +{ + return UGameFeatureAction_AddInputContextMapping::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Adds InputMappingContext to local players' EnhancedInput system. \n * Expects that local players are set up to use the EnhancedInput system.\n */" }, +#endif + { "DisplayName", "Add Input Mapping" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds InputMappingContext to local players' EnhancedInput system.\nExpects that local players are set up to use the EnhancedInput system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMappings_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UObject interface\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputMappings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InputMappings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings_Inner = { "InputMappings", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputMappingContextAndPriority, METADATA_PARAMS(0, nullptr) }; // 1299260669 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings = { "InputMappings", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddInputContextMapping, InputMappings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMappings_MetaData), NewProp_InputMappings_MetaData) }; // 1299260669 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::ClassParams = { + &UGameFeatureAction_AddInputContextMapping::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddInputContextMapping::StaticClass(); +} +UGameFeatureAction_AddInputContextMapping::UGameFeatureAction_AddInputContextMapping(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddInputContextMapping); +UGameFeatureAction_AddInputContextMapping::~UGameFeatureAction_AddInputContextMapping() {} +// End Class UGameFeatureAction_AddInputContextMapping + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInputMappingContextAndPriority::StaticStruct, Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewStructOps, TEXT("InputMappingContextAndPriority"), &Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInputMappingContextAndPriority), 1299260669U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping, UGameFeatureAction_AddInputContextMapping::StaticClass, TEXT("UGameFeatureAction_AddInputContextMapping"), &Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddInputContextMapping), 1051781548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_1778785110(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h new file mode 100644 index 00000000..d8be1f6b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddInputContextMapping.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddInputContextMapping_generated_h +#error "GameFeatureAction_AddInputContextMapping.generated.h already included, missing '#pragma once' in GameFeatureAction_AddInputContextMapping.h" +#endif +#define LYRAGAME_GameFeatureAction_AddInputContextMapping_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddInputContextMapping(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddInputContextMapping, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddInputContextMapping) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddInputContextMapping(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddInputContextMapping(UGameFeatureAction_AddInputContextMapping&&); \ + UGameFeatureAction_AddInputContextMapping(const UGameFeatureAction_AddInputContextMapping&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddInputContextMapping); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddInputContextMapping); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddInputContextMapping) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddInputContextMapping(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_36_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp new file mode 100644 index 00000000..92207ba3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp @@ -0,0 +1,309 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDElementEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDLayoutRequest(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraHUDLayoutRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest; +class UScriptStruct* FLyraHUDLayoutRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraHUDLayoutRequest")); + } + return Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraHUDLayoutRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayoutClass_MetaData[] = { + { "AssetBundles", "Client" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layout widget to spawn\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layout widget to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerID_MetaData[] = { + { "Categories", "UI.Layer" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to insert the widget in\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to insert the widget in" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LayoutClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayoutClass = { "LayoutClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDLayoutRequest, LayoutClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayoutClass_MetaData), NewProp_LayoutClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayerID = { "LayerID", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDLayoutRequest, LayerID), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerID_MetaData), NewProp_LayerID_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayoutClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayerID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraHUDLayoutRequest", + Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers), + sizeof(FLyraHUDLayoutRequest), + alignof(FLyraHUDLayoutRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDLayoutRequest() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton; +} +// End ScriptStruct FLyraHUDLayoutRequest + +// Begin ScriptStruct FLyraHUDElementEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraHUDElementEntry; +class UScriptStruct* FLyraHUDElementEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraHUDElementEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraHUDElementEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraHUDElementEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AssetBundles", "Client" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The widget to spawn\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlotID_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The slot ID where we should place this widget\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The slot ID where we should place this widget" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlotID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDElementEntry, WidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_SlotID = { "SlotID", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDElementEntry, SlotID), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlotID_MetaData), NewProp_SlotID_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_SlotID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraHUDElementEntry", + Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers), + sizeof(FLyraHUDElementEntry), + alignof(FLyraHUDElementEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDElementEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton; +} +// End ScriptStruct FLyraHUDElementEntry + +// Begin Class UGameFeatureAction_AddWidgets +void UGameFeatureAction_AddWidgets::StaticRegisterNativesUGameFeatureAction_AddWidgets() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddWidgets); +UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets_NoRegister() +{ + return UGameFeatureAction_AddWidgets::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Add Widgets" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layout_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layout to add to the HUD\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "TitleProperty", "{LayerID} -> {LayoutClass}" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layout to add to the HUD" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widgets_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Widgets to add to the HUD\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "TitleProperty", "{SlotID} -> {WidgetClass}" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Widgets to add to the HUD" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Layout_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Layout; + static const UECodeGen_Private::FStructPropertyParams NewProp_Widgets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Widgets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout_Inner = { "Layout", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest, METADATA_PARAMS(0, nullptr) }; // 264733097 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout = { "Layout", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddWidgets, Layout), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layout_MetaData), NewProp_Layout_MetaData) }; // 264733097 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets_Inner = { "Widgets", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraHUDElementEntry, METADATA_PARAMS(0, nullptr) }; // 1018170076 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets = { "Widgets", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddWidgets, Widgets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widgets_MetaData), NewProp_Widgets_MetaData) }; // 1018170076 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::ClassParams = { + &UGameFeatureAction_AddWidgets::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddWidgets::StaticClass(); +} +UGameFeatureAction_AddWidgets::UGameFeatureAction_AddWidgets(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddWidgets); +UGameFeatureAction_AddWidgets::~UGameFeatureAction_AddWidgets() {} +// End Class UGameFeatureAction_AddWidgets + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraHUDLayoutRequest::StaticStruct, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewStructOps, TEXT("LyraHUDLayoutRequest"), &Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraHUDLayoutRequest), 264733097U) }, + { FLyraHUDElementEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewStructOps, TEXT("LyraHUDElementEntry"), &Z_Registration_Info_UScriptStruct_LyraHUDElementEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraHUDElementEntry), 1018170076U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddWidgets, UGameFeatureAction_AddWidgets::StaticClass, TEXT("UGameFeatureAction_AddWidgets"), &Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddWidgets), 3124192335U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_2590366624(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h new file mode 100644 index 00000000..f9711d84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddWidget_generated_h +#error "GameFeatureAction_AddWidget.generated.h already included, missing '#pragma once' in GameFeatureAction_AddWidget.h" +#endif +#define LYRAGAME_GameFeatureAction_AddWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_32_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddWidgets(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddWidgets, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddWidgets) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddWidgets(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddWidgets(UGameFeatureAction_AddWidgets&&); \ + UGameFeatureAction_AddWidgets(const UGameFeatureAction_AddWidgets&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddWidgets); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddWidgets); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddWidgets) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddWidgets(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp new file mode 100644 index 00000000..6fdafd72 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp @@ -0,0 +1,114 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_SplitscreenConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_SplitscreenConfig() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_SplitscreenConfig +void UGameFeatureAction_SplitscreenConfig::StaticRegisterNativesUGameFeatureAction_SplitscreenConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_SplitscreenConfig); +UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_NoRegister() +{ + return UGameFeatureAction_SplitscreenConfig::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Splitscreen Config" }, + { "IncludePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableSplitscreen_MetaData[] = { + { "Category", "Action" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bDisableSplitscreen_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableSplitscreen; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen_SetBit(void* Obj) +{ + ((UGameFeatureAction_SplitscreenConfig*)Obj)->bDisableSplitscreen = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen = { "bDisableSplitscreen", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UGameFeatureAction_SplitscreenConfig), &Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableSplitscreen_MetaData), NewProp_bDisableSplitscreen_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::ClassParams = { + &UGameFeatureAction_SplitscreenConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_SplitscreenConfig::StaticClass(); +} +UGameFeatureAction_SplitscreenConfig::UGameFeatureAction_SplitscreenConfig(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_SplitscreenConfig); +UGameFeatureAction_SplitscreenConfig::~UGameFeatureAction_SplitscreenConfig() {} +// End Class UGameFeatureAction_SplitscreenConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig, UGameFeatureAction_SplitscreenConfig::StaticClass, TEXT("UGameFeatureAction_SplitscreenConfig"), &Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_SplitscreenConfig), 2219805128U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_730484118(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h new file mode 100644 index 00000000..a366ff1c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_SplitscreenConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_SplitscreenConfig_generated_h +#error "GameFeatureAction_SplitscreenConfig.generated.h already included, missing '#pragma once' in GameFeatureAction_SplitscreenConfig.h" +#endif +#define LYRAGAME_GameFeatureAction_SplitscreenConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_SplitscreenConfig(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_SplitscreenConfig, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_SplitscreenConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_SplitscreenConfig(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_SplitscreenConfig(UGameFeatureAction_SplitscreenConfig&&); \ + UGameFeatureAction_SplitscreenConfig(const UGameFeatureAction_SplitscreenConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_SplitscreenConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_SplitscreenConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_SplitscreenConfig) \ + LYRAGAME_API virtual ~UGameFeatureAction_SplitscreenConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp new file mode 100644 index 00000000..076bacab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_WorldActionBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_WorldActionBase() {} + +// Begin Cross Module References +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_WorldActionBase +void UGameFeatureAction_WorldActionBase::StaticRegisterNativesUGameFeatureAction_WorldActionBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_WorldActionBase); +UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase_NoRegister() +{ + return UGameFeatureAction_WorldActionBase::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Base class for GameFeatureActions that wish to do something world specific.\n */" }, +#endif + { "IncludePath", "GameFeatures/GameFeatureAction_WorldActionBase.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_WorldActionBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Base class for GameFeatureActions that wish to do something world specific." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::ClassParams = { + &UGameFeatureAction_WorldActionBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x002010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_WorldActionBase::StaticClass(); +} +UGameFeatureAction_WorldActionBase::UGameFeatureAction_WorldActionBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_WorldActionBase); +UGameFeatureAction_WorldActionBase::~UGameFeatureAction_WorldActionBase() {} +// End Class UGameFeatureAction_WorldActionBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_WorldActionBase, UGameFeatureAction_WorldActionBase::StaticClass, TEXT("UGameFeatureAction_WorldActionBase"), &Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_WorldActionBase), 2307205903U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_2407313128(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h new file mode 100644 index 00000000..5ae83b26 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_WorldActionBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_WorldActionBase_generated_h +#error "GameFeatureAction_WorldActionBase.generated.h already included, missing '#pragma once' in GameFeatureAction_WorldActionBase.h" +#endif +#define LYRAGAME_GameFeatureAction_WorldActionBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_WorldActionBase(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_WorldActionBase, UGameFeatureAction, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_WorldActionBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameFeatureAction_WorldActionBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_WorldActionBase(UGameFeatureAction_WorldActionBase&&); \ + UGameFeatureAction_WorldActionBase(const UGameFeatureAction_WorldActionBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameFeatureAction_WorldActionBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_WorldActionBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_WorldActionBase) \ + NO_API virtual ~UGameFeatureAction_WorldActionBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp new file mode 100644 index 00000000..38d0441e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayAbilityTargetActor_Interact() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Trace(); +LYRAGAME_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact(); +LYRAGAME_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class AGameplayAbilityTargetActor_Interact +void AGameplayAbilityTargetActor_Interact::StaticRegisterNativesAGameplayAbilityTargetActor_Interact() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AGameplayAbilityTargetActor_Interact); +UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_NoRegister() +{ + return AGameplayAbilityTargetActor_Interact::StaticClass(); +} +struct Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Intermediate base class for all interaction target actors. */" }, +#endif + { "IncludePath", "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Intermediate base class for all interaction target actors." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameplayAbilityTargetActor_Trace, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::ClassParams = { + &AGameplayAbilityTargetActor_Interact::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::Class_MetaDataParams), Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact() +{ + if (!Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton, Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return AGameplayAbilityTargetActor_Interact::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AGameplayAbilityTargetActor_Interact); +AGameplayAbilityTargetActor_Interact::~AGameplayAbilityTargetActor_Interact() {} +// End Class AGameplayAbilityTargetActor_Interact + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AGameplayAbilityTargetActor_Interact, AGameplayAbilityTargetActor_Interact::StaticClass, TEXT("AGameplayAbilityTargetActor_Interact"), &Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AGameplayAbilityTargetActor_Interact), 3276221668U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_3519761287(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h new file mode 100644 index 00000000..99f15bb2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayAbilityTargetActor_Interact_generated_h +#error "GameplayAbilityTargetActor_Interact.generated.h already included, missing '#pragma once' in GameplayAbilityTargetActor_Interact.h" +#endif +#define LYRAGAME_GameplayAbilityTargetActor_Interact_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAGameplayAbilityTargetActor_Interact(); \ + friend struct Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics; \ +public: \ + DECLARE_CLASS(AGameplayAbilityTargetActor_Interact, AGameplayAbilityTargetActor_Trace, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(AGameplayAbilityTargetActor_Interact) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AGameplayAbilityTargetActor_Interact(AGameplayAbilityTargetActor_Interact&&); \ + AGameplayAbilityTargetActor_Interact(const AGameplayAbilityTargetActor_Interact&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AGameplayAbilityTargetActor_Interact); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AGameplayAbilityTargetActor_Interact); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AGameplayAbilityTargetActor_Interact) \ + NO_API virtual ~AGameplayAbilityTargetActor_Interact(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp new file mode 100644 index 00000000..a211f426 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/GameplayMessageProcessor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameplayMessageProcessor +void UGameplayMessageProcessor::StaticRegisterNativesUGameplayMessageProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameplayMessageProcessor); +UClass* Z_Construct_UClass_UGameplayMessageProcessor_NoRegister() +{ + return UGameplayMessageProcessor::StaticClass(); +} +struct Z_Construct_UClass_UGameplayMessageProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UGameplayMessageProcessor\n * \n * Base class for any message processor which observes other gameplay messages\n * and potentially re-emits updates (e.g., when a chain or combo is detected)\n * \n * Note that these processors are spawned on the server once (not per player)\n * and should do their own internal filtering if only relevant for some players.\n */" }, +#endif + { "IncludePath", "Messages/GameplayMessageProcessor.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Messages/GameplayMessageProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameplayMessageProcessor\n\nBase class for any message processor which observes other gameplay messages\nand potentially re-emits updates (e.g., when a chain or combo is detected)\n\nNote that these processors are spawned on the server once (not per player)\nand should do their own internal filtering if only relevant for some players." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameplayMessageProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameplayMessageProcessor_Statics::ClassParams = { + &UGameplayMessageProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameplayMessageProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameplayMessageProcessor() +{ + if (!Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton, Z_Construct_UClass_UGameplayMessageProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameplayMessageProcessor::StaticClass(); +} +UGameplayMessageProcessor::UGameplayMessageProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameplayMessageProcessor); +UGameplayMessageProcessor::~UGameplayMessageProcessor() {} +// End Class UGameplayMessageProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameplayMessageProcessor, UGameplayMessageProcessor::StaticClass, TEXT("UGameplayMessageProcessor"), &Z_Registration_Info_UClass_UGameplayMessageProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameplayMessageProcessor), 960492463U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_3993301078(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h new file mode 100644 index 00000000..7e666665 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/GameplayMessageProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayMessageProcessor_generated_h +#error "GameplayMessageProcessor.generated.h already included, missing '#pragma once' in GameplayMessageProcessor.h" +#endif +#define LYRAGAME_GameplayMessageProcessor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameplayMessageProcessor(); \ + friend struct Z_Construct_UClass_UGameplayMessageProcessor_Statics; \ +public: \ + DECLARE_CLASS(UGameplayMessageProcessor, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UGameplayMessageProcessor) + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameplayMessageProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameplayMessageProcessor(UGameplayMessageProcessor&&); \ + UGameplayMessageProcessor(const UGameplayMessageProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameplayMessageProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameplayMessageProcessor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameplayMessageProcessor) \ + NO_API virtual ~UGameplayMessageProcessor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp new file mode 100644 index 00000000..94eef678 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp @@ -0,0 +1,192 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayTagStack() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStack(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FGameplayTagStack +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FGameplayTagStack cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayTagStack; +class UScriptStruct* FGameplayTagStack::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayTagStack, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameplayTagStack")); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameplayTagStack::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents one stack of a gameplay tag (tag + count)\n */" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents one stack of a gameplay tag (tag + count)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "ModuleRelativePath", "System/GameplayTagStack.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "ModuleRelativePath", "System/GameplayTagStack.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStack, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "GameplayTagStack", + Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers), + sizeof(FGameplayTagStack), + alignof(FGameplayTagStack), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayTagStack_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStack() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton, Z_Construct_UScriptStruct_FGameplayTagStack_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton; +} +// End ScriptStruct FGameplayTagStack + +// Begin ScriptStruct FGameplayTagStackContainer +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FGameplayTagStackContainer cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayTagStackContainer; +class UScriptStruct* FGameplayTagStackContainer::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayTagStackContainer, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameplayTagStackContainer")); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameplayTagStackContainer::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FGameplayTagStackContainer); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FGameplayTagStackContainer); +#endif +struct Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Container of gameplay tag stacks */" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Container of gameplay tag stacks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Stacks_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of gameplay tag stacks\n" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of gameplay tag stacks" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Stacks_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Stacks; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks_Inner = { "Stacks", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTagStack, METADATA_PARAMS(0, nullptr) }; // 1006826503 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks = { "Stacks", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStackContainer, Stacks), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Stacks_MetaData), NewProp_Stacks_MetaData) }; // 1006826503 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "GameplayTagStackContainer", + Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers), + sizeof(FGameplayTagStackContainer), + alignof(FGameplayTagStackContainer), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton, Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton; +} +// End ScriptStruct FGameplayTagStackContainer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameplayTagStack::StaticStruct, Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewStructOps, TEXT("GameplayTagStack"), &Z_Registration_Info_UScriptStruct_GameplayTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayTagStack), 1006826503U) }, + { FGameplayTagStackContainer::StaticStruct, Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewStructOps, TEXT("GameplayTagStackContainer"), &Z_Registration_Info_UScriptStruct_GameplayTagStackContainer, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayTagStackContainer), 3610867483U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_2527901525(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.generated.h new file mode 100644 index 00000000..ada7a492 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/GameplayTagStack.generated.h @@ -0,0 +1,38 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/GameplayTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayTagStack_generated_h +#error "GameplayTagStack.generated.h already included, missing '#pragma once' in GameplayTagStack.h" +#endif +#define LYRAGAME_GameplayTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayTagStack_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_46_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FGameplayTagStackContainer, Stacks, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp new file mode 100644 index 00000000..edd63fa4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/HitMarkerConfirmationWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeHitMarkerConfirmationWidget() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UHitMarkerConfirmationWidget +void UHitMarkerConfirmationWidget::StaticRegisterNativesUHitMarkerConfirmationWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UHitMarkerConfirmationWidget); +UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget_NoRegister() +{ + return UHitMarkerConfirmationWidget::StaticClass(); +} +struct Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitNotifyDuration_MetaData[] = { + { "Category", "Appearance" }, + { "ClampMin", "0.000000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The duration (in seconds) to display hit notifies (they fade to transparent over this time) */" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The duration (in seconds) to display hit notifies (they fade to transparent over this time)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerHitMarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to draw for individual hit markers. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to draw for individual hit markers." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerHitMarkerZoneOverrideImages_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Map from zone tag (e.g., weak spot) to override marker images for individual location hits. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map from zone tag (e.g., weak spot) to override marker images for individual location hits." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnyHitsMarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to draw if there are any hits at all. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to draw if there are any hits at all." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HitNotifyDuration; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerImage; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerZoneOverrideImages_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PerHitMarkerZoneOverrideImages; + static const UECodeGen_Private::FStructPropertyParams NewProp_AnyHitsMarkerImage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_HitNotifyDuration = { "HitNotifyDuration", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, HitNotifyDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitNotifyDuration_MetaData), NewProp_HitNotifyDuration_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerImage = { "PerHitMarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, PerHitMarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerHitMarkerImage_MetaData), NewProp_PerHitMarkerImage_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_ValueProp = { "PerHitMarkerZoneOverrideImages", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(0, nullptr) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp = { "PerHitMarkerZoneOverrideImages_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages = { "PerHitMarkerZoneOverrideImages", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, PerHitMarkerZoneOverrideImages), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerHitMarkerZoneOverrideImages_MetaData), NewProp_PerHitMarkerZoneOverrideImages_MetaData) }; // 1298103297 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_AnyHitsMarkerImage = { "AnyHitsMarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, AnyHitsMarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnyHitsMarkerImage_MetaData), NewProp_AnyHitsMarkerImage_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_HitNotifyDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerImage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_AnyHitsMarkerImage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::ClassParams = { + &UHitMarkerConfirmationWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget() +{ + if (!Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton, Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UHitMarkerConfirmationWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UHitMarkerConfirmationWidget); +UHitMarkerConfirmationWidget::~UHitMarkerConfirmationWidget() {} +// End Class UHitMarkerConfirmationWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UHitMarkerConfirmationWidget, UHitMarkerConfirmationWidget::StaticClass, TEXT("UHitMarkerConfirmationWidget"), &Z_Registration_Info_UClass_UHitMarkerConfirmationWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UHitMarkerConfirmationWidget), 2623668083U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_3501005335(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h new file mode 100644 index 00000000..d04b17c6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/HitMarkerConfirmationWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_HitMarkerConfirmationWidget_generated_h +#error "HitMarkerConfirmationWidget.generated.h already included, missing '#pragma once' in HitMarkerConfirmationWidget.h" +#endif +#define LYRAGAME_HitMarkerConfirmationWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUHitMarkerConfirmationWidget(); \ + friend struct Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics; \ +public: \ + DECLARE_CLASS(UHitMarkerConfirmationWidget, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UHitMarkerConfirmationWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UHitMarkerConfirmationWidget(UHitMarkerConfirmationWidget&&); \ + UHitMarkerConfirmationWidget(const UHitMarkerConfirmationWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UHitMarkerConfirmationWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UHitMarkerConfirmationWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UHitMarkerConfirmationWidget) \ + NO_API virtual ~UHitMarkerConfirmationWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp new file mode 100644 index 00000000..2a99fbdd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp @@ -0,0 +1,234 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IActorIndicatorWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIActorIndicatorWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorWidgetInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorWidgetInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UIndicatorWidgetInterface Function BindIndicator +struct IndicatorWidgetInterface_eventBindIndicator_Parms +{ + UIndicatorDescriptor* Indicator; +}; +void IIndicatorWidgetInterface::BindIndicator(UIndicatorDescriptor* Indicator) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_BindIndicator instead."); +} +static FName NAME_UIndicatorWidgetInterface_BindIndicator = FName(TEXT("BindIndicator")); +void IIndicatorWidgetInterface::Execute_BindIndicator(UObject* O, UIndicatorDescriptor* Indicator) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UIndicatorWidgetInterface::StaticClass())); + IndicatorWidgetInterface_eventBindIndicator_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UIndicatorWidgetInterface_BindIndicator); + if (Func) + { + Parms.Indicator=Indicator; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IIndicatorWidgetInterface*)(O->GetNativeInterfaceAddress(UIndicatorWidgetInterface::StaticClass()))) + { + I->BindIndicator_Implementation(Indicator); + } +} +struct Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::NewProp_Indicator = { "Indicator", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorWidgetInterface_eventBindIndicator_Parms, Indicator), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::NewProp_Indicator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorWidgetInterface, nullptr, "BindIndicator", nullptr, nullptr, Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers), sizeof(IndicatorWidgetInterface_eventBindIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(IndicatorWidgetInterface_eventBindIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IIndicatorWidgetInterface::execBindIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_Indicator); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->BindIndicator_Implementation(Z_Param_Indicator); + P_NATIVE_END; +} +// End Interface UIndicatorWidgetInterface Function BindIndicator + +// Begin Interface UIndicatorWidgetInterface Function UnbindIndicator +struct IndicatorWidgetInterface_eventUnbindIndicator_Parms +{ + const UIndicatorDescriptor* Indicator; +}; +void IIndicatorWidgetInterface::UnbindIndicator(const UIndicatorDescriptor* Indicator) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_UnbindIndicator instead."); +} +static FName NAME_UIndicatorWidgetInterface_UnbindIndicator = FName(TEXT("UnbindIndicator")); +void IIndicatorWidgetInterface::Execute_UnbindIndicator(UObject* O, const UIndicatorDescriptor* Indicator) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UIndicatorWidgetInterface::StaticClass())); + IndicatorWidgetInterface_eventUnbindIndicator_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UIndicatorWidgetInterface_UnbindIndicator); + if (Func) + { + Parms.Indicator=Indicator; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IIndicatorWidgetInterface*)(O->GetNativeInterfaceAddress(UIndicatorWidgetInterface::StaticClass()))) + { + I->UnbindIndicator_Implementation(Indicator); + } +} +struct Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicator_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::NewProp_Indicator = { "Indicator", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorWidgetInterface_eventUnbindIndicator_Parms, Indicator), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicator_MetaData), NewProp_Indicator_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::NewProp_Indicator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorWidgetInterface, nullptr, "UnbindIndicator", nullptr, nullptr, Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers), sizeof(IndicatorWidgetInterface_eventUnbindIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(IndicatorWidgetInterface_eventUnbindIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IIndicatorWidgetInterface::execUnbindIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_Indicator); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnbindIndicator_Implementation(Z_Param_Indicator); + P_NATIVE_END; +} +// End Interface UIndicatorWidgetInterface Function UnbindIndicator + +// Begin Interface UIndicatorWidgetInterface +void UIndicatorWidgetInterface::StaticRegisterNativesUIndicatorWidgetInterface() +{ + UClass* Class = UIndicatorWidgetInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "BindIndicator", &IIndicatorWidgetInterface::execBindIndicator }, + { "UnbindIndicator", &IIndicatorWidgetInterface::execUnbindIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorWidgetInterface); +UClass* Z_Construct_UClass_UIndicatorWidgetInterface_NoRegister() +{ + return UIndicatorWidgetInterface::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorWidgetInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator, "BindIndicator" }, // 3185953401 + { &Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator, "UnbindIndicator" }, // 3179714369 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UIndicatorWidgetInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorWidgetInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorWidgetInterface_Statics::ClassParams = { + &UIndicatorWidgetInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorWidgetInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorWidgetInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorWidgetInterface() +{ + if (!Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton, Z_Construct_UClass_UIndicatorWidgetInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorWidgetInterface::StaticClass(); +} +UIndicatorWidgetInterface::UIndicatorWidgetInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorWidgetInterface); +UIndicatorWidgetInterface::~UIndicatorWidgetInterface() {} +// End Interface UIndicatorWidgetInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorWidgetInterface, UIndicatorWidgetInterface::StaticClass, TEXT("UIndicatorWidgetInterface"), &Z_Registration_Info_UClass_UIndicatorWidgetInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorWidgetInterface), 1655659806U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_3058068677(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h new file mode 100644 index 00000000..18a2f9f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h @@ -0,0 +1,85 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IActorIndicatorWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UIndicatorDescriptor; +#ifdef LYRAGAME_IActorIndicatorWidget_generated_h +#error "IActorIndicatorWidget.generated.h already included, missing '#pragma once' in IActorIndicatorWidget.h" +#endif +#define LYRAGAME_IActorIndicatorWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void UnbindIndicator_Implementation(const UIndicatorDescriptor* Indicator) {}; \ + virtual void BindIndicator_Implementation(UIndicatorDescriptor* Indicator) {}; \ + DECLARE_FUNCTION(execUnbindIndicator); \ + DECLARE_FUNCTION(execBindIndicator); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UIndicatorWidgetInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorWidgetInterface(UIndicatorWidgetInterface&&); \ + UIndicatorWidgetInterface(const UIndicatorWidgetInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorWidgetInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorWidgetInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UIndicatorWidgetInterface) \ + NO_API virtual ~UIndicatorWidgetInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUIndicatorWidgetInterface(); \ + friend struct Z_Construct_UClass_UIndicatorWidgetInterface_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorWidgetInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorWidgetInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IIndicatorWidgetInterface() {} \ +public: \ + typedef UIndicatorWidgetInterface UClassType; \ + typedef IIndicatorWidgetInterface ThisClass; \ + static void Execute_BindIndicator(UObject* O, UIndicatorDescriptor* Indicator); \ + static void Execute_UnbindIndicator(UObject* O, const UIndicatorDescriptor* Indicator); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp new file mode 100644 index 00000000..a351a5d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/IInteractableTarget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIInteractableTarget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UInteractableTarget +void UInteractableTarget::StaticRegisterNativesUInteractableTarget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractableTarget); +UClass* Z_Construct_UClass_UInteractableTarget_NoRegister() +{ + return UInteractableTarget::StaticClass(); +} +struct Z_Construct_UClass_UInteractableTarget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Interaction/IInteractableTarget.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractableTarget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractableTarget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractableTarget_Statics::ClassParams = { + &UInteractableTarget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractableTarget_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractableTarget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractableTarget() +{ + if (!Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton, Z_Construct_UClass_UInteractableTarget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractableTarget::StaticClass(); +} +UInteractableTarget::UInteractableTarget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractableTarget); +UInteractableTarget::~UInteractableTarget() {} +// End Interface UInteractableTarget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractableTarget, UInteractableTarget::StaticClass, TEXT("UInteractableTarget"), &Z_Registration_Info_UClass_UInteractableTarget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractableTarget), 2018106830U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_1256944562(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.generated.h new file mode 100644 index 00000000..9fbeaf1b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/IInteractableTarget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IInteractableTarget_generated_h +#error "IInteractableTarget.generated.h already included, missing '#pragma once' in IInteractableTarget.h" +#endif +#define LYRAGAME_IInteractableTarget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UInteractableTarget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractableTarget(UInteractableTarget&&); \ + UInteractableTarget(const UInteractableTarget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UInteractableTarget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractableTarget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInteractableTarget) \ + LYRAGAME_API virtual ~UInteractableTarget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUInteractableTarget(); \ + friend struct Z_Construct_UClass_UInteractableTarget_Statics; \ +public: \ + DECLARE_CLASS(UInteractableTarget, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UInteractableTarget) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IInteractableTarget() {} \ +public: \ + typedef UInteractableTarget UClassType; \ + typedef IInteractableTarget ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_34_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp new file mode 100644 index 00000000..3894d6cc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/IInteractionInstigator.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIInteractionInstigator() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionInstigator(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionInstigator_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UInteractionInstigator +void UInteractionInstigator::StaticRegisterNativesUInteractionInstigator() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractionInstigator); +UClass* Z_Construct_UClass_UInteractionInstigator_NoRegister() +{ + return UInteractionInstigator::StaticClass(); +} +struct Z_Construct_UClass_UInteractionInstigator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Interaction/IInteractionInstigator.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractionInstigator_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionInstigator_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractionInstigator_Statics::ClassParams = { + &UInteractionInstigator::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionInstigator_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractionInstigator_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractionInstigator() +{ + if (!Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton, Z_Construct_UClass_UInteractionInstigator_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractionInstigator::StaticClass(); +} +UInteractionInstigator::UInteractionInstigator(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractionInstigator); +UInteractionInstigator::~UInteractionInstigator() {} +// End Interface UInteractionInstigator + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractionInstigator, UInteractionInstigator::StaticClass, TEXT("UInteractionInstigator"), &Z_Registration_Info_UClass_UInteractionInstigator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractionInstigator), 51394017U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_990617268(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.generated.h new file mode 100644 index 00000000..c0f4a6b3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/IInteractionInstigator.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IInteractionInstigator_generated_h +#error "IInteractionInstigator.generated.h already included, missing '#pragma once' in IInteractionInstigator.h" +#endif +#define LYRAGAME_IInteractionInstigator_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UInteractionInstigator(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractionInstigator(UInteractionInstigator&&); \ + UInteractionInstigator(const UInteractionInstigator&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UInteractionInstigator); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractionInstigator); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInteractionInstigator) \ + LYRAGAME_API virtual ~UInteractionInstigator(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUInteractionInstigator(); \ + friend struct Z_Construct_UClass_UInteractionInstigator_Statics; \ +public: \ + DECLARE_CLASS(UInteractionInstigator, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UInteractionInstigator) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IInteractionInstigator() {} \ +public: \ + typedef UInteractionInstigator UClassType; \ + typedef IInteractionInstigator ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.gen.cpp new file mode 100644 index 00000000..cc1a600b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.gen.cpp @@ -0,0 +1,535 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/IPickupable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIPickupable() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupableStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupableStatics_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPickupInstance(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPickupTemplate(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FPickupTemplate +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PickupTemplate; +class UScriptStruct* FPickupTemplate::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPickupTemplate, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PickupTemplate")); + } + return Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPickupTemplate::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPickupTemplate_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "Category", "PickupTemplate" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDef_MetaData[] = { + { "Category", "PickupTemplate" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupTemplate, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupTemplate, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDef_MetaData), NewProp_ItemDef_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_ItemDef, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PickupTemplate", + Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers), + sizeof(FPickupTemplate), + alignof(FPickupTemplate), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPickupTemplate_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPickupTemplate() +{ + if (!Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton, Z_Construct_UScriptStruct_FPickupTemplate_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton; +} +// End ScriptStruct FPickupTemplate + +// Begin ScriptStruct FPickupInstance +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PickupInstance; +class UScriptStruct* FPickupInstance::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPickupInstance, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PickupInstance")); + } + return Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPickupInstance::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPickupInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Item_MetaData[] = { + { "Category", "PickupInstance" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Item; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPickupInstance_Statics::NewProp_Item = { "Item", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupInstance, Item), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Item_MetaData), NewProp_Item_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupInstance_Statics::NewProp_Item, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPickupInstance_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PickupInstance", + Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers), + sizeof(FPickupInstance), + alignof(FPickupInstance), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPickupInstance_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPickupInstance() +{ + if (!Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton, Z_Construct_UScriptStruct_FPickupInstance_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton; +} +// End ScriptStruct FPickupInstance + +// Begin ScriptStruct FInventoryPickup +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InventoryPickup; +class UScriptStruct* FInventoryPickup::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInventoryPickup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InventoryPickup")); + } + return Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInventoryPickup::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInventoryPickup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instances_MetaData[] = { + { "Category", "InventoryPickup" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Templates_MetaData[] = { + { "Category", "InventoryPickup" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Instances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Instances; + static const UECodeGen_Private::FStructPropertyParams NewProp_Templates_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Templates; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances_Inner = { "Instances", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPickupInstance, METADATA_PARAMS(0, nullptr) }; // 4021539528 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances = { "Instances", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInventoryPickup, Instances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instances_MetaData), NewProp_Instances_MetaData) }; // 4021539528 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates_Inner = { "Templates", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPickupTemplate, METADATA_PARAMS(0, nullptr) }; // 3868139398 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates = { "Templates", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInventoryPickup, Templates), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Templates_MetaData), NewProp_Templates_MetaData) }; // 3868139398 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InventoryPickup", + Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers), + sizeof(FInventoryPickup), + alignof(FInventoryPickup), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInventoryPickup_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup() +{ + if (!Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton, Z_Construct_UScriptStruct_FInventoryPickup_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton; +} +// End ScriptStruct FInventoryPickup + +// Begin Interface UPickupable Function GetPickupInventory +struct Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics +{ + struct Pickupable_eventGetPickupInventory_Parms + { + FInventoryPickup ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(Pickupable_eventGetPickupInventory_Parms, ReturnValue), Z_Construct_UScriptStruct_FInventoryPickup, METADATA_PARAMS(0, nullptr) }; // 3290137148 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupable, nullptr, "GetPickupInventory", nullptr, nullptr, Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Pickupable_eventGetPickupInventory_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Pickupable_eventGetPickupInventory_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupable_GetPickupInventory() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IPickupable::execGetPickupInventory) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FInventoryPickup*)Z_Param__Result=P_THIS->GetPickupInventory(); + P_NATIVE_END; +} +// End Interface UPickupable Function GetPickupInventory + +// Begin Interface UPickupable +void UPickupable::StaticRegisterNativesUPickupable() +{ + UClass* Class = UPickupable::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPickupInventory", &IPickupable::execGetPickupInventory }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPickupable); +UClass* Z_Construct_UClass_UPickupable_NoRegister() +{ + return UPickupable::StaticClass(); +} +struct Z_Construct_UClass_UPickupable_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPickupable_GetPickupInventory, "GetPickupInventory" }, // 2150523224 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPickupable_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupable_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPickupable_Statics::ClassParams = { + &UPickupable::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupable_Statics::Class_MetaDataParams), Z_Construct_UClass_UPickupable_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPickupable() +{ + if (!Z_Registration_Info_UClass_UPickupable.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPickupable.OuterSingleton, Z_Construct_UClass_UPickupable_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPickupable.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPickupable::StaticClass(); +} +UPickupable::UPickupable(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPickupable); +UPickupable::~UPickupable() {} +// End Interface UPickupable + +// Begin Class UPickupableStatics Function AddPickupToInventory +struct Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics +{ + struct PickupableStatics_eventAddPickupToInventory_Parms + { + ULyraInventoryManagerComponent* InventoryComponent; + TScriptInterface Pickup; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + { "WorldContext", "Ability" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryComponent; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_Pickup; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_InventoryComponent = { "InventoryComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventAddPickupToInventory_Parms, InventoryComponent), Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryComponent_MetaData), NewProp_InventoryComponent_MetaData) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_Pickup = { "Pickup", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventAddPickupToInventory_Parms, Pickup), Z_Construct_UClass_UPickupable_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_InventoryComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_Pickup, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupableStatics, nullptr, "AddPickupToInventory", nullptr, nullptr, Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PickupableStatics_eventAddPickupToInventory_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PickupableStatics_eventAddPickupToInventory_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPickupableStatics::execAddPickupToInventory) +{ + P_GET_OBJECT(ULyraInventoryManagerComponent,Z_Param_InventoryComponent); + P_GET_TINTERFACE(IPickupable,Z_Param_Pickup); + P_FINISH; + P_NATIVE_BEGIN; + UPickupableStatics::AddPickupToInventory(Z_Param_InventoryComponent,Z_Param_Pickup); + P_NATIVE_END; +} +// End Class UPickupableStatics Function AddPickupToInventory + +// Begin Class UPickupableStatics Function GetFirstPickupableFromActor +struct Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics +{ + struct PickupableStatics_eventGetFirstPickupableFromActor_Parms + { + AActor* Actor; + TScriptInterface ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventGetFirstPickupableFromActor_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventGetFirstPickupableFromActor_Parms, ReturnValue), Z_Construct_UClass_UPickupable_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupableStatics, nullptr, "GetFirstPickupableFromActor", nullptr, nullptr, Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PickupableStatics_eventGetFirstPickupableFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PickupableStatics_eventGetFirstPickupableFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPickupableStatics::execGetFirstPickupableFromActor) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(TScriptInterface*)Z_Param__Result=UPickupableStatics::GetFirstPickupableFromActor(Z_Param_Actor); + P_NATIVE_END; +} +// End Class UPickupableStatics Function GetFirstPickupableFromActor + +// Begin Class UPickupableStatics +void UPickupableStatics::StaticRegisterNativesUPickupableStatics() +{ + UClass* Class = UPickupableStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddPickupToInventory", &UPickupableStatics::execAddPickupToInventory }, + { "GetFirstPickupableFromActor", &UPickupableStatics::execGetFirstPickupableFromActor }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPickupableStatics); +UClass* Z_Construct_UClass_UPickupableStatics_NoRegister() +{ + return UPickupableStatics::StaticClass(); +} +struct Z_Construct_UClass_UPickupableStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "IncludePath", "Inventory/IPickupable.h" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory, "AddPickupToInventory" }, // 3625979158 + { &Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor, "GetFirstPickupableFromActor" }, // 398689282 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPickupableStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupableStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPickupableStatics_Statics::ClassParams = { + &UPickupableStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupableStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_UPickupableStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPickupableStatics() +{ + if (!Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton, Z_Construct_UClass_UPickupableStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPickupableStatics::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPickupableStatics); +UPickupableStatics::~UPickupableStatics() {} +// End Class UPickupableStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPickupTemplate::StaticStruct, Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewStructOps, TEXT("PickupTemplate"), &Z_Registration_Info_UScriptStruct_PickupTemplate, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPickupTemplate), 3868139398U) }, + { FPickupInstance::StaticStruct, Z_Construct_UScriptStruct_FPickupInstance_Statics::NewStructOps, TEXT("PickupInstance"), &Z_Registration_Info_UScriptStruct_PickupInstance, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPickupInstance), 4021539528U) }, + { FInventoryPickup::StaticStruct, Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewStructOps, TEXT("InventoryPickup"), &Z_Registration_Info_UScriptStruct_InventoryPickup, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInventoryPickup), 3290137148U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPickupable, UPickupable::StaticClass, TEXT("UPickupable"), &Z_Registration_Info_UClass_UPickupable, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPickupable), 1088473728U) }, + { Z_Construct_UClass_UPickupableStatics, UPickupableStatics::StaticClass, TEXT("UPickupableStatics"), &Z_Registration_Info_UClass_UPickupableStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPickupableStatics), 4087650878U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_1392840785(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.generated.h new file mode 100644 index 00000000..da6ddabc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IPickupable.generated.h @@ -0,0 +1,141 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/IPickupable.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class IPickupable; +class ULyraInventoryManagerComponent; +struct FInventoryPickup; +#ifdef LYRAGAME_IPickupable_generated_h +#error "IPickupable.generated.h already included, missing '#pragma once' in IPickupable.h" +#endif +#define LYRAGAME_IPickupable_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_24_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPickupTemplate_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_37_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPickupInstance_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_47_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInventoryPickup_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetPickupInventory); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UPickupable(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPickupable(UPickupable&&); \ + UPickupable(const UPickupable&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UPickupable); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPickupable); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPickupable) \ + LYRAGAME_API virtual ~UPickupable(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUPickupable(); \ + friend struct Z_Construct_UClass_UPickupable_Statics; \ +public: \ + DECLARE_CLASS(UPickupable, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UPickupable) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IPickupable() {} \ +public: \ + typedef UPickupable UClassType; \ + typedef IPickupable ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_58_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_67_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAddPickupToInventory); \ + DECLARE_FUNCTION(execGetFirstPickupableFromActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPickupableStatics(); \ + friend struct Z_Construct_UClass_UPickupableStatics_Statics; \ +public: \ + DECLARE_CLASS(UPickupableStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UPickupableStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPickupableStatics(UPickupableStatics&&); \ + UPickupableStatics(const UPickupableStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPickupableStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPickupableStatics); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPickupableStatics) \ + NO_API virtual ~UPickupableStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_75_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp new file mode 100644 index 00000000..9d74e3a0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp @@ -0,0 +1,1745 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorDescriptor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorDescriptor() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode(); +SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EHorizontalAlignment(); +SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EVerticalAlignment(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EActorCanvasProjectionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EActorCanvasProjectionMode; +static UEnum* EActorCanvasProjectionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EActorCanvasProjectionMode")); + } + return Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EActorCanvasProjectionMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ActorBoundingBox.Name", "EActorCanvasProjectionMode::ActorBoundingBox" }, + { "ActorScreenBoundingBox.Name", "EActorCanvasProjectionMode::ActorScreenBoundingBox" }, + { "BlueprintType", "true" }, + { "ComponentBoundingBox.Name", "EActorCanvasProjectionMode::ComponentBoundingBox" }, + { "ComponentPoint.Name", "EActorCanvasProjectionMode::ComponentPoint" }, + { "ComponentScreenBoundingBox.Name", "EActorCanvasProjectionMode::ComponentScreenBoundingBox" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EActorCanvasProjectionMode::ComponentPoint", (int64)EActorCanvasProjectionMode::ComponentPoint }, + { "EActorCanvasProjectionMode::ComponentBoundingBox", (int64)EActorCanvasProjectionMode::ComponentBoundingBox }, + { "EActorCanvasProjectionMode::ComponentScreenBoundingBox", (int64)EActorCanvasProjectionMode::ComponentScreenBoundingBox }, + { "EActorCanvasProjectionMode::ActorBoundingBox", (int64)EActorCanvasProjectionMode::ActorBoundingBox }, + { "EActorCanvasProjectionMode::ActorScreenBoundingBox", (int64)EActorCanvasProjectionMode::ActorScreenBoundingBox }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EActorCanvasProjectionMode", + "EActorCanvasProjectionMode", + Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode() +{ + if (!Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton; +} +// End Enum EActorCanvasProjectionMode + +// Begin Class UIndicatorDescriptor Function GetAutoRemoveWhenIndicatorComponentIsNull +struct Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics +{ + struct IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetAutoRemoveWhenIndicatorComponentIsNull", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetAutoRemoveWhenIndicatorComponentIsNull) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetAutoRemoveWhenIndicatorComponentIsNull(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetAutoRemoveWhenIndicatorComponentIsNull + +// Begin Class UIndicatorDescriptor Function GetBoundingBoxAnchor +struct Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics +{ + struct IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms + { + FVector ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetBoundingBoxAnchor", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetBoundingBoxAnchor) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector*)Z_Param__Result=P_THIS->GetBoundingBoxAnchor(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetBoundingBoxAnchor + +// Begin Class UIndicatorDescriptor Function GetClampToScreen +struct Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics +{ + struct IndicatorDescriptor_eventGetClampToScreen_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Clamp the indicator to the edge of the screen?\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clamp the indicator to the edge of the screen?" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetClampToScreen_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetClampToScreen_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetClampToScreen", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::IndicatorDescriptor_eventGetClampToScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::IndicatorDescriptor_eventGetClampToScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetClampToScreen) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetClampToScreen(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetClampToScreen + +// Begin Class UIndicatorDescriptor Function GetComponentSocketName +struct Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics +{ + struct IndicatorDescriptor_eventGetComponentSocketName_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetComponentSocketName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetComponentSocketName", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::IndicatorDescriptor_eventGetComponentSocketName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::IndicatorDescriptor_eventGetComponentSocketName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetComponentSocketName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetComponentSocketName(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetComponentSocketName + +// Begin Class UIndicatorDescriptor Function GetDataObject +struct Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics +{ + struct IndicatorDescriptor_eventGetDataObject_Parms + { + UObject* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetDataObject_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetDataObject", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::IndicatorDescriptor_eventGetDataObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::IndicatorDescriptor_eventGetDataObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetDataObject) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UObject**)Z_Param__Result=P_THIS->GetDataObject(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetDataObject + +// Begin Class UIndicatorDescriptor Function GetHAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics +{ + struct IndicatorDescriptor_eventGetHAlign_Parms + { + TEnumAsByte ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Horizontal alignment to the point in space to place the indicator at.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Horizontal alignment to the point in space to place the indicator at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetHAlign_Parms, ReturnValue), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(0, nullptr) }; // 1062133256 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetHAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::IndicatorDescriptor_eventGetHAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::IndicatorDescriptor_eventGetHAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetHAlign) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TEnumAsByte*)Z_Param__Result=P_THIS->GetHAlign(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetHAlign + +// Begin Class UIndicatorDescriptor Function GetIndicatorClass +struct Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics +{ + struct IndicatorDescriptor_eventGetIndicatorClass_Parms + { + TSoftClassPtr ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetIndicatorClass_Parms, ReturnValue), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetIndicatorClass", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::IndicatorDescriptor_eventGetIndicatorClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::IndicatorDescriptor_eventGetIndicatorClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetIndicatorClass) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TSoftClassPtr *)Z_Param__Result=P_THIS->GetIndicatorClass(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetIndicatorClass + +// Begin Class UIndicatorDescriptor Function GetIsVisible +struct Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics +{ + struct IndicatorDescriptor_eventGetIsVisible_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Layout Properties\n//=======================\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layout Properties" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetIsVisible_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetIsVisible_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetIsVisible", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::IndicatorDescriptor_eventGetIsVisible_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::IndicatorDescriptor_eventGetIsVisible_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetIsVisible) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsVisible(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetIsVisible + +// Begin Class UIndicatorDescriptor Function GetPriority +struct Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics +{ + struct IndicatorDescriptor_eventGetPriority_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Allows sorting the indicators (after they are sorted by depth), to allow some group of indicators\n// to always be in front of others.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows sorting the indicators (after they are sorted by depth), to allow some group of indicators\nto always be in front of others." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetPriority_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetPriority", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::IndicatorDescriptor_eventGetPriority_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::IndicatorDescriptor_eventGetPriority_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetPriority() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetPriority) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetPriority(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetPriority + +// Begin Class UIndicatorDescriptor Function GetProjectionMode +struct Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics +{ + struct IndicatorDescriptor_eventGetProjectionMode_Parms + { + EActorCanvasProjectionMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetProjectionMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(0, nullptr) }; // 2516112598 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetProjectionMode", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::IndicatorDescriptor_eventGetProjectionMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::IndicatorDescriptor_eventGetProjectionMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetProjectionMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(EActorCanvasProjectionMode*)Z_Param__Result=P_THIS->GetProjectionMode(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetProjectionMode + +// Begin Class UIndicatorDescriptor Function GetSceneComponent +struct Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics +{ + struct IndicatorDescriptor_eventGetSceneComponent_Parms + { + USceneComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetSceneComponent_Parms, ReturnValue), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetSceneComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::IndicatorDescriptor_eventGetSceneComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::IndicatorDescriptor_eventGetSceneComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetSceneComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(USceneComponent**)Z_Param__Result=P_THIS->GetSceneComponent(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetSceneComponent + +// Begin Class UIndicatorDescriptor Function GetScreenSpaceOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics +{ + struct IndicatorDescriptor_eventGetScreenSpaceOffset_Parms + { + FVector2D ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The position offset for the indicator in screen space.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The position offset for the indicator in screen space." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetScreenSpaceOffset_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetScreenSpaceOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::IndicatorDescriptor_eventGetScreenSpaceOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::IndicatorDescriptor_eventGetScreenSpaceOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetScreenSpaceOffset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector2D*)Z_Param__Result=P_THIS->GetScreenSpaceOffset(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetScreenSpaceOffset + +// Begin Class UIndicatorDescriptor Function GetShowClampToScreenArrow +struct Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics +{ + struct IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Show the arrow if clamping to the edge of the screen?\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Show the arrow if clamping to the edge of the screen?" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetShowClampToScreenArrow", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetShowClampToScreenArrow) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetShowClampToScreenArrow(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetShowClampToScreenArrow + +// Begin Class UIndicatorDescriptor Function GetVAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics +{ + struct IndicatorDescriptor_eventGetVAlign_Parms + { + TEnumAsByte ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Vertical alignment to the point in space to place the indicator at.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Vertical alignment to the point in space to place the indicator at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetVAlign_Parms, ReturnValue), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(0, nullptr) }; // 550775363 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetVAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::IndicatorDescriptor_eventGetVAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::IndicatorDescriptor_eventGetVAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetVAlign) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TEnumAsByte*)Z_Param__Result=P_THIS->GetVAlign(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetVAlign + +// Begin Class UIndicatorDescriptor Function GetWorldPositionOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics +{ + struct IndicatorDescriptor_eventGetWorldPositionOffset_Parms + { + FVector ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The position offset for the indicator in world space.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The position offset for the indicator in world space." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetWorldPositionOffset_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetWorldPositionOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::IndicatorDescriptor_eventGetWorldPositionOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::IndicatorDescriptor_eventGetWorldPositionOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetWorldPositionOffset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector*)Z_Param__Result=P_THIS->GetWorldPositionOffset(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetWorldPositionOffset + +// Begin Class UIndicatorDescriptor Function SetAutoRemoveWhenIndicatorComponentIsNull +struct Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics +{ + struct IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms + { + bool CanAutomaticallyRemove; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_CanAutomaticallyRemove_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_CanAutomaticallyRemove; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms*)Obj)->CanAutomaticallyRemove = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove = { "CanAutomaticallyRemove", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetAutoRemoveWhenIndicatorComponentIsNull", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetAutoRemoveWhenIndicatorComponentIsNull) +{ + P_GET_UBOOL(Z_Param_CanAutomaticallyRemove); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAutoRemoveWhenIndicatorComponentIsNull(Z_Param_CanAutomaticallyRemove); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetAutoRemoveWhenIndicatorComponentIsNull + +// Begin Class UIndicatorDescriptor Function SetBoundingBoxAnchor +struct Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics +{ + struct IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms + { + FVector InBoundingBoxAnchor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InBoundingBoxAnchor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::NewProp_InBoundingBoxAnchor = { "InBoundingBoxAnchor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms, InBoundingBoxAnchor), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::NewProp_InBoundingBoxAnchor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetBoundingBoxAnchor", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetBoundingBoxAnchor) +{ + P_GET_STRUCT(FVector,Z_Param_InBoundingBoxAnchor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundingBoxAnchor(Z_Param_InBoundingBoxAnchor); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetBoundingBoxAnchor + +// Begin Class UIndicatorDescriptor Function SetClampToScreen +struct Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics +{ + struct IndicatorDescriptor_eventSetClampToScreen_Parms + { + bool bValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetClampToScreen_Parms*)Obj)->bValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue = { "bValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetClampToScreen_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetClampToScreen", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::IndicatorDescriptor_eventSetClampToScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::IndicatorDescriptor_eventSetClampToScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetClampToScreen) +{ + P_GET_UBOOL(Z_Param_bValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetClampToScreen(Z_Param_bValue); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetClampToScreen + +// Begin Class UIndicatorDescriptor Function SetComponentSocketName +struct Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics +{ + struct IndicatorDescriptor_eventSetComponentSocketName_Parms + { + FName SocketName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetComponentSocketName_Parms, SocketName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::NewProp_SocketName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetComponentSocketName", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::IndicatorDescriptor_eventSetComponentSocketName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::IndicatorDescriptor_eventSetComponentSocketName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetComponentSocketName) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SocketName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetComponentSocketName(Z_Param_SocketName); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetComponentSocketName + +// Begin Class UIndicatorDescriptor Function SetDataObject +struct Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics +{ + struct IndicatorDescriptor_eventSetDataObject_Parms + { + UObject* InDataObject; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InDataObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::NewProp_InDataObject = { "InDataObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetDataObject_Parms, InDataObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::NewProp_InDataObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetDataObject", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::IndicatorDescriptor_eventSetDataObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::IndicatorDescriptor_eventSetDataObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetDataObject) +{ + P_GET_OBJECT(UObject,Z_Param_InDataObject); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDataObject(Z_Param_InDataObject); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetDataObject + +// Begin Class UIndicatorDescriptor Function SetDesiredVisibility +struct Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics +{ + struct IndicatorDescriptor_eventSetDesiredVisibility_Parms + { + bool InVisible; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_InVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_InVisible; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetDesiredVisibility_Parms*)Obj)->InVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible = { "InVisible", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetDesiredVisibility_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetDesiredVisibility", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::IndicatorDescriptor_eventSetDesiredVisibility_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::IndicatorDescriptor_eventSetDesiredVisibility_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetDesiredVisibility) +{ + P_GET_UBOOL(Z_Param_InVisible); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDesiredVisibility(Z_Param_InVisible); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetDesiredVisibility + +// Begin Class UIndicatorDescriptor Function SetHAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics +{ + struct IndicatorDescriptor_eventSetHAlign_Parms + { + TEnumAsByte InHAlignment; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InHAlignment; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::NewProp_InHAlignment = { "InHAlignment", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetHAlign_Parms, InHAlignment), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(0, nullptr) }; // 1062133256 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::NewProp_InHAlignment, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetHAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::IndicatorDescriptor_eventSetHAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::IndicatorDescriptor_eventSetHAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetHAlign) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_InHAlignment); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHAlign(EHorizontalAlignment(Z_Param_InHAlignment)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetHAlign + +// Begin Class UIndicatorDescriptor Function SetIndicatorClass +struct Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics +{ + struct IndicatorDescriptor_eventSetIndicatorClass_Parms + { + TSoftClassPtr InIndicatorWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_InIndicatorWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::NewProp_InIndicatorWidgetClass = { "InIndicatorWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetIndicatorClass_Parms, InIndicatorWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::NewProp_InIndicatorWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetIndicatorClass", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::IndicatorDescriptor_eventSetIndicatorClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::IndicatorDescriptor_eventSetIndicatorClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetIndicatorClass) +{ + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_InIndicatorWidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetIndicatorClass(Z_Param_InIndicatorWidgetClass); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetIndicatorClass + +// Begin Class UIndicatorDescriptor Function SetPriority +struct Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics +{ + struct IndicatorDescriptor_eventSetPriority_Parms + { + int32 InPriority; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InPriority; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::NewProp_InPriority = { "InPriority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetPriority_Parms, InPriority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::NewProp_InPriority, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetPriority", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::IndicatorDescriptor_eventSetPriority_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::IndicatorDescriptor_eventSetPriority_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetPriority() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetPriority) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InPriority); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetPriority(Z_Param_InPriority); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetPriority + +// Begin Class UIndicatorDescriptor Function SetProjectionMode +struct Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics +{ + struct IndicatorDescriptor_eventSetProjectionMode_Parms + { + EActorCanvasProjectionMode InProjectionMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InProjectionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InProjectionMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode = { "InProjectionMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetProjectionMode_Parms, InProjectionMode), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(0, nullptr) }; // 2516112598 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetProjectionMode", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::IndicatorDescriptor_eventSetProjectionMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::IndicatorDescriptor_eventSetProjectionMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetProjectionMode) +{ + P_GET_ENUM(EActorCanvasProjectionMode,Z_Param_InProjectionMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetProjectionMode(EActorCanvasProjectionMode(Z_Param_InProjectionMode)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetProjectionMode + +// Begin Class UIndicatorDescriptor Function SetSceneComponent +struct Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics +{ + struct IndicatorDescriptor_eventSetSceneComponent_Parms + { + USceneComponent* InComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::NewProp_InComponent = { "InComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetSceneComponent_Parms, InComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InComponent_MetaData), NewProp_InComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::NewProp_InComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetSceneComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::IndicatorDescriptor_eventSetSceneComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::IndicatorDescriptor_eventSetSceneComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetSceneComponent) +{ + P_GET_OBJECT(USceneComponent,Z_Param_InComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSceneComponent(Z_Param_InComponent); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetSceneComponent + +// Begin Class UIndicatorDescriptor Function SetScreenSpaceOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics +{ + struct IndicatorDescriptor_eventSetScreenSpaceOffset_Parms + { + FVector2D Offset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Offset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::NewProp_Offset = { "Offset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetScreenSpaceOffset_Parms, Offset), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::NewProp_Offset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetScreenSpaceOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::IndicatorDescriptor_eventSetScreenSpaceOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::IndicatorDescriptor_eventSetScreenSpaceOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetScreenSpaceOffset) +{ + P_GET_STRUCT(FVector2D,Z_Param_Offset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetScreenSpaceOffset(Z_Param_Offset); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetScreenSpaceOffset + +// Begin Class UIndicatorDescriptor Function SetShowClampToScreenArrow +struct Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics +{ + struct IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms + { + bool bValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms*)Obj)->bValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue = { "bValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetShowClampToScreenArrow", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetShowClampToScreenArrow) +{ + P_GET_UBOOL(Z_Param_bValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowClampToScreenArrow(Z_Param_bValue); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetShowClampToScreenArrow + +// Begin Class UIndicatorDescriptor Function SetVAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics +{ + struct IndicatorDescriptor_eventSetVAlign_Parms + { + TEnumAsByte InVAlignment; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InVAlignment; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::NewProp_InVAlignment = { "InVAlignment", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetVAlign_Parms, InVAlignment), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(0, nullptr) }; // 550775363 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::NewProp_InVAlignment, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetVAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::IndicatorDescriptor_eventSetVAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::IndicatorDescriptor_eventSetVAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetVAlign) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_InVAlignment); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetVAlign(EVerticalAlignment(Z_Param_InVAlignment)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetVAlign + +// Begin Class UIndicatorDescriptor Function SetWorldPositionOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics +{ + struct IndicatorDescriptor_eventSetWorldPositionOffset_Parms + { + FVector Offset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Offset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::NewProp_Offset = { "Offset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetWorldPositionOffset_Parms, Offset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::NewProp_Offset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetWorldPositionOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::IndicatorDescriptor_eventSetWorldPositionOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::IndicatorDescriptor_eventSetWorldPositionOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetWorldPositionOffset) +{ + P_GET_STRUCT(FVector,Z_Param_Offset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetWorldPositionOffset(Z_Param_Offset); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetWorldPositionOffset + +// Begin Class UIndicatorDescriptor Function UnregisterIndicator +struct Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "UnregisterIndicator", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execUnregisterIndicator) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterIndicator(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function UnregisterIndicator + +// Begin Class UIndicatorDescriptor +void UIndicatorDescriptor::StaticRegisterNativesUIndicatorDescriptor() +{ + UClass* Class = UIndicatorDescriptor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAutoRemoveWhenIndicatorComponentIsNull", &UIndicatorDescriptor::execGetAutoRemoveWhenIndicatorComponentIsNull }, + { "GetBoundingBoxAnchor", &UIndicatorDescriptor::execGetBoundingBoxAnchor }, + { "GetClampToScreen", &UIndicatorDescriptor::execGetClampToScreen }, + { "GetComponentSocketName", &UIndicatorDescriptor::execGetComponentSocketName }, + { "GetDataObject", &UIndicatorDescriptor::execGetDataObject }, + { "GetHAlign", &UIndicatorDescriptor::execGetHAlign }, + { "GetIndicatorClass", &UIndicatorDescriptor::execGetIndicatorClass }, + { "GetIsVisible", &UIndicatorDescriptor::execGetIsVisible }, + { "GetPriority", &UIndicatorDescriptor::execGetPriority }, + { "GetProjectionMode", &UIndicatorDescriptor::execGetProjectionMode }, + { "GetSceneComponent", &UIndicatorDescriptor::execGetSceneComponent }, + { "GetScreenSpaceOffset", &UIndicatorDescriptor::execGetScreenSpaceOffset }, + { "GetShowClampToScreenArrow", &UIndicatorDescriptor::execGetShowClampToScreenArrow }, + { "GetVAlign", &UIndicatorDescriptor::execGetVAlign }, + { "GetWorldPositionOffset", &UIndicatorDescriptor::execGetWorldPositionOffset }, + { "SetAutoRemoveWhenIndicatorComponentIsNull", &UIndicatorDescriptor::execSetAutoRemoveWhenIndicatorComponentIsNull }, + { "SetBoundingBoxAnchor", &UIndicatorDescriptor::execSetBoundingBoxAnchor }, + { "SetClampToScreen", &UIndicatorDescriptor::execSetClampToScreen }, + { "SetComponentSocketName", &UIndicatorDescriptor::execSetComponentSocketName }, + { "SetDataObject", &UIndicatorDescriptor::execSetDataObject }, + { "SetDesiredVisibility", &UIndicatorDescriptor::execSetDesiredVisibility }, + { "SetHAlign", &UIndicatorDescriptor::execSetHAlign }, + { "SetIndicatorClass", &UIndicatorDescriptor::execSetIndicatorClass }, + { "SetPriority", &UIndicatorDescriptor::execSetPriority }, + { "SetProjectionMode", &UIndicatorDescriptor::execSetProjectionMode }, + { "SetSceneComponent", &UIndicatorDescriptor::execSetSceneComponent }, + { "SetScreenSpaceOffset", &UIndicatorDescriptor::execSetScreenSpaceOffset }, + { "SetShowClampToScreenArrow", &UIndicatorDescriptor::execSetShowClampToScreenArrow }, + { "SetVAlign", &UIndicatorDescriptor::execSetVAlign }, + { "SetWorldPositionOffset", &UIndicatorDescriptor::execSetWorldPositionOffset }, + { "UnregisterIndicator", &UIndicatorDescriptor::execUnregisterIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorDescriptor); +UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister() +{ + return UIndicatorDescriptor::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Describes and controls an active indicator. It is highly recommended that your widget implements\n * IActorIndicatorWidget so that it can 'bind' to the associated data.\n */" }, +#endif + { "IncludePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes and controls an active indicator. It is highly recommended that your widget implements\nIActorIndicatorWidget so that it can 'bind' to the associated data." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bVisible_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bClampToScreen_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowClampToScreenArrow_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideScreenPosition_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ProjectionMode_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HAlignment_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VAlignment_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundingBoxAnchor_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScreenSpaceOffset_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldPositionOffset_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DataObject_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Component_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentSocketName_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IndicatorWidgetClass_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ManagerPtr_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bVisible; + static void NewProp_bClampToScreen_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bClampToScreen; + static void NewProp_bShowClampToScreenArrow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowClampToScreenArrow; + static void NewProp_bOverrideScreenPosition_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideScreenPosition; + static void NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAutoRemoveWhenIndicatorComponentIsNull; + static const UECodeGen_Private::FBytePropertyParams NewProp_ProjectionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ProjectionMode; + static const UECodeGen_Private::FBytePropertyParams NewProp_HAlignment; + static const UECodeGen_Private::FBytePropertyParams NewProp_VAlignment; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundingBoxAnchor; + static const UECodeGen_Private::FStructPropertyParams NewProp_ScreenSpaceOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_WorldPositionOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Component; + static const UECodeGen_Private::FNamePropertyParams NewProp_ComponentSocketName; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_IndicatorWidgetClass; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ManagerPtr; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull, "GetAutoRemoveWhenIndicatorComponentIsNull" }, // 586661031 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor, "GetBoundingBoxAnchor" }, // 3612467272 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen, "GetClampToScreen" }, // 1240186353 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName, "GetComponentSocketName" }, // 1507430976 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject, "GetDataObject" }, // 375881837 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign, "GetHAlign" }, // 4274260103 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass, "GetIndicatorClass" }, // 402199051 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible, "GetIsVisible" }, // 1119965446 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetPriority, "GetPriority" }, // 807588186 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode, "GetProjectionMode" }, // 469690149 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent, "GetSceneComponent" }, // 2937080312 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset, "GetScreenSpaceOffset" }, // 1966415760 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow, "GetShowClampToScreenArrow" }, // 1091688510 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign, "GetVAlign" }, // 1541585313 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset, "GetWorldPositionOffset" }, // 3229724626 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull, "SetAutoRemoveWhenIndicatorComponentIsNull" }, // 4227089716 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor, "SetBoundingBoxAnchor" }, // 237700587 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen, "SetClampToScreen" }, // 3757377185 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName, "SetComponentSocketName" }, // 2132015575 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject, "SetDataObject" }, // 1015785284 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility, "SetDesiredVisibility" }, // 3795572908 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign, "SetHAlign" }, // 949138408 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass, "SetIndicatorClass" }, // 2491182527 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetPriority, "SetPriority" }, // 207615074 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode, "SetProjectionMode" }, // 3188167591 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent, "SetSceneComponent" }, // 3350924914 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset, "SetScreenSpaceOffset" }, // 3230735886 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow, "SetShowClampToScreenArrow" }, // 2064956278 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign, "SetVAlign" }, // 2670287014 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset, "SetWorldPositionOffset" }, // 184897898 + { &Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator, "UnregisterIndicator" }, // 152098449 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible = { "bVisible", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bVisible_MetaData), NewProp_bVisible_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bClampToScreen = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen = { "bClampToScreen", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bClampToScreen_MetaData), NewProp_bClampToScreen_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bShowClampToScreenArrow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow = { "bShowClampToScreenArrow", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowClampToScreenArrow_MetaData), NewProp_bShowClampToScreenArrow_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bOverrideScreenPosition = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition = { "bOverrideScreenPosition", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideScreenPosition_MetaData), NewProp_bOverrideScreenPosition_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bAutoRemoveWhenIndicatorComponentIsNull = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull = { "bAutoRemoveWhenIndicatorComponentIsNull", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData), NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode = { "ProjectionMode", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ProjectionMode), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ProjectionMode_MetaData), NewProp_ProjectionMode_MetaData) }; // 2516112598 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_HAlignment = { "HAlignment", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, HAlignment), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HAlignment_MetaData), NewProp_HAlignment_MetaData) }; // 1062133256 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_VAlignment = { "VAlignment", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, VAlignment), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VAlignment_MetaData), NewProp_VAlignment_MetaData) }; // 550775363 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_BoundingBoxAnchor = { "BoundingBoxAnchor", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, BoundingBoxAnchor), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundingBoxAnchor_MetaData), NewProp_BoundingBoxAnchor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ScreenSpaceOffset = { "ScreenSpaceOffset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ScreenSpaceOffset), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScreenSpaceOffset_MetaData), NewProp_ScreenSpaceOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_WorldPositionOffset = { "WorldPositionOffset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, WorldPositionOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldPositionOffset_MetaData), NewProp_WorldPositionOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_DataObject = { "DataObject", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, DataObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DataObject_MetaData), NewProp_DataObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Component = { "Component", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, Component), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Component_MetaData), NewProp_Component_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ComponentSocketName = { "ComponentSocketName", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ComponentSocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentSocketName_MetaData), NewProp_ComponentSocketName_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_IndicatorWidgetClass = { "IndicatorWidgetClass", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, IndicatorWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IndicatorWidgetClass_MetaData), NewProp_IndicatorWidgetClass_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ManagerPtr = { "ManagerPtr", nullptr, (EPropertyFlags)0x0044000000080008, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ManagerPtr), Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ManagerPtr_MetaData), NewProp_ManagerPtr_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_HAlignment, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_VAlignment, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_BoundingBoxAnchor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ScreenSpaceOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_WorldPositionOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_DataObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Component, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ComponentSocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_IndicatorWidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ManagerPtr, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UIndicatorDescriptor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorDescriptor_Statics::ClassParams = { + &UIndicatorDescriptor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorDescriptor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorDescriptor() +{ + if (!Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton, Z_Construct_UClass_UIndicatorDescriptor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorDescriptor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorDescriptor); +UIndicatorDescriptor::~UIndicatorDescriptor() {} +// End Class UIndicatorDescriptor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EActorCanvasProjectionMode_StaticEnum, TEXT("EActorCanvasProjectionMode"), &Z_Registration_Info_UEnum_EActorCanvasProjectionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2516112598U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorDescriptor, UIndicatorDescriptor::StaticClass, TEXT("UIndicatorDescriptor"), &Z_Registration_Info_UClass_UIndicatorDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorDescriptor), 852713036U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_3577030636(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h new file mode 100644 index 00000000..a9573e5c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h @@ -0,0 +1,104 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorDescriptor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class USceneComponent; +class UUserWidget; +enum class EActorCanvasProjectionMode : uint8; +#ifdef LYRAGAME_IndicatorDescriptor_generated_h +#error "IndicatorDescriptor.generated.h already included, missing '#pragma once' in IndicatorDescriptor.h" +#endif +#define LYRAGAME_IndicatorDescriptor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnregisterIndicator); \ + DECLARE_FUNCTION(execSetPriority); \ + DECLARE_FUNCTION(execGetPriority); \ + DECLARE_FUNCTION(execSetBoundingBoxAnchor); \ + DECLARE_FUNCTION(execGetBoundingBoxAnchor); \ + DECLARE_FUNCTION(execSetScreenSpaceOffset); \ + DECLARE_FUNCTION(execGetScreenSpaceOffset); \ + DECLARE_FUNCTION(execSetWorldPositionOffset); \ + DECLARE_FUNCTION(execGetWorldPositionOffset); \ + DECLARE_FUNCTION(execSetShowClampToScreenArrow); \ + DECLARE_FUNCTION(execGetShowClampToScreenArrow); \ + DECLARE_FUNCTION(execSetClampToScreen); \ + DECLARE_FUNCTION(execGetClampToScreen); \ + DECLARE_FUNCTION(execSetVAlign); \ + DECLARE_FUNCTION(execGetVAlign); \ + DECLARE_FUNCTION(execSetHAlign); \ + DECLARE_FUNCTION(execGetHAlign); \ + DECLARE_FUNCTION(execSetProjectionMode); \ + DECLARE_FUNCTION(execGetProjectionMode); \ + DECLARE_FUNCTION(execSetDesiredVisibility); \ + DECLARE_FUNCTION(execGetIsVisible); \ + DECLARE_FUNCTION(execGetAutoRemoveWhenIndicatorComponentIsNull); \ + DECLARE_FUNCTION(execSetAutoRemoveWhenIndicatorComponentIsNull); \ + DECLARE_FUNCTION(execSetIndicatorClass); \ + DECLARE_FUNCTION(execGetIndicatorClass); \ + DECLARE_FUNCTION(execSetComponentSocketName); \ + DECLARE_FUNCTION(execGetComponentSocketName); \ + DECLARE_FUNCTION(execSetSceneComponent); \ + DECLARE_FUNCTION(execGetSceneComponent); \ + DECLARE_FUNCTION(execSetDataObject); \ + DECLARE_FUNCTION(execGetDataObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUIndicatorDescriptor(); \ + friend struct Z_Construct_UClass_UIndicatorDescriptor_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorDescriptor, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorDescriptor) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorDescriptor(UIndicatorDescriptor&&); \ + UIndicatorDescriptor(const UIndicatorDescriptor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorDescriptor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorDescriptor); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UIndicatorDescriptor) \ + NO_API virtual ~UIndicatorDescriptor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_36_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h + + +#define FOREACH_ENUM_EACTORCANVASPROJECTIONMODE(op) \ + op(EActorCanvasProjectionMode::ComponentPoint) \ + op(EActorCanvasProjectionMode::ComponentBoundingBox) \ + op(EActorCanvasProjectionMode::ComponentScreenBoundingBox) \ + op(EActorCanvasProjectionMode::ActorBoundingBox) \ + op(EActorCanvasProjectionMode::ActorScreenBoundingBox) + +enum class EActorCanvasProjectionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp new file mode 100644 index 00000000..279e7f7b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp @@ -0,0 +1,109 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorLayer.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorLayer() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLayer(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLayer_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UIndicatorLayer +void UIndicatorLayer::StaticRegisterNativesUIndicatorLayer() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorLayer); +UClass* Z_Construct_UClass_UIndicatorLayer_NoRegister() +{ + return UIndicatorLayer::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorLayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/IndicatorSystem/IndicatorLayer.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArrowBrush_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Default arrow brush to use if UI is clamped to the screen and needs to show an arrow. */" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default arrow brush to use if UI is clamped to the screen and needs to show an arrow." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ArrowBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorLayer_Statics::NewProp_ArrowBrush = { "ArrowBrush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorLayer, ArrowBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArrowBrush_MetaData), NewProp_ArrowBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorLayer_Statics::NewProp_ArrowBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UIndicatorLayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorLayer_Statics::ClassParams = { + &UIndicatorLayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorLayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorLayer() +{ + if (!Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton, Z_Construct_UClass_UIndicatorLayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorLayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorLayer); +UIndicatorLayer::~UIndicatorLayer() {} +// End Class UIndicatorLayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorLayer, UIndicatorLayer::StaticClass, TEXT("UIndicatorLayer"), &Z_Registration_Info_UClass_UIndicatorLayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorLayer), 4224139507U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_2353594586(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.generated.h new file mode 100644 index 00000000..2c518106 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLayer.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorLayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IndicatorLayer_generated_h +#error "IndicatorLayer.generated.h already included, missing '#pragma once' in IndicatorLayer.h" +#endif +#define LYRAGAME_IndicatorLayer_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_INCLASS \ +private: \ + static void StaticRegisterNativesUIndicatorLayer(); \ + friend struct Z_Construct_UClass_UIndicatorLayer_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorLayer, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorLayer) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UIndicatorLayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UIndicatorLayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorLayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorLayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorLayer(UIndicatorLayer&&); \ + UIndicatorLayer(const UIndicatorLayer&); \ +public: \ + NO_API virtual ~UIndicatorLayer(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp new file mode 100644 index 00000000..844a26a1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp @@ -0,0 +1,154 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorLibrary.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorLibrary() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UIndicatorLibrary Function GetIndicatorManagerComponent +struct Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics +{ + struct IndicatorLibrary_eventGetIndicatorManagerComponent_Parms + { + AController* Controller; + ULyraIndicatorManagerComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Controller; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_Controller = { "Controller", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorLibrary_eventGetIndicatorManagerComponent_Parms, Controller), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorLibrary_eventGetIndicatorManagerComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_Controller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorLibrary, nullptr, "GetIndicatorManagerComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::IndicatorLibrary_eventGetIndicatorManagerComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::IndicatorLibrary_eventGetIndicatorManagerComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorLibrary::execGetIndicatorManagerComponent) +{ + P_GET_OBJECT(AController,Z_Param_Controller); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraIndicatorManagerComponent**)Z_Param__Result=UIndicatorLibrary::GetIndicatorManagerComponent(Z_Param_Controller); + P_NATIVE_END; +} +// End Class UIndicatorLibrary Function GetIndicatorManagerComponent + +// Begin Class UIndicatorLibrary +void UIndicatorLibrary::StaticRegisterNativesUIndicatorLibrary() +{ + UClass* Class = UIndicatorLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetIndicatorManagerComponent", &UIndicatorLibrary::execGetIndicatorManagerComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorLibrary); +UClass* Z_Construct_UClass_UIndicatorLibrary_NoRegister() +{ + return UIndicatorLibrary::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent, "GetIndicatorManagerComponent" }, // 1462875548 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UIndicatorLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorLibrary_Statics::ClassParams = { + &UIndicatorLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorLibrary() +{ + if (!Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton, Z_Construct_UClass_UIndicatorLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorLibrary::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorLibrary); +UIndicatorLibrary::~UIndicatorLibrary() {} +// End Class UIndicatorLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorLibrary, UIndicatorLibrary::StaticClass, TEXT("UIndicatorLibrary"), &Z_Registration_Info_UClass_UIndicatorLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorLibrary), 3126916581U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_2897106164(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.generated.h new file mode 100644 index 00000000..ea5b11c9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IndicatorLibrary.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorLibrary.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class ULyraIndicatorManagerComponent; +#ifdef LYRAGAME_IndicatorLibrary_generated_h +#error "IndicatorLibrary.generated.h already included, missing '#pragma once' in IndicatorLibrary.h" +#endif +#define LYRAGAME_IndicatorLibrary_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetIndicatorManagerComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUIndicatorLibrary(); \ + friend struct Z_Construct_UClass_UIndicatorLibrary_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorLibrary, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorLibrary(UIndicatorLibrary&&); \ + UIndicatorLibrary(const UIndicatorLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorLibrary); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UIndicatorLibrary) \ + NO_API virtual ~UIndicatorLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.gen.cpp new file mode 100644 index 00000000..168ec4ba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.gen.cpp @@ -0,0 +1,186 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionOption.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionOption() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemComponent_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInteractionOption +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InteractionOption; +class UScriptStruct* FInteractionOption::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInteractionOption, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InteractionOption")); + } + return Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInteractionOption::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInteractionOption_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableTarget_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The interactable target */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interactable target" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Simple text the interaction might return */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Simple text the interaction might return" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubText_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Simple sub-text the interaction might return */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Simple sub-text the interaction might return" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionAbilityToGrant_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability to grant the avatar when they get near interactable objects. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability to grant the avatar when they get near interactable objects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetAbilitySystem_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability system on the target that can be used for the TargetInteractionHandle and sending the event, if needed. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system on the target that can be used for the TargetInteractionHandle and sending the event, if needed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetInteractionAbilityHandle_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability spec to activate on the object for this option. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability spec to activate on the object for this option." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionWidgetClass_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The widget to show for this kind of interaction. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to show for this kind of interaction." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FInterfacePropertyParams NewProp_InteractableTarget; + static const UECodeGen_Private::FTextPropertyParams NewProp_Text; + static const UECodeGen_Private::FTextPropertyParams NewProp_SubText; + static const UECodeGen_Private::FClassPropertyParams NewProp_InteractionAbilityToGrant; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetAbilitySystem; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetInteractionAbilityHandle; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_InteractionWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractableTarget = { "InteractableTarget", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractableTarget), Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableTarget_MetaData), NewProp_InteractableTarget_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_Text = { "Text", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, Text), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_MetaData), NewProp_Text_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_SubText = { "SubText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, SubText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubText_MetaData), NewProp_SubText_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionAbilityToGrant = { "InteractionAbilityToGrant", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractionAbilityToGrant), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionAbilityToGrant_MetaData), NewProp_InteractionAbilityToGrant_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetAbilitySystem = { "TargetAbilitySystem", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, TargetAbilitySystem), Z_Construct_UClass_UAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetAbilitySystem_MetaData), NewProp_TargetAbilitySystem_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetInteractionAbilityHandle = { "TargetInteractionAbilityHandle", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, TargetInteractionAbilityHandle), Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetInteractionAbilityHandle_MetaData), NewProp_TargetInteractionAbilityHandle_MetaData) }; // 3490030742 +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionWidgetClass = { "InteractionWidgetClass", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractionWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionWidgetClass_MetaData), NewProp_InteractionWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractableTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_Text, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_SubText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionAbilityToGrant, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetAbilitySystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetInteractionAbilityHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInteractionOption_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InteractionOption", + Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers), + sizeof(FInteractionOption), + alignof(FInteractionOption), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInteractionOption_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton, Z_Construct_UScriptStruct_FInteractionOption_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton; +} +// End ScriptStruct FInteractionOption + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInteractionOption::StaticStruct, Z_Construct_UScriptStruct_FInteractionOption_Statics::NewStructOps, TEXT("InteractionOption"), &Z_Registration_Info_UScriptStruct_InteractionOption, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInteractionOption), 4256573821U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_3492746877(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.generated.h new file mode 100644 index 00000000..7fa87937 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionOption.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InteractionOption_generated_h +#error "InteractionOption.generated.h already included, missing '#pragma once' in InteractionOption.h" +#endif +#define LYRAGAME_InteractionOption_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInteractionOption_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.gen.cpp new file mode 100644 index 00000000..e3cf4250 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.gen.cpp @@ -0,0 +1,129 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionQuery.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionQuery() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInteractionQuery +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InteractionQuery; +class UScriptStruct* FInteractionQuery::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInteractionQuery, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InteractionQuery")); + } + return Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInteractionQuery::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInteractionQuery_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestingAvatar_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The requesting pawn. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The requesting pawn." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestingController_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allow us to specify a controller - does not need to match the owner of the requesting avatar. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allow us to specify a controller - does not need to match the owner of the requesting avatar." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OptionalObjectData_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A generic UObject to shove in extra data required for the interaction */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A generic UObject to shove in extra data required for the interaction" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_RequestingAvatar; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_RequestingController; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_OptionalObjectData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingAvatar = { "RequestingAvatar", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, RequestingAvatar), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestingAvatar_MetaData), NewProp_RequestingAvatar_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingController = { "RequestingController", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, RequestingController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestingController_MetaData), NewProp_RequestingController_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_OptionalObjectData = { "OptionalObjectData", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, OptionalObjectData), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OptionalObjectData_MetaData), NewProp_OptionalObjectData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingAvatar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_OptionalObjectData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InteractionQuery", + Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers), + sizeof(FInteractionQuery), + alignof(FInteractionQuery), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInteractionQuery_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton, Z_Construct_UScriptStruct_FInteractionQuery_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton; +} +// End ScriptStruct FInteractionQuery + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInteractionQuery::StaticStruct, Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewStructOps, TEXT("InteractionQuery"), &Z_Registration_Info_UScriptStruct_InteractionQuery, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInteractionQuery), 2707672158U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_833749486(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.generated.h new file mode 100644 index 00000000..998bbfc0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionQuery.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InteractionQuery_generated_h +#error "InteractionQuery.generated.h already included, missing '#pragma once' in InteractionQuery.h" +#endif +#define LYRAGAME_InteractionQuery_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_14_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInteractionQuery_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.gen.cpp new file mode 100644 index 00000000..4a5673a2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.gen.cpp @@ -0,0 +1,202 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionStatics() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInteractionStatics Function GetActorFromInteractableTarget +struct Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics +{ + struct InteractionStatics_eventGetActorFromInteractableTarget_Parms + { + TScriptInterface InteractableTarget; + AActor* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FInterfacePropertyParams NewProp_InteractableTarget; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_InteractableTarget = { "InteractableTarget", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetActorFromInteractableTarget_Parms, InteractableTarget), Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetActorFromInteractableTarget_Parms, ReturnValue), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_InteractableTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UInteractionStatics, nullptr, "GetActorFromInteractableTarget", nullptr, nullptr, Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::InteractionStatics_eventGetActorFromInteractableTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::InteractionStatics_eventGetActorFromInteractableTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UInteractionStatics::execGetActorFromInteractableTarget) +{ + P_GET_TINTERFACE(IInteractableTarget,Z_Param_InteractableTarget); + P_FINISH; + P_NATIVE_BEGIN; + *(AActor**)Z_Param__Result=UInteractionStatics::GetActorFromInteractableTarget(Z_Param_InteractableTarget); + P_NATIVE_END; +} +// End Class UInteractionStatics Function GetActorFromInteractableTarget + +// Begin Class UInteractionStatics Function GetInteractableTargetsFromActor +struct Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics +{ + struct InteractionStatics_eventGetInteractableTargetsFromActor_Parms + { + AActor* Actor; + TArray > OutInteractableTargets; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_OutInteractableTargets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_OutInteractableTargets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetInteractableTargetsFromActor_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets_Inner = { "OutInteractableTargets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets = { "OutInteractableTargets", nullptr, (EPropertyFlags)0x0014000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetInteractableTargetsFromActor_Parms, OutInteractableTargets), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UInteractionStatics, nullptr, "GetInteractableTargetsFromActor", nullptr, nullptr, Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::InteractionStatics_eventGetInteractableTargetsFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::InteractionStatics_eventGetInteractableTargetsFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UInteractionStatics::execGetInteractableTargetsFromActor) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_GET_TARRAY_REF(TScriptInterface,Z_Param_Out_OutInteractableTargets); + P_FINISH; + P_NATIVE_BEGIN; + UInteractionStatics::GetInteractableTargetsFromActor(Z_Param_Actor,Z_Param_Out_OutInteractableTargets); + P_NATIVE_END; +} +// End Class UInteractionStatics Function GetInteractableTargetsFromActor + +// Begin Class UInteractionStatics +void UInteractionStatics::StaticRegisterNativesUInteractionStatics() +{ + UClass* Class = UInteractionStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetActorFromInteractableTarget", &UInteractionStatics::execGetActorFromInteractableTarget }, + { "GetInteractableTargetsFromActor", &UInteractionStatics::execGetInteractableTargetsFromActor }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractionStatics); +UClass* Z_Construct_UClass_UInteractionStatics_NoRegister() +{ + return UInteractionStatics::StaticClass(); +} +struct Z_Construct_UClass_UInteractionStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "IncludePath", "Interaction/InteractionStatics.h" }, + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget, "GetActorFromInteractableTarget" }, // 4167680917 + { &Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor, "GetInteractableTargetsFromActor" }, // 2032744671 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractionStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractionStatics_Statics::ClassParams = { + &UInteractionStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractionStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractionStatics() +{ + if (!Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton, Z_Construct_UClass_UInteractionStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractionStatics::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractionStatics); +UInteractionStatics::~UInteractionStatics() {} +// End Class UInteractionStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractionStatics, UInteractionStatics::StaticClass, TEXT("UInteractionStatics"), &Z_Registration_Info_UClass_UInteractionStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractionStatics), 3701344633U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_5150132(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.generated.h new file mode 100644 index 00000000..70074ff7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionStatics.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class IInteractableTarget; +#ifdef LYRAGAME_InteractionStatics_generated_h +#error "InteractionStatics.generated.h already included, missing '#pragma once' in InteractionStatics.h" +#endif +#define LYRAGAME_InteractionStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetInteractableTargetsFromActor); \ + DECLARE_FUNCTION(execGetActorFromInteractableTarget); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInteractionStatics(); \ + friend struct Z_Construct_UClass_UInteractionStatics_Statics; \ +public: \ + DECLARE_CLASS(UInteractionStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInteractionStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractionStatics(UInteractionStatics&&); \ + UInteractionStatics(const UInteractionStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInteractionStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractionStatics); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UInteractionStatics) \ + NO_API virtual ~UInteractionStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp new file mode 100644 index 00000000..6cdee18e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp @@ -0,0 +1,104 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_EquippableItem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_EquippableItem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_EquippableItem +void UInventoryFragment_EquippableItem::StaticRegisterNativesUInventoryFragment_EquippableItem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_EquippableItem); +UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem_NoRegister() +{ + return UInventoryFragment_EquippableItem::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_EquippableItem.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_EquippableItem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentDefinition_MetaData[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_EquippableItem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_EquippableItem, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentDefinition_MetaData), NewProp_EquipmentDefinition_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::NewProp_EquipmentDefinition, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::ClassParams = { + &UInventoryFragment_EquippableItem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton, Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_EquippableItem::StaticClass(); +} +UInventoryFragment_EquippableItem::UInventoryFragment_EquippableItem(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_EquippableItem); +UInventoryFragment_EquippableItem::~UInventoryFragment_EquippableItem() {} +// End Class UInventoryFragment_EquippableItem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_EquippableItem, UInventoryFragment_EquippableItem::StaticClass, TEXT("UInventoryFragment_EquippableItem"), &Z_Registration_Info_UClass_UInventoryFragment_EquippableItem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_EquippableItem), 3723313257U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_3457227960(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h new file mode 100644 index 00000000..11cc2d4b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_EquippableItem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_EquippableItem_generated_h +#error "InventoryFragment_EquippableItem.generated.h already included, missing '#pragma once' in InventoryFragment_EquippableItem.h" +#endif +#define LYRAGAME_InventoryFragment_EquippableItem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_EquippableItem(); \ + friend struct Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_EquippableItem, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_EquippableItem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_EquippableItem(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_EquippableItem(UInventoryFragment_EquippableItem&&); \ + UInventoryFragment_EquippableItem(const UInventoryFragment_EquippableItem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_EquippableItem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_EquippableItem); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_EquippableItem) \ + NO_API virtual ~UInventoryFragment_EquippableItem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp new file mode 100644 index 00000000..5ec61aeb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_PickupIcon.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_PickupIcon() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_USkeletalMesh_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_PickupIcon +void UInventoryFragment_PickupIcon::StaticRegisterNativesUInventoryFragment_PickupIcon() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_PickupIcon); +UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon_NoRegister() +{ + return UInventoryFragment_PickupIcon::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_PickupIcon.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SkeletalMesh_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PadColor_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SkeletalMesh; + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FStructPropertyParams NewProp_PadColor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_SkeletalMesh = { "SkeletalMesh", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, SkeletalMesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SkeletalMesh_MetaData), NewProp_SkeletalMesh_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_PadColor = { "PadColor", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, PadColor), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PadColor_MetaData), NewProp_PadColor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_SkeletalMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_PadColor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::ClassParams = { + &UInventoryFragment_PickupIcon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton, Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_PickupIcon::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_PickupIcon); +UInventoryFragment_PickupIcon::~UInventoryFragment_PickupIcon() {} +// End Class UInventoryFragment_PickupIcon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_PickupIcon, UInventoryFragment_PickupIcon::StaticClass, TEXT("UInventoryFragment_PickupIcon"), &Z_Registration_Info_UClass_UInventoryFragment_PickupIcon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_PickupIcon), 973779185U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_306961599(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h new file mode 100644 index 00000000..aab903ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_PickupIcon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_PickupIcon_generated_h +#error "InventoryFragment_PickupIcon.generated.h already included, missing '#pragma once' in InventoryFragment_PickupIcon.h" +#endif +#define LYRAGAME_InventoryFragment_PickupIcon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_PickupIcon(); \ + friend struct Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_PickupIcon, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_PickupIcon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_PickupIcon(UInventoryFragment_PickupIcon&&); \ + UInventoryFragment_PickupIcon(const UInventoryFragment_PickupIcon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_PickupIcon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_PickupIcon); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UInventoryFragment_PickupIcon) \ + NO_API virtual ~UInventoryFragment_PickupIcon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp new file mode 100644 index 00000000..9ba6f74a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_QuickBarIcon.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_QuickBarIcon() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_QuickBarIcon +void UInventoryFragment_QuickBarIcon::StaticRegisterNativesUInventoryFragment_QuickBarIcon() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_QuickBarIcon); +UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon_NoRegister() +{ + return UInventoryFragment_QuickBarIcon::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Brush_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AmmoBrush_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayNameWhenEquipped_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Brush; + static const UECodeGen_Private::FStructPropertyParams NewProp_AmmoBrush; + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayNameWhenEquipped; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_Brush = { "Brush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, Brush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Brush_MetaData), NewProp_Brush_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_AmmoBrush = { "AmmoBrush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, AmmoBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AmmoBrush_MetaData), NewProp_AmmoBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_DisplayNameWhenEquipped = { "DisplayNameWhenEquipped", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, DisplayNameWhenEquipped), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayNameWhenEquipped_MetaData), NewProp_DisplayNameWhenEquipped_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_Brush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_AmmoBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_DisplayNameWhenEquipped, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::ClassParams = { + &UInventoryFragment_QuickBarIcon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton, Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_QuickBarIcon::StaticClass(); +} +UInventoryFragment_QuickBarIcon::UInventoryFragment_QuickBarIcon(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_QuickBarIcon); +UInventoryFragment_QuickBarIcon::~UInventoryFragment_QuickBarIcon() {} +// End Class UInventoryFragment_QuickBarIcon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_QuickBarIcon, UInventoryFragment_QuickBarIcon::StaticClass, TEXT("UInventoryFragment_QuickBarIcon"), &Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_QuickBarIcon), 882345615U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_926576195(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h new file mode 100644 index 00000000..09b51bc0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_QuickBarIcon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_QuickBarIcon_generated_h +#error "InventoryFragment_QuickBarIcon.generated.h already included, missing '#pragma once' in InventoryFragment_QuickBarIcon.h" +#endif +#define LYRAGAME_InventoryFragment_QuickBarIcon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_QuickBarIcon(); \ + friend struct Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_QuickBarIcon, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_QuickBarIcon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_QuickBarIcon(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_QuickBarIcon(UInventoryFragment_QuickBarIcon&&); \ + UInventoryFragment_QuickBarIcon(const UInventoryFragment_QuickBarIcon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_QuickBarIcon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_QuickBarIcon); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_QuickBarIcon) \ + NO_API virtual ~UInventoryFragment_QuickBarIcon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp new file mode 100644 index 00000000..bfea0799 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp @@ -0,0 +1,107 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/InventoryFragment_ReticleConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_ReticleConfig() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_ReticleConfig +void UInventoryFragment_ReticleConfig::StaticRegisterNativesUInventoryFragment_ReticleConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_ReticleConfig); +UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig_NoRegister() +{ + return UInventoryFragment_ReticleConfig::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + { "ModuleRelativePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReticleWidgets_MetaData[] = { + { "Category", "Reticle" }, + { "ModuleRelativePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ReticleWidgets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReticleWidgets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets_Inner = { "ReticleWidgets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets = { "ReticleWidgets", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_ReticleConfig, ReticleWidgets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReticleWidgets_MetaData), NewProp_ReticleWidgets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::ClassParams = { + &UInventoryFragment_ReticleConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton, Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_ReticleConfig::StaticClass(); +} +UInventoryFragment_ReticleConfig::UInventoryFragment_ReticleConfig(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_ReticleConfig); +UInventoryFragment_ReticleConfig::~UInventoryFragment_ReticleConfig() {} +// End Class UInventoryFragment_ReticleConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_ReticleConfig, UInventoryFragment_ReticleConfig::StaticClass, TEXT("UInventoryFragment_ReticleConfig"), &Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_ReticleConfig), 2367396655U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_2541663250(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h new file mode 100644 index 00000000..1de53562 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/InventoryFragment_ReticleConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_ReticleConfig_generated_h +#error "InventoryFragment_ReticleConfig.generated.h already included, missing '#pragma once' in InventoryFragment_ReticleConfig.h" +#endif +#define LYRAGAME_InventoryFragment_ReticleConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_ReticleConfig(); \ + friend struct Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_ReticleConfig, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_ReticleConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_ReticleConfig(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_ReticleConfig(UInventoryFragment_ReticleConfig&&); \ + UInventoryFragment_ReticleConfig(const UInventoryFragment_ReticleConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_ReticleConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_ReticleConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_ReticleConfig) \ + NO_API virtual ~UInventoryFragment_ReticleConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp new file mode 100644 index 00000000..529f6b86 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp @@ -0,0 +1,110 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_SetStats.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_SetStats() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_SetStats(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_SetStats_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_SetStats +void UInventoryFragment_SetStats::StaticRegisterNativesUInventoryFragment_SetStats() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_SetStats); +UClass* Z_Construct_UClass_UInventoryFragment_SetStats_NoRegister() +{ + return UInventoryFragment_SetStats::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_SetStats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_SetStats.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_SetStats.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitialItemStats_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_SetStats.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InitialItemStats_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_InitialItemStats_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_InitialItemStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_ValueProp = { "InitialItemStats", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_Key_KeyProp = { "InitialItemStats_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats = { "InitialItemStats", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_SetStats, InitialItemStats), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitialItemStats_MetaData), NewProp_InitialItemStats_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_SetStats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::ClassParams = { + &UInventoryFragment_SetStats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_SetStats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_SetStats() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton, Z_Construct_UClass_UInventoryFragment_SetStats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_SetStats::StaticClass(); +} +UInventoryFragment_SetStats::UInventoryFragment_SetStats(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_SetStats); +UInventoryFragment_SetStats::~UInventoryFragment_SetStats() {} +// End Class UInventoryFragment_SetStats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_SetStats, UInventoryFragment_SetStats::StaticClass, TEXT("UInventoryFragment_SetStats"), &Z_Registration_Info_UClass_UInventoryFragment_SetStats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_SetStats), 3076951085U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_3308168937(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h new file mode 100644 index 00000000..5b23c15d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_SetStats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_SetStats_generated_h +#error "InventoryFragment_SetStats.generated.h already included, missing '#pragma once' in InventoryFragment_SetStats.h" +#endif +#define LYRAGAME_InventoryFragment_SetStats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_SetStats(); \ + friend struct Z_Construct_UClass_UInventoryFragment_SetStats_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_SetStats, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_SetStats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_SetStats(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_SetStats(UInventoryFragment_SetStats&&); \ + UInventoryFragment_SetStats(const UInventoryFragment_SetStats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_SetStats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_SetStats); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_SetStats) \ + NO_API virtual ~UInventoryFragment_SetStats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp new file mode 100644 index 00000000..82a73417 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost +void ULyraAbilityCost::StaticRegisterNativesULyraAbilityCost() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost); +UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister() +{ + return ULyraAbilityCost::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilityCost\n *\n * Base class for costs that a LyraGameplayAbility has (e.g., ammo or charges)\n */" }, +#endif + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilityCost\n\nBase class for costs that a LyraGameplayAbility has (e.g., ammo or charges)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOnlyApplyCostOnHit_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this cost should only be applied if this ability hits successfully */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this cost should only be applied if this ability hits successfully" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bOnlyApplyCostOnHit_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOnlyApplyCostOnHit; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit_SetBit(void* Obj) +{ + ((ULyraAbilityCost*)Obj)->bOnlyApplyCostOnHit = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit = { "bOnlyApplyCostOnHit", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraAbilityCost), &Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOnlyApplyCostOnHit_MetaData), NewProp_bOnlyApplyCostOnHit_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_Statics::ClassParams = { + &ULyraAbilityCost::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers), + 0, + 0x003010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost); +ULyraAbilityCost::~ULyraAbilityCost() {} +// End Class ULyraAbilityCost + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost, ULyraAbilityCost::StaticClass, TEXT("ULyraAbilityCost"), &Z_Registration_Info_UClass_ULyraAbilityCost, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost), 1522987733U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_1232204097(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.generated.h new file mode 100644 index 00000000..2e554e80 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_generated_h +#error "LyraAbilityCost.generated.h already included, missing '#pragma once' in LyraAbilityCost.h" +#endif +#define LYRAGAME_LyraAbilityCost_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost(ULyraAbilityCost&&); \ + ULyraAbilityCost(const ULyraAbilityCost&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost) \ + NO_API virtual ~ULyraAbilityCost(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp new file mode 100644 index 00000000..f579609a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_InventoryItem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_InventoryItem +void ULyraAbilityCost_InventoryItem::StaticRegisterNativesULyraAbilityCost_InventoryItem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_InventoryItem); +UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem_NoRegister() +{ + return ULyraAbilityCost_InventoryItem::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of an inventory item\n */" }, +#endif + { "DisplayName", "Inventory Item" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of an inventory item" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "AbilityCost" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the item to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the item to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDefinition_MetaData[] = { + { "Category", "AbilityCost" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which item to consume */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which item to consume" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDefinition; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_InventoryItem, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_ItemDefinition = { "ItemDefinition", nullptr, (EPropertyFlags)0x0024080000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_InventoryItem, ItemDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDefinition_MetaData), NewProp_ItemDefinition_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_ItemDefinition, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::ClassParams = { + &ULyraAbilityCost_InventoryItem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_InventoryItem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_InventoryItem); +ULyraAbilityCost_InventoryItem::~ULyraAbilityCost_InventoryItem() {} +// End Class ULyraAbilityCost_InventoryItem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_InventoryItem, ULyraAbilityCost_InventoryItem::StaticClass, TEXT("ULyraAbilityCost_InventoryItem"), &Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_InventoryItem), 3644715369U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_2376489421(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h new file mode 100644 index 00000000..b0b50266 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_InventoryItem_generated_h +#error "LyraAbilityCost_InventoryItem.generated.h already included, missing '#pragma once' in LyraAbilityCost_InventoryItem.h" +#endif +#define LYRAGAME_LyraAbilityCost_InventoryItem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_InventoryItem(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_InventoryItem, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_InventoryItem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_InventoryItem(ULyraAbilityCost_InventoryItem&&); \ + ULyraAbilityCost_InventoryItem(const ULyraAbilityCost_InventoryItem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_InventoryItem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_InventoryItem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_InventoryItem) \ + NO_API virtual ~ULyraAbilityCost_InventoryItem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp new file mode 100644 index 00000000..14cbc21f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp @@ -0,0 +1,144 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_ItemTagStack() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_ItemTagStack +void ULyraAbilityCost_ItemTagStack::StaticRegisterNativesULyraAbilityCost_ItemTagStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_ItemTagStack); +UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_NoRegister() +{ + return ULyraAbilityCost_ItemTagStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of a tag stack\n * on the associated item instance\n */" }, +#endif + { "DisplayName", "Item Tag Stack" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of a tag stack\non the associated item instance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the tag to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the tag to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to spend some of */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to spend some of" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to send back as a response if this cost cannot be applied */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to send back as a response if this cost cannot be applied" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_FailureTag = { "FailureTag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, FailureTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTag_MetaData), NewProp_FailureTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_FailureTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::ClassParams = { + &ULyraAbilityCost_ItemTagStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_ItemTagStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_ItemTagStack); +ULyraAbilityCost_ItemTagStack::~ULyraAbilityCost_ItemTagStack() {} +// End Class ULyraAbilityCost_ItemTagStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_ItemTagStack, ULyraAbilityCost_ItemTagStack::StaticClass, TEXT("ULyraAbilityCost_ItemTagStack"), &Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_ItemTagStack), 871800849U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_551251423(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h new file mode 100644 index 00000000..a1e3d2d3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_ItemTagStack_generated_h +#error "LyraAbilityCost_ItemTagStack.generated.h already included, missing '#pragma once' in LyraAbilityCost_ItemTagStack.h" +#endif +#define LYRAGAME_LyraAbilityCost_ItemTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_ItemTagStack(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_ItemTagStack, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_ItemTagStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_ItemTagStack(ULyraAbilityCost_ItemTagStack&&); \ + ULyraAbilityCost_ItemTagStack(const ULyraAbilityCost_ItemTagStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_ItemTagStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_ItemTagStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_ItemTagStack) \ + NO_API virtual ~ULyraAbilityCost_ItemTagStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp new file mode 100644 index 00000000..5e501cfd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_PlayerTagStack() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_PlayerTagStack +void ULyraAbilityCost_PlayerTagStack::StaticRegisterNativesULyraAbilityCost_PlayerTagStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_PlayerTagStack); +UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_NoRegister() +{ + return ULyraAbilityCost_PlayerTagStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of a tag stack on the player state\n */" }, +#endif + { "DisplayName", "Player Tag Stack" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of a tag stack on the player state" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the tag to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the tag to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to spend some of */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to spend some of" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_PlayerTagStack, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_PlayerTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Tag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::ClassParams = { + &ULyraAbilityCost_PlayerTagStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_PlayerTagStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_PlayerTagStack); +ULyraAbilityCost_PlayerTagStack::~ULyraAbilityCost_PlayerTagStack() {} +// End Class ULyraAbilityCost_PlayerTagStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack, ULyraAbilityCost_PlayerTagStack::StaticClass, TEXT("ULyraAbilityCost_PlayerTagStack"), &Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_PlayerTagStack), 1985272582U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_3605655177(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h new file mode 100644 index 00000000..d229377d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_PlayerTagStack_generated_h +#error "LyraAbilityCost_PlayerTagStack.generated.h already included, missing '#pragma once' in LyraAbilityCost_PlayerTagStack.h" +#endif +#define LYRAGAME_LyraAbilityCost_PlayerTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_PlayerTagStack(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_PlayerTagStack, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_PlayerTagStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_PlayerTagStack(ULyraAbilityCost_PlayerTagStack&&); \ + ULyraAbilityCost_PlayerTagStack(const ULyraAbilityCost_PlayerTagStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_PlayerTagStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_PlayerTagStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_PlayerTagStack) \ + NO_API virtual ~ULyraAbilityCost_PlayerTagStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp new file mode 100644 index 00000000..f68b97c2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp @@ -0,0 +1,542 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySet.h" +#include "GameplayAbilities/Public/ActiveGameplayEffectHandle.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySet() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FActiveGameplayEffectHandle(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilitySet_GameplayAbility +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility; +class UScriptStruct* FLyraAbilitySet_GameplayAbility::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GameplayAbility")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GameplayAbility::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GameplayAbility\n *\n *\x09""Data used by the ability set to grant gameplay abilities.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GameplayAbility\n\n Data used by the ability set to grant gameplay abilities." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Ability_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay ability to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay ability to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityLevel_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Level of ability to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Level of ability to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "Categories", "InputTag" }, + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tag used to process input for the ability.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tag used to process input for the ability." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FIntPropertyParams NewProp_AbilityLevel; + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Ability_MetaData), NewProp_Ability_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_AbilityLevel = { "AbilityLevel", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, AbilityLevel), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityLevel_MetaData), NewProp_AbilityLevel_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_Ability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_AbilityLevel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_InputTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GameplayAbility", + Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers), + sizeof(FLyraAbilitySet_GameplayAbility), + alignof(FLyraAbilitySet_GameplayAbility), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GameplayAbility + +// Begin ScriptStruct FLyraAbilitySet_GameplayEffect +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect; +class UScriptStruct* FLyraAbilitySet_GameplayEffect::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GameplayEffect")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GameplayEffect::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GameplayEffect\n *\n *\x09""Data used by the ability set to grant gameplay effects.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GameplayEffect\n\n Data used by the ability set to grant gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayEffect_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectLevel_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Level of gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Level of gameplay effect to grant." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_GameplayEffect; + static const UECodeGen_Private::FFloatPropertyParams NewProp_EffectLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_GameplayEffect = { "GameplayEffect", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayEffect, GameplayEffect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayEffect_MetaData), NewProp_GameplayEffect_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_EffectLevel = { "EffectLevel", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayEffect, EffectLevel), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectLevel_MetaData), NewProp_EffectLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_GameplayEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_EffectLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GameplayEffect", + Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers), + sizeof(FLyraAbilitySet_GameplayEffect), + alignof(FLyraAbilitySet_GameplayEffect), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GameplayEffect + +// Begin ScriptStruct FLyraAbilitySet_AttributeSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet; +class UScriptStruct* FLyraAbilitySet_AttributeSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_AttributeSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_AttributeSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_AttributeSet\n *\n *\x09""Data used by the ability set to grant attribute sets.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_AttributeSet\n\n Data used by the ability set to grant attribute sets." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttributeSet_MetaData[] = { + { "Category", "LyraAbilitySet_AttributeSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect to grant." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_AttributeSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewProp_AttributeSet = { "AttributeSet", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_AttributeSet, AttributeSet), Z_Construct_UClass_UClass, Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttributeSet_MetaData), NewProp_AttributeSet_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewProp_AttributeSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_AttributeSet", + Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers), + sizeof(FLyraAbilitySet_AttributeSet), + alignof(FLyraAbilitySet_AttributeSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_AttributeSet + +// Begin ScriptStruct FLyraAbilitySet_GrantedHandles +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles; +class UScriptStruct* FLyraAbilitySet_GrantedHandles::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GrantedHandles")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GrantedHandles::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GrantedHandles\n *\n *\x09""Data used to store handles to what has been granted by the ability set.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GrantedHandles\n\n Data used to store handles to what has been granted by the ability set." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySpecHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles to the granted abilities.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles to the granted abilities." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayEffectHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles to the granted gameplay effects.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles to the granted gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributeSets_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Pointers to the granted attribute sets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointers to the granted attribute sets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilitySpecHandles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySpecHandles; + static const UECodeGen_Private::FStructPropertyParams NewProp_GameplayEffectHandles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameplayEffectHandles; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GrantedAttributeSets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributeSets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles_Inner = { "AbilitySpecHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(0, nullptr) }; // 3490030742 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles = { "AbilitySpecHandles", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, AbilitySpecHandles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySpecHandles_MetaData), NewProp_AbilitySpecHandles_MetaData) }; // 3490030742 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles_Inner = { "GameplayEffectHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FActiveGameplayEffectHandle, METADATA_PARAMS(0, nullptr) }; // 290910411 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles = { "GameplayEffectHandles", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, GameplayEffectHandles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayEffectHandles_MetaData), NewProp_GameplayEffectHandles_MetaData) }; // 290910411 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets_Inner = { "GrantedAttributeSets", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets = { "GrantedAttributeSets", nullptr, (EPropertyFlags)0x0124088000000008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, GrantedAttributeSets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributeSets_MetaData), NewProp_GrantedAttributeSets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GrantedHandles", + Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers), + sizeof(FLyraAbilitySet_GrantedHandles), + alignof(FLyraAbilitySet_GrantedHandles), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GrantedHandles + +// Begin Class ULyraAbilitySet +void ULyraAbilitySet::StaticRegisterNativesULyraAbilitySet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySet); +UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister() +{ + return ULyraAbilitySet::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilitySet\n *\n *\x09Non-mutable data asset used to grant gameplay abilities and gameplay effects.\n */" }, +#endif + { "IncludePath", "AbilitySystem/LyraAbilitySet.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilitySet\n\n Non-mutable data asset used to grant gameplay abilities and gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedGameplayAbilities_MetaData[] = { + { "Category", "Gameplay Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay abilities to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "Ability" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay abilities to grant when this ability set is granted." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedGameplayEffects_MetaData[] = { + { "Category", "Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effects to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effects to grant when this ability set is granted." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributes_MetaData[] = { + { "Category", "Attribute Sets" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Attribute sets to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "AttributeSet" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attribute sets to grant when this ability set is granted." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedGameplayAbilities_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedGameplayAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedGameplayEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedGameplayEffects; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAttributes_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributes; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities_Inner = { "GrantedGameplayAbilities", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility, METADATA_PARAMS(0, nullptr) }; // 3706031477 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities = { "GrantedGameplayAbilities", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedGameplayAbilities), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedGameplayAbilities_MetaData), NewProp_GrantedGameplayAbilities_MetaData) }; // 3706031477 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects_Inner = { "GrantedGameplayEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect, METADATA_PARAMS(0, nullptr) }; // 198845761 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects = { "GrantedGameplayEffects", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedGameplayEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedGameplayEffects_MetaData), NewProp_GrantedGameplayEffects_MetaData) }; // 198845761 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes_Inner = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet, METADATA_PARAMS(0, nullptr) }; // 229780853 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedAttributes), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributes_MetaData), NewProp_GrantedAttributes_MetaData) }; // 229780853 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilitySet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySet_Statics::ClassParams = { + &ULyraAbilitySet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers), + 0, + 0x000100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySet() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton, Z_Construct_UClass_ULyraAbilitySet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySet); +ULyraAbilitySet::~ULyraAbilitySet() {} +// End Class ULyraAbilitySet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilitySet_GameplayAbility::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewStructOps, TEXT("LyraAbilitySet_GameplayAbility"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GameplayAbility), 3706031477U) }, + { FLyraAbilitySet_GameplayEffect::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewStructOps, TEXT("LyraAbilitySet_GameplayEffect"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GameplayEffect), 198845761U) }, + { FLyraAbilitySet_AttributeSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewStructOps, TEXT("LyraAbilitySet_AttributeSet"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_AttributeSet), 229780853U) }, + { FLyraAbilitySet_GrantedHandles::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewStructOps, TEXT("LyraAbilitySet_GrantedHandles"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GrantedHandles), 3322214549U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySet, ULyraAbilitySet::StaticClass, TEXT("ULyraAbilitySet"), &Z_Registration_Info_UClass_ULyraAbilitySet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySet), 823694018U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_2430856076(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.generated.h new file mode 100644 index 00000000..864e534a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySet.generated.h @@ -0,0 +1,82 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySet_generated_h +#error "LyraAbilitySet.generated.h already included, missing '#pragma once' in LyraAbilitySet.h" +#endif +#define LYRAGAME_LyraAbilitySet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_28_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_54_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_75_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_92_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilitySet(); \ + friend struct Z_Construct_UClass_ULyraAbilitySet_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySet, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySet) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySet(ULyraAbilitySet&&); \ + ULyraAbilitySet(const ULyraAbilitySet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySet); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySet) \ + NO_API virtual ~ULyraAbilitySet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_123_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp new file mode 100644 index 00000000..d7f5567f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp @@ -0,0 +1,108 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySimpleFailureMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilitySimpleFailureMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage; +class UScriptStruct* FLyraAbilitySimpleFailureMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySimpleFailureMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySimpleFailureMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerController_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTags_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingReason_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTags; + static const UECodeGen_Private::FTextPropertyParams NewProp_UserFacingReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerController_MetaData), NewProp_PlayerController_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_FailureTags = { "FailureTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, FailureTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTags_MetaData), NewProp_FailureTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_UserFacingReason = { "UserFacingReason", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, UserFacingReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingReason_MetaData), NewProp_UserFacingReason_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_FailureTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_UserFacingReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySimpleFailureMessage", + Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers), + sizeof(FLyraAbilitySimpleFailureMessage), + alignof(FLyraAbilitySimpleFailureMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySimpleFailureMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilitySimpleFailureMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewStructOps, TEXT("LyraAbilitySimpleFailureMessage"), &Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySimpleFailureMessage), 2850206243U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_2275757792(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h new file mode 100644 index 00000000..3032133f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySimpleFailureMessage_generated_h +#error "LyraAbilitySimpleFailureMessage.generated.h already included, missing '#pragma once' in LyraAbilitySimpleFailureMessage.h" +#endif +#define LYRAGAME_LyraAbilitySimpleFailureMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp new file mode 100644 index 00000000..57c589d1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySourceInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySourceInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface ULyraAbilitySourceInterface +void ULyraAbilitySourceInterface::StaticRegisterNativesULyraAbilitySourceInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySourceInterface); +UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister() +{ + return ULyraAbilitySourceInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySourceInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySourceInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::ClassParams = { + &ULyraAbilitySourceInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySourceInterface() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton, Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySourceInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySourceInterface); +ULyraAbilitySourceInterface::~ULyraAbilitySourceInterface() {} +// End Interface ULyraAbilitySourceInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySourceInterface, ULyraAbilitySourceInterface::StaticClass, TEXT("ULyraAbilitySourceInterface"), &Z_Registration_Info_UClass_ULyraAbilitySourceInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySourceInterface), 3768332760U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_2367543607(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h new file mode 100644 index 00000000..681d043f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySourceInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySourceInterface_generated_h +#error "LyraAbilitySourceInterface.generated.h already included, missing '#pragma once' in LyraAbilitySourceInterface.h" +#endif +#define LYRAGAME_LyraAbilitySourceInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilitySourceInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySourceInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySourceInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySourceInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySourceInterface(ULyraAbilitySourceInterface&&); \ + ULyraAbilitySourceInterface(const ULyraAbilitySourceInterface&); \ +public: \ + NO_API virtual ~ULyraAbilitySourceInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraAbilitySourceInterface(); \ + friend struct Z_Construct_UClass_ULyraAbilitySourceInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySourceInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySourceInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_INCLASS_IINTERFACE \ +protected: \ + virtual ~ILyraAbilitySourceInterface() {} \ +public: \ + typedef ULyraAbilitySourceInterface UClassType; \ + typedef ILyraAbilitySourceInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_INCLASS_IINTERFACE \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp new file mode 100644 index 00000000..d7edef8a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp @@ -0,0 +1,195 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySystemComponent.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySystemComponent() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemComponent(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilitySystemComponent Function ClientNotifyAbilityFailed +struct LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms +{ + const UGameplayAbility* Ability; + FGameplayTagContainer FailureReason; +}; +static const FName NAME_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed = FName(TEXT("ClientNotifyAbilityFailed")); +void ULyraAbilitySystemComponent::ClientNotifyAbilityFailed(const UGameplayAbility* Ability, FGameplayTagContainer const& FailureReason) +{ + LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms Parms; + Parms.Ability=Ability; + Parms.FailureReason=FailureReason; + UFunction* Func = FindFunctionChecked(NAME_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Notify client that an ability failed to activate */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Notify client that an ability failed to activate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Ability_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Ability; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms, Ability), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Ability_MetaData), NewProp_Ability_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_FailureReason = { "FailureReason", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms, FailureReason), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureReason_MetaData), NewProp_FailureReason_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_Ability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_FailureReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAbilitySystemComponent, nullptr, "ClientNotifyAbilityFailed", nullptr, nullptr, Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers), sizeof(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x01080C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraAbilitySystemComponent::execClientNotifyAbilityFailed) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_Ability); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_FailureReason); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientNotifyAbilityFailed_Implementation(Z_Param_Ability,Z_Param_FailureReason); + P_NATIVE_END; +} +// End Class ULyraAbilitySystemComponent Function ClientNotifyAbilityFailed + +// Begin Class ULyraAbilitySystemComponent +void ULyraAbilitySystemComponent::StaticRegisterNativesULyraAbilitySystemComponent() +{ + UClass* Class = ULyraAbilitySystemComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ClientNotifyAbilityFailed", &ULyraAbilitySystemComponent::execClientNotifyAbilityFailed }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySystemComponent); +UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister() +{ + return ULyraAbilitySystemComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySystemComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilitySystemComponent\n *\n *\x09""Base ability system component class used by this project.\n */" }, +#endif + { "HideCategories", "Object LOD Lighting Transform Sockets TextureStreaming Object LOD Lighting Transform Sockets TextureStreaming" }, + { "IncludePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilitySystemComponent\n\n Base ability system component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TagRelationshipMapping_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// If set, this table is used to look up tag relationships for activate and cancel\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If set, this table is used to look up tag relationships for activate and cancel" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TagRelationshipMapping; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed, "ClientNotifyAbilityFailed" }, // 2220705093 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::NewProp_TagRelationshipMapping = { "TagRelationshipMapping", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySystemComponent, TagRelationshipMapping), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TagRelationshipMapping_MetaData), NewProp_TagRelationshipMapping_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::NewProp_TagRelationshipMapping, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilitySystemComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::ClassParams = { + &ULyraAbilitySystemComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers), + 0, + 0x00B010A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySystemComponent() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton, Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySystemComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySystemComponent); +ULyraAbilitySystemComponent::~ULyraAbilitySystemComponent() {} +// End Class ULyraAbilitySystemComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySystemComponent, ULyraAbilitySystemComponent::StaticClass, TEXT("ULyraAbilitySystemComponent"), &Z_Registration_Info_UClass_ULyraAbilitySystemComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySystemComponent), 2360637702U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_1692774161(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h new file mode 100644 index 00000000..010e5d8d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySystemComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameplayAbility; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraAbilitySystemComponent_generated_h +#error "LyraAbilitySystemComponent.generated.h already included, missing '#pragma once' in LyraAbilitySystemComponent.h" +#endif +#define LYRAGAME_LyraAbilitySystemComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientNotifyAbilityFailed_Implementation(const UGameplayAbility* Ability, FGameplayTagContainer const& FailureReason); \ + DECLARE_FUNCTION(execClientNotifyAbilityFailed); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilitySystemComponent(); \ + friend struct Z_Construct_UClass_ULyraAbilitySystemComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySystemComponent, UAbilitySystemComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySystemComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySystemComponent(ULyraAbilitySystemComponent&&); \ + ULyraAbilitySystemComponent(const ULyraAbilitySystemComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySystemComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySystemComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySystemComponent) \ + NO_API virtual ~ULyraAbilitySystemComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp new file mode 100644 index 00000000..a539a63b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySystemGlobals.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySystemGlobals() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemGlobals(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilitySystemGlobals +void ULyraAbilitySystemGlobals::StaticRegisterNativesULyraAbilitySystemGlobals() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySystemGlobals); +UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals_NoRegister() +{ + return ULyraAbilitySystemGlobals::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "AbilitySystem/LyraAbilitySystemGlobals.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemGlobals.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilitySystemGlobals, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::ClassParams = { + &ULyraAbilitySystemGlobals::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton, Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySystemGlobals::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySystemGlobals); +ULyraAbilitySystemGlobals::~ULyraAbilitySystemGlobals() {} +// End Class ULyraAbilitySystemGlobals + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySystemGlobals, ULyraAbilitySystemGlobals::StaticClass, TEXT("ULyraAbilitySystemGlobals"), &Z_Registration_Info_UClass_ULyraAbilitySystemGlobals, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySystemGlobals), 3949004670U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_2496548070(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h new file mode 100644 index 00000000..a073569e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySystemGlobals.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySystemGlobals_generated_h +#error "LyraAbilitySystemGlobals.generated.h already included, missing '#pragma once' in LyraAbilitySystemGlobals.h" +#endif +#define LYRAGAME_LyraAbilitySystemGlobals_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_INCLASS \ +private: \ + static void StaticRegisterNativesULyraAbilitySystemGlobals(); \ + friend struct Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySystemGlobals, UAbilitySystemGlobals, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySystemGlobals) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilitySystemGlobals(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySystemGlobals) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySystemGlobals); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySystemGlobals); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySystemGlobals(ULyraAbilitySystemGlobals&&); \ + ULyraAbilitySystemGlobals(const ULyraAbilitySystemGlobals&); \ +public: \ + NO_API virtual ~ULyraAbilitySystemGlobals(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp new file mode 100644 index 00000000..97c2c47b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp @@ -0,0 +1,251 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilityTagRelationshipMapping.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityTagRelationshipMapping() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityTagRelationship(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilityTagRelationship +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship; +class UScriptStruct* FLyraAbilityTagRelationship::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityTagRelationship")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityTagRelationship::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Struct that defines the relationship between different ability tags */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Struct that defines the relationship between different ability tags" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTag_MetaData[] = { + { "Categories", "Gameplay.Action" }, + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tag that this container relationship is about. Single tag, but abilities can have multiple of these */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tag that this container relationship is about. Single tag, but abilities can have multiple of these" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagsToBlock_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The other ability tags that will be blocked by any ability using this tag */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The other ability tags that will be blocked by any ability using this tag" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagsToCancel_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The other ability tags that will be canceled by any ability using this tag */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The other ability tags that will be canceled by any ability using this tag" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationRequiredTags_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If an ability has the tag, this is implicitly added to the activation required tags of the ability */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If an ability has the tag, this is implicitly added to the activation required tags of the ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationBlockedTags_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If an ability has the tag, this is implicitly added to the activation blocked tags of the ability */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If an ability has the tag, this is implicitly added to the activation blocked tags of the ability" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagsToBlock; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagsToCancel; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivationRequiredTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivationBlockedTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTag = { "AbilityTag", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTag_MetaData), NewProp_AbilityTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToBlock = { "AbilityTagsToBlock", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTagsToBlock), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagsToBlock_MetaData), NewProp_AbilityTagsToBlock_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToCancel = { "AbilityTagsToCancel", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTagsToCancel), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagsToCancel_MetaData), NewProp_AbilityTagsToCancel_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationRequiredTags = { "ActivationRequiredTags", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, ActivationRequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationRequiredTags_MetaData), NewProp_ActivationRequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationBlockedTags = { "ActivationBlockedTags", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, ActivationBlockedTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationBlockedTags_MetaData), NewProp_ActivationBlockedTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToBlock, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationRequiredTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationBlockedTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityTagRelationship", + Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers), + sizeof(FLyraAbilityTagRelationship), + alignof(FLyraAbilityTagRelationship), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityTagRelationship() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton; +} +// End ScriptStruct FLyraAbilityTagRelationship + +// Begin Class ULyraAbilityTagRelationshipMapping +void ULyraAbilityTagRelationshipMapping::StaticRegisterNativesULyraAbilityTagRelationshipMapping() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityTagRelationshipMapping); +UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister() +{ + return ULyraAbilityTagRelationshipMapping::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Mapping of how ability tags block or cancel other abilities */" }, +#endif + { "IncludePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Mapping of how ability tags block or cancel other abilities" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagRelationships_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The list of relationships between different gameplay tags (which ones block or cancel others) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, + { "TitleProperty", "AbilityTag" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of relationships between different gameplay tags (which ones block or cancel others)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagRelationships_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilityTagRelationships; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships_Inner = { "AbilityTagRelationships", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship, METADATA_PARAMS(0, nullptr) }; // 2507486859 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships = { "AbilityTagRelationships", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityTagRelationshipMapping, AbilityTagRelationships), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagRelationships_MetaData), NewProp_AbilityTagRelationships_MetaData) }; // 2507486859 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::ClassParams = { + &ULyraAbilityTagRelationshipMapping::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton, Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityTagRelationshipMapping::StaticClass(); +} +ULyraAbilityTagRelationshipMapping::ULyraAbilityTagRelationshipMapping(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityTagRelationshipMapping); +ULyraAbilityTagRelationshipMapping::~ULyraAbilityTagRelationshipMapping() {} +// End Class ULyraAbilityTagRelationshipMapping + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityTagRelationship::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewStructOps, TEXT("LyraAbilityTagRelationship"), &Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityTagRelationship), 2507486859U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityTagRelationshipMapping, ULyraAbilityTagRelationshipMapping::StaticClass, TEXT("ULyraAbilityTagRelationshipMapping"), &Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityTagRelationshipMapping), 4101548953U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_1447544072(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h new file mode 100644 index 00000000..d9534cfe --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilityTagRelationshipMapping.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityTagRelationshipMapping_generated_h +#error "LyraAbilityTagRelationshipMapping.generated.h already included, missing '#pragma once' in LyraAbilityTagRelationshipMapping.h" +#endif +#define LYRAGAME_LyraAbilityTagRelationshipMapping_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityTagRelationshipMapping(); \ + friend struct Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityTagRelationshipMapping, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityTagRelationshipMapping) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilityTagRelationshipMapping(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityTagRelationshipMapping(ULyraAbilityTagRelationshipMapping&&); \ + ULyraAbilityTagRelationshipMapping(const ULyraAbilityTagRelationshipMapping&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityTagRelationshipMapping); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityTagRelationshipMapping); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilityTagRelationshipMapping) \ + NO_API virtual ~ULyraAbilityTagRelationshipMapping(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_41_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp new file mode 100644 index 00000000..d0913dac --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraActionWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActionWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActionWidget(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActionWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActionWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraActionWidget +void ULyraActionWidget::StaticRegisterNativesULyraActionWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActionWidget); +UClass* Z_Construct_UClass_ULyraActionWidget_NoRegister() +{ + return ULyraActionWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraActionWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** An action widget that will get the icon of key that is currently assigned to the common input action on this widget */" }, +#endif + { "IncludePath", "UI/Foundation/LyraActionWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraActionWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An action widget that will get the icon of key that is currently assigned to the common input action on this widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedInputAction_MetaData[] = { + { "Category", "LyraActionWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Enhanced Input Action that is associated with this Common Input action. */" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraActionWidget.h" }, + { "NativeConst", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Enhanced Input Action that is associated with this Common Input action." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AssociatedInputAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActionWidget_Statics::NewProp_AssociatedInputAction = { "AssociatedInputAction", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActionWidget, AssociatedInputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedInputAction_MetaData), NewProp_AssociatedInputAction_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActionWidget_Statics::NewProp_AssociatedInputAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActionWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActionWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActionWidget_Statics::ClassParams = { + &ULyraActionWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActionWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActionWidget() +{ + if (!Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton, Z_Construct_UClass_ULyraActionWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActionWidget::StaticClass(); +} +ULyraActionWidget::ULyraActionWidget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActionWidget); +ULyraActionWidget::~ULyraActionWidget() {} +// End Class ULyraActionWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActionWidget, ULyraActionWidget::StaticClass, TEXT("ULyraActionWidget"), &Z_Registration_Info_UClass_ULyraActionWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActionWidget), 2665317932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_3291217521(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.generated.h new file mode 100644 index 00000000..f61e2620 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraActionWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraActionWidget_generated_h +#error "LyraActionWidget.generated.h already included, missing '#pragma once' in LyraActionWidget.h" +#endif +#define LYRAGAME_LyraActionWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActionWidget(); \ + friend struct Z_Construct_UClass_ULyraActionWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraActionWidget, UCommonActionWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActionWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActionWidget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActionWidget(ULyraActionWidget&&); \ + ULyraActionWidget(const ULyraActionWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActionWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActionWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActionWidget) \ + NO_API virtual ~ULyraActionWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp new file mode 100644 index 00000000..ff7275ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraActivatableWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActivatableWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_EMouseCaptureMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraWidgetInputMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraWidgetInputMode; +static UEnum* ELyraWidgetInputMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraWidgetInputMode")); + } + return Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraWidgetInputMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Default.Name", "ELyraWidgetInputMode::Default" }, + { "Game.Name", "ELyraWidgetInputMode::Game" }, + { "GameAndMenu.Name", "ELyraWidgetInputMode::GameAndMenu" }, + { "Menu.Name", "ELyraWidgetInputMode::Menu" }, + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraWidgetInputMode::Default", (int64)ELyraWidgetInputMode::Default }, + { "ELyraWidgetInputMode::GameAndMenu", (int64)ELyraWidgetInputMode::GameAndMenu }, + { "ELyraWidgetInputMode::Game", (int64)ELyraWidgetInputMode::Game }, + { "ELyraWidgetInputMode::Menu", (int64)ELyraWidgetInputMode::Menu }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraWidgetInputMode", + "ELyraWidgetInputMode", + Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode() +{ + if (!Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton; +} +// End Enum ELyraWidgetInputMode + +// Begin Class ULyraActivatableWidget +void ULyraActivatableWidget::StaticRegisterNativesULyraActivatableWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActivatableWidget); +UClass* Z_Construct_UClass_ULyraActivatableWidget_NoRegister() +{ + return ULyraActivatableWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraActivatableWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// An activatable widget that automatically drives the desired input config when activated\n" }, +#endif + { "IncludePath", "UI/LyraActivatableWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An activatable widget that automatically drives the desired input config when activated" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfig_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The desired input mode to use while this UI is activated, for example do you want key presses to still reach the game/player controller? */" }, +#endif + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The desired input mode to use while this UI is activated, for example do you want key presses to still reach the game/player controller?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameMouseCaptureMode_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The desired mouse behavior when the game gets input. */" }, +#endif + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The desired mouse behavior when the game gets input." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InputConfig_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InputConfig; + static const UECodeGen_Private::FBytePropertyParams NewProp_GameMouseCaptureMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GameMouseCaptureMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig = { "InputConfig", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActivatableWidget, InputConfig), Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfig_MetaData), NewProp_InputConfig_MetaData) }; // 429253751 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode = { "GameMouseCaptureMode", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActivatableWidget, GameMouseCaptureMode), Z_Construct_UEnum_Engine_EMouseCaptureMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameMouseCaptureMode_MetaData), NewProp_GameMouseCaptureMode_MetaData) }; // 2576598572 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActivatableWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActivatableWidget_Statics::ClassParams = { + &ULyraActivatableWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActivatableWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActivatableWidget() +{ + if (!Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton, Z_Construct_UClass_ULyraActivatableWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActivatableWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActivatableWidget); +ULyraActivatableWidget::~ULyraActivatableWidget() {} +// End Class ULyraActivatableWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraWidgetInputMode_StaticEnum, TEXT("ELyraWidgetInputMode"), &Z_Registration_Info_UEnum_ELyraWidgetInputMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 429253751U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActivatableWidget, ULyraActivatableWidget::StaticClass, TEXT("ULyraActivatableWidget"), &Z_Registration_Info_UClass_ULyraActivatableWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActivatableWidget), 507563066U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_2177112901(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h new file mode 100644 index 00000000..1d8d8c6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraActivatableWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraActivatableWidget_generated_h +#error "LyraActivatableWidget.generated.h already included, missing '#pragma once' in LyraActivatableWidget.h" +#endif +#define LYRAGAME_LyraActivatableWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActivatableWidget(); \ + friend struct Z_Construct_UClass_ULyraActivatableWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraActivatableWidget, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActivatableWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActivatableWidget(ULyraActivatableWidget&&); \ + ULyraActivatableWidget(const ULyraActivatableWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActivatableWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActivatableWidget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActivatableWidget) \ + NO_API virtual ~ULyraActivatableWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h + + +#define FOREACH_ENUM_ELYRAWIDGETINPUTMODE(op) \ + op(ELyraWidgetInputMode::Default) \ + op(ELyraWidgetInputMode::GameAndMenu) \ + op(ELyraWidgetInputMode::Game) \ + op(ELyraWidgetInputMode::Menu) + +enum class ELyraWidgetInputMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp new file mode 100644 index 00000000..0685f12f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraActorUtilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActorUtilities() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActorUtilities(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActorUtilities_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EBlueprintExposedNetMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EBlueprintExposedNetMode; +static UEnum* EBlueprintExposedNetMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EBlueprintExposedNetMode")); + } + return Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EBlueprintExposedNetMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Client.Comment", "/**\n\x09 * Network client: client connected to a remote server.\n\x09 * Note that every mode less than this value is a kind of server, so checking NetMode < NM_Client is always some variety of server.\n\x09 */" }, + { "Client.Name", "EBlueprintExposedNetMode::Client" }, + { "Client.ToolTip", "Network client: client connected to a remote server.\nNote that every mode less than this value is a kind of server, so checking NetMode < NM_Client is always some variety of server." }, + { "DedicatedServer.Comment", "/** Dedicated server: server with no local players. */" }, + { "DedicatedServer.Name", "EBlueprintExposedNetMode::DedicatedServer" }, + { "DedicatedServer.ToolTip", "Dedicated server: server with no local players." }, + { "ListenServer.Comment", "/** Listen server: a server that also has a local player who is hosting the game, available to other players on the network. */" }, + { "ListenServer.Name", "EBlueprintExposedNetMode::ListenServer" }, + { "ListenServer.ToolTip", "Listen server: a server that also has a local player who is hosting the game, available to other players on the network." }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, + { "Standalone.Comment", "/** Standalone: a game without networking, with one or more local players. Still considered a server because it has all server functionality. */" }, + { "Standalone.Name", "EBlueprintExposedNetMode::Standalone" }, + { "Standalone.ToolTip", "Standalone: a game without networking, with one or more local players. Still considered a server because it has all server functionality." }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EBlueprintExposedNetMode::Standalone", (int64)EBlueprintExposedNetMode::Standalone }, + { "EBlueprintExposedNetMode::DedicatedServer", (int64)EBlueprintExposedNetMode::DedicatedServer }, + { "EBlueprintExposedNetMode::ListenServer", (int64)EBlueprintExposedNetMode::ListenServer }, + { "EBlueprintExposedNetMode::Client", (int64)EBlueprintExposedNetMode::Client }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EBlueprintExposedNetMode", + "EBlueprintExposedNetMode", + Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode() +{ + if (!Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton; +} +// End Enum EBlueprintExposedNetMode + +// Begin Class ULyraActorUtilities Function SwitchOnNetMode +struct Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics +{ + struct LyraActorUtilities_eventSwitchOnNetMode_Parms + { + const UObject* WorldContextObject; + EBlueprintExposedNetMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Get the network mode (dedicated server, client, standalone, etc...) for an actor or component.\n\x09 */" }, +#endif + { "ExpandEnumAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get the network mode (dedicated server, client, standalone, etc...) for an actor or component." }, +#endif + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraActorUtilities_eventSwitchOnNetMode_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraActorUtilities_eventSwitchOnNetMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode, METADATA_PARAMS(0, nullptr) }; // 3667641838 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraActorUtilities, nullptr, "SwitchOnNetMode", nullptr, nullptr, Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::LyraActorUtilities_eventSwitchOnNetMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::LyraActorUtilities_eventSwitchOnNetMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraActorUtilities::execSwitchOnNetMode) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(EBlueprintExposedNetMode*)Z_Param__Result=ULyraActorUtilities::SwitchOnNetMode(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraActorUtilities Function SwitchOnNetMode + +// Begin Class ULyraActorUtilities +void ULyraActorUtilities::StaticRegisterNativesULyraActorUtilities() +{ + UClass* Class = ULyraActorUtilities::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SwitchOnNetMode", &ULyraActorUtilities::execSwitchOnNetMode }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActorUtilities); +UClass* Z_Construct_UClass_ULyraActorUtilities_NoRegister() +{ + return ULyraActorUtilities::StaticClass(); +} +struct Z_Construct_UClass_ULyraActorUtilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraActorUtilities.h" }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode, "SwitchOnNetMode" }, // 3599317536 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraActorUtilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActorUtilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActorUtilities_Statics::ClassParams = { + &ULyraActorUtilities::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActorUtilities_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActorUtilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActorUtilities() +{ + if (!Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton, Z_Construct_UClass_ULyraActorUtilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActorUtilities::StaticClass(); +} +ULyraActorUtilities::ULyraActorUtilities(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActorUtilities); +ULyraActorUtilities::~ULyraActorUtilities() {} +// End Class ULyraActorUtilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EBlueprintExposedNetMode_StaticEnum, TEXT("EBlueprintExposedNetMode"), &Z_Registration_Info_UEnum_EBlueprintExposedNetMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3667641838U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActorUtilities, ULyraActorUtilities::StaticClass, TEXT("ULyraActorUtilities"), &Z_Registration_Info_UClass_ULyraActorUtilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActorUtilities), 4108752661U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_953022587(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.generated.h new file mode 100644 index 00000000..430b8fae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActorUtilities.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraActorUtilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +enum class EBlueprintExposedNetMode : uint8; +#ifdef LYRAGAME_LyraActorUtilities_generated_h +#error "LyraActorUtilities.generated.h already included, missing '#pragma once' in LyraActorUtilities.h" +#endif +#define LYRAGAME_LyraActorUtilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSwitchOnNetMode); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActorUtilities(); \ + friend struct Z_Construct_UClass_ULyraActorUtilities_Statics; \ +public: \ + DECLARE_CLASS(ULyraActorUtilities, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActorUtilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActorUtilities(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActorUtilities(ULyraActorUtilities&&); \ + ULyraActorUtilities(const ULyraActorUtilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActorUtilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActorUtilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActorUtilities) \ + NO_API virtual ~ULyraActorUtilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_32_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h + + +#define FOREACH_ENUM_EBLUEPRINTEXPOSEDNETMODE(op) \ + op(EBlueprintExposedNetMode::Standalone) \ + op(EBlueprintExposedNetMode::DedicatedServer) \ + op(EBlueprintExposedNetMode::ListenServer) \ + op(EBlueprintExposedNetMode::Client) + +enum class EBlueprintExposedNetMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp new file mode 100644 index 00000000..7b7cd764 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp @@ -0,0 +1,127 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraAimSensitivityData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAimSensitivityData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAimSensitivityData +void ULyraAimSensitivityData::StaticRegisterNativesULyraAimSensitivityData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAimSensitivityData); +UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister() +{ + return ULyraAimSensitivityData::StaticClass(); +} +struct Z_Construct_UClass_ULyraAimSensitivityData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines a set of gamepad sensitivity to a float value. */" }, +#endif + { "DisplayName", "Lyra Aim Sensitivity Data" }, + { "IncludePath", "Input/LyraAimSensitivityData.h" }, + { "ModuleRelativePath", "Input/LyraAimSensitivityData.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "Data asset used to define a map of Gamepad Sensitivty to a float value." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines a set of gamepad sensitivity to a float value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityMap_MetaData[] = { + { "Category", "LyraAimSensitivityData" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Map of SensitivityMap settings to their corresponding float */" }, +#endif + { "ModuleRelativePath", "Input/LyraAimSensitivityData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of SensitivityMap settings to their corresponding float" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_SensitivityMap_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_SensitivityMap_Key_KeyProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SensitivityMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_SensitivityMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_ValueProp = { "SensitivityMap", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp = { "SensitivityMap_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap = { "SensitivityMap", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAimSensitivityData, SensitivityMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityMap_MetaData), NewProp_SensitivityMap_MetaData) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAimSensitivityData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::ClassParams = { + &ULyraAimSensitivityData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAimSensitivityData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAimSensitivityData() +{ + if (!Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton, Z_Construct_UClass_ULyraAimSensitivityData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAimSensitivityData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAimSensitivityData); +ULyraAimSensitivityData::~ULyraAimSensitivityData() {} +// End Class ULyraAimSensitivityData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAimSensitivityData, ULyraAimSensitivityData::StaticClass, TEXT("ULyraAimSensitivityData"), &Z_Registration_Info_UClass_ULyraAimSensitivityData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAimSensitivityData), 1592872845U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_3359076582(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h new file mode 100644 index 00000000..ef4330cb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraAimSensitivityData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAimSensitivityData_generated_h +#error "LyraAimSensitivityData.generated.h already included, missing '#pragma once' in LyraAimSensitivityData.h" +#endif +#define LYRAGAME_LyraAimSensitivityData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAimSensitivityData(); \ + friend struct Z_Construct_UClass_ULyraAimSensitivityData_Statics; \ +public: \ + DECLARE_CLASS(ULyraAimSensitivityData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAimSensitivityData) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAimSensitivityData(ULyraAimSensitivityData&&); \ + ULyraAimSensitivityData(const ULyraAimSensitivityData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAimSensitivityData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAimSensitivityData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAimSensitivityData) \ + NO_API virtual ~ULyraAimSensitivityData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp new file mode 100644 index 00000000..7e936eb4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp @@ -0,0 +1,125 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Animation/LyraAnimInstance.h" +#include "GameplayAbilities/Public/GameplayEffectTypes.h" +#include "Runtime/Engine/Classes/Components/SkeletalMeshComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAnimInstance() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagBlueprintPropertyMap(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAnimInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAnimInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAnimInstance +void ULyraAnimInstance::StaticRegisterNativesULyraAnimInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAnimInstance); +UClass* Z_Construct_UClass_ULyraAnimInstance_NoRegister() +{ + return ULyraAnimInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraAnimInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAnimInstance\n *\n *\x09The base game animation instance class used by this project.\n */" }, +#endif + { "HideCategories", "AnimInstance" }, + { "IncludePath", "Animation/LyraAnimInstance.h" }, + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAnimInstance\n\n The base game animation instance class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayTagPropertyMap_MetaData[] = { + { "Category", "GameplayTags" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay tags that can be mapped to blueprint variables. The variables will automatically update as the tags are added or removed.\n// These should be used instead of manually querying for the gameplay tags.\n" }, +#endif + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay tags that can be mapped to blueprint variables. The variables will automatically update as the tags are added or removed.\nThese should be used instead of manually querying for the gameplay tags." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundDistance_MetaData[] = { + { "Category", "Character State Data" }, + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GameplayTagPropertyMap; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GroundDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GameplayTagPropertyMap = { "GameplayTagPropertyMap", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAnimInstance, GameplayTagPropertyMap), Z_Construct_UScriptStruct_FGameplayTagBlueprintPropertyMap, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayTagPropertyMap_MetaData), NewProp_GameplayTagPropertyMap_MetaData) }; // 2674068477 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GroundDistance = { "GroundDistance", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAnimInstance, GroundDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundDistance_MetaData), NewProp_GroundDistance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GameplayTagPropertyMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GroundDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAnimInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAnimInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAnimInstance_Statics::ClassParams = { + &ULyraAnimInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers), + 0, + 0x008000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAnimInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAnimInstance() +{ + if (!Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton, Z_Construct_UClass_ULyraAnimInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAnimInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAnimInstance); +ULyraAnimInstance::~ULyraAnimInstance() {} +// End Class ULyraAnimInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAnimInstance, ULyraAnimInstance::StaticClass, TEXT("ULyraAnimInstance"), &Z_Registration_Info_UClass_ULyraAnimInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAnimInstance), 2092704503U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_1921519734(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.generated.h new file mode 100644 index 00000000..58758745 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAnimInstance.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Animation/LyraAnimInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAnimInstance_generated_h +#error "LyraAnimInstance.generated.h already included, missing '#pragma once' in LyraAnimInstance.h" +#endif +#define LYRAGAME_LyraAnimInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAnimInstance(); \ + friend struct Z_Construct_UClass_ULyraAnimInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraAnimInstance, UAnimInstance, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAnimInstance) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAnimInstance(ULyraAnimInstance&&); \ + ULyraAnimInstance(const ULyraAnimInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAnimInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAnimInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAnimInstance) \ + NO_API virtual ~ULyraAnimInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp new file mode 100644 index 00000000..8e79f438 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp @@ -0,0 +1,162 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraAssetManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAssetManager() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAssetManager(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAssetManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAssetManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAssetManager +void ULyraAssetManager::StaticRegisterNativesULyraAssetManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAssetManager); +UClass* Z_Construct_UClass_ULyraAssetManager_NoRegister() +{ + return ULyraAssetManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraAssetManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAssetManager\n *\n *\x09Game implementation of the asset manager that overrides functionality and stores game-specific types.\n *\x09It is expected that most games will want to override AssetManager as it provides a good place for game-specific loading logic.\n *\x09This class is used by setting 'AssetManagerClassName' in DefaultEngine.ini.\n */" }, +#endif + { "IncludePath", "System/LyraAssetManager.h" }, + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAssetManager\n\n Game implementation of the asset manager that overrides functionality and stores game-specific types.\n It is expected that most games will want to override AssetManager as it provides a good place for game-specific loading logic.\n This class is used by setting 'AssetManagerClassName' in DefaultEngine.ini." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LyraGameDataPath_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Global game data asset to use.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Global game data asset to use." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameDataMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Loaded version of the game data\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loaded version of the game data" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPawnData_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Pawn data used when spawning player pawns if there isn't one set on the player state.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pawn data used when spawning player pawns if there isn't one set on the player state." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadedAssets_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Assets loaded and tracked by the asset manager.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Assets loaded and tracked by the asset manager." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_LyraGameDataPath; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GameDataMap_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_GameDataMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_GameDataMap; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_DefaultPawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LoadedAssets_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_LoadedAssets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LyraGameDataPath = { "LyraGameDataPath", nullptr, (EPropertyFlags)0x0024080000004000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, LyraGameDataPath), Z_Construct_UClass_ULyraGameData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LyraGameDataPath_MetaData), NewProp_LyraGameDataPath_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_ValueProp = { "GameDataMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UPrimaryDataAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_Key_KeyProp = { "GameDataMap_Key", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap = { "GameDataMap", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, GameDataMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameDataMap_MetaData), NewProp_GameDataMap_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_DefaultPawnData = { "DefaultPawnData", nullptr, (EPropertyFlags)0x0024080000004000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, DefaultPawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPawnData_MetaData), NewProp_DefaultPawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets_ElementProp = { "LoadedAssets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets = { "LoadedAssets", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, LoadedAssets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadedAssets_MetaData), NewProp_LoadedAssets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LyraGameDataPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_DefaultPawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAssetManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAssetManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAssetManager_Statics::ClassParams = { + &ULyraAssetManager::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers), + 0, + 0x001000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAssetManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAssetManager() +{ + if (!Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton, Z_Construct_UClass_ULyraAssetManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAssetManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAssetManager); +ULyraAssetManager::~ULyraAssetManager() {} +// End Class ULyraAssetManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAssetManager, ULyraAssetManager::StaticClass, TEXT("ULyraAssetManager"), &Z_Registration_Info_UClass_ULyraAssetManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAssetManager), 2024443560U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_2769802936(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.generated.h new file mode 100644 index 00000000..5ae2a794 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAssetManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraAssetManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAssetManager_generated_h +#error "LyraAssetManager.generated.h already included, missing '#pragma once' in LyraAssetManager.h" +#endif +#define LYRAGAME_LyraAssetManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAssetManager(); \ + friend struct Z_Construct_UClass_ULyraAssetManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraAssetManager, UAssetManager, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAssetManager) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAssetManager(ULyraAssetManager&&); \ + ULyraAssetManager(const ULyraAssetManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAssetManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAssetManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAssetManager) \ + NO_API virtual ~ULyraAssetManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_28_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp new file mode 100644 index 00000000..fb1444c1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraAttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAttributeSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAttributeSet +void ULyraAttributeSet::StaticRegisterNativesULyraAttributeSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAttributeSet); +UClass* Z_Construct_UClass_ULyraAttributeSet_NoRegister() +{ + return ULyraAttributeSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraAttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAttributeSet\n *\n *\x09""Base attribute set class for the project.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraAttributeSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAttributeSet\n\n Base attribute set class for the project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAttributeSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAttributeSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAttributeSet_Statics::ClassParams = { + &ULyraAttributeSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x003000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAttributeSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAttributeSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAttributeSet() +{ + if (!Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton, Z_Construct_UClass_ULyraAttributeSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAttributeSet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAttributeSet); +ULyraAttributeSet::~ULyraAttributeSet() {} +// End Class ULyraAttributeSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAttributeSet, ULyraAttributeSet::StaticClass, TEXT("ULyraAttributeSet"), &Z_Registration_Info_UClass_ULyraAttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAttributeSet), 3812889591U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_457937553(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.generated.h new file mode 100644 index 00000000..ed339861 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAttributeSet.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraAttributeSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAttributeSet_generated_h +#error "LyraAttributeSet.generated.h already included, missing '#pragma once' in LyraAttributeSet.h" +#endif +#define LYRAGAME_LyraAttributeSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAttributeSet(); \ + friend struct Z_Construct_UClass_ULyraAttributeSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraAttributeSet, UAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAttributeSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAttributeSet(ULyraAttributeSet&&); \ + ULyraAttributeSet(const ULyraAttributeSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAttributeSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAttributeSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAttributeSet) \ + NO_API virtual ~ULyraAttributeSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp new file mode 100644 index 00000000..0a898e6e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp @@ -0,0 +1,316 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Audio/LyraAudioMixEffectsSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAudioMixEffectsSubsystem() {} + +// Begin Cross Module References +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBus_NoRegister(); +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBusMix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundSubmix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAudioSubmixEffectsChain +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain; +class UScriptStruct* FLyraAudioSubmixEffectsChain::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAudioSubmixEffectsChain")); + } + return Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAudioSubmixEffectsChain::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Submix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix on which to apply the Submix Effect Chain Override\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix on which to apply the Submix Effect Chain Override" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect Chain Override (Effects processed in Array index order)\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect Chain Override (Effects processed in Array index order)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Submix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_Submix = { "Submix", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAudioSubmixEffectsChain, Submix), Z_Construct_UClass_USoundSubmix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Submix_MetaData), NewProp_Submix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain_Inner = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAudioSubmixEffectsChain, SubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubmixEffectChain_MetaData), NewProp_SubmixEffectChain_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_Submix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAudioSubmixEffectsChain", + Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers), + sizeof(FLyraAudioSubmixEffectsChain), + alignof(FLyraAudioSubmixEffectsChain), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton; +} +// End ScriptStruct FLyraAudioSubmixEffectsChain + +// Begin Class ULyraAudioMixEffectsSubsystem +void ULyraAudioMixEffectsSubsystem::StaticRegisterNativesULyraAudioMixEffectsSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAudioMixEffectsSubsystem); +UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_NoRegister() +{ + return ULyraAudioMixEffectsSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This subsystem is meant to automatically engage default and user control bus mixes\n * to retrieve previously saved user settings and apply them to the activated user mix.\n * Additionally, this subsystem will automatically apply HDR/LDR Audio Submix Effect Chain Overrides\n * based on the user's preference for HDR Audio. Submix Effect Chain Overrides are defined in the\n * Lyra Audio Settings.\n */" }, +#endif + { "IncludePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This subsystem is meant to automatically engage default and user control bus mixes\nto retrieve previously saved user settings and apply them to the activated user mix.\nAdditionally, this subsystem will automatically apply HDR/LDR Audio Submix Effect Chain Overrides\nbased on the user's preference for HDR Audio. Submix Effect Chain Overrides are defined in the\nLyra Audio Settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultBaseMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Loading Screen Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loading Screen Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// User Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "User Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Overall Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Overall Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Music Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Music Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// SoundFX Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SoundFX Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Dialogue Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Dialogue Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// VoiceChat Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "VoiceChat Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HDRSubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect Chain Overrides to apply when HDR Audio is turned on\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect Chain Overrides to apply when HDR Audio is turned on" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LDRSubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect hain Overrides to apply when HDR Audio is turned off\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect hain Overrides to apply when HDR Audio is turned off" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultBaseMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LoadingScreenMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverallControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MusicControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SoundFXControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DialogueControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_VoiceChatControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_HDRSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HDRSubmixEffectChain; + static const UECodeGen_Private::FStructPropertyParams NewProp_LDRSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LDRSubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DefaultBaseMix = { "DefaultBaseMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, DefaultBaseMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultBaseMix_MetaData), NewProp_DefaultBaseMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LoadingScreenMix = { "LoadingScreenMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, LoadingScreenMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenMix_MetaData), NewProp_LoadingScreenMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_UserMix = { "UserMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, UserMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserMix_MetaData), NewProp_UserMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_OverallControlBus = { "OverallControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, OverallControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallControlBus_MetaData), NewProp_OverallControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_MusicControlBus = { "MusicControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, MusicControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicControlBus_MetaData), NewProp_MusicControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_SoundFXControlBus = { "SoundFXControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, SoundFXControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXControlBus_MetaData), NewProp_SoundFXControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DialogueControlBus = { "DialogueControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, DialogueControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueControlBus_MetaData), NewProp_DialogueControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_VoiceChatControlBus = { "VoiceChatControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, VoiceChatControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatControlBus_MetaData), NewProp_VoiceChatControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain_Inner = { "HDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, METADATA_PARAMS(0, nullptr) }; // 2051370987 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain = { "HDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, HDRSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HDRSubmixEffectChain_MetaData), NewProp_HDRSubmixEffectChain_MetaData) }; // 2051370987 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain_Inner = { "LDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, METADATA_PARAMS(0, nullptr) }; // 2051370987 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain = { "LDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, LDRSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LDRSubmixEffectChain_MetaData), NewProp_LDRSubmixEffectChain_MetaData) }; // 2051370987 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DefaultBaseMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LoadingScreenMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_UserMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_OverallControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_MusicControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_SoundFXControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DialogueControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_VoiceChatControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::ClassParams = { + &ULyraAudioMixEffectsSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton, Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAudioMixEffectsSubsystem::StaticClass(); +} +ULyraAudioMixEffectsSubsystem::ULyraAudioMixEffectsSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAudioMixEffectsSubsystem); +ULyraAudioMixEffectsSubsystem::~ULyraAudioMixEffectsSubsystem() {} +// End Class ULyraAudioMixEffectsSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAudioSubmixEffectsChain::StaticStruct, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewStructOps, TEXT("LyraAudioSubmixEffectsChain"), &Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAudioSubmixEffectsChain), 2051370987U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAudioMixEffectsSubsystem, ULyraAudioMixEffectsSubsystem::StaticClass, TEXT("ULyraAudioMixEffectsSubsystem"), &Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAudioMixEffectsSubsystem), 3146904743U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_219221928(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h new file mode 100644 index 00000000..04ecc9b0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Audio/LyraAudioMixEffectsSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAudioMixEffectsSubsystem_generated_h +#error "LyraAudioMixEffectsSubsystem.generated.h already included, missing '#pragma once' in LyraAudioMixEffectsSubsystem.h" +#endif +#define LYRAGAME_LyraAudioMixEffectsSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_20_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAudioMixEffectsSubsystem(); \ + friend struct Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraAudioMixEffectsSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAudioMixEffectsSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAudioMixEffectsSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAudioMixEffectsSubsystem(ULyraAudioMixEffectsSubsystem&&); \ + ULyraAudioMixEffectsSubsystem(const ULyraAudioMixEffectsSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAudioMixEffectsSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAudioMixEffectsSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAudioMixEffectsSubsystem) \ + NO_API virtual ~ULyraAudioMixEffectsSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp new file mode 100644 index 00000000..480e4a43 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp @@ -0,0 +1,323 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Audio/LyraAudioSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAudioSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UClass* Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundSubmix_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioSettings_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraSubmixEffectChainMap +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap; +class UScriptStruct* FLyraSubmixEffectChainMap::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraSubmixEffectChainMap")); + } + return Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraSubmixEffectChainMap::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Submix_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundSubmix" }, + { "Category", "LyraSubmixEffectChainMap" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubmixEffectChain_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundEffectSubmixPreset" }, + { "Category", "LyraSubmixEffectChainMap" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Submix; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_SubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_Submix = { "Submix", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraSubmixEffectChainMap, Submix), Z_Construct_UClass_USoundSubmix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Submix_MetaData), NewProp_Submix_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain_Inner = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraSubmixEffectChainMap, SubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubmixEffectChain_MetaData), NewProp_SubmixEffectChain_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_Submix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraSubmixEffectChainMap", + Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers), + sizeof(FLyraSubmixEffectChainMap), + alignof(FLyraSubmixEffectChainMap), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap() +{ + if (!Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton; +} +// End ScriptStruct FLyraSubmixEffectChainMap + +// Begin Class ULyraAudioSettings +void ULyraAudioSettings::StaticRegisterNativesULyraAudioSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAudioSettings); +UClass* Z_Construct_UClass_ULyraAudioSettings_NoRegister() +{ + return ULyraAudioSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraAudioSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "LyraAudioSettings" }, + { "IncludePath", "Audio/LyraAudioSettings.h" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "MixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Default Base Control Bus Mix */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Default Base Control Bus Mix" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "MixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Loading Screen Control Bus Mix - Called during loading screens to cover background audio events */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Loading Screen Control Bus Mix - Called during loading screens to cover background audio events" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserSettingsControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Default Base Control Bus Mix */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Default Base Control Bus Mix" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Overall sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Overall sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Music sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Music sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the SoundFX sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the SoundFX sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Dialogue sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Dialogue sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the VoiceChat sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the VoiceChat sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HDRAudioSubmixEffectChain_MetaData[] = { + { "Category", "EffectSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Submix Processing Chains to achieve high dynamic range audio output */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Processing Chains to achieve high dynamic range audio output" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LDRAudioSubmixEffectChain_MetaData[] = { + { "Category", "EffectSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Submix Processing Chains to achieve low dynamic range audio output */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Processing Chains to achieve low dynamic range audio output" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_LoadingScreenControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserSettingsControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_OverallVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_MusicVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_SoundFXVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_DialogueVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_VoiceChatVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_HDRAudioSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HDRAudioSubmixEffectChain; + static const UECodeGen_Private::FStructPropertyParams NewProp_LDRAudioSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LDRAudioSubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DefaultControlBusMix = { "DefaultControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, DefaultControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultControlBusMix_MetaData), NewProp_DefaultControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LoadingScreenControlBusMix = { "LoadingScreenControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, LoadingScreenControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenControlBusMix_MetaData), NewProp_LoadingScreenControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_UserSettingsControlBusMix = { "UserSettingsControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, UserSettingsControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserSettingsControlBusMix_MetaData), NewProp_UserSettingsControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_OverallVolumeControlBus = { "OverallVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, OverallVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallVolumeControlBus_MetaData), NewProp_OverallVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_MusicVolumeControlBus = { "MusicVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, MusicVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicVolumeControlBus_MetaData), NewProp_MusicVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_SoundFXVolumeControlBus = { "SoundFXVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, SoundFXVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXVolumeControlBus_MetaData), NewProp_SoundFXVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DialogueVolumeControlBus = { "DialogueVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, DialogueVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueVolumeControlBus_MetaData), NewProp_DialogueVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_VoiceChatVolumeControlBus = { "VoiceChatVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, VoiceChatVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatVolumeControlBus_MetaData), NewProp_VoiceChatVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain_Inner = { "HDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, METADATA_PARAMS(0, nullptr) }; // 2674517442 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain = { "HDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, HDRAudioSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HDRAudioSubmixEffectChain_MetaData), NewProp_HDRAudioSubmixEffectChain_MetaData) }; // 2674517442 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain_Inner = { "LDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, METADATA_PARAMS(0, nullptr) }; // 2674517442 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain = { "LDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, LDRAudioSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LDRAudioSubmixEffectChain_MetaData), NewProp_LDRAudioSubmixEffectChain_MetaData) }; // 2674517442 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DefaultControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LoadingScreenControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_UserSettingsControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_OverallVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_MusicVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_SoundFXVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DialogueVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_VoiceChatVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAudioSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAudioSettings_Statics::ClassParams = { + &ULyraAudioSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers), + 0, + 0x001000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAudioSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAudioSettings() +{ + if (!Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton, Z_Construct_UClass_ULyraAudioSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAudioSettings::StaticClass(); +} +ULyraAudioSettings::ULyraAudioSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAudioSettings); +ULyraAudioSettings::~ULyraAudioSettings() {} +// End Class ULyraAudioSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraSubmixEffectChainMap::StaticStruct, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewStructOps, TEXT("LyraSubmixEffectChainMap"), &Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraSubmixEffectChainMap), 2674517442U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAudioSettings, ULyraAudioSettings::StaticClass, TEXT("ULyraAudioSettings"), &Z_Registration_Info_UClass_ULyraAudioSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAudioSettings), 2583634539U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_1014962831(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.generated.h new file mode 100644 index 00000000..18b6cd3c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAudioSettings.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Audio/LyraAudioSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAudioSettings_generated_h +#error "LyraAudioSettings.generated.h already included, missing '#pragma once' in LyraAudioSettings.h" +#endif +#define LYRAGAME_LyraAudioSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAudioSettings(); \ + friend struct Z_Construct_UClass_ULyraAudioSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraAudioSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAudioSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAudioSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAudioSettings(ULyraAudioSettings&&); \ + ULyraAudioSettings(const ULyraAudioSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAudioSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAudioSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAudioSettings) \ + NO_API virtual ~ULyraAudioSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_30_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp new file mode 100644 index 00000000..4ee48b8f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraBotCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBotCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBotCheats Function AddPlayerBot +struct Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a bot player\n" }, +#endif + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a bot player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCheats, nullptr, "AddPlayerBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCheats::execAddPlayerBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddPlayerBot(); + P_NATIVE_END; +} +// End Class ULyraBotCheats Function AddPlayerBot + +// Begin Class ULyraBotCheats Function RemovePlayerBot +struct Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a random bot player\n" }, +#endif + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a random bot player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCheats, nullptr, "RemovePlayerBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCheats::execRemovePlayerBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemovePlayerBot(); + P_NATIVE_END; +} +// End Class ULyraBotCheats Function RemovePlayerBot + +// Begin Class ULyraBotCheats +void ULyraBotCheats::StaticRegisterNativesULyraBotCheats() +{ + UClass* Class = ULyraBotCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddPlayerBot", &ULyraBotCheats::execAddPlayerBot }, + { "RemovePlayerBot", &ULyraBotCheats::execRemovePlayerBot }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBotCheats); +UClass* Z_Construct_UClass_ULyraBotCheats_NoRegister() +{ + return ULyraBotCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraBotCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to bots */" }, +#endif + { "IncludePath", "Development/LyraBotCheats.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to bots" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot, "AddPlayerBot" }, // 3734653617 + { &Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot, "RemovePlayerBot" }, // 397959546 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraBotCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBotCheats_Statics::ClassParams = { + &ULyraBotCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBotCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBotCheats() +{ + if (!Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton, Z_Construct_UClass_ULyraBotCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBotCheats::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBotCheats); +ULyraBotCheats::~ULyraBotCheats() {} +// End Class ULyraBotCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBotCheats, ULyraBotCheats::StaticClass, TEXT("ULyraBotCheats"), &Z_Registration_Info_UClass_ULyraBotCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBotCheats), 4073402433U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_540700765(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.generated.h new file mode 100644 index 00000000..2365fca2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCheats.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraBotCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBotCheats_generated_h +#error "LyraBotCheats.generated.h already included, missing '#pragma once' in LyraBotCheats.h" +#endif +#define LYRAGAME_LyraBotCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemovePlayerBot); \ + DECLARE_FUNCTION(execAddPlayerBot); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBotCheats(); \ + friend struct Z_Construct_UClass_ULyraBotCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraBotCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBotCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBotCheats(ULyraBotCheats&&); \ + ULyraBotCheats(const ULyraBotCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBotCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBotCheats); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraBotCheats) \ + NO_API virtual ~ULyraBotCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp new file mode 100644 index 00000000..a707a777 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp @@ -0,0 +1,267 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraBotCreationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBotCreationComponent() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_AAIController_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCreationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCreationComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBotCreationComponent Function RemoveOneBot +struct Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deletes the last created bot if possible */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deletes the last created bot if possible" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "RemoveOneBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080404, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execRemoveOneBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveOneBot(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function RemoveOneBot + +// Begin Class ULyraBotCreationComponent Function ServerCreateBots +static const FName NAME_ULyraBotCreationComponent_ServerCreateBots = FName(TEXT("ServerCreateBots")); +void ULyraBotCreationComponent::ServerCreateBots() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraBotCreationComponent_ServerCreateBots); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + ServerCreateBots_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Spawns bots up to NumBotsToCreate */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spawns bots up to NumBotsToCreate" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "ServerCreateBots", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C04, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execServerCreateBots) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ServerCreateBots_Implementation(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function ServerCreateBots + +// Begin Class ULyraBotCreationComponent Function SpawnOneBot +struct Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Always creates a single bot */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Always creates a single bot" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "SpawnOneBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080404, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execSpawnOneBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SpawnOneBot(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function SpawnOneBot + +// Begin Class ULyraBotCreationComponent +void ULyraBotCreationComponent::StaticRegisterNativesULyraBotCreationComponent() +{ + UClass* Class = ULyraBotCreationComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "RemoveOneBot", &ULyraBotCreationComponent::execRemoveOneBot }, + { "ServerCreateBots", &ULyraBotCreationComponent::execServerCreateBots }, + { "SpawnOneBot", &ULyraBotCreationComponent::execSpawnOneBot }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBotCreationComponent); +UClass* Z_Construct_UClass_ULyraBotCreationComponent_NoRegister() +{ + return ULyraBotCreationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraBotCreationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "GameModes/LyraBotCreationComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumBotsToCreate_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BotControllerClass_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RandomBotNames_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedBotList_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NumBotsToCreate; + static const UECodeGen_Private::FClassPropertyParams NewProp_BotControllerClass; + static const UECodeGen_Private::FStrPropertyParams NewProp_RandomBotNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RandomBotNames; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedBotList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SpawnedBotList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot, "RemoveOneBot" }, // 1268094969 + { &Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots, "ServerCreateBots" }, // 971890224 + { &Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot, "SpawnOneBot" }, // 3856896300 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_NumBotsToCreate = { "NumBotsToCreate", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, NumBotsToCreate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumBotsToCreate_MetaData), NewProp_NumBotsToCreate_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_BotControllerClass = { "BotControllerClass", nullptr, (EPropertyFlags)0x0024080000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, BotControllerClass), Z_Construct_UClass_UClass, Z_Construct_UClass_AAIController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BotControllerClass_MetaData), NewProp_BotControllerClass_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames_Inner = { "RandomBotNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames = { "RandomBotNames", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, RandomBotNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RandomBotNames_MetaData), NewProp_RandomBotNames_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList_Inner = { "SpawnedBotList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AAIController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList = { "SpawnedBotList", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, SpawnedBotList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedBotList_MetaData), NewProp_SpawnedBotList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_NumBotsToCreate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_BotControllerClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBotCreationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::ClassParams = { + &ULyraBotCreationComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBotCreationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBotCreationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton, Z_Construct_UClass_ULyraBotCreationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBotCreationComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBotCreationComponent); +ULyraBotCreationComponent::~ULyraBotCreationComponent() {} +// End Class ULyraBotCreationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBotCreationComponent, ULyraBotCreationComponent::StaticClass, TEXT("ULyraBotCreationComponent"), &Z_Registration_Info_UClass_ULyraBotCreationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBotCreationComponent), 1663100918U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_3314829384(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h new file mode 100644 index 00000000..c9f69175 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraBotCreationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBotCreationComponent_generated_h +#error "LyraBotCreationComponent.generated.h already included, missing '#pragma once' in LyraBotCreationComponent.h" +#endif +#define LYRAGAME_LyraBotCreationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ServerCreateBots_Implementation(); \ + DECLARE_FUNCTION(execServerCreateBots); \ + DECLARE_FUNCTION(execRemoveOneBot); \ + DECLARE_FUNCTION(execSpawnOneBot); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBotCreationComponent(); \ + friend struct Z_Construct_UClass_ULyraBotCreationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraBotCreationComponent, UGameStateComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBotCreationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBotCreationComponent(ULyraBotCreationComponent&&); \ + ULyraBotCreationComponent(const ULyraBotCreationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBotCreationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBotCreationComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBotCreationComponent) \ + NO_API virtual ~ULyraBotCreationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp new file mode 100644 index 00000000..4043f4e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraBoundActionButton.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBoundActionButton() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonBoundActionButton(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonStyle_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBoundActionButton(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBoundActionButton_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBoundActionButton +void ULyraBoundActionButton::StaticRegisterNativesULyraBoundActionButton() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBoundActionButton); +UClass* Z_Construct_UClass_ULyraBoundActionButton_NoRegister() +{ + return ULyraBoundActionButton::StaticClass(); +} +struct Z_Construct_UClass_ULyraBoundActionButton_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraBoundActionButton.h" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyboardStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TouchStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_KeyboardStyle; + static const UECodeGen_Private::FClassPropertyParams NewProp_GamepadStyle; + static const UECodeGen_Private::FClassPropertyParams NewProp_TouchStyle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_KeyboardStyle = { "KeyboardStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, KeyboardStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyboardStyle_MetaData), NewProp_KeyboardStyle_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_GamepadStyle = { "GamepadStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, GamepadStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadStyle_MetaData), NewProp_GamepadStyle_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_TouchStyle = { "TouchStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, TouchStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TouchStyle_MetaData), NewProp_TouchStyle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_KeyboardStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_GamepadStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_TouchStyle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBoundActionButton_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonBoundActionButton, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBoundActionButton_Statics::ClassParams = { + &ULyraBoundActionButton::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBoundActionButton_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBoundActionButton() +{ + if (!Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton, Z_Construct_UClass_ULyraBoundActionButton_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBoundActionButton::StaticClass(); +} +ULyraBoundActionButton::ULyraBoundActionButton(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBoundActionButton); +ULyraBoundActionButton::~ULyraBoundActionButton() {} +// End Class ULyraBoundActionButton + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBoundActionButton, ULyraBoundActionButton::StaticClass, TEXT("ULyraBoundActionButton"), &Z_Registration_Info_UClass_ULyraBoundActionButton, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBoundActionButton), 1412031008U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_292333060(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h new file mode 100644 index 00000000..da64b0f9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraBoundActionButton.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBoundActionButton_generated_h +#error "LyraBoundActionButton.generated.h already included, missing '#pragma once' in LyraBoundActionButton.h" +#endif +#define LYRAGAME_LyraBoundActionButton_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBoundActionButton(); \ + friend struct Z_Construct_UClass_ULyraBoundActionButton_Statics; \ +public: \ + DECLARE_CLASS(ULyraBoundActionButton, UCommonBoundActionButton, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBoundActionButton) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraBoundActionButton(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBoundActionButton(ULyraBoundActionButton&&); \ + ULyraBoundActionButton(const ULyraBoundActionButton&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBoundActionButton); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBoundActionButton); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBoundActionButton) \ + NO_API virtual ~ULyraBoundActionButton(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp new file mode 100644 index 00000000..14e968ec --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp @@ -0,0 +1,224 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Screens/LyraBrightnessEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBrightnessEditor() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBrightnessEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBrightnessEditor_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetSwitcher_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBrightnessEditor Function HandleBackClicked +struct Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBrightnessEditor, nullptr, "HandleBackClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBrightnessEditor::execHandleBackClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleBackClicked(); + P_NATIVE_END; +} +// End Class ULyraBrightnessEditor Function HandleBackClicked + +// Begin Class ULyraBrightnessEditor Function HandleDoneClicked +struct Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBrightnessEditor, nullptr, "HandleDoneClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBrightnessEditor::execHandleDoneClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleDoneClicked(); + P_NATIVE_END; +} +// End Class ULyraBrightnessEditor Function HandleDoneClicked + +// Begin Class ULyraBrightnessEditor +void ULyraBrightnessEditor::StaticRegisterNativesULyraBrightnessEditor() +{ + UClass* Class = ULyraBrightnessEditor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleBackClicked", &ULyraBrightnessEditor::execHandleBackClicked }, + { "HandleDoneClicked", &ULyraBrightnessEditor::execHandleDoneClicked }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBrightnessEditor); +UClass* Z_Construct_UClass_ULyraBrightnessEditor_NoRegister() +{ + return ULyraBrightnessEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraBrightnessEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/Screens/LyraBrightnessEditor.h" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCancel_MetaData[] = { + { "Category", "Restrictions" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Switcher_SafeZoneMessage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Default_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Back_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Done_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanCancel_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCancel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Switcher_SafeZoneMessage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Default; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Back; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Done; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked, "HandleBackClicked" }, // 2180966280 + { &Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked, "HandleDoneClicked" }, // 3117725778 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel_SetBit(void* Obj) +{ + ((ULyraBrightnessEditor*)Obj)->bCanCancel = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel = { "bCanCancel", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraBrightnessEditor), &Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCancel_MetaData), NewProp_bCanCancel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Switcher_SafeZoneMessage = { "Switcher_SafeZoneMessage", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Switcher_SafeZoneMessage), Z_Construct_UClass_UWidgetSwitcher_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Switcher_SafeZoneMessage_MetaData), NewProp_Switcher_SafeZoneMessage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_RichText_Default = { "RichText_Default", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, RichText_Default), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Default_MetaData), NewProp_RichText_Default_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Back = { "Button_Back", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Button_Back), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Back_MetaData), NewProp_Button_Back_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Done = { "Button_Done", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Button_Done), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Done_MetaData), NewProp_Button_Done_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Switcher_SafeZoneMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_RichText_Default, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Back, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Done, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBrightnessEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameSettingActionInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraBrightnessEditor, IGameSettingActionInterface), false }, // 3882456604 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::ClassParams = { + &ULyraBrightnessEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBrightnessEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBrightnessEditor() +{ + if (!Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton, Z_Construct_UClass_ULyraBrightnessEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBrightnessEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBrightnessEditor); +ULyraBrightnessEditor::~ULyraBrightnessEditor() {} +// End Class ULyraBrightnessEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBrightnessEditor, ULyraBrightnessEditor::StaticClass, TEXT("ULyraBrightnessEditor"), &Z_Registration_Info_UClass_ULyraBrightnessEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBrightnessEditor), 1160176725U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_4250889822(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h new file mode 100644 index 00000000..f10d1fa5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Screens/LyraBrightnessEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBrightnessEditor_generated_h +#error "LyraBrightnessEditor.generated.h already included, missing '#pragma once' in LyraBrightnessEditor.h" +#endif +#define LYRAGAME_LyraBrightnessEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleDoneClicked); \ + DECLARE_FUNCTION(execHandleBackClicked); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBrightnessEditor(); \ + friend struct Z_Construct_UClass_ULyraBrightnessEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraBrightnessEditor, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBrightnessEditor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBrightnessEditor(ULyraBrightnessEditor&&); \ + ULyraBrightnessEditor(const ULyraBrightnessEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBrightnessEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBrightnessEditor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBrightnessEditor) \ + NO_API virtual ~ULyraBrightnessEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp new file mode 100644 index 00000000..4a691235 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp @@ -0,0 +1,247 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraButtonBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraButtonBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraButtonBase Function SetButtonText +struct Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics +{ + struct LyraButtonBase_eventSetButtonText_Parms + { + FText InText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_InText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::NewProp_InText = { "InText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraButtonBase_eventSetButtonText_Parms, InText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InText_MetaData), NewProp_InText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::NewProp_InText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "SetButtonText", nullptr, nullptr, Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::LyraButtonBase_eventSetButtonText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::LyraButtonBase_eventSetButtonText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraButtonBase_SetButtonText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraButtonBase::execSetButtonText) +{ + P_GET_PROPERTY_REF(FTextProperty,Z_Param_Out_InText); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetButtonText(Z_Param_Out_InText); + P_NATIVE_END; +} +// End Class ULyraButtonBase Function SetButtonText + +// Begin Class ULyraButtonBase Function UpdateButtonStyle +static const FName NAME_ULyraButtonBase_UpdateButtonStyle = FName(TEXT("UpdateButtonStyle")); +void ULyraButtonBase::UpdateButtonStyle() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraButtonBase_UpdateButtonStyle); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "UpdateButtonStyle", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraButtonBase Function UpdateButtonStyle + +// Begin Class ULyraButtonBase Function UpdateButtonText +struct LyraButtonBase_eventUpdateButtonText_Parms +{ + FText InText; +}; +static const FName NAME_ULyraButtonBase_UpdateButtonText = FName(TEXT("UpdateButtonText")); +void ULyraButtonBase::UpdateButtonText(FText const& InText) +{ + LyraButtonBase_eventUpdateButtonText_Parms Parms; + Parms.InText=InText; + UFunction* Func = FindFunctionChecked(NAME_ULyraButtonBase_UpdateButtonText); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_InText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::NewProp_InText = { "InText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraButtonBase_eventUpdateButtonText_Parms, InText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InText_MetaData), NewProp_InText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::NewProp_InText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "UpdateButtonText", nullptr, nullptr, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers), sizeof(LyraButtonBase_eventUpdateButtonText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraButtonBase_eventUpdateButtonText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraButtonBase Function UpdateButtonText + +// Begin Class ULyraButtonBase +void ULyraButtonBase::StaticRegisterNativesULyraButtonBase() +{ + UClass* Class = ULyraButtonBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetButtonText", &ULyraButtonBase::execSetButtonText }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraButtonBase); +UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister() +{ + return ULyraButtonBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraButtonBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/Foundation/LyraButtonBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverride_ButtonText_MetaData[] = { + { "Category", "Button" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ButtonText_MetaData[] = { + { "Category", "Button" }, + { "editcondition", "bOverride_ButtonText" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bOverride_ButtonText_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverride_ButtonText; + static const UECodeGen_Private::FTextPropertyParams NewProp_ButtonText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraButtonBase_SetButtonText, "SetButtonText" }, // 2924947996 + { &Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle, "UpdateButtonStyle" }, // 511124998 + { &Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText, "UpdateButtonText" }, // 2455802817 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText_SetBit(void* Obj) +{ + ((ULyraButtonBase*)Obj)->bOverride_ButtonText = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText = { "bOverride_ButtonText", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(ULyraButtonBase), &Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverride_ButtonText_MetaData), NewProp_bOverride_ButtonText_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_ButtonText = { "ButtonText", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraButtonBase, ButtonText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ButtonText_MetaData), NewProp_ButtonText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_ButtonText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraButtonBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonButtonBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraButtonBase_Statics::ClassParams = { + &ULyraButtonBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraButtonBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraButtonBase() +{ + if (!Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton, Z_Construct_UClass_ULyraButtonBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraButtonBase::StaticClass(); +} +ULyraButtonBase::ULyraButtonBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraButtonBase); +ULyraButtonBase::~ULyraButtonBase() {} +// End Class ULyraButtonBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraButtonBase, ULyraButtonBase::StaticClass, TEXT("ULyraButtonBase"), &Z_Registration_Info_UClass_ULyraButtonBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraButtonBase), 2872452804U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_582371877(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.generated.h new file mode 100644 index 00000000..5b6ce4a5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraButtonBase.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraButtonBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraButtonBase_generated_h +#error "LyraButtonBase.generated.h already included, missing '#pragma once' in LyraButtonBase.h" +#endif +#define LYRAGAME_LyraButtonBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetButtonText); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraButtonBase(); \ + friend struct Z_Construct_UClass_ULyraButtonBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraButtonBase, UCommonButtonBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraButtonBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraButtonBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraButtonBase(ULyraButtonBase&&); \ + ULyraButtonBase(const ULyraButtonBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraButtonBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraButtonBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraButtonBase) \ + NO_API virtual ~ULyraButtonBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp new file mode 100644 index 00000000..4beb8c78 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraAssistInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraAssistInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface ULyraCameraAssistInterface +void ULyraCameraAssistInterface::StaticRegisterNativesULyraCameraAssistInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraAssistInterface); +UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister() +{ + return ULyraCameraAssistInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraAssistInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Camera/LyraCameraAssistInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCameraAssistInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraAssistInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraAssistInterface_Statics::ClassParams = { + &ULyraCameraAssistInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraAssistInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraAssistInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraAssistInterface() +{ + if (!Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton, Z_Construct_UClass_ULyraCameraAssistInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraAssistInterface::StaticClass(); +} +ULyraCameraAssistInterface::ULyraCameraAssistInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraAssistInterface); +ULyraCameraAssistInterface::~ULyraCameraAssistInterface() {} +// End Interface ULyraCameraAssistInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraAssistInterface, ULyraCameraAssistInterface::StaticClass, TEXT("ULyraCameraAssistInterface"), &Z_Registration_Info_UClass_ULyraCameraAssistInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraAssistInterface), 1786343506U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_2596330468(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h new file mode 100644 index 00000000..8c83b059 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraAssistInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraAssistInterface_generated_h +#error "LyraCameraAssistInterface.generated.h already included, missing '#pragma once' in LyraCameraAssistInterface.h" +#endif +#define LYRAGAME_LyraCameraAssistInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraCameraAssistInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraAssistInterface(ULyraCameraAssistInterface&&); \ + ULyraCameraAssistInterface(const ULyraCameraAssistInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraAssistInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraAssistInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCameraAssistInterface) \ + NO_API virtual ~ULyraCameraAssistInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraCameraAssistInterface(); \ + friend struct Z_Construct_UClass_ULyraCameraAssistInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraAssistInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraAssistInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraCameraAssistInterface() {} \ +public: \ + typedef ULyraCameraAssistInterface UClassType; \ + typedef ILyraCameraAssistInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp new file mode 100644 index 00000000..9662982f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp @@ -0,0 +1,184 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCameraComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCameraComponent Function FindCameraComponent +struct Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics +{ + struct LyraCameraComponent_eventFindCameraComponent_Parms + { + const AActor* Actor; + ULyraCameraComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Camera" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the camera component if one exists on the specified actor.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the camera component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCameraComponent_eventFindCameraComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCameraComponent_eventFindCameraComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraCameraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCameraComponent, nullptr, "FindCameraComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::LyraCameraComponent_eventFindCameraComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::LyraCameraComponent_eventFindCameraComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCameraComponent::execFindCameraComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraCameraComponent**)Z_Param__Result=ULyraCameraComponent::FindCameraComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraCameraComponent Function FindCameraComponent + +// Begin Class ULyraCameraComponent +void ULyraCameraComponent::StaticRegisterNativesULyraCameraComponent() +{ + UClass* Class = ULyraCameraComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindCameraComponent", &ULyraCameraComponent::execFindCameraComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraComponent); +UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister() +{ + return ULyraCameraComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraComponent\n *\n *\x09The base camera component class used by this project.\n */" }, +#endif + { "HideCategories", "Mobility Rendering LOD Trigger PhysicsVolume" }, + { "IncludePath", "Camera/LyraCameraComponent.h" }, + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraComponent\n\n The base camera component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeStack_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Stack used to blend the camera modes.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stack used to blend the camera modes." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeStack; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent, "FindCameraComponent" }, // 3452154293 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraComponent_Statics::NewProp_CameraModeStack = { "CameraModeStack", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraComponent, CameraModeStack), Z_Construct_UClass_ULyraCameraModeStack_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeStack_MetaData), NewProp_CameraModeStack_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraComponent_Statics::NewProp_CameraModeStack, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCameraComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraComponent_Statics::ClassParams = { + &ULyraCameraComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraComponent() +{ + if (!Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton, Z_Construct_UClass_ULyraCameraComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraComponent); +ULyraCameraComponent::~ULyraCameraComponent() {} +// End Class ULyraCameraComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraComponent, ULyraCameraComponent::StaticClass, TEXT("ULyraCameraComponent"), &Z_Registration_Info_UClass_ULyraCameraComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraComponent), 187712535U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_3508538831(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.generated.h new file mode 100644 index 00000000..15ca4db2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraComponent.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraCameraComponent; +#ifdef LYRAGAME_LyraCameraComponent_generated_h +#error "LyraCameraComponent.generated.h already included, missing '#pragma once' in LyraCameraComponent.h" +#endif +#define LYRAGAME_LyraCameraComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindCameraComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraComponent(); \ + friend struct Z_Construct_UClass_ULyraCameraComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraComponent, UCameraComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraComponent(ULyraCameraComponent&&); \ + ULyraCameraComponent(const ULyraCameraComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCameraComponent) \ + NO_API virtual ~ULyraCameraComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_27_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp new file mode 100644 index 00000000..4e0b6d02 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp @@ -0,0 +1,393 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraMode.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraCameraModeBlendFunction +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction; +static UEnum* ELyraCameraModeBlendFunction_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraCameraModeBlendFunction")); + } + return Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraCameraModeBlendFunction_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraCameraModeBlendFunction\n *\n *\x09""Blend function used for transitioning between camera modes.\n */" }, +#endif + { "COUNT.Hidden", "" }, + { "COUNT.Name", "ELyraCameraModeBlendFunction::COUNT" }, + { "EaseIn.Comment", "// Immediately accelerates, but smoothly decelerates into the target. Ease amount controlled by the exponent.\n" }, + { "EaseIn.Name", "ELyraCameraModeBlendFunction::EaseIn" }, + { "EaseIn.ToolTip", "Immediately accelerates, but smoothly decelerates into the target. Ease amount controlled by the exponent." }, + { "EaseInOut.Comment", "// Smoothly accelerates and decelerates. Ease amount controlled by the exponent.\n" }, + { "EaseInOut.Name", "ELyraCameraModeBlendFunction::EaseInOut" }, + { "EaseInOut.ToolTip", "Smoothly accelerates and decelerates. Ease amount controlled by the exponent." }, + { "EaseOut.Comment", "// Smoothly accelerates, but does not decelerate into the target. Ease amount controlled by the exponent.\n" }, + { "EaseOut.Name", "ELyraCameraModeBlendFunction::EaseOut" }, + { "EaseOut.ToolTip", "Smoothly accelerates, but does not decelerate into the target. Ease amount controlled by the exponent." }, + { "Linear.Comment", "// Does a simple linear interpolation.\n" }, + { "Linear.Name", "ELyraCameraModeBlendFunction::Linear" }, + { "Linear.ToolTip", "Does a simple linear interpolation." }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraCameraModeBlendFunction\n\n Blend function used for transitioning between camera modes." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraCameraModeBlendFunction::Linear", (int64)ELyraCameraModeBlendFunction::Linear }, + { "ELyraCameraModeBlendFunction::EaseIn", (int64)ELyraCameraModeBlendFunction::EaseIn }, + { "ELyraCameraModeBlendFunction::EaseOut", (int64)ELyraCameraModeBlendFunction::EaseOut }, + { "ELyraCameraModeBlendFunction::EaseInOut", (int64)ELyraCameraModeBlendFunction::EaseInOut }, + { "ELyraCameraModeBlendFunction::COUNT", (int64)ELyraCameraModeBlendFunction::COUNT }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraCameraModeBlendFunction", + "ELyraCameraModeBlendFunction", + Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction() +{ + if (!Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton; +} +// End Enum ELyraCameraModeBlendFunction + +// Begin Class ULyraCameraMode +void ULyraCameraMode::StaticRegisterNativesULyraCameraMode() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode); +UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister() +{ + return ULyraCameraMode::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode\n *\n *\x09""Base class for all camera modes.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode\n\n Base class for all camera modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraTypeTag_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A tag that can be queried by gameplay code that cares when a kind of camera mode is active\n// without having to ask about a specific mode (e.g., when aiming downsights to get more accuracy)\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A tag that can be queried by gameplay code that cares when a kind of camera mode is active\nwithout having to ask about a specific mode (e.g., when aiming downsights to get more accuracy)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FieldOfView_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "170.0" }, + { "ClampMin", "5.0" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The horizontal field of view (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The horizontal field of view (in degrees)." }, +#endif + { "UIMax", "170" }, + { "UIMin", "5.0" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewPitchMin_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "89.9" }, + { "ClampMin", "-89.9" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Minimum view pitch (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimum view pitch (in degrees)." }, +#endif + { "UIMax", "89.9" }, + { "UIMin", "-89.9" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewPitchMax_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "89.9" }, + { "ClampMin", "-89.9" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Maximum view pitch (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maximum view pitch (in degrees)." }, +#endif + { "UIMax", "89.9" }, + { "UIMin", "-89.9" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendTime_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How long it takes to blend in this mode.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How long it takes to blend in this mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendFunction_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Function used for blending.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Function used for blending." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendExponent_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponent used by blend functions to control the shape of the curve.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponent used by blend functions to control the shape of the curve." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bResetInterpolation_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, skips all interpolation and puts camera in ideal location. Automatically set to false next frame. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, skips all interpolation and puts camera in ideal location. Automatically set to false next frame." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CameraTypeTag; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FieldOfView; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ViewPitchMin; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ViewPitchMax; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BlendTime; + static const UECodeGen_Private::FBytePropertyParams NewProp_BlendFunction_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_BlendFunction; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BlendExponent; + static void NewProp_bResetInterpolation_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bResetInterpolation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_CameraTypeTag = { "CameraTypeTag", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, CameraTypeTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraTypeTag_MetaData), NewProp_CameraTypeTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_FieldOfView = { "FieldOfView", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, FieldOfView), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FieldOfView_MetaData), NewProp_FieldOfView_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMin = { "ViewPitchMin", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, ViewPitchMin), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewPitchMin_MetaData), NewProp_ViewPitchMin_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMax = { "ViewPitchMax", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, ViewPitchMax), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewPitchMax_MetaData), NewProp_ViewPitchMax_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendTime = { "BlendTime", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendTime_MetaData), NewProp_BlendTime_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction = { "BlendFunction", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendFunction), Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendFunction_MetaData), NewProp_BlendFunction_MetaData) }; // 1611382477 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendExponent = { "BlendExponent", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendExponent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendExponent_MetaData), NewProp_BlendExponent_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation_SetBit(void* Obj) +{ + ((ULyraCameraMode*)Obj)->bResetInterpolation = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation = { "bResetInterpolation", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(ULyraCameraMode), &Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bResetInterpolation_MetaData), NewProp_bResetInterpolation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_CameraTypeTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_FieldOfView, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMax, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendExponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_Statics::ClassParams = { + &ULyraCameraMode::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode); +ULyraCameraMode::~ULyraCameraMode() {} +// End Class ULyraCameraMode + +// Begin Class ULyraCameraModeStack +void ULyraCameraModeStack::StaticRegisterNativesULyraCameraModeStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraModeStack); +UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister() +{ + return ULyraCameraModeStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraModeStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraModeStack\n *\n *\x09Stack used for blending camera modes.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode.h" }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraModeStack\n\n Stack used for blending camera modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeInstances_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeStack_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeInstances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CameraModeInstances; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeStack_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CameraModeStack; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances_Inner = { "CameraModeInstances", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances = { "CameraModeInstances", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraModeStack, CameraModeInstances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeInstances_MetaData), NewProp_CameraModeInstances_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack_Inner = { "CameraModeStack", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack = { "CameraModeStack", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraModeStack, CameraModeStack), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeStack_MetaData), NewProp_CameraModeStack_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraModeStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraModeStack_Statics::ClassParams = { + &ULyraCameraModeStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraModeStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraModeStack() +{ + if (!Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton, Z_Construct_UClass_ULyraCameraModeStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraModeStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraModeStack); +ULyraCameraModeStack::~ULyraCameraModeStack() {} +// End Class ULyraCameraModeStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraCameraModeBlendFunction_StaticEnum, TEXT("ELyraCameraModeBlendFunction"), &Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1611382477U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode, ULyraCameraMode::StaticClass, TEXT("ULyraCameraMode"), &Z_Registration_Info_UClass_ULyraCameraMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode), 3822634538U) }, + { Z_Construct_UClass_ULyraCameraModeStack, ULyraCameraModeStack::StaticClass, TEXT("ULyraCameraModeStack"), &Z_Registration_Info_UClass_ULyraCameraModeStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraModeStack), 2902396006U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_3882960887(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.generated.h new file mode 100644 index 00000000..bfdec1c9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode.generated.h @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraMode_generated_h +#error "LyraCameraMode.generated.h already included, missing '#pragma once' in LyraCameraMode.h" +#endif +#define LYRAGAME_LyraCameraMode_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode(ULyraCameraMode&&); \ + ULyraCameraMode(const ULyraCameraMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode) \ + NO_API virtual ~ULyraCameraMode(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_65_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraModeStack(); \ + friend struct Z_Construct_UClass_ULyraCameraModeStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraModeStack, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraModeStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraModeStack(ULyraCameraModeStack&&); \ + ULyraCameraModeStack(const ULyraCameraModeStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraModeStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraModeStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraModeStack) \ + NO_API virtual ~ULyraCameraModeStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_160_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h + + +#define FOREACH_ENUM_ELYRACAMERAMODEBLENDFUNCTION(op) \ + op(ELyraCameraModeBlendFunction::Linear) \ + op(ELyraCameraModeBlendFunction::EaseIn) \ + op(ELyraCameraModeBlendFunction::EaseOut) \ + op(ELyraCameraModeBlendFunction::EaseInOut) \ + op(ELyraCameraModeBlendFunction::COUNT) + +enum class ELyraCameraModeBlendFunction : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp new file mode 100644 index 00000000..405b7aa4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp @@ -0,0 +1,279 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraMode_ThirdPerson.h" +#include "LyraGame/Camera/LyraPenetrationAvoidanceFeeler.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode_ThirdPerson() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCurveVector_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCameraMode_ThirdPerson +void ULyraCameraMode_ThirdPerson::StaticRegisterNativesULyraCameraMode_ThirdPerson() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode_ThirdPerson); +UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson_NoRegister() +{ + return ULyraCameraMode_ThirdPerson::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode_ThirdPerson\n *\n *\x09""A basic third person camera mode.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode_ThirdPerson\n\n A basic third person camera mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetCurve_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Curve that defines local-space offsets from the target using the view pitch to evaluate the curve.\n" }, +#endif + { "EditCondition", "!bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Curve that defines local-space offsets from the target using the view pitch to evaluate the curve." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseRuntimeFloatCurves_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// UE-103986: Live editing of RuntimeFloatCurves during PIE does not work (unlike curve assets).\n// Once that is resolved this will become the default and TargetOffsetCurve will be removed.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UE-103986: Live editing of RuntimeFloatCurves during PIE does not work (unlike curve assets).\nOnce that is resolved this will become the default and TargetOffsetCurve will be removed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetX_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetY_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetZ_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CrouchOffsetBlendMultiplier_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Alters the speed that a crouch offset is blended in or out\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Alters the speed that a crouch offset is blended in or out" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationBlendInTime_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationBlendOutTime_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreventPenetration_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, does collision checks to keep the camera out of the world. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, does collision checks to keep the camera out of the world." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDoPredictiveAvoidance_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, try to detect nearby walls and move the camera in anticipation. Helps prevent popping. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, try to detect nearby walls and move the camera in anticipation. Helps prevent popping." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionPushOutDistance_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReportPenetrationPercent_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** When the camera's distance is pushed into this percentage of its full distance due to penetration */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When the camera's distance is pushed into this percentage of its full distance due to penetration" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationAvoidanceFeelers_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * These are the feeler rays that are used to find where to place the camera.\n\x09 * Index: 0 : This is the normal feeler we use to prevent collisions.\n\x09 * Index: 1+ : These feelers are used if you bDoPredictiveAvoidance=true, to scan for potential impacts if the player\n\x09 * were to rotate towards that direction and primitively collide the camera so that it pulls in before\n\x09 * impacting the occluder.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "These are the feeler rays that are used to find where to place the camera.\nIndex: 0 : This is the normal feeler we use to prevent collisions.\nIndex: 1+ : These feelers are used if you bDoPredictiveAvoidance=true, to scan for potential impacts if the player\n were to rotate towards that direction and primitively collide the camera so that it pulls in before\n impacting the occluder." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AimLineToDesiredPosBlockedPct_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DebugActorsHitDuringCameraPenetration_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetOffsetCurve; + static void NewProp_bUseRuntimeFloatCurves_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseRuntimeFloatCurves; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetX; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetY; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetZ; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CrouchOffsetBlendMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PenetrationBlendInTime; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PenetrationBlendOutTime; + static void NewProp_bPreventPenetration_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreventPenetration; + static void NewProp_bDoPredictiveAvoidance_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDoPredictiveAvoidance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CollisionPushOutDistance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReportPenetrationPercent; + static const UECodeGen_Private::FStructPropertyParams NewProp_PenetrationAvoidanceFeelers_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PenetrationAvoidanceFeelers; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AimLineToDesiredPosBlockedPct; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DebugActorsHitDuringCameraPenetration_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DebugActorsHitDuringCameraPenetration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetCurve = { "TargetOffsetCurve", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetCurve), Z_Construct_UClass_UCurveVector_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetCurve_MetaData), NewProp_TargetOffsetCurve_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bUseRuntimeFloatCurves = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves = { "bUseRuntimeFloatCurves", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseRuntimeFloatCurves_MetaData), NewProp_bUseRuntimeFloatCurves_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetX = { "TargetOffsetX", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetX), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetX_MetaData), NewProp_TargetOffsetX_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetY = { "TargetOffsetY", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetY), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetY_MetaData), NewProp_TargetOffsetY_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetZ = { "TargetOffsetZ", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetZ), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetZ_MetaData), NewProp_TargetOffsetZ_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CrouchOffsetBlendMultiplier = { "CrouchOffsetBlendMultiplier", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, CrouchOffsetBlendMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CrouchOffsetBlendMultiplier_MetaData), NewProp_CrouchOffsetBlendMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendInTime = { "PenetrationBlendInTime", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationBlendInTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationBlendInTime_MetaData), NewProp_PenetrationBlendInTime_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendOutTime = { "PenetrationBlendOutTime", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationBlendOutTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationBlendOutTime_MetaData), NewProp_PenetrationBlendOutTime_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bPreventPenetration = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration = { "bPreventPenetration", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreventPenetration_MetaData), NewProp_bPreventPenetration_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bDoPredictiveAvoidance = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance = { "bDoPredictiveAvoidance", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDoPredictiveAvoidance_MetaData), NewProp_bDoPredictiveAvoidance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CollisionPushOutDistance = { "CollisionPushOutDistance", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, CollisionPushOutDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionPushOutDistance_MetaData), NewProp_CollisionPushOutDistance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_ReportPenetrationPercent = { "ReportPenetrationPercent", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, ReportPenetrationPercent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReportPenetrationPercent_MetaData), NewProp_ReportPenetrationPercent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers_Inner = { "PenetrationAvoidanceFeelers", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler, METADATA_PARAMS(0, nullptr) }; // 2900195724 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers = { "PenetrationAvoidanceFeelers", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationAvoidanceFeelers), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationAvoidanceFeelers_MetaData), NewProp_PenetrationAvoidanceFeelers_MetaData) }; // 2900195724 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_AimLineToDesiredPosBlockedPct = { "AimLineToDesiredPosBlockedPct", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, AimLineToDesiredPosBlockedPct), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AimLineToDesiredPosBlockedPct_MetaData), NewProp_AimLineToDesiredPosBlockedPct_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration_Inner = { "DebugActorsHitDuringCameraPenetration", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration = { "DebugActorsHitDuringCameraPenetration", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, DebugActorsHitDuringCameraPenetration), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DebugActorsHitDuringCameraPenetration_MetaData), NewProp_DebugActorsHitDuringCameraPenetration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetZ, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CrouchOffsetBlendMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendInTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendOutTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CollisionPushOutDistance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_ReportPenetrationPercent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_AimLineToDesiredPosBlockedPct, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCameraMode, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::ClassParams = { + &ULyraCameraMode_ThirdPerson::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers), + 0, + 0x000000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraMode_ThirdPerson::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode_ThirdPerson); +ULyraCameraMode_ThirdPerson::~ULyraCameraMode_ThirdPerson() {} +// End Class ULyraCameraMode_ThirdPerson + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode_ThirdPerson, ULyraCameraMode_ThirdPerson::StaticClass, TEXT("ULyraCameraMode_ThirdPerson"), &Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode_ThirdPerson), 1732915727U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_2488542726(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h new file mode 100644 index 00000000..89029c7f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraMode_ThirdPerson.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraMode_ThirdPerson_generated_h +#error "LyraCameraMode_ThirdPerson.generated.h already included, missing '#pragma once' in LyraCameraMode_ThirdPerson.h" +#endif +#define LYRAGAME_LyraCameraMode_ThirdPerson_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode_ThirdPerson(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode_ThirdPerson, ULyraCameraMode, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode_ThirdPerson) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode_ThirdPerson(ULyraCameraMode_ThirdPerson&&); \ + ULyraCameraMode_ThirdPerson(const ULyraCameraMode_ThirdPerson&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode_ThirdPerson); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode_ThirdPerson); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode_ThirdPerson) \ + NO_API virtual ~ULyraCameraMode_ThirdPerson(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.gen.cpp new file mode 100644 index 00000000..c56d599a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.gen.cpp @@ -0,0 +1,845 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacter.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +#include "Runtime/Engine/Classes/Engine/ReplicatedState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacter() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRepMovement(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayCueInterface_NoRegister(); +GAMEPLAYTAGS_API UClass* Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraReplicatedAcceleration(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FSharedRepMovement(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraReplicatedAcceleration +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration; +class UScriptStruct* FLyraReplicatedAcceleration::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraReplicatedAcceleration")); + } + return Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraReplicatedAcceleration::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraReplicatedAcceleration: Compressed representation of acceleration\n */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraReplicatedAcceleration: Compressed representation of acceleration" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelXYRadians_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelXYMagnitude_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Direction of XY accel component, quantized to represent [0, 2*pi]\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Direction of XY accel component, quantized to represent [0, 2*pi]" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelZ_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//Accel rate of XY component, quantized to represent [0, MaxAcceleration]\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Accel rate of XY component, quantized to represent [0, MaxAcceleration]" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_AccelXYRadians; + static const UECodeGen_Private::FBytePropertyParams NewProp_AccelXYMagnitude; + static const UECodeGen_Private::FInt8PropertyParams NewProp_AccelZ; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYRadians = { "AccelXYRadians", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelXYRadians), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelXYRadians_MetaData), NewProp_AccelXYRadians_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYMagnitude = { "AccelXYMagnitude", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelXYMagnitude), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelXYMagnitude_MetaData), NewProp_AccelXYMagnitude_MetaData) }; +const UECodeGen_Private::FInt8PropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelZ = { "AccelZ", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int8, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelZ), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelZ_MetaData), NewProp_AccelZ_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYRadians, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYMagnitude, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelZ, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraReplicatedAcceleration", + Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers), + sizeof(FLyraReplicatedAcceleration), + alignof(FLyraReplicatedAcceleration), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraReplicatedAcceleration() +{ + if (!Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton, Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton; +} +// End ScriptStruct FLyraReplicatedAcceleration + +// Begin ScriptStruct FSharedRepMovement +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_SharedRepMovement; +class UScriptStruct* FSharedRepMovement::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSharedRepMovement, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("SharedRepMovement")); + } + return Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FSharedRepMovement::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FSharedRepMovement_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type we use to send FastShared movement updates. */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type we use to send FastShared movement updates." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepMovement_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepTimeStamp_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepMovementMode_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bProxyIsJumpForceApplied_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsCrouched_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_RepMovement; + static const UECodeGen_Private::FFloatPropertyParams NewProp_RepTimeStamp; + static const UECodeGen_Private::FBytePropertyParams NewProp_RepMovementMode; + static void NewProp_bProxyIsJumpForceApplied_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bProxyIsJumpForceApplied; + static void NewProp_bIsCrouched_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsCrouched; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovement = { "RepMovement", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepMovement), Z_Construct_UScriptStruct_FRepMovement, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepMovement_MetaData), NewProp_RepMovement_MetaData) }; // 2904220107 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepTimeStamp = { "RepTimeStamp", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepTimeStamp), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepTimeStamp_MetaData), NewProp_RepTimeStamp_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovementMode = { "RepMovementMode", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepMovementMode), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepMovementMode_MetaData), NewProp_RepMovementMode_MetaData) }; +void Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied_SetBit(void* Obj) +{ + ((FSharedRepMovement*)Obj)->bProxyIsJumpForceApplied = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied = { "bProxyIsJumpForceApplied", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSharedRepMovement), &Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bProxyIsJumpForceApplied_MetaData), NewProp_bProxyIsJumpForceApplied_MetaData) }; +void Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched_SetBit(void* Obj) +{ + ((FSharedRepMovement*)Obj)->bIsCrouched = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched = { "bIsCrouched", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSharedRepMovement), &Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsCrouched_MetaData), NewProp_bIsCrouched_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovement, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepTimeStamp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovementMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "SharedRepMovement", + Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers), + sizeof(FSharedRepMovement), + alignof(FSharedRepMovement), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSharedRepMovement_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FSharedRepMovement() +{ + if (!Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton, Z_Construct_UScriptStruct_FSharedRepMovement_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton; +} +// End ScriptStruct FSharedRepMovement + +// Begin Class ALyraCharacter Function FastSharedReplication +struct LyraCharacter_eventFastSharedReplication_Parms +{ + FSharedRepMovement SharedRepMovement; +}; +static const FName NAME_ALyraCharacter_FastSharedReplication = FName(TEXT("FastSharedReplication")); +void ALyraCharacter::FastSharedReplication(FSharedRepMovement const& SharedRepMovement) +{ + LyraCharacter_eventFastSharedReplication_Parms Parms; + Parms.SharedRepMovement=SharedRepMovement; + UFunction* Func = FindFunctionChecked(NAME_ALyraCharacter_FastSharedReplication); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** RPCs that is called on frames when default property replication is skipped. This replicates a single movement update to everyone. */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "RPCs that is called on frames when default property replication is skipped. This replicates a single movement update to everyone." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SharedRepMovement_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SharedRepMovement; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::NewProp_SharedRepMovement = { "SharedRepMovement", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventFastSharedReplication_Parms, SharedRepMovement), Z_Construct_UScriptStruct_FSharedRepMovement, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SharedRepMovement_MetaData), NewProp_SharedRepMovement_MetaData) }; // 3438049812 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::NewProp_SharedRepMovement, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "FastSharedReplication", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers), sizeof(LyraCharacter_eventFastSharedReplication_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00024C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraCharacter_eventFastSharedReplication_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_FastSharedReplication() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execFastSharedReplication) +{ + P_GET_STRUCT(FSharedRepMovement,Z_Param_SharedRepMovement); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FastSharedReplication_Implementation(Z_Param_SharedRepMovement); + P_NATIVE_END; +} +// End Class ALyraCharacter Function FastSharedReplication + +// Begin Class ALyraCharacter Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics +{ + struct LyraCharacter_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::LyraCharacter_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::LyraCharacter_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraAbilitySystemComponent + +// Begin Class ALyraCharacter Function GetLyraPlayerController +struct Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics +{ + struct LyraCharacter_eventGetLyraPlayerController_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraPlayerController_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraPlayerController", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::LyraCharacter_eventGetLyraPlayerController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::LyraCharacter_eventGetLyraPlayerController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraPlayerController) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerController(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraPlayerController + +// Begin Class ALyraCharacter Function GetLyraPlayerState +struct Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics +{ + struct LyraCharacter_eventGetLyraPlayerState_Parms + { + ALyraPlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraPlayerState_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraPlayerState", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::LyraCharacter_eventGetLyraPlayerState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::LyraCharacter_eventGetLyraPlayerState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerState**)Z_Param__Result=P_THIS->GetLyraPlayerState(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraPlayerState + +// Begin Class ALyraCharacter Function K2_OnDeathFinished +static const FName NAME_ALyraCharacter_K2_OnDeathFinished = FName(TEXT("K2_OnDeathFinished")); +void ALyraCharacter::K2_OnDeathFinished() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraCharacter_K2_OnDeathFinished); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the death sequence for the character has completed\n" }, +#endif + { "DisplayName", "OnDeathFinished" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the death sequence for the character has completed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "K2_OnDeathFinished", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraCharacter Function K2_OnDeathFinished + +// Begin Class ALyraCharacter Function OnControllerChangedTeam +struct Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics +{ + struct LyraCharacter_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::LyraCharacter_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::LyraCharacter_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnControllerChangedTeam + +// Begin Class ALyraCharacter Function OnDeathFinished +struct Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics +{ + struct LyraCharacter_eventOnDeathFinished_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Ends the death sequence for the character (detaches controller, destroys pawn, etc...)\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ends the death sequence for the character (detaches controller, destroys pawn, etc...)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnDeathFinished_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnDeathFinished", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::LyraCharacter_eventOnDeathFinished_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::LyraCharacter_eventOnDeathFinished_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnDeathFinished() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnDeathFinished) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathFinished(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnDeathFinished + +// Begin Class ALyraCharacter Function OnDeathStarted +struct Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics +{ + struct LyraCharacter_eventOnDeathStarted_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Begins the death sequence for the character (disables collision, disables movement, etc...)\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Begins the death sequence for the character (disables collision, disables movement, etc...)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnDeathStarted_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnDeathStarted", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::LyraCharacter_eventOnDeathStarted_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::LyraCharacter_eventOnDeathStarted_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnDeathStarted() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnDeathStarted) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathStarted(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnDeathStarted + +// Begin Class ALyraCharacter Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics +{ + struct LyraCharacter_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::LyraCharacter_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::LyraCharacter_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnRep_MyTeamID + +// Begin Class ALyraCharacter Function OnRep_ReplicatedAcceleration +struct Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnRep_ReplicatedAcceleration", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnRep_ReplicatedAcceleration) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_ReplicatedAcceleration(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnRep_ReplicatedAcceleration + +// Begin Class ALyraCharacter +void ALyraCharacter::StaticRegisterNativesALyraCharacter() +{ + UClass* Class = ALyraCharacter::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FastSharedReplication", &ALyraCharacter::execFastSharedReplication }, + { "GetLyraAbilitySystemComponent", &ALyraCharacter::execGetLyraAbilitySystemComponent }, + { "GetLyraPlayerController", &ALyraCharacter::execGetLyraPlayerController }, + { "GetLyraPlayerState", &ALyraCharacter::execGetLyraPlayerState }, + { "OnControllerChangedTeam", &ALyraCharacter::execOnControllerChangedTeam }, + { "OnDeathFinished", &ALyraCharacter::execOnDeathFinished }, + { "OnDeathStarted", &ALyraCharacter::execOnDeathStarted }, + { "OnRep_MyTeamID", &ALyraCharacter::execOnRep_MyTeamID }, + { "OnRep_ReplicatedAcceleration", &ALyraCharacter::execOnRep_ReplicatedAcceleration }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraCharacter); +UClass* Z_Construct_UClass_ALyraCharacter_NoRegister() +{ + return ALyraCharacter::StaticClass(); +} +struct Z_Construct_UClass_ALyraCharacter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraCharacter\n *\n *\x09The base character pawn class used by this project.\n *\x09Responsible for sending events to pawn components.\n *\x09New behavior should be added via pawn components when possible.\n */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraCharacter.h" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base character pawn class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraCharacter\n\n The base character pawn class used by this project.\n Responsible for sending events to pawn components.\n New behavior should be added via pawn components when possible." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnExtComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReplicatedAcceleration_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnExtComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReplicatedAcceleration; + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraCharacter_FastSharedReplication, "FastSharedReplication" }, // 3783367670 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1659054540 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController, "GetLyraPlayerController" }, // 2609980737 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState, "GetLyraPlayerState" }, // 1893654844 + { &Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished, "K2_OnDeathFinished" }, // 4190250602 + { &Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 153103298 + { &Z_Construct_UFunction_ALyraCharacter_OnDeathFinished, "OnDeathFinished" }, // 4213671362 + { &Z_Construct_UFunction_ALyraCharacter_OnDeathStarted, "OnDeathStarted" }, // 3980990600 + { &Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 3207955130 + { &Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration, "OnRep_ReplicatedAcceleration" }, // 2953740735 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_PawnExtComponent = { "PawnExtComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, PawnExtComponent), Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnExtComponent_MetaData), NewProp_PawnExtComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_HealthComponent = { "HealthComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, HealthComponent), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthComponent_MetaData), NewProp_HealthComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_CameraComponent = { "CameraComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, CameraComponent), Z_Construct_UClass_ULyraCameraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraComponent_MetaData), NewProp_CameraComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_ReplicatedAcceleration = { "ReplicatedAcceleration", "OnRep_ReplicatedAcceleration", (EPropertyFlags)0x0040000100002020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, ReplicatedAcceleration), Z_Construct_UScriptStruct_FLyraReplicatedAcceleration, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReplicatedAcceleration_MetaData), NewProp_ReplicatedAcceleration_MetaData) }; // 3643263984 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraCharacter_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_PawnExtComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_HealthComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_CameraComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_ReplicatedAcceleration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_OnTeamChangedDelegate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraCharacter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularCharacter, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraCharacter_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IAbilitySystemInterface), false }, // 2272790346 + { Z_Construct_UClass_UGameplayCueInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IGameplayCueInterface), false }, // 881046121 + { Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IGameplayTagAssetInterface), false }, // 2592985258 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraCharacter_Statics::ClassParams = { + &ALyraCharacter::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraCharacter_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraCharacter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraCharacter() +{ + if (!Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton, Z_Construct_UClass_ALyraCharacter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraCharacter::StaticClass(); +} +void ALyraCharacter::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_ReplicatedAcceleration(TEXT("ReplicatedAcceleration")); + static const FName Name_MyTeamID(TEXT("MyTeamID")); + const bool bIsValid = true + && Name_ReplicatedAcceleration == ClassReps[(int32)ENetFields_Private::ReplicatedAcceleration].Property->GetFName() + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraCharacter")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraCharacter); +ALyraCharacter::~ALyraCharacter() {} +// End Class ALyraCharacter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraReplicatedAcceleration::StaticStruct, Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewStructOps, TEXT("LyraReplicatedAcceleration"), &Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraReplicatedAcceleration), 3643263984U) }, + { FSharedRepMovement::StaticStruct, Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewStructOps, TEXT("SharedRepMovement"), &Z_Registration_Info_UScriptStruct_SharedRepMovement, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSharedRepMovement), 3438049812U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraCharacter, ALyraCharacter::StaticClass, TEXT("ALyraCharacter"), &Z_Registration_Info_UClass_ALyraCharacter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraCharacter), 2065265588U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_1147311146(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.generated.h new file mode 100644 index 00000000..5ee812df --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacter.generated.h @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacter.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ALyraPlayerController; +class ALyraPlayerState; +class ULyraAbilitySystemComponent; +class UObject; +struct FGenericTeamId; +struct FSharedRepMovement; +#ifdef LYRAGAME_LyraCharacter_generated_h +#error "LyraCharacter.generated.h already included, missing '#pragma once' in LyraCharacter.h" +#endif +#define LYRAGAME_LyraCharacter_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_37_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_53_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FSharedRepMovement_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void FastSharedReplication_Implementation(FSharedRepMovement const& SharedRepMovement); \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnRep_ReplicatedAcceleration); \ + DECLARE_FUNCTION(execOnControllerChangedTeam); \ + DECLARE_FUNCTION(execOnDeathFinished); \ + DECLARE_FUNCTION(execOnDeathStarted); \ + DECLARE_FUNCTION(execFastSharedReplication); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerState); \ + DECLARE_FUNCTION(execGetLyraPlayerController); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraCharacter(); \ + friend struct Z_Construct_UClass_ALyraCharacter_Statics; \ +public: \ + DECLARE_CLASS(ALyraCharacter, AModularCharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraCharacter) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + ReplicatedAcceleration=NETFIELD_REP_START, \ + MyTeamID, \ + NETFIELD_REP_END=MyTeamID }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraCharacter(ALyraCharacter&&); \ + ALyraCharacter(const ALyraCharacter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraCharacter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraCharacter); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraCharacter) \ + NO_API virtual ~ALyraCharacter(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_95_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp new file mode 100644 index 00000000..978ee0e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp @@ -0,0 +1,253 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacterMovementComponent.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterMovementComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCharacterMovementComponent(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterGroundInfo(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraCharacterGroundInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo; +class UScriptStruct* FLyraCharacterGroundInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterGroundInfo")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterGroundInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraCharacterGroundInfo\n *\n *\x09Information about the ground under the character. It only gets updated as needed.\n */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraCharacterGroundInfo\n\n Information about the ground under the character. It only gets updated as needed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundHitResult_MetaData[] = { + { "Category", "LyraCharacterGroundInfo" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundDistance_MetaData[] = { + { "Category", "LyraCharacterGroundInfo" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GroundHitResult; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GroundDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundHitResult = { "GroundHitResult", nullptr, (EPropertyFlags)0x0010008000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterGroundInfo, GroundHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundHitResult_MetaData), NewProp_GroundHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundDistance = { "GroundDistance", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterGroundInfo, GroundDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundDistance_MetaData), NewProp_GroundDistance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundHitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterGroundInfo", + Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers), + sizeof(FLyraCharacterGroundInfo), + alignof(FLyraCharacterGroundInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterGroundInfo() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton; +} +// End ScriptStruct FLyraCharacterGroundInfo + +// Begin Class ULyraCharacterMovementComponent Function GetGroundInfo +struct Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics +{ + struct LyraCharacterMovementComponent_eventGetGroundInfo_Parms + { + FLyraCharacterGroundInfo ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|CharacterMovement" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current ground info. Calling this will update the ground info if it's out of date.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current ground info. Calling this will update the ground info if it's out of date." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008008000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacterMovementComponent_eventGetGroundInfo_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraCharacterGroundInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; // 1955041393 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCharacterMovementComponent, nullptr, "GetGroundInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::LyraCharacterMovementComponent_eventGetGroundInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::LyraCharacterMovementComponent_eventGetGroundInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCharacterMovementComponent::execGetGroundInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraCharacterGroundInfo*)Z_Param__Result=P_THIS->GetGroundInfo(); + P_NATIVE_END; +} +// End Class ULyraCharacterMovementComponent Function GetGroundInfo + +// Begin Class ULyraCharacterMovementComponent +void ULyraCharacterMovementComponent::StaticRegisterNativesULyraCharacterMovementComponent() +{ + UClass* Class = ULyraCharacterMovementComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetGroundInfo", &ULyraCharacterMovementComponent::execGetGroundInfo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCharacterMovementComponent); +UClass* Z_Construct_UClass_ULyraCharacterMovementComponent_NoRegister() +{ + return ULyraCharacterMovementComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraCharacterMovementComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCharacterMovementComponent\n *\n *\x09The base character movement component class used by this project.\n */" }, +#endif + { "IncludePath", "Character/LyraCharacterMovementComponent.h" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCharacterMovementComponent\n\n The base character movement component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHasReplicatedAcceleration_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bHasReplicatedAcceleration_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHasReplicatedAcceleration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo, "GetGroundInfo" }, // 3443260485 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration_SetBit(void* Obj) +{ + ((ULyraCharacterMovementComponent*)Obj)->bHasReplicatedAcceleration = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration = { "bHasReplicatedAcceleration", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCharacterMovementComponent), &Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHasReplicatedAcceleration_MetaData), NewProp_bHasReplicatedAcceleration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCharacterMovementComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::ClassParams = { + &ULyraCharacterMovementComponent::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCharacterMovementComponent() +{ + if (!Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton, Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCharacterMovementComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCharacterMovementComponent); +ULyraCharacterMovementComponent::~ULyraCharacterMovementComponent() {} +// End Class ULyraCharacterMovementComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCharacterGroundInfo::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewStructOps, TEXT("LyraCharacterGroundInfo"), &Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterGroundInfo), 1955041393U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCharacterMovementComponent, ULyraCharacterMovementComponent::StaticClass, TEXT("ULyraCharacterMovementComponent"), &Z_Registration_Info_UClass_ULyraCharacterMovementComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCharacterMovementComponent), 1696872802U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_494473716(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h new file mode 100644 index 00000000..78d4f6e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacterMovementComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraCharacterGroundInfo; +#ifdef LYRAGAME_LyraCharacterMovementComponent_generated_h +#error "LyraCharacterMovementComponent.generated.h already included, missing '#pragma once' in LyraCharacterMovementComponent.h" +#endif +#define LYRAGAME_LyraCharacterMovementComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetGroundInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCharacterMovementComponent(); \ + friend struct Z_Construct_UClass_ULyraCharacterMovementComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraCharacterMovementComponent, UCharacterMovementComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCharacterMovementComponent) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCharacterMovementComponent(ULyraCharacterMovementComponent&&); \ + ULyraCharacterMovementComponent(const ULyraCharacterMovementComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCharacterMovementComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCharacterMovementComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCharacterMovementComponent) \ + NO_API virtual ~ULyraCharacterMovementComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp new file mode 100644 index 00000000..654be390 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp @@ -0,0 +1,268 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterPartTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECharacterCustomizationCollisionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode; +static UEnum* ECharacterCustomizationCollisionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECharacterCustomizationCollisionMode")); + } + return Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECharacterCustomizationCollisionMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// How should collision be configured on the spawned part actor\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, + { "NoCollision.Comment", "// Disable collision on spawned character parts\n" }, + { "NoCollision.Name", "ECharacterCustomizationCollisionMode::NoCollision" }, + { "NoCollision.ToolTip", "Disable collision on spawned character parts" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How should collision be configured on the spawned part actor" }, +#endif + { "UseCollisionFromCharacterPart.Comment", "// Leave the collision settings on character parts alone\n" }, + { "UseCollisionFromCharacterPart.Name", "ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart" }, + { "UseCollisionFromCharacterPart.ToolTip", "Leave the collision settings on character parts alone" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECharacterCustomizationCollisionMode::NoCollision", (int64)ECharacterCustomizationCollisionMode::NoCollision }, + { "ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart", (int64)ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECharacterCustomizationCollisionMode", + "ECharacterCustomizationCollisionMode", + Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode() +{ + if (!Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton; +} +// End Enum ECharacterCustomizationCollisionMode + +// Begin ScriptStruct FLyraCharacterPartHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle; +class UScriptStruct* FLyraCharacterPartHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPartHandle, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPartHandle")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPartHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A handle created by adding a character part entry, can be used to remove it later\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A handle created by adding a character part entry, can be used to remove it later" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartHandle_MetaData[] = { + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_PartHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewProp_PartHandle = { "PartHandle", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartHandle, PartHandle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartHandle_MetaData), NewProp_PartHandle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewProp_PartHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterPartHandle", + Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers), + sizeof(FLyraCharacterPartHandle), + alignof(FLyraCharacterPartHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPartHandle + +// Begin ScriptStruct FLyraCharacterPart +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPart; +class UScriptStruct* FLyraCharacterPart::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPart, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPart")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPart::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterPart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n// A character part request\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "/\n A character part request" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartClass_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The part to spawn\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The part to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SocketName_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The socket to attach the part to (if any)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The socket to attach the part to (if any)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionMode_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How to handle collision for the primitive components in the part\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How to handle collision for the primitive components in the part" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PartClass; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static const UECodeGen_Private::FBytePropertyParams NewProp_CollisionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_CollisionMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_PartClass = { "PartClass", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, PartClass), Z_Construct_UClass_UClass, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartClass_MetaData), NewProp_PartClass_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, SocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SocketName_MetaData), NewProp_SocketName_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode = { "CollisionMode", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, CollisionMode), Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionMode_MetaData), NewProp_CollisionMode_MetaData) }; // 1261648034 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_PartClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_SocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterPart", + Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers), + sizeof(FLyraCharacterPart), + alignof(FLyraCharacterPart), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPart + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECharacterCustomizationCollisionMode_StaticEnum, TEXT("ECharacterCustomizationCollisionMode"), &Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1261648034U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCharacterPartHandle::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewStructOps, TEXT("LyraCharacterPartHandle"), &Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPartHandle), 1063436802U) }, + { FLyraCharacterPart::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewStructOps, TEXT("LyraCharacterPart"), &Z_Registration_Info_UScriptStruct_LyraCharacterPart, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPart), 2027995414U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_1743221314(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h new file mode 100644 index 00000000..d6a7cf1c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h @@ -0,0 +1,43 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCharacterPartTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCharacterPartTypes_generated_h +#error "LyraCharacterPartTypes.generated.h already included, missing '#pragma once' in LyraCharacterPartTypes.h" +#endif +#define LYRAGAME_LyraCharacterPartTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_58_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPart_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h + + +#define FOREACH_ENUM_ECHARACTERCUSTOMIZATIONCOLLISIONMODE(op) \ + op(ECharacterCustomizationCollisionMode::NoCollision) \ + op(ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart) + +enum class ECharacterCustomizationCollisionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp new file mode 100644 index 00000000..d9c4e7d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacterWithAbilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterWithAbilities() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacterWithAbilities(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacterWithAbilities_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraCharacterWithAbilities +void ALyraCharacterWithAbilities::StaticRegisterNativesALyraCharacterWithAbilities() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraCharacterWithAbilities); +UClass* Z_Construct_UClass_ALyraCharacterWithAbilities_NoRegister() +{ + return ALyraCharacterWithAbilities::StaticClass(); +} +struct Z_Construct_UClass_ALyraCharacterWithAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// ALyraCharacter typically gets the ability system component from the possessing player state\n// This represents a character with a self-contained ability system component.\n" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraCharacterWithAbilities.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraCharacter typically gets the ability system component from the possessing player state\nThis represents a character with a self-contained ability system component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component sub-object used by player characters.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component sub-object used by player characters." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CombatSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Combat attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Combat attribute set used by this actor." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CombatSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_CombatSet = { "CombatSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, CombatSet), Z_Construct_UClass_ULyraCombatSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CombatSet_MetaData), NewProp_CombatSet_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_CombatSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraCharacter, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::ClassParams = { + &ALyraCharacterWithAbilities::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraCharacterWithAbilities() +{ + if (!Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton, Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraCharacterWithAbilities::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraCharacterWithAbilities); +ALyraCharacterWithAbilities::~ALyraCharacterWithAbilities() {} +// End Class ALyraCharacterWithAbilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraCharacterWithAbilities, ALyraCharacterWithAbilities::StaticClass, TEXT("ALyraCharacterWithAbilities"), &Z_Registration_Info_UClass_ALyraCharacterWithAbilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraCharacterWithAbilities), 2255054525U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_3903215519(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h new file mode 100644 index 00000000..e84691a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacterWithAbilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCharacterWithAbilities_generated_h +#error "LyraCharacterWithAbilities.generated.h already included, missing '#pragma once' in LyraCharacterWithAbilities.h" +#endif +#define LYRAGAME_LyraCharacterWithAbilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraCharacterWithAbilities(); \ + friend struct Z_Construct_UClass_ALyraCharacterWithAbilities_Statics; \ +public: \ + DECLARE_CLASS(ALyraCharacterWithAbilities, ALyraCharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraCharacterWithAbilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraCharacterWithAbilities(ALyraCharacterWithAbilities&&); \ + ALyraCharacterWithAbilities(const ALyraCharacterWithAbilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraCharacterWithAbilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraCharacterWithAbilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraCharacterWithAbilities) \ + NO_API virtual ~ALyraCharacterWithAbilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp new file mode 100644 index 00000000..ccac9b02 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp @@ -0,0 +1,715 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraCheatManager.h" +#include "Runtime/Engine/Classes/GameFramework/PlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCheatManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCheatManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCheatManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCheatManager Function AddTagToSelf +struct Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics +{ + struct LyraCheatManager_eventAddTagToSelf_Parms + { + FString TagName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds the dynamic tag to the owning player's ability system component.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds the dynamic tag to the owning player's ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_TagName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::NewProp_TagName = { "TagName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventAddTagToSelf_Parms, TagName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::NewProp_TagName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "AddTagToSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::LyraCheatManager_eventAddTagToSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::LyraCheatManager_eventAddTagToSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execAddTagToSelf) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_TagName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddTagToSelf(Z_Param_TagName); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function AddTagToSelf + +// Begin Class ULyraCheatManager Function CancelActivatedAbilities +struct Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Forces input activated abilities to be canceled. Useful for tracking down ability interruption bugs. \n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Forces input activated abilities to be canceled. Useful for tracking down ability interruption bugs." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CancelActivatedAbilities", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCancelActivatedAbilities) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CancelActivatedAbilities(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CancelActivatedAbilities + +// Begin Class ULyraCheatManager Function Cheat +struct Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics +{ + struct LyraCheatManager_eventCheat_Parms + { + FString Msg; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Runs a cheat on the server for the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runs a cheat on the server for the owning player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventCheat_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "Cheat", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::LyraCheatManager_eventCheat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020601, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::LyraCheatManager_eventCheat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_Cheat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCheat) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Cheat(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function Cheat + +// Begin Class ULyraCheatManager Function CheatAll +struct Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics +{ + struct LyraCheatManager_eventCheatAll_Parms + { + FString Msg; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Runs a cheat on the server for the all players.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runs a cheat on the server for the all players." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventCheatAll_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CheatAll", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::LyraCheatManager_eventCheatAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020601, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::LyraCheatManager_eventCheatAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_CheatAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCheatAll) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CheatAll(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CheatAll + +// Begin Class ULyraCheatManager Function CycleAbilitySystemDebug +struct Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CycleAbilitySystemDebug", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCycleAbilitySystemDebug) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleAbilitySystemDebug(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CycleAbilitySystemDebug + +// Begin Class ULyraCheatManager Function CycleDebugCameras +struct Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CycleDebugCameras", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCycleDebugCameras) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleDebugCameras(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CycleDebugCameras + +// Begin Class ULyraCheatManager Function DamageSelf +struct Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics +{ + struct LyraCheatManager_eventDamageSelf_Parms + { + float DamageAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified damage amount to the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified damage amount to the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DamageAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::NewProp_DamageAmount = { "DamageAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventDamageSelf_Parms, DamageAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::NewProp_DamageAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "DamageSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::LyraCheatManager_eventDamageSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::LyraCheatManager_eventDamageSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_DamageSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execDamageSelf) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_DamageAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DamageSelf(Z_Param_DamageAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function DamageSelf + +// Begin Class ULyraCheatManager Function DamageSelfDestruct +struct Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies enough damage to kill the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies enough damage to kill the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "DamageSelfDestruct", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execDamageSelfDestruct) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DamageSelfDestruct(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function DamageSelfDestruct + +// Begin Class ULyraCheatManager Function HealSelf +struct Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics +{ + struct LyraCheatManager_eventHealSelf_Parms + { + float HealAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified amount of healing to the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified amount of healing to the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HealAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::NewProp_HealAmount = { "HealAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventHealSelf_Parms, HealAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::NewProp_HealAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "HealSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::LyraCheatManager_eventHealSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::LyraCheatManager_eventHealSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_HealSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execHealSelf) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_HealAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HealSelf(Z_Param_HealAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function HealSelf + +// Begin Class ULyraCheatManager Function HealTarget +struct Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics +{ + struct LyraCheatManager_eventHealTarget_Parms + { + float HealAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified amount of healing to the actor that the player is looking at.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified amount of healing to the actor that the player is looking at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HealAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::NewProp_HealAmount = { "HealAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventHealTarget_Parms, HealAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::NewProp_HealAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "HealTarget", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::LyraCheatManager_eventHealTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::LyraCheatManager_eventHealTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_HealTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execHealTarget) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_HealAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HealTarget(Z_Param_HealAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function HealTarget + +// Begin Class ULyraCheatManager Function PlayNextGame +struct Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Starts the next match\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the next match" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "PlayNextGame", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_PlayNextGame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execPlayNextGame) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayNextGame(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function PlayNextGame + +// Begin Class ULyraCheatManager Function RemoveTagFromSelf +struct Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics +{ + struct LyraCheatManager_eventRemoveTagFromSelf_Parms + { + FString TagName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes the dynamic tag from the owning player's ability system component.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes the dynamic tag from the owning player's ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_TagName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::NewProp_TagName = { "TagName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventRemoveTagFromSelf_Parms, TagName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::NewProp_TagName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "RemoveTagFromSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::LyraCheatManager_eventRemoveTagFromSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::LyraCheatManager_eventRemoveTagFromSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execRemoveTagFromSelf) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_TagName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveTagFromSelf(Z_Param_TagName); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function RemoveTagFromSelf + +// Begin Class ULyraCheatManager Function ToggleFixedCamera +struct Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "ToggleFixedCamera", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execToggleFixedCamera) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ToggleFixedCamera(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function ToggleFixedCamera + +// Begin Class ULyraCheatManager Function UnlimitedHealth +struct Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics +{ + struct LyraCheatManager_eventUnlimitedHealth_Parms + { + int32 Enabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Prevents the owning player from dropping below 1 health.\n" }, +#endif + { "CPP_Default_Enabled", "-1" }, + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Prevents the owning player from dropping below 1 health." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Enabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::NewProp_Enabled = { "Enabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventUnlimitedHealth_Parms, Enabled), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::NewProp_Enabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "UnlimitedHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::LyraCheatManager_eventUnlimitedHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::LyraCheatManager_eventUnlimitedHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execUnlimitedHealth) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_Enabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnlimitedHealth(Z_Param_Enabled); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function UnlimitedHealth + +// Begin Class ULyraCheatManager +void ULyraCheatManager::StaticRegisterNativesULyraCheatManager() +{ + UClass* Class = ULyraCheatManager::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddTagToSelf", &ULyraCheatManager::execAddTagToSelf }, + { "CancelActivatedAbilities", &ULyraCheatManager::execCancelActivatedAbilities }, + { "Cheat", &ULyraCheatManager::execCheat }, + { "CheatAll", &ULyraCheatManager::execCheatAll }, + { "CycleAbilitySystemDebug", &ULyraCheatManager::execCycleAbilitySystemDebug }, + { "CycleDebugCameras", &ULyraCheatManager::execCycleDebugCameras }, + { "DamageSelf", &ULyraCheatManager::execDamageSelf }, + { "DamageSelfDestruct", &ULyraCheatManager::execDamageSelfDestruct }, + { "HealSelf", &ULyraCheatManager::execHealSelf }, + { "HealTarget", &ULyraCheatManager::execHealTarget }, + { "PlayNextGame", &ULyraCheatManager::execPlayNextGame }, + { "RemoveTagFromSelf", &ULyraCheatManager::execRemoveTagFromSelf }, + { "ToggleFixedCamera", &ULyraCheatManager::execToggleFixedCamera }, + { "UnlimitedHealth", &ULyraCheatManager::execUnlimitedHealth }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCheatManager); +UClass* Z_Construct_UClass_ULyraCheatManager_NoRegister() +{ + return ULyraCheatManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraCheatManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCheatManager\n *\n *\x09""Base cheat manager class used by this project.\n */" }, +#endif + { "IncludePath", "Player/LyraCheatManager.h" }, + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCheatManager\n\n Base cheat manager class used by this project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf, "AddTagToSelf" }, // 1330023533 + { &Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities, "CancelActivatedAbilities" }, // 3423383744 + { &Z_Construct_UFunction_ULyraCheatManager_Cheat, "Cheat" }, // 2647888070 + { &Z_Construct_UFunction_ULyraCheatManager_CheatAll, "CheatAll" }, // 292118147 + { &Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug, "CycleAbilitySystemDebug" }, // 523119135 + { &Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras, "CycleDebugCameras" }, // 2167405522 + { &Z_Construct_UFunction_ULyraCheatManager_DamageSelf, "DamageSelf" }, // 1704873789 + { &Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct, "DamageSelfDestruct" }, // 3975124878 + { &Z_Construct_UFunction_ULyraCheatManager_HealSelf, "HealSelf" }, // 474619823 + { &Z_Construct_UFunction_ULyraCheatManager_HealTarget, "HealTarget" }, // 391853583 + { &Z_Construct_UFunction_ULyraCheatManager_PlayNextGame, "PlayNextGame" }, // 3041194444 + { &Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf, "RemoveTagFromSelf" }, // 3113163407 + { &Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera, "ToggleFixedCamera" }, // 2542674358 + { &Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth, "UnlimitedHealth" }, // 1509377239 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCheatManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCheatManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCheatManager_Statics::ClassParams = { + &ULyraCheatManager::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCheatManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCheatManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCheatManager() +{ + if (!Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton, Z_Construct_UClass_ULyraCheatManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCheatManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCheatManager); +ULyraCheatManager::~ULyraCheatManager() {} +// End Class ULyraCheatManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCheatManager, ULyraCheatManager::StaticClass, TEXT("ULyraCheatManager"), &Z_Registration_Info_UClass_ULyraCheatManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCheatManager), 737949807U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_3501631667(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.generated.h new file mode 100644 index 00000000..ea0b3021 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCheatManager.generated.h @@ -0,0 +1,74 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraCheatManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCheatManager_generated_h +#error "LyraCheatManager.generated.h already included, missing '#pragma once' in LyraCheatManager.h" +#endif +#define LYRAGAME_LyraCheatManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnlimitedHealth); \ + DECLARE_FUNCTION(execDamageSelfDestruct); \ + DECLARE_FUNCTION(execHealTarget); \ + DECLARE_FUNCTION(execHealSelf); \ + DECLARE_FUNCTION(execDamageSelf); \ + DECLARE_FUNCTION(execRemoveTagFromSelf); \ + DECLARE_FUNCTION(execAddTagToSelf); \ + DECLARE_FUNCTION(execCancelActivatedAbilities); \ + DECLARE_FUNCTION(execCycleAbilitySystemDebug); \ + DECLARE_FUNCTION(execCycleDebugCameras); \ + DECLARE_FUNCTION(execToggleFixedCamera); \ + DECLARE_FUNCTION(execPlayNextGame); \ + DECLARE_FUNCTION(execCheatAll); \ + DECLARE_FUNCTION(execCheat); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCheatManager(); \ + friend struct Z_Construct_UClass_ULyraCheatManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraCheatManager, UCheatManager, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraCheatManager) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCheatManager(ULyraCheatManager&&); \ + ULyraCheatManager(const ULyraCheatManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraCheatManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCheatManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCheatManager) \ + LYRAGAME_API virtual ~ULyraCheatManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp new file mode 100644 index 00000000..f410cd2d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp @@ -0,0 +1,241 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraCombatSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCombatSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCombatSet Function OnRep_BaseDamage +struct Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics +{ + struct LyraCombatSet_eventOnRep_BaseDamage_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCombatSet_eventOnRep_BaseDamage_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCombatSet, nullptr, "OnRep_BaseDamage", nullptr, nullptr, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::LyraCombatSet_eventOnRep_BaseDamage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::LyraCombatSet_eventOnRep_BaseDamage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCombatSet::execOnRep_BaseDamage) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BaseDamage(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraCombatSet Function OnRep_BaseDamage + +// Begin Class ULyraCombatSet Function OnRep_BaseHeal +struct Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics +{ + struct LyraCombatSet_eventOnRep_BaseHeal_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCombatSet_eventOnRep_BaseHeal_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCombatSet, nullptr, "OnRep_BaseHeal", nullptr, nullptr, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::LyraCombatSet_eventOnRep_BaseHeal_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::LyraCombatSet_eventOnRep_BaseHeal_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCombatSet::execOnRep_BaseHeal) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BaseHeal(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraCombatSet Function OnRep_BaseHeal + +// Begin Class ULyraCombatSet +void ULyraCombatSet::StaticRegisterNativesULyraCombatSet() +{ + UClass* Class = ULyraCombatSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_BaseDamage", &ULyraCombatSet::execOnRep_BaseDamage }, + { "OnRep_BaseHeal", &ULyraCombatSet::execOnRep_BaseHeal }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCombatSet); +UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister() +{ + return ULyraCombatSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraCombatSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCombatSet\n *\n * Class that defines attributes that are necessary for applying damage or healing.\n *\x09""Attribute examples include: damage, healing, attack power, and shield penetrations.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCombatSet\n\n Class that defines attributes that are necessary for applying damage or healing.\n Attribute examples include: damage, healing, attack power, and shield penetrations." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BaseDamage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Combat" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base amount of damage to apply in the damage execution.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base amount of damage to apply in the damage execution." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BaseHeal_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Combat" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base amount of healing to apply in the heal execution.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base amount of healing to apply in the heal execution." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_BaseDamage; + static const UECodeGen_Private::FStructPropertyParams NewProp_BaseHeal; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage, "OnRep_BaseDamage" }, // 2641737249 + { &Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal, "OnRep_BaseHeal" }, // 2423459888 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseDamage = { "BaseDamage", "OnRep_BaseDamage", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCombatSet, BaseDamage), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BaseDamage_MetaData), NewProp_BaseDamage_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseHeal = { "BaseHeal", "OnRep_BaseHeal", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCombatSet, BaseHeal), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BaseHeal_MetaData), NewProp_BaseHeal_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseDamage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseHeal, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCombatSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCombatSet_Statics::ClassParams = { + &ULyraCombatSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers), + 0, + 0x002000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCombatSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCombatSet() +{ + if (!Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton, Z_Construct_UClass_ULyraCombatSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCombatSet::StaticClass(); +} +void ULyraCombatSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_BaseDamage(TEXT("BaseDamage")); + static const FName Name_BaseHeal(TEXT("BaseHeal")); + const bool bIsValid = true + && Name_BaseDamage == ClassReps[(int32)ENetFields_Private::BaseDamage].Property->GetFName() + && Name_BaseHeal == ClassReps[(int32)ENetFields_Private::BaseHeal].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraCombatSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCombatSet); +ULyraCombatSet::~ULyraCombatSet() {} +// End Class ULyraCombatSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCombatSet, ULyraCombatSet::StaticClass, TEXT("ULyraCombatSet"), &Z_Registration_Info_UClass_ULyraCombatSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCombatSet), 4058748171U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_2852601233(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.generated.h new file mode 100644 index 00000000..a01b3ac6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCombatSet.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraCombatSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef LYRAGAME_LyraCombatSet_generated_h +#error "LyraCombatSet.generated.h already included, missing '#pragma once' in LyraCombatSet.h" +#endif +#define LYRAGAME_LyraCombatSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_BaseHeal); \ + DECLARE_FUNCTION(execOnRep_BaseDamage); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCombatSet(); \ + friend struct Z_Construct_UClass_ULyraCombatSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraCombatSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCombatSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + BaseDamage=NETFIELD_REP_START, \ + BaseHeal, \ + NETFIELD_REP_END=BaseHeal }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraCombatSet) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCombatSet(ULyraCombatSet&&); \ + ULyraCombatSet(const ULyraCombatSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCombatSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCombatSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCombatSet) \ + NO_API virtual ~ULyraCombatSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp new file mode 100644 index 00000000..d8091b34 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp @@ -0,0 +1,215 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraConfirmationScreen.h" +#include "Runtime/Engine/Classes/Engine/DataTable.h" +#include "Runtime/SlateCore/Public/Input/Events.h" +#include "Runtime/SlateCore/Public/Layout/Geometry.h" +#include "Runtime/UMG/Public/Components/SlateWrapperTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraConfirmationScreen() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonBorder_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FDataTableRowHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraConfirmationScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraConfirmationScreen_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FGeometry(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FPointerEvent(); +UMG_API UClass* Z_Construct_UClass_UDynamicEntryBox_NoRegister(); +UMG_API UScriptStruct* Z_Construct_UScriptStruct_FEventReply(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraConfirmationScreen Function HandleTapToCloseZoneMouseButtonDown +struct Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics +{ + struct LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms + { + FGeometry MyGeometry; + FPointerEvent MouseEvent; + FEventReply ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseEvent_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MyGeometry; + static const UECodeGen_Private::FStructPropertyParams NewProp_MouseEvent; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MyGeometry = { "MyGeometry", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, MyGeometry), Z_Construct_UScriptStruct_FGeometry, METADATA_PARAMS(0, nullptr) }; // 3532897347 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MouseEvent = { "MouseEvent", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, MouseEvent), Z_Construct_UScriptStruct_FPointerEvent, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseEvent_MetaData), NewProp_MouseEvent_MetaData) }; // 2513801729 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, ReturnValue), Z_Construct_UScriptStruct_FEventReply, METADATA_PARAMS(0, nullptr) }; // 615652629 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MyGeometry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MouseEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraConfirmationScreen, nullptr, "HandleTapToCloseZoneMouseButtonDown", nullptr, nullptr, Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00440401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraConfirmationScreen::execHandleTapToCloseZoneMouseButtonDown) +{ + P_GET_STRUCT(FGeometry,Z_Param_MyGeometry); + P_GET_STRUCT_REF(FPointerEvent,Z_Param_Out_MouseEvent); + P_FINISH; + P_NATIVE_BEGIN; + *(FEventReply*)Z_Param__Result=P_THIS->HandleTapToCloseZoneMouseButtonDown(Z_Param_MyGeometry,Z_Param_Out_MouseEvent); + P_NATIVE_END; +} +// End Class ULyraConfirmationScreen Function HandleTapToCloseZoneMouseButtonDown + +// Begin Class ULyraConfirmationScreen +void ULyraConfirmationScreen::StaticRegisterNativesULyraConfirmationScreen() +{ + UClass* Class = ULyraConfirmationScreen::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleTapToCloseZoneMouseButtonDown", &ULyraConfirmationScreen::execHandleTapToCloseZoneMouseButtonDown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraConfirmationScreen); +UClass* Z_Construct_UClass_ULyraConfirmationScreen_NoRegister() +{ + return ULyraConfirmationScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraConfirmationScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\x09\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraConfirmationScreen.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_Title_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Description_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryBox_Buttons_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Border_TapToCloseZone_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAction_MetaData[] = { + { "Category", "LyraConfirmationScreen" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + { "RowType", "/Script/CommonUI.CommonInputActionDataBase" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_Title; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Description; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EntryBox_Buttons; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Border_TapToCloseZone; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown, "HandleTapToCloseZoneMouseButtonDown" }, // 3953298901 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Text_Title = { "Text_Title", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, Text_Title), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_Title_MetaData), NewProp_Text_Title_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_RichText_Description = { "RichText_Description", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, RichText_Description), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Description_MetaData), NewProp_RichText_Description_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_EntryBox_Buttons = { "EntryBox_Buttons", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, EntryBox_Buttons), Z_Construct_UClass_UDynamicEntryBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryBox_Buttons_MetaData), NewProp_EntryBox_Buttons_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Border_TapToCloseZone = { "Border_TapToCloseZone", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, Border_TapToCloseZone), Z_Construct_UClass_UCommonBorder_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Border_TapToCloseZone_MetaData), NewProp_Border_TapToCloseZone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_CancelAction = { "CancelAction", nullptr, (EPropertyFlags)0x0040000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, CancelAction), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAction_MetaData), NewProp_CancelAction_MetaData) }; // 1360917958 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Text_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_RichText_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_EntryBox_Buttons, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Border_TapToCloseZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_CancelAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraConfirmationScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameDialog, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::ClassParams = { + &ULyraConfirmationScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraConfirmationScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraConfirmationScreen() +{ + if (!Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton, Z_Construct_UClass_ULyraConfirmationScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraConfirmationScreen::StaticClass(); +} +ULyraConfirmationScreen::ULyraConfirmationScreen() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraConfirmationScreen); +ULyraConfirmationScreen::~ULyraConfirmationScreen() {} +// End Class ULyraConfirmationScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraConfirmationScreen, ULyraConfirmationScreen::StaticClass, TEXT("ULyraConfirmationScreen"), &Z_Registration_Info_UClass_ULyraConfirmationScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraConfirmationScreen), 2432178220U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_937084617(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h new file mode 100644 index 00000000..98df488d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraConfirmationScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FEventReply; +struct FGeometry; +struct FPointerEvent; +#ifdef LYRAGAME_LyraConfirmationScreen_generated_h +#error "LyraConfirmationScreen.generated.h already included, missing '#pragma once' in LyraConfirmationScreen.h" +#endif +#define LYRAGAME_LyraConfirmationScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleTapToCloseZoneMouseButtonDown); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraConfirmationScreen(); \ + friend struct Z_Construct_UClass_ULyraConfirmationScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraConfirmationScreen, UCommonGameDialog, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraConfirmationScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraConfirmationScreen(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraConfirmationScreen(ULyraConfirmationScreen&&); \ + ULyraConfirmationScreen(const ULyraConfirmationScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraConfirmationScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraConfirmationScreen); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraConfirmationScreen) \ + NO_API virtual ~ULyraConfirmationScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp new file mode 100644 index 00000000..cb86af52 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp @@ -0,0 +1,431 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectComponent.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +ENGINE_API UClass* Z_Construct_UClass_UAnimSequenceBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAudioComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraContextEffectComponent Function AnimMotionEffect_Implementation +struct Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics +{ + struct LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms + { + FName Bone; + FGameplayTag MotionEffect; + USceneComponent* StaticMeshComponent; + FVector LocationOffset; + FRotator RotationOffset; + const UAnimSequenceBase* AnimationSequence; + bool bHitSuccess; + FHitResult HitResult; + FGameplayTagContainer Contexts; + FVector VFXScale; + float AudioVolume; + float AudioPitch; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// AnimMotionEffect Implementation\n" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "AnimMotionEffect Implementation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bone_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MotionEffect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticMeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationSequence_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHitSuccess_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Bone; + static const UECodeGen_Private::FStructPropertyParams NewProp_MotionEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StaticMeshComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AnimationSequence; + static void NewProp_bHitSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHitSuccess; + static const UECodeGen_Private::FStructPropertyParams NewProp_HitResult; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Bone = { "Bone", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, Bone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bone_MetaData), NewProp_Bone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_MotionEffect = { "MotionEffect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, MotionEffect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MotionEffect_MetaData), NewProp_MotionEffect_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_StaticMeshComponent = { "StaticMeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, StaticMeshComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticMeshComponent_MetaData), NewProp_StaticMeshComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AnimationSequence = { "AnimationSequence", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AnimationSequence), Z_Construct_UClass_UAnimSequenceBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationSequence_MetaData), NewProp_AnimationSequence_MetaData) }; +void Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess_SetBit(void* Obj) +{ + ((LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms*)Obj)->bHitSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess = { "bHitSuccess", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms), &Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHitSuccess_MetaData), NewProp_bHitSuccess_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_HitResult = { "HitResult", nullptr, (EPropertyFlags)0x0010008000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, HitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitResult_MetaData), NewProp_HitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Bone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_MotionEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_StaticMeshComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AnimationSequence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_HitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "AnimMotionEffect_Implementation", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execAnimMotionEffect_Implementation) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Bone); + P_GET_STRUCT(FGameplayTag,Z_Param_MotionEffect); + P_GET_OBJECT(USceneComponent,Z_Param_StaticMeshComponent); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_OBJECT(UAnimSequenceBase,Z_Param_AnimationSequence); + P_GET_UBOOL(Z_Param_bHitSuccess); + P_GET_STRUCT(FHitResult,Z_Param_HitResult); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimMotionEffect_Implementation(Z_Param_Bone,Z_Param_MotionEffect,Z_Param_StaticMeshComponent,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_AnimationSequence,Z_Param_bHitSuccess,Z_Param_HitResult,Z_Param_Contexts,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function AnimMotionEffect_Implementation + +// Begin Class ULyraContextEffectComponent Function UpdateEffectContexts +struct Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics +{ + struct LyraContextEffectComponent_eventUpdateEffectContexts_Parms + { + FGameplayTagContainer NewEffectContexts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewEffectContexts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::NewProp_NewEffectContexts = { "NewEffectContexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventUpdateEffectContexts_Parms, NewEffectContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::NewProp_NewEffectContexts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "UpdateEffectContexts", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::LyraContextEffectComponent_eventUpdateEffectContexts_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::LyraContextEffectComponent_eventUpdateEffectContexts_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execUpdateEffectContexts) +{ + P_GET_STRUCT(FGameplayTagContainer,Z_Param_NewEffectContexts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateEffectContexts(Z_Param_NewEffectContexts); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function UpdateEffectContexts + +// Begin Class ULyraContextEffectComponent Function UpdateLibraries +struct Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics +{ + struct LyraContextEffectComponent_eventUpdateLibraries_Parms + { + TSet > NewContextEffectsLibraries; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_NewContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_NewContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries_ElementProp = { "NewContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries = { "NewContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventUpdateLibraries_Parms, NewContextEffectsLibraries), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "UpdateLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::LyraContextEffectComponent_eventUpdateLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::LyraContextEffectComponent_eventUpdateLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execUpdateLibraries) +{ + P_GET_TSET(TSoftObjectPtr,Z_Param_NewContextEffectsLibraries); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateLibraries(Z_Param_NewContextEffectsLibraries); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function UpdateLibraries + +// Begin Class ULyraContextEffectComponent +void ULyraContextEffectComponent::StaticRegisterNativesULyraContextEffectComponent() +{ + UClass* Class = ULyraContextEffectComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimMotionEffect_Implementation", &ULyraContextEffectComponent::execAnimMotionEffect_Implementation }, + { "UpdateEffectContexts", &ULyraContextEffectComponent::execUpdateEffectContexts }, + { "UpdateLibraries", &ULyraContextEffectComponent::execUpdateLibraries }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectComponent); +UClass* Z_Construct_UClass_ULyraContextEffectComponent_NoRegister() +{ + return ULyraContextEffectComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "ClassGroupNames", "Custom" }, + { "HideCategories", "Variable Tags ComponentTick ComponentReplication Activation Cooking AssetUserData Collision" }, + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bConvertPhysicalSurfaceToContext_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Auto-Convert Physical Surface from Trace Result to Context\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Auto-Convert Physical Surface from Trace Result to Context" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultEffectContexts_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Contexts\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Contexts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultContextEffectsLibraries_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Libraries for this Actor\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Libraries for this Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentContexts_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentContextEffectsLibraries_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveAudioComponents_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveNiagaraComponents_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bConvertPhysicalSurfaceToContext_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bConvertPhysicalSurfaceToContext; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultEffectContexts; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_DefaultContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_DefaultContextEffectsLibraries; + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentContexts; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_CurrentContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_CurrentContextEffectsLibraries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveAudioComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveAudioComponents; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveNiagaraComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveNiagaraComponents; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation, "AnimMotionEffect_Implementation" }, // 680837871 + { &Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts, "UpdateEffectContexts" }, // 1798442767 + { &Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries, "UpdateLibraries" }, // 832285938 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext_SetBit(void* Obj) +{ + ((ULyraContextEffectComponent*)Obj)->bConvertPhysicalSurfaceToContext = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext = { "bConvertPhysicalSurfaceToContext", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraContextEffectComponent), &Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bConvertPhysicalSurfaceToContext_MetaData), NewProp_bConvertPhysicalSurfaceToContext_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultEffectContexts = { "DefaultEffectContexts", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, DefaultEffectContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultEffectContexts_MetaData), NewProp_DefaultEffectContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries_ElementProp = { "DefaultContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries = { "DefaultContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, DefaultContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultContextEffectsLibraries_MetaData), NewProp_DefaultContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContexts = { "CurrentContexts", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, CurrentContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentContexts_MetaData), NewProp_CurrentContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries_ElementProp = { "CurrentContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries = { "CurrentContextEffectsLibraries", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, CurrentContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentContextEffectsLibraries_MetaData), NewProp_CurrentContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents_Inner = { "ActiveAudioComponents", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAudioComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents = { "ActiveAudioComponents", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, ActiveAudioComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveAudioComponents_MetaData), NewProp_ActiveAudioComponents_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents_Inner = { "ActiveNiagaraComponents", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents = { "ActiveNiagaraComponents", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, ActiveNiagaraComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveNiagaraComponents_MetaData), NewProp_ActiveNiagaraComponents_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultEffectContexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraContextEffectComponent, ILyraContextEffectsInterface), false }, // 1556334455 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::ClassParams = { + &ULyraContextEffectComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B020A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectComponent() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton, Z_Construct_UClass_ULyraContextEffectComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectComponent); +ULyraContextEffectComponent::~ULyraContextEffectComponent() {} +// End Class ULyraContextEffectComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectComponent, ULyraContextEffectComponent::StaticClass, TEXT("ULyraContextEffectComponent"), &Z_Registration_Info_UClass_ULyraContextEffectComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectComponent), 3435818313U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_125872761(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h new file mode 100644 index 00000000..ac6036ae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAnimSequenceBase; +class ULyraContextEffectsLibrary; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FHitResult; +#ifdef LYRAGAME_LyraContextEffectComponent_generated_h +#error "LyraContextEffectComponent.generated.h already included, missing '#pragma once' in LyraContextEffectComponent.h" +#endif +#define LYRAGAME_LyraContextEffectComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUpdateLibraries); \ + DECLARE_FUNCTION(execUpdateEffectContexts); \ + DECLARE_FUNCTION(execAnimMotionEffect_Implementation); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectComponent(); \ + friend struct Z_Construct_UClass_ULyraContextEffectComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectComponent(ULyraContextEffectComponent&&); \ + ULyraContextEffectComponent(const ULyraContextEffectComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectComponent); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraContextEffectComponent) \ + NO_API virtual ~ULyraContextEffectComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp new file mode 100644 index 00000000..b52697d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp @@ -0,0 +1,334 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsInterface.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UAnimSequenceBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EEffectsContextMatchType(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EEffectsContextMatchType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EEffectsContextMatchType; +static UEnum* EEffectsContextMatchType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton) + { + Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EEffectsContextMatchType")); + } + return Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EEffectsContextMatchType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BestMatch.Comment", "/**\n *\n */" }, + { "BestMatch.Name", "BestMatch" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ExactMatch.Comment", "/**\n *\n */" }, + { "ExactMatch.Name", "ExactMatch" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ExactMatch", (int64)ExactMatch }, + { "BestMatch", (int64)BestMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EEffectsContextMatchType", + "EEffectsContextMatchType", + Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::Regular, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EEffectsContextMatchType() +{ + if (!Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton, Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton; +} +// End Enum EEffectsContextMatchType + +// Begin Interface ULyraContextEffectsInterface Function AnimMotionEffect +struct LyraContextEffectsInterface_eventAnimMotionEffect_Parms +{ + FName Bone; + FGameplayTag MotionEffect; + USceneComponent* StaticMeshComponent; + FVector LocationOffset; + FRotator RotationOffset; + const UAnimSequenceBase* AnimationSequence; + bool bHitSuccess; + FHitResult HitResult; + FGameplayTagContainer Contexts; + FVector VFXScale; + float AudioVolume; + float AudioPitch; +}; +void ILyraContextEffectsInterface::AnimMotionEffect(const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_AnimMotionEffect instead."); +} +static FName NAME_ULyraContextEffectsInterface_AnimMotionEffect = FName(TEXT("AnimMotionEffect")); +void ILyraContextEffectsInterface::Execute_AnimMotionEffect(UObject* O, const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(ULyraContextEffectsInterface::StaticClass())); + LyraContextEffectsInterface_eventAnimMotionEffect_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_ULyraContextEffectsInterface_AnimMotionEffect); + if (Func) + { + Parms.Bone=Bone; + Parms.MotionEffect=MotionEffect; + Parms.StaticMeshComponent=StaticMeshComponent; + Parms.LocationOffset=LocationOffset; + Parms.RotationOffset=RotationOffset; + Parms.AnimationSequence=AnimationSequence; + Parms.bHitSuccess=bHitSuccess; + Parms.HitResult=HitResult; + Parms.Contexts=Contexts; + Parms.VFXScale=VFXScale; + Parms.AudioVolume=AudioVolume; + Parms.AudioPitch=AudioPitch; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (ILyraContextEffectsInterface*)(O->GetNativeInterfaceAddress(ULyraContextEffectsInterface::StaticClass()))) + { + I->AnimMotionEffect_Implementation(Bone,MotionEffect,StaticMeshComponent,LocationOffset,RotationOffset,AnimationSequence,bHitSuccess,HitResult,Contexts,VFXScale,AudioVolume,AudioPitch); + } +} +struct Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bone_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MotionEffect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticMeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationSequence_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHitSuccess_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Bone; + static const UECodeGen_Private::FStructPropertyParams NewProp_MotionEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StaticMeshComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AnimationSequence; + static void NewProp_bHitSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHitSuccess; + static const UECodeGen_Private::FStructPropertyParams NewProp_HitResult; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Bone = { "Bone", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, Bone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bone_MetaData), NewProp_Bone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_MotionEffect = { "MotionEffect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, MotionEffect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MotionEffect_MetaData), NewProp_MotionEffect_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_StaticMeshComponent = { "StaticMeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, StaticMeshComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticMeshComponent_MetaData), NewProp_StaticMeshComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AnimationSequence = { "AnimationSequence", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AnimationSequence), Z_Construct_UClass_UAnimSequenceBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationSequence_MetaData), NewProp_AnimationSequence_MetaData) }; +void Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess_SetBit(void* Obj) +{ + ((LyraContextEffectsInterface_eventAnimMotionEffect_Parms*)Obj)->bHitSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess = { "bHitSuccess", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms), &Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHitSuccess_MetaData), NewProp_bHitSuccess_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_HitResult = { "HitResult", nullptr, (EPropertyFlags)0x0010008000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, HitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitResult_MetaData), NewProp_HitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Bone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_MotionEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_StaticMeshComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AnimationSequence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_HitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsInterface, nullptr, "AnimMotionEffect", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers), sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x0C820C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ILyraContextEffectsInterface::execAnimMotionEffect) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Bone); + P_GET_STRUCT(FGameplayTag,Z_Param_MotionEffect); + P_GET_OBJECT(USceneComponent,Z_Param_StaticMeshComponent); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_OBJECT(UAnimSequenceBase,Z_Param_AnimationSequence); + P_GET_UBOOL(Z_Param_bHitSuccess); + P_GET_STRUCT(FHitResult,Z_Param_HitResult); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimMotionEffect_Implementation(Z_Param_Bone,Z_Param_MotionEffect,Z_Param_StaticMeshComponent,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_AnimationSequence,Z_Param_bHitSuccess,Z_Param_HitResult,Z_Param_Contexts,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Interface ULyraContextEffectsInterface Function AnimMotionEffect + +// Begin Interface ULyraContextEffectsInterface +void ULyraContextEffectsInterface::StaticRegisterNativesULyraContextEffectsInterface() +{ + UClass* Class = ULyraContextEffectsInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimMotionEffect", &ILyraContextEffectsInterface::execAnimMotionEffect }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsInterface); +UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister() +{ + return ULyraContextEffectsInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect, "AnimMotionEffect" }, // 1251480123 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraContextEffectsInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsInterface_Statics::ClassParams = { + &ULyraContextEffectsInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsInterface() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsInterface::StaticClass(); +} +ULyraContextEffectsInterface::ULyraContextEffectsInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsInterface); +ULyraContextEffectsInterface::~ULyraContextEffectsInterface() {} +// End Interface ULyraContextEffectsInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EEffectsContextMatchType_StaticEnum, TEXT("EEffectsContextMatchType"), &Z_Registration_Info_UEnum_EEffectsContextMatchType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3523732416U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectsInterface, ULyraContextEffectsInterface::StaticClass, TEXT("ULyraContextEffectsInterface"), &Z_Registration_Info_UClass_ULyraContextEffectsInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsInterface), 1556334455U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_1430013495(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h new file mode 100644 index 00000000..a1154103 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAnimSequenceBase; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FHitResult; +#ifdef LYRAGAME_LyraContextEffectsInterface_generated_h +#error "LyraContextEffectsInterface.generated.h already included, missing '#pragma once' in LyraContextEffectsInterface.h" +#endif +#define LYRAGAME_LyraContextEffectsInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void AnimMotionEffect_Implementation(const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) {}; \ + DECLARE_FUNCTION(execAnimMotionEffect); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsInterface(ULyraContextEffectsInterface&&); \ + ULyraContextEffectsInterface(const ULyraContextEffectsInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsInterface) \ + NO_API virtual ~ULyraContextEffectsInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraContextEffectsInterface(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraContextEffectsInterface() {} \ +public: \ + typedef ULyraContextEffectsInterface UClassType; \ + typedef ILyraContextEffectsInterface ThisClass; \ + static void Execute_AnimMotionEffect(UObject* O, const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h + + +#define FOREACH_ENUM_EEFFECTSCONTEXTMATCHTYPE(op) \ + op(ExactMatch) \ + op(BestMatch) + +enum EEffectsContextMatchType : int; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp new file mode 100644 index 00000000..0e8a8770 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp @@ -0,0 +1,544 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsLibrary.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsLibrary() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActiveContextEffects(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActiveContextEffects_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffects(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EContextEffectsLibraryLoadState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState; +static UEnum* EContextEffectsLibraryLoadState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton) + { + Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EContextEffectsLibraryLoadState")); + } + return Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EContextEffectsLibraryLoadState_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "Loaded.Comment", "/**\n *\n */" }, + { "Loaded.Name", "EContextEffectsLibraryLoadState::Loaded" }, + { "Loading.Comment", "/**\n *\n */" }, + { "Loading.Name", "EContextEffectsLibraryLoadState::Loading" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "Unloaded.Comment", "/**\n *\n */" }, + { "Unloaded.Name", "EContextEffectsLibraryLoadState::Unloaded" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EContextEffectsLibraryLoadState::Unloaded", (int64)EContextEffectsLibraryLoadState::Unloaded }, + { "EContextEffectsLibraryLoadState::Loading", (int64)EContextEffectsLibraryLoadState::Loading }, + { "EContextEffectsLibraryLoadState::Loaded", (int64)EContextEffectsLibraryLoadState::Loaded }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EContextEffectsLibraryLoadState", + "EContextEffectsLibraryLoadState", + Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState() +{ + if (!Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton, Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton; +} +// End Enum EContextEffectsLibraryLoadState + +// Begin ScriptStruct FLyraContextEffects +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffects; +class UScriptStruct* FLyraContextEffects::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffects, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffects")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffects::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectTag_MetaData[] = { + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effects_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundBase, /Script/Niagara.NiagaraSystem" }, + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FStructPropertyParams NewProp_Effects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Effects; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_EffectTag = { "EffectTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, EffectTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectTag_MetaData), NewProp_EffectTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects_Inner = { "Effects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects = { "Effects", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, Effects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effects_MetaData), NewProp_Effects_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_EffectTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffects", + Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers), + sizeof(FLyraContextEffects), + alignof(FLyraContextEffects), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffects_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffects() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffects_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton; +} +// End ScriptStruct FLyraContextEffects + +// Begin Class ULyraActiveContextEffects +void ULyraActiveContextEffects::StaticRegisterNativesULyraActiveContextEffects() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActiveContextEffects); +UClass* Z_Construct_UClass_ULyraActiveContextEffects_NoRegister() +{ + return ULyraActiveContextEffects::StaticClass(); +} +struct Z_Construct_UClass_ULyraActiveContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectTag_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sounds_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraSystems_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sounds_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Sounds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraSystems_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraSystems; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_EffectTag = { "EffectTag", nullptr, (EPropertyFlags)0x0010000000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, EffectTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectTag_MetaData), NewProp_EffectTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds_Inner = { "Sounds", nullptr, (EPropertyFlags)0x0104000000020000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds = { "Sounds", nullptr, (EPropertyFlags)0x0114000000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, Sounds), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sounds_MetaData), NewProp_Sounds_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems_Inner = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0104000000020000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0114000000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, NiagaraSystems), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraSystems_MetaData), NewProp_NiagaraSystems_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_EffectTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActiveContextEffects_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::ClassParams = { + &ULyraActiveContextEffects::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActiveContextEffects_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActiveContextEffects() +{ + if (!Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton, Z_Construct_UClass_ULyraActiveContextEffects_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActiveContextEffects::StaticClass(); +} +ULyraActiveContextEffects::ULyraActiveContextEffects(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActiveContextEffects); +ULyraActiveContextEffects::~ULyraActiveContextEffects() {} +// End Class ULyraActiveContextEffects + +// Begin Delegate FLyraContextEffectLibraryLoadingComplete +struct Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms + { + TArray LyraActiveContextEffects; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LyraActiveContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LyraActiveContextEffects; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects_Inner = { "LyraActiveContextEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraActiveContextEffects_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects = { "LyraActiveContextEffects", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms, LyraActiveContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraContextEffectLibraryLoadingComplete__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraContextEffectLibraryLoadingComplete_DelegateWrapper(const FScriptDelegate& LyraContextEffectLibraryLoadingComplete, const TArray& LyraActiveContextEffects) +{ + struct _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms + { + TArray LyraActiveContextEffects; + }; + _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms Parms; + Parms.LyraActiveContextEffects=LyraActiveContextEffects; + LyraContextEffectLibraryLoadingComplete.ProcessDelegate(&Parms); +} +// End Delegate FLyraContextEffectLibraryLoadingComplete + +// Begin Class ULyraContextEffectsLibrary Function GetEffects +struct Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics +{ + struct LyraContextEffectsLibrary_eventGetEffects_Parms + { + FGameplayTag Effect; + FGameplayTagContainer Context; + TArray Sounds; + TArray NiagaraSystems; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sounds_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Sounds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraSystems_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraSystems; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effect_MetaData), NewProp_Effect_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds_Inner = { "Sounds", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds = { "Sounds", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Sounds), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems_Inner = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, NiagaraSystems), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsLibrary, nullptr, "GetEffects", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::LyraContextEffectsLibrary_eventGetEffects_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::LyraContextEffectsLibrary_eventGetEffects_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsLibrary::execGetEffects) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Effect); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Context); + P_GET_TARRAY_REF(USoundBase*,Z_Param_Out_Sounds); + P_GET_TARRAY_REF(UNiagaraSystem*,Z_Param_Out_NiagaraSystems); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetEffects(Z_Param_Effect,Z_Param_Context,Z_Param_Out_Sounds,Z_Param_Out_NiagaraSystems); + P_NATIVE_END; +} +// End Class ULyraContextEffectsLibrary Function GetEffects + +// Begin Class ULyraContextEffectsLibrary Function LoadEffects +struct Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsLibrary, nullptr, "LoadEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsLibrary::execLoadEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->LoadEffects(); + P_NATIVE_END; +} +// End Class ULyraContextEffectsLibrary Function LoadEffects + +// Begin Class ULyraContextEffectsLibrary +void ULyraContextEffectsLibrary::StaticRegisterNativesULyraContextEffectsLibrary() +{ + UClass* Class = ULyraContextEffectsLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetEffects", &ULyraContextEffectsLibrary::execGetEffects }, + { "LoadEffects", &ULyraContextEffectsLibrary::execLoadEffects }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsLibrary); +UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister() +{ + return ULyraContextEffectsLibrary::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextEffects_MetaData[] = { + { "Category", "LyraContextEffectsLibrary" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveContextEffects_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectsLoadState_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ContextEffects; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveContextEffects; + static const UECodeGen_Private::FBytePropertyParams NewProp_EffectsLoadState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_EffectsLoadState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects, "GetEffects" }, // 4022574230 + { &Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects, "LoadEffects" }, // 3358773624 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects_Inner = { "ContextEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraContextEffects, METADATA_PARAMS(0, nullptr) }; // 4026134692 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects = { "ContextEffects", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, ContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextEffects_MetaData), NewProp_ContextEffects_MetaData) }; // 4026134692 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects_Inner = { "ActiveContextEffects", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraActiveContextEffects_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects = { "ActiveContextEffects", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, ActiveContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveContextEffects_MetaData), NewProp_ActiveContextEffects_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState = { "EffectsLoadState", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, EffectsLoadState), Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectsLoadState_MetaData), NewProp_EffectsLoadState_MetaData) }; // 2204375970 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::ClassParams = { + &ULyraContextEffectsLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsLibrary() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsLibrary::StaticClass(); +} +ULyraContextEffectsLibrary::ULyraContextEffectsLibrary(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsLibrary); +ULyraContextEffectsLibrary::~ULyraContextEffectsLibrary() {} +// End Class ULyraContextEffectsLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EContextEffectsLibraryLoadState_StaticEnum, TEXT("EContextEffectsLibraryLoadState"), &Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2204375970U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraContextEffects::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewStructOps, TEXT("LyraContextEffects"), &Z_Registration_Info_UScriptStruct_LyraContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffects), 4026134692U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActiveContextEffects, ULyraActiveContextEffects::StaticClass, TEXT("ULyraActiveContextEffects"), &Z_Registration_Info_UClass_ULyraActiveContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActiveContextEffects), 4043339537U) }, + { Z_Construct_UClass_ULyraContextEffectsLibrary, ULyraContextEffectsLibrary::StaticClass, TEXT("ULyraContextEffectsLibrary"), &Z_Registration_Info_UClass_ULyraContextEffectsLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsLibrary), 2001368813U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_707458730(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h new file mode 100644 index 00000000..cb41c59d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsLibrary.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraActiveContextEffects; +class UNiagaraSystem; +class USoundBase; +struct FGameplayTag; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraContextEffectsLibrary_generated_h +#error "LyraContextEffectsLibrary.generated.h already included, missing '#pragma once' in LyraContextEffectsLibrary.h" +#endif +#define LYRAGAME_LyraContextEffectsLibrary_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_31_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffects_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActiveContextEffects(); \ + friend struct Z_Construct_UClass_ULyraActiveContextEffects_Statics; \ +public: \ + DECLARE_CLASS(ULyraActiveContextEffects, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActiveContextEffects) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActiveContextEffects(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActiveContextEffects(ULyraActiveContextEffects&&); \ + ULyraActiveContextEffects(const ULyraActiveContextEffects&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActiveContextEffects); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActiveContextEffects); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActiveContextEffects) \ + NO_API virtual ~ULyraActiveContextEffects(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_47_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_66_DELEGATE \ +LYRAGAME_API void FLyraContextEffectLibraryLoadingComplete_DelegateWrapper(const FScriptDelegate& LyraContextEffectLibraryLoadingComplete, const TArray& LyraActiveContextEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execLoadEffects); \ + DECLARE_FUNCTION(execGetEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsLibrary(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsLibrary_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsLibrary, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsLibrary(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsLibrary(ULyraContextEffectsLibrary&&); \ + ULyraContextEffectsLibrary(const ULyraContextEffectsLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsLibrary); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsLibrary) \ + NO_API virtual ~ULyraContextEffectsLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_71_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h + + +#define FOREACH_ENUM_ECONTEXTEFFECTSLIBRARYLOADSTATE(op) \ + op(EContextEffectsLibraryLoadState::Unloaded) \ + op(EContextEffectsLibraryLoadState::Loading) \ + op(EContextEffectsLibraryLoadState::Loaded) + +enum class EContextEffectsLibraryLoadState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp new file mode 100644 index 00000000..ebf59345 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp @@ -0,0 +1,595 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAudioComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +PHYSICSCORE_API UEnum* Z_Construct_UEnum_PhysicsCore_EPhysicalSurface(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraContextEffectsSettings +void ULyraContextEffectsSettings::StaticRegisterNativesULyraContextEffectsSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSettings); +UClass* Z_Construct_UClass_ULyraContextEffectsSettings_NoRegister() +{ + return ULyraContextEffectsSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "DisplayName", "LyraContextEffects" }, + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceTypeToContextMap_MetaData[] = { + { "Category", "LyraContextEffectsSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SurfaceTypeToContextMap_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_SurfaceTypeToContextMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_SurfaceTypeToContextMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_ValueProp = { "SurfaceTypeToContextMap", nullptr, (EPropertyFlags)0x0000000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_Key_KeyProp = { "SurfaceTypeToContextMap_Key", nullptr, (EPropertyFlags)0x0000000000004001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(0, nullptr) }; // 161619406 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap = { "SurfaceTypeToContextMap", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSettings, SurfaceTypeToContextMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceTypeToContextMap_MetaData), NewProp_SurfaceTypeToContextMap_MetaData) }; // 161619406 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::ClassParams = { + &ULyraContextEffectsSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers), + 0, + 0x001000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSettings() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSettings::StaticClass(); +} +ULyraContextEffectsSettings::ULyraContextEffectsSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSettings); +ULyraContextEffectsSettings::~ULyraContextEffectsSettings() {} +// End Class ULyraContextEffectsSettings + +// Begin Class ULyraContextEffectsSet +void ULyraContextEffectsSet::StaticRegisterNativesULyraContextEffectsSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSet); +UClass* Z_Construct_UClass_ULyraContextEffectsSet_NoRegister() +{ + return ULyraContextEffectsSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LyraContextEffectsLibraries_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LyraContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_LyraContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries_ElementProp = { "LyraContextEffectsLibraries", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries = { "LyraContextEffectsLibraries", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSet, LyraContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LyraContextEffectsLibraries_MetaData), NewProp_LyraContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::ClassParams = { + &ULyraContextEffectsSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSet() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSet::StaticClass(); +} +ULyraContextEffectsSet::ULyraContextEffectsSet(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSet); +ULyraContextEffectsSet::~ULyraContextEffectsSet() {} +// End Class ULyraContextEffectsSet + +// Begin Class ULyraContextEffectsSubsystem Function GetContextFromSurfaceType +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics +{ + struct LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms + { + TEnumAsByte PhysicalSurface; + FGameplayTag Context; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_PhysicalSurface; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_PhysicalSurface = { "PhysicalSurface", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms, PhysicalSurface), Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(0, nullptr) }; // 161619406 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms, Context), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms), &Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_PhysicalSurface, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "GetContextFromSurfaceType", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execGetContextFromSurfaceType) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_PhysicalSurface); + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetContextFromSurfaceType(EPhysicalSurface(Z_Param_PhysicalSurface),Z_Param_Out_Context); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function GetContextFromSurfaceType + +// Begin Class ULyraContextEffectsSubsystem Function LoadAndAddContextEffectsLibraries +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics +{ + struct LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms + { + AActor* OwningActor; + TSet > ContextEffectsLibraries; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_ContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries_ElementProp = { "ContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries = { "ContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms, ContextEffectsLibraries), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_OwningActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "LoadAndAddContextEffectsLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execLoadAndAddContextEffectsLibraries) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_GET_TSET(TSoftObjectPtr,Z_Param_ContextEffectsLibraries); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->LoadAndAddContextEffectsLibraries(Z_Param_OwningActor,Z_Param_ContextEffectsLibraries); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function LoadAndAddContextEffectsLibraries + +// Begin Class ULyraContextEffectsSubsystem Function SpawnContextEffects +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics +{ + struct LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms + { + const AActor* SpawningActor; + USceneComponent* AttachToComponent; + FName AttachPoint; + FVector LocationOffset; + FRotator RotationOffset; + FGameplayTag Effect; + FGameplayTagContainer Contexts; + TArray AudioOut; + TArray NiagaraOut; + FVector VFXScale; + float AudioVolume; + float AudioPitch; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawningActor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachToComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachPoint_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioOut_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraOut_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawningActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AttachToComponent; + static const UECodeGen_Private::FNamePropertyParams NewProp_AttachPoint; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AudioOut_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AudioOut; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraOut_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraOut; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_SpawningActor = { "SpawningActor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, SpawningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawningActor_MetaData), NewProp_SpawningActor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachToComponent = { "AttachToComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AttachToComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachToComponent_MetaData), NewProp_AttachToComponent_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachPoint = { "AttachPoint", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AttachPoint), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachPoint_MetaData), NewProp_AttachPoint_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut_Inner = { "AudioOut", nullptr, (EPropertyFlags)0x0000000000080000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAudioComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut = { "AudioOut", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioOut), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioOut_MetaData), NewProp_AudioOut_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut_Inner = { "NiagaraOut", nullptr, (EPropertyFlags)0x0000000000080000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut = { "NiagaraOut", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, NiagaraOut), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraOut_MetaData), NewProp_NiagaraOut_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_SpawningActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachToComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachPoint, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "SpawnContextEffects", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execSpawnContextEffects) +{ + P_GET_OBJECT(AActor,Z_Param_SpawningActor); + P_GET_OBJECT(USceneComponent,Z_Param_AttachToComponent); + P_GET_PROPERTY(FNameProperty,Z_Param_AttachPoint); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_STRUCT(FGameplayTag,Z_Param_Effect); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_TARRAY_REF(UAudioComponent*,Z_Param_Out_AudioOut); + P_GET_TARRAY_REF(UNiagaraComponent*,Z_Param_Out_NiagaraOut); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SpawnContextEffects(Z_Param_SpawningActor,Z_Param_AttachToComponent,Z_Param_AttachPoint,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_Effect,Z_Param_Contexts,Z_Param_Out_AudioOut,Z_Param_Out_NiagaraOut,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function SpawnContextEffects + +// Begin Class ULyraContextEffectsSubsystem Function UnloadAndRemoveContextEffectsLibraries +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics +{ + struct LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "UnloadAndRemoveContextEffectsLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execUnloadAndRemoveContextEffectsLibraries) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnloadAndRemoveContextEffectsLibraries(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function UnloadAndRemoveContextEffectsLibraries + +// Begin Class ULyraContextEffectsSubsystem +void ULyraContextEffectsSubsystem::StaticRegisterNativesULyraContextEffectsSubsystem() +{ + UClass* Class = ULyraContextEffectsSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetContextFromSurfaceType", &ULyraContextEffectsSubsystem::execGetContextFromSurfaceType }, + { "LoadAndAddContextEffectsLibraries", &ULyraContextEffectsSubsystem::execLoadAndAddContextEffectsLibraries }, + { "SpawnContextEffects", &ULyraContextEffectsSubsystem::execSpawnContextEffects }, + { "UnloadAndRemoveContextEffectsLibraries", &ULyraContextEffectsSubsystem::execUnloadAndRemoveContextEffectsLibraries }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSubsystem); +UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem_NoRegister() +{ + return ULyraContextEffectsSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveActorEffectsMap_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveActorEffectsMap_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveActorEffectsMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ActiveActorEffectsMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType, "GetContextFromSurfaceType" }, // 3029357560 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries, "LoadAndAddContextEffectsLibraries" }, // 4094137175 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects, "SpawnContextEffects" }, // 3493466618 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries, "UnloadAndRemoveContextEffectsLibraries" }, // 1854305089 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_ValueProp = { "ActiveActorEffectsMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_ULyraContextEffectsSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_Key_KeyProp = { "ActiveActorEffectsMap_Key", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap = { "ActiveActorEffectsMap", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSubsystem, ActiveActorEffectsMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveActorEffectsMap_MetaData), NewProp_ActiveActorEffectsMap_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::ClassParams = { + &ULyraContextEffectsSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSubsystem::StaticClass(); +} +ULyraContextEffectsSubsystem::ULyraContextEffectsSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSubsystem); +ULyraContextEffectsSubsystem::~ULyraContextEffectsSubsystem() {} +// End Class ULyraContextEffectsSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectsSettings, ULyraContextEffectsSettings::StaticClass, TEXT("ULyraContextEffectsSettings"), &Z_Registration_Info_UClass_ULyraContextEffectsSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSettings), 1164594413U) }, + { Z_Construct_UClass_ULyraContextEffectsSet, ULyraContextEffectsSet::StaticClass, TEXT("ULyraContextEffectsSet"), &Z_Registration_Info_UClass_ULyraContextEffectsSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSet), 3972588694U) }, + { Z_Construct_UClass_ULyraContextEffectsSubsystem, ULyraContextEffectsSubsystem::StaticClass, TEXT("ULyraContextEffectsSubsystem"), &Z_Registration_Info_UClass_ULyraContextEffectsSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSubsystem), 3090893694U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_1911929540(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h new file mode 100644 index 00000000..e70f86d7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UAudioComponent; +class ULyraContextEffectsLibrary; +class UNiagaraComponent; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraContextEffectsSubsystem_generated_h +#error "LyraContextEffectsSubsystem.generated.h already included, missing '#pragma once' in LyraContextEffectsSubsystem.h" +#endif +#define LYRAGAME_LyraContextEffectsSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSettings(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSettings(ULyraContextEffectsSettings&&); \ + ULyraContextEffectsSettings(const ULyraContextEffectsSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsSettings) \ + NO_API virtual ~ULyraContextEffectsSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSet(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSet, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSet(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSet(ULyraContextEffectsSet&&); \ + ULyraContextEffectsSet(const ULyraContextEffectsSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSet); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsSet) \ + NO_API virtual ~ULyraContextEffectsSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnloadAndRemoveContextEffectsLibraries); \ + DECLARE_FUNCTION(execLoadAndAddContextEffectsLibraries); \ + DECLARE_FUNCTION(execGetContextFromSurfaceType); \ + DECLARE_FUNCTION(execSpawnContextEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSubsystem(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSubsystem(ULyraContextEffectsSubsystem&&); \ + ULyraContextEffectsSubsystem(const ULyraContextEffectsSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraContextEffectsSubsystem) \ + NO_API virtual ~ULyraContextEffectsSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_53_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp new file mode 100644 index 00000000..2d30a580 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp @@ -0,0 +1,396 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraControllerComponent_CharacterParts.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraControllerComponent_CharacterParts() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraControllerCharacterPartEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry; +class UScriptStruct* FLyraControllerCharacterPartEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraControllerCharacterPartEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraControllerCharacterPartEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A character part requested on a controller component\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A character part requested on a controller component" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Part_MetaData[] = { + { "Category", "LyraControllerCharacterPartEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The character part being represented\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ShowOnlyInnerProperties", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The character part being represented" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Part; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewProp_Part = { "Part", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControllerCharacterPartEntry, Part), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Part_MetaData), NewProp_Part_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewProp_Part, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraControllerCharacterPartEntry", + Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers), + sizeof(FLyraControllerCharacterPartEntry), + alignof(FLyraControllerCharacterPartEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton; +} +// End ScriptStruct FLyraControllerCharacterPartEntry + +// Begin Class ULyraControllerComponent_CharacterParts Function AddCharacterPart +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics +{ + struct LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms + { + FLyraCharacterPart NewPart; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part to the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part to the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewPart_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewPart; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart = { "NewPart", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms, NewPart), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewPart_MetaData), NewProp_NewPart_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execAddCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_NewPart); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddCharacterPart(Z_Param_Out_NewPart); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function AddCharacterPart + +// Begin Class ULyraControllerComponent_CharacterParts Function OnPossessedPawnChanged +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics +{ + struct LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms + { + APawn* OldPawn; + APawn* NewPawn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldPawn; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewPawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_OldPawn = { "OldPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms, OldPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_NewPawn = { "NewPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms, NewPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_OldPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_NewPawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "OnPossessedPawnChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execOnPossessedPawnChanged) +{ + P_GET_OBJECT(APawn,Z_Param_OldPawn); + P_GET_OBJECT(APawn,Z_Param_NewPawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPossessedPawnChanged(Z_Param_OldPawn,Z_Param_NewPawn); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function OnPossessedPawnChanged + +// Begin Class ULyraControllerComponent_CharacterParts Function RemoveAllCharacterParts +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes all added character parts, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes all added character parts, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "RemoveAllCharacterParts", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execRemoveAllCharacterParts) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAllCharacterParts(); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function RemoveAllCharacterParts + +// Begin Class ULyraControllerComponent_CharacterParts Function RemoveCharacterPart +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics +{ + struct LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms + { + FLyraCharacterPart PartToRemove; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a previously added character part from the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a previously added character part from the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartToRemove_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PartToRemove; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_PartToRemove = { "PartToRemove", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms, PartToRemove), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartToRemove_MetaData), NewProp_PartToRemove_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_PartToRemove, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "RemoveCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execRemoveCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_PartToRemove); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveCharacterPart(Z_Param_Out_PartToRemove); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function RemoveCharacterPart + +// Begin Class ULyraControllerComponent_CharacterParts +void ULyraControllerComponent_CharacterParts::StaticRegisterNativesULyraControllerComponent_CharacterParts() +{ + UClass* Class = ULyraControllerComponent_CharacterParts::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraControllerComponent_CharacterParts::execAddCharacterPart }, + { "OnPossessedPawnChanged", &ULyraControllerComponent_CharacterParts::execOnPossessedPawnChanged }, + { "RemoveAllCharacterParts", &ULyraControllerComponent_CharacterParts::execRemoveAllCharacterParts }, + { "RemoveCharacterPart", &ULyraControllerComponent_CharacterParts::execRemoveCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraControllerComponent_CharacterParts); +UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts_NoRegister() +{ + return ULyraControllerComponent_CharacterParts::StaticClass(); +} +struct Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A component that configure what cosmetic actors to spawn for the owning controller when it possesses a pawn\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A component that configure what cosmetic actors to spawn for the owning controller when it possesses a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CharacterParts_MetaData[] = { + { "Category", "Cosmetics" }, + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CharacterParts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CharacterParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart, "AddCharacterPart" }, // 2651924071 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged, "OnPossessedPawnChanged" }, // 2452039108 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts, "RemoveAllCharacterParts" }, // 2269004447 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart, "RemoveCharacterPart" }, // 2814330132 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts_Inner = { "CharacterParts", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry, METADATA_PARAMS(0, nullptr) }; // 3833958016 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts = { "CharacterParts", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerComponent_CharacterParts, CharacterParts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CharacterParts_MetaData), NewProp_CharacterParts_MetaData) }; // 3833958016 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::ClassParams = { + &ULyraControllerComponent_CharacterParts::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts() +{ + if (!Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton, Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraControllerComponent_CharacterParts::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraControllerComponent_CharacterParts); +ULyraControllerComponent_CharacterParts::~ULyraControllerComponent_CharacterParts() {} +// End Class ULyraControllerComponent_CharacterParts + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraControllerCharacterPartEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewStructOps, TEXT("LyraControllerCharacterPartEntry"), &Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraControllerCharacterPartEntry), 3833958016U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraControllerComponent_CharacterParts, ULyraControllerComponent_CharacterParts::StaticClass, TEXT("ULyraControllerComponent_CharacterParts"), &Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraControllerComponent_CharacterParts), 4235688293U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_2793586341(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h new file mode 100644 index 00000000..3a25a628 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraControllerComponent_CharacterParts.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APawn; +struct FLyraCharacterPart; +#ifdef LYRAGAME_LyraControllerComponent_CharacterParts_generated_h +#error "LyraControllerComponent_CharacterParts.generated.h already included, missing '#pragma once' in LyraControllerComponent_CharacterParts.h" +#endif +#define LYRAGAME_LyraControllerComponent_CharacterParts_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_32_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPossessedPawnChanged); \ + DECLARE_FUNCTION(execRemoveAllCharacterParts); \ + DECLARE_FUNCTION(execRemoveCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraControllerComponent_CharacterParts(); \ + friend struct Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics; \ +public: \ + DECLARE_CLASS(ULyraControllerComponent_CharacterParts, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraControllerComponent_CharacterParts) + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraControllerComponent_CharacterParts(ULyraControllerComponent_CharacterParts&&); \ + ULyraControllerComponent_CharacterParts(const ULyraControllerComponent_CharacterParts&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraControllerComponent_CharacterParts); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraControllerComponent_CharacterParts); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraControllerComponent_CharacterParts) \ + NO_API virtual ~ULyraControllerComponent_CharacterParts(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_52_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp new file mode 100644 index 00000000..eb4ed54e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraControllerDisconnectedScreen.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraControllerDisconnectedScreen() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UHorizontalBox_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraControllerDisconnectedScreen +void ULyraControllerDisconnectedScreen::StaticRegisterNativesULyraControllerDisconnectedScreen() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraControllerDisconnectedScreen); +UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister() +{ + return ULyraControllerDisconnectedScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A screen to display when the user has had all of their controllers disconnected and needs to\n * re-connect them to continue playing the game.\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A screen to display when the user has had all of their controllers disconnected and needs to\nre-connect them to continue playing the game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformSupportsUserChangeTags_MetaData[] = { + { "Category", "LyraControllerDisconnectedScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Required platform traits that, when met, will display the \"Change User\" button\n\x09 * allowing the player to change what signed in user is currently mapped to an input\n\x09 * device.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Required platform traits that, when met, will display the \"Change User\" button\nallowing the player to change what signed in user is currently mapped to an input\ndevice." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HBox_SwitchUser_MetaData[] = { + { "BindWidget", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Platforms that have \"strict\" user pairing requirements may want to allow you to change your user right from\n\x09 * the in-game UI here. These platforms are tagged with \"Platform.Trait.Input.HasStrictControllerPairing\" in\n\x09 * Common UI.\n\x09 *\n\x09 * This HBox will be set to invisible if the platform you are on does NOT have that platform trait.\n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Platforms that have \"strict\" user pairing requirements may want to allow you to change your user right from\nthe in-game UI here. These platforms are tagged with \"Platform.Trait.Input.HasStrictControllerPairing\" in\nCommon UI.\n\nThis HBox will be set to invisible if the platform you are on does NOT have that platform trait." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_ChangeUser_MetaData[] = { + { "BindWidget", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* A button to handle changing the user on platforms with strict user pairing requirements.\n\x09* \n\x09* @see HBox_SwitchUser\n\x09*/" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A button to handle changing the user on platforms with strict user pairing requirements.\n\n@see HBox_SwitchUser" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformSupportsUserChangeTags; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HBox_SwitchUser; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_ChangeUser; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_PlatformSupportsUserChangeTags = { "PlatformSupportsUserChangeTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, PlatformSupportsUserChangeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformSupportsUserChangeTags_MetaData), NewProp_PlatformSupportsUserChangeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_HBox_SwitchUser = { "HBox_SwitchUser", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, HBox_SwitchUser), Z_Construct_UClass_UHorizontalBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HBox_SwitchUser_MetaData), NewProp_HBox_SwitchUser_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_Button_ChangeUser = { "Button_ChangeUser", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, Button_ChangeUser), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_ChangeUser_MetaData), NewProp_Button_ChangeUser_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_PlatformSupportsUserChangeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_HBox_SwitchUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_Button_ChangeUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::ClassParams = { + &ULyraControllerDisconnectedScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen() +{ + if (!Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton, Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraControllerDisconnectedScreen::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraControllerDisconnectedScreen); +ULyraControllerDisconnectedScreen::~ULyraControllerDisconnectedScreen() {} +// End Class ULyraControllerDisconnectedScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraControllerDisconnectedScreen, ULyraControllerDisconnectedScreen::StaticClass, TEXT("ULyraControllerDisconnectedScreen"), &Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraControllerDisconnectedScreen), 1282544126U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_140708990(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h new file mode 100644 index 00000000..a3f1d752 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraControllerDisconnectedScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraControllerDisconnectedScreen_generated_h +#error "LyraControllerDisconnectedScreen.generated.h already included, missing '#pragma once' in LyraControllerDisconnectedScreen.h" +#endif +#define LYRAGAME_LyraControllerDisconnectedScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraControllerDisconnectedScreen(); \ + friend struct Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraControllerDisconnectedScreen, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraControllerDisconnectedScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraControllerDisconnectedScreen(ULyraControllerDisconnectedScreen&&); \ + ULyraControllerDisconnectedScreen(const ULyraControllerDisconnectedScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraControllerDisconnectedScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraControllerDisconnectedScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraControllerDisconnectedScreen) \ + NO_API virtual ~ULyraControllerDisconnectedScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp new file mode 100644 index 00000000..196c657f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp @@ -0,0 +1,394 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticAnimationTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPhysicsAsset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USkeletalMesh_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAnimLayerSelectionEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry; +class UScriptStruct* FLyraAnimLayerSelectionEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimLayerSelectionEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimLayerSelectionEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layer_MetaData[] = { + { "Category", "LyraAnimLayerSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layer to apply if the tag matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layer to apply if the tag matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequiredTags_MetaData[] = { + { "Categories", "Cosmetic" }, + { "Category", "LyraAnimLayerSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Cosmetic tags required (all of these must be present to be considered a match)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic tags required (all of these must be present to be considered a match)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Layer; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_Layer = { "Layer", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionEntry, Layer), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layer_MetaData), NewProp_Layer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_RequiredTags = { "RequiredTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionEntry, RequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequiredTags_MetaData), NewProp_RequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_Layer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_RequiredTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimLayerSelectionEntry", + Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers), + sizeof(FLyraAnimLayerSelectionEntry), + alignof(FLyraAnimLayerSelectionEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton; +} +// End ScriptStruct FLyraAnimLayerSelectionEntry + +// Begin ScriptStruct FLyraAnimLayerSelectionSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet; +class UScriptStruct* FLyraAnimLayerSelectionSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimLayerSelectionSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimLayerSelectionSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerRules_MetaData[] = { + { "Category", "LyraAnimLayerSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of layer rules to apply, first one that matches will be used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + { "TitleProperty", "Layer" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of layer rules to apply, first one that matches will be used" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultLayer_MetaData[] = { + { "Category", "LyraAnimLayerSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to use if none of the LayerRules matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to use if none of the LayerRules matches" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LayerRules; + static const UECodeGen_Private::FClassPropertyParams NewProp_DefaultLayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules_Inner = { "LayerRules", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry, METADATA_PARAMS(0, nullptr) }; // 3711411297 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules = { "LayerRules", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionSet, LayerRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerRules_MetaData), NewProp_LayerRules_MetaData) }; // 3711411297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_DefaultLayer = { "DefaultLayer", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionSet, DefaultLayer), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultLayer_MetaData), NewProp_DefaultLayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_DefaultLayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimLayerSelectionSet", + Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers), + sizeof(FLyraAnimLayerSelectionSet), + alignof(FLyraAnimLayerSelectionSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton; +} +// End ScriptStruct FLyraAnimLayerSelectionSet + +// Begin ScriptStruct FLyraAnimBodyStyleSelectionEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry; +class UScriptStruct* FLyraAnimBodyStyleSelectionEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimBodyStyleSelectionEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimBodyStyleSelectionEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Mesh_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layer to apply if the tag matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layer to apply if the tag matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequiredTags_MetaData[] = { + { "Categories", "Cosmetic" }, + { "Category", "LyraAnimBodyStyleSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Cosmetic tags required (all of these must be present to be considered a match)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic tags required (all of these must be present to be considered a match)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Mesh; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_Mesh = { "Mesh", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionEntry, Mesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Mesh_MetaData), NewProp_Mesh_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_RequiredTags = { "RequiredTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionEntry, RequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequiredTags_MetaData), NewProp_RequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_Mesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_RequiredTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimBodyStyleSelectionEntry", + Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers), + sizeof(FLyraAnimBodyStyleSelectionEntry), + alignof(FLyraAnimBodyStyleSelectionEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton; +} +// End ScriptStruct FLyraAnimBodyStyleSelectionEntry + +// Begin ScriptStruct FLyraAnimBodyStyleSelectionSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet; +class UScriptStruct* FLyraAnimBodyStyleSelectionSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimBodyStyleSelectionSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimBodyStyleSelectionSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MeshRules_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of layer rules to apply, first one that matches will be used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + { "TitleProperty", "Mesh" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of layer rules to apply, first one that matches will be used" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultMesh_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to use if none of the LayerRules matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to use if none of the LayerRules matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForcedPhysicsAsset_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If set, ensures this physics asset is always used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If set, ensures this physics asset is always used" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MeshRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MeshRules; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultMesh; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ForcedPhysicsAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules_Inner = { "MeshRules", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry, METADATA_PARAMS(0, nullptr) }; // 664770048 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules = { "MeshRules", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, MeshRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MeshRules_MetaData), NewProp_MeshRules_MetaData) }; // 664770048 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_DefaultMesh = { "DefaultMesh", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, DefaultMesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultMesh_MetaData), NewProp_DefaultMesh_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_ForcedPhysicsAsset = { "ForcedPhysicsAsset", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, ForcedPhysicsAsset), Z_Construct_UClass_UPhysicsAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForcedPhysicsAsset_MetaData), NewProp_ForcedPhysicsAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_DefaultMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_ForcedPhysicsAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimBodyStyleSelectionSet", + Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers), + sizeof(FLyraAnimBodyStyleSelectionSet), + alignof(FLyraAnimBodyStyleSelectionSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton; +} +// End ScriptStruct FLyraAnimBodyStyleSelectionSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAnimLayerSelectionEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewStructOps, TEXT("LyraAnimLayerSelectionEntry"), &Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimLayerSelectionEntry), 3711411297U) }, + { FLyraAnimLayerSelectionSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewStructOps, TEXT("LyraAnimLayerSelectionSet"), &Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimLayerSelectionSet), 3591606580U) }, + { FLyraAnimBodyStyleSelectionEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewStructOps, TEXT("LyraAnimBodyStyleSelectionEntry"), &Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimBodyStyleSelectionEntry), 664770048U) }, + { FLyraAnimBodyStyleSelectionSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewStructOps, TEXT("LyraAnimBodyStyleSelectionSet"), &Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimBodyStyleSelectionSet), 181859200U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_1590159237(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h new file mode 100644 index 00000000..6e6d5070 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h @@ -0,0 +1,49 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticAnimationTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticAnimationTypes_generated_h +#error "LyraCosmeticAnimationTypes.generated.h already included, missing '#pragma once' in LyraCosmeticAnimationTypes.h" +#endif +#define LYRAGAME_LyraCosmeticAnimationTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_52_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_66_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp new file mode 100644 index 00000000..e6c3116c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp @@ -0,0 +1,270 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCosmeticCheats Function AddCharacterPart +struct Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics +{ + struct LyraCosmeticCheats_eventAddCharacterPart_Parms + { + FString AssetName; + bool bSuppressNaturalParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part\n" }, +#endif + { "CPP_Default_bSuppressNaturalParts", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssetName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AssetName; + static void NewProp_bSuppressNaturalParts_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressNaturalParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_AssetName = { "AssetName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCosmeticCheats_eventAddCharacterPart_Parms, AssetName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssetName_MetaData), NewProp_AssetName_MetaData) }; +void Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit(void* Obj) +{ + ((LyraCosmeticCheats_eventAddCharacterPart_Parms*)Obj)->bSuppressNaturalParts = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts = { "bSuppressNaturalParts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraCosmeticCheats_eventAddCharacterPart_Parms), &Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_AssetName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::LyraCosmeticCheats_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::LyraCosmeticCheats_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execAddCharacterPart) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AssetName); + P_GET_UBOOL(Z_Param_bSuppressNaturalParts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddCharacterPart(Z_Param_AssetName,Z_Param_bSuppressNaturalParts); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function AddCharacterPart + +// Begin Class ULyraCosmeticCheats Function ClearCharacterPartOverrides +struct Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Clears any existing cheats\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clears any existing cheats" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "ClearCharacterPartOverrides", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execClearCharacterPartOverrides) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClearCharacterPartOverrides(); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function ClearCharacterPartOverrides + +// Begin Class ULyraCosmeticCheats Function ReplaceCharacterPart +struct Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics +{ + struct LyraCosmeticCheats_eventReplaceCharacterPart_Parms + { + FString AssetName; + bool bSuppressNaturalParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replaces previous cheat parts with a new one\n" }, +#endif + { "CPP_Default_bSuppressNaturalParts", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replaces previous cheat parts with a new one" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssetName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AssetName; + static void NewProp_bSuppressNaturalParts_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressNaturalParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_AssetName = { "AssetName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCosmeticCheats_eventReplaceCharacterPart_Parms, AssetName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssetName_MetaData), NewProp_AssetName_MetaData) }; +void Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit(void* Obj) +{ + ((LyraCosmeticCheats_eventReplaceCharacterPart_Parms*)Obj)->bSuppressNaturalParts = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts = { "bSuppressNaturalParts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraCosmeticCheats_eventReplaceCharacterPart_Parms), &Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_AssetName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "ReplaceCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::LyraCosmeticCheats_eventReplaceCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::LyraCosmeticCheats_eventReplaceCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execReplaceCharacterPart) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AssetName); + P_GET_UBOOL(Z_Param_bSuppressNaturalParts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReplaceCharacterPart(Z_Param_AssetName,Z_Param_bSuppressNaturalParts); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function ReplaceCharacterPart + +// Begin Class ULyraCosmeticCheats +void ULyraCosmeticCheats::StaticRegisterNativesULyraCosmeticCheats() +{ + UClass* Class = ULyraCosmeticCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraCosmeticCheats::execAddCharacterPart }, + { "ClearCharacterPartOverrides", &ULyraCosmeticCheats::execClearCharacterPartOverrides }, + { "ReplaceCharacterPart", &ULyraCosmeticCheats::execReplaceCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCosmeticCheats); +UClass* Z_Construct_UClass_ULyraCosmeticCheats_NoRegister() +{ + return ULyraCosmeticCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraCosmeticCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to bots */" }, +#endif + { "IncludePath", "Cosmetics/LyraCosmeticCheats.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to bots" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart, "AddCharacterPart" }, // 1878283905 + { &Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides, "ClearCharacterPartOverrides" }, // 3738419877 + { &Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart, "ReplaceCharacterPart" }, // 3408776827 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCosmeticCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCosmeticCheats_Statics::ClassParams = { + &ULyraCosmeticCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCosmeticCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCosmeticCheats() +{ + if (!Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton, Z_Construct_UClass_ULyraCosmeticCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCosmeticCheats::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCosmeticCheats); +ULyraCosmeticCheats::~ULyraCosmeticCheats() {} +// End Class ULyraCosmeticCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCosmeticCheats, ULyraCosmeticCheats::StaticClass, TEXT("ULyraCosmeticCheats"), &Z_Registration_Info_UClass_ULyraCosmeticCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCosmeticCheats), 1407295015U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_3650814609(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h new file mode 100644 index 00000000..888ea3bd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticCheats_generated_h +#error "LyraCosmeticCheats.generated.h already included, missing '#pragma once' in LyraCosmeticCheats.h" +#endif +#define LYRAGAME_LyraCosmeticCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execClearCharacterPartOverrides); \ + DECLARE_FUNCTION(execReplaceCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCosmeticCheats(); \ + friend struct Z_Construct_UClass_ULyraCosmeticCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraCosmeticCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCosmeticCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCosmeticCheats(ULyraCosmeticCheats&&); \ + ULyraCosmeticCheats(const ULyraCosmeticCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCosmeticCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCosmeticCheats); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCosmeticCheats) \ + NO_API virtual ~ULyraCosmeticCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp new file mode 100644 index 00000000..120233c7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp @@ -0,0 +1,177 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticDeveloperSettings.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticDeveloperSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECosmeticCheatMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECosmeticCheatMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECosmeticCheatMode; +static UEnum* ECosmeticCheatMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECosmeticCheatMode")); + } + return Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECosmeticCheatMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AddParts.Name", "ECosmeticCheatMode::AddParts" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + { "ReplaceParts.Name", "ECosmeticCheatMode::ReplaceParts" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECosmeticCheatMode::ReplaceParts", (int64)ECosmeticCheatMode::ReplaceParts }, + { "ECosmeticCheatMode::AddParts", (int64)ECosmeticCheatMode::AddParts }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECosmeticCheatMode", + "ECosmeticCheatMode", + Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECosmeticCheatMode() +{ + if (!Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton; +} +// End Enum ECosmeticCheatMode + +// Begin Class ULyraCosmeticDeveloperSettings +void ULyraCosmeticDeveloperSettings::StaticRegisterNativesULyraCosmeticDeveloperSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCosmeticDeveloperSettings); +UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings_NoRegister() +{ + return ULyraCosmeticDeveloperSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Cosmetic developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatCosmeticCharacterParts_MetaData[] = { + { "Category", "LyraCosmeticDeveloperSettings" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatMode_MetaData[] = { + { "Category", "LyraCosmeticDeveloperSettings" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CheatCosmeticCharacterParts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CheatCosmeticCharacterParts; + static const UECodeGen_Private::FIntPropertyParams NewProp_CheatMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_CheatMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts_Inner = { "CheatCosmeticCharacterParts", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(0, nullptr) }; // 2027995414 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts = { "CheatCosmeticCharacterParts", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCosmeticDeveloperSettings, CheatCosmeticCharacterParts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatCosmeticCharacterParts_MetaData), NewProp_CheatCosmeticCharacterParts_MetaData) }; // 2027995414 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode = { "CheatMode", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCosmeticDeveloperSettings, CheatMode), Z_Construct_UEnum_LyraGame_ECosmeticCheatMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatMode_MetaData), NewProp_CheatMode_MetaData) }; // 3137659677 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::ClassParams = { + &ULyraCosmeticDeveloperSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings() +{ + if (!Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton, Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCosmeticDeveloperSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCosmeticDeveloperSettings); +ULyraCosmeticDeveloperSettings::~ULyraCosmeticDeveloperSettings() {} +// End Class ULyraCosmeticDeveloperSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECosmeticCheatMode_StaticEnum, TEXT("ECosmeticCheatMode"), &Z_Registration_Info_UEnum_ECosmeticCheatMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3137659677U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCosmeticDeveloperSettings, ULyraCosmeticDeveloperSettings::StaticClass, TEXT("ULyraCosmeticDeveloperSettings"), &Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCosmeticDeveloperSettings), 472237876U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_159793533(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h new file mode 100644 index 00000000..7dad4638 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticDeveloperSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticDeveloperSettings_generated_h +#error "LyraCosmeticDeveloperSettings.generated.h already included, missing '#pragma once' in LyraCosmeticDeveloperSettings.h" +#endif +#define LYRAGAME_LyraCosmeticDeveloperSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCosmeticDeveloperSettings(); \ + friend struct Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraCosmeticDeveloperSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraCosmeticDeveloperSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCosmeticDeveloperSettings(ULyraCosmeticDeveloperSettings&&); \ + ULyraCosmeticDeveloperSettings(const ULyraCosmeticDeveloperSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraCosmeticDeveloperSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCosmeticDeveloperSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCosmeticDeveloperSettings) \ + LYRAGAME_API virtual ~ULyraCosmeticDeveloperSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h + + +#define FOREACH_ENUM_ECOSMETICCHEATMODE(op) \ + op(ECosmeticCheatMode::ReplaceParts) \ + op(ECosmeticCheatMode::AddParts) + +enum class ECosmeticCheatMode; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp new file mode 100644 index 00000000..d4799cb6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Executions/LyraDamageExecution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamageExecution() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectExecutionCalculation(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageExecution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageExecution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamageExecution +void ULyraDamageExecution::StaticRegisterNativesULyraDamageExecution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamageExecution); +UClass* Z_Construct_UClass_ULyraDamageExecution_NoRegister() +{ + return ULyraDamageExecution::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamageExecution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraDamageExecution\n *\n *\x09""Execution used by gameplay effects to apply damage to the health attributes.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Executions/LyraDamageExecution.h" }, + { "ModuleRelativePath", "AbilitySystem/Executions/LyraDamageExecution.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraDamageExecution\n\n Execution used by gameplay effects to apply damage to the health attributes." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraDamageExecution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectExecutionCalculation, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageExecution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamageExecution_Statics::ClassParams = { + &ULyraDamageExecution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageExecution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamageExecution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamageExecution() +{ + if (!Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton, Z_Construct_UClass_ULyraDamageExecution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamageExecution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamageExecution); +ULyraDamageExecution::~ULyraDamageExecution() {} +// End Class ULyraDamageExecution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamageExecution, ULyraDamageExecution::StaticClass, TEXT("ULyraDamageExecution"), &Z_Registration_Info_UClass_ULyraDamageExecution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamageExecution), 1510166450U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_2187272732(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.generated.h new file mode 100644 index 00000000..a12214fb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageExecution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Executions/LyraDamageExecution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamageExecution_generated_h +#error "LyraDamageExecution.generated.h already included, missing '#pragma once' in LyraDamageExecution.h" +#endif +#define LYRAGAME_LyraDamageExecution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamageExecution(); \ + friend struct Z_Construct_UClass_ULyraDamageExecution_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamageExecution, UGameplayEffectExecutionCalculation, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamageExecution) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamageExecution(ULyraDamageExecution&&); \ + ULyraDamageExecution(const ULyraDamageExecution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamageExecution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamageExecution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDamageExecution) \ + NO_API virtual ~ULyraDamageExecution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp new file mode 100644 index 00000000..e10638c2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp @@ -0,0 +1,105 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraDamageLogDebuggerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamageLogDebuggerComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamageLogDebuggerComponent +void ULyraDamageLogDebuggerComponent::StaticRegisterNativesULyraDamageLogDebuggerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamageLogDebuggerComponent); +UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent_NoRegister() +{ + return ULyraDamageLogDebuggerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, + { "IncludePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SecondsBetweenDamageBeforeLogging_MetaData[] = { + { "Category", "LyraDamageLogDebuggerComponent" }, + { "ModuleRelativePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_SecondsBetweenDamageBeforeLogging; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::NewProp_SecondsBetweenDamageBeforeLogging = { "SecondsBetweenDamageBeforeLogging", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamageLogDebuggerComponent, SecondsBetweenDamageBeforeLogging), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SecondsBetweenDamageBeforeLogging_MetaData), NewProp_SecondsBetweenDamageBeforeLogging_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::NewProp_SecondsBetweenDamageBeforeLogging, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::ClassParams = { + &ULyraDamageLogDebuggerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton, Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamageLogDebuggerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamageLogDebuggerComponent); +ULyraDamageLogDebuggerComponent::~ULyraDamageLogDebuggerComponent() {} +// End Class ULyraDamageLogDebuggerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamageLogDebuggerComponent, ULyraDamageLogDebuggerComponent::StaticClass, TEXT("ULyraDamageLogDebuggerComponent"), &Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamageLogDebuggerComponent), 640374043U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_1306523471(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h new file mode 100644 index 00000000..b0f401d6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraDamageLogDebuggerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamageLogDebuggerComponent_generated_h +#error "LyraDamageLogDebuggerComponent.generated.h already included, missing '#pragma once' in LyraDamageLogDebuggerComponent.h" +#endif +#define LYRAGAME_LyraDamageLogDebuggerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamageLogDebuggerComponent(); \ + friend struct Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamageLogDebuggerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamageLogDebuggerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamageLogDebuggerComponent(ULyraDamageLogDebuggerComponent&&); \ + ULyraDamageLogDebuggerComponent(const ULyraDamageLogDebuggerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamageLogDebuggerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamageLogDebuggerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDamageLogDebuggerComponent) \ + NO_API virtual ~ULyraDamageLogDebuggerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp new file mode 100644 index 00000000..6ccda47d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraDamagePopStyle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamagePopStyle() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagQuery(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamagePopStyle +void ULyraDamagePopStyle::StaticRegisterNativesULyraDamagePopStyle() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamagePopStyle); +UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister() +{ + return ULyraDamagePopStyle::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamagePopStyle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayText_MetaData[] = { + { "Category", "DamagePop" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MatchPattern_MetaData[] = { + { "Category", "DamagePop" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Color_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideColor" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CriticalColor_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideColor" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextMesh_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideMesh" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideColor_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideMesh_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DisplayText; + static const UECodeGen_Private::FStructPropertyParams NewProp_MatchPattern; + static const UECodeGen_Private::FStructPropertyParams NewProp_Color; + static const UECodeGen_Private::FStructPropertyParams NewProp_CriticalColor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextMesh; + static void NewProp_bOverrideColor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideColor; + static void NewProp_bOverrideMesh_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideMesh; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_DisplayText = { "DisplayText", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, DisplayText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayText_MetaData), NewProp_DisplayText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_MatchPattern = { "MatchPattern", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, MatchPattern), Z_Construct_UScriptStruct_FGameplayTagQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MatchPattern_MetaData), NewProp_MatchPattern_MetaData) }; // 572225232 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_Color = { "Color", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, Color), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Color_MetaData), NewProp_Color_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_CriticalColor = { "CriticalColor", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, CriticalColor), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CriticalColor_MetaData), NewProp_CriticalColor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_TextMesh = { "TextMesh", nullptr, (EPropertyFlags)0x0114000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, TextMesh), Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextMesh_MetaData), NewProp_TextMesh_MetaData) }; +void Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor_SetBit(void* Obj) +{ + ((ULyraDamagePopStyle*)Obj)->bOverrideColor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor = { "bOverrideColor", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDamagePopStyle), &Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideColor_MetaData), NewProp_bOverrideColor_MetaData) }; +void Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh_SetBit(void* Obj) +{ + ((ULyraDamagePopStyle*)Obj)->bOverrideMesh = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh = { "bOverrideMesh", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDamagePopStyle), &Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideMesh_MetaData), NewProp_bOverrideMesh_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_DisplayText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_MatchPattern, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_Color, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_CriticalColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_TextMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamagePopStyle_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::ClassParams = { + &ULyraDamagePopStyle::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamagePopStyle_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamagePopStyle() +{ + if (!Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton, Z_Construct_UClass_ULyraDamagePopStyle_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamagePopStyle::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamagePopStyle); +ULyraDamagePopStyle::~ULyraDamagePopStyle() {} +// End Class ULyraDamagePopStyle + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamagePopStyle, ULyraDamagePopStyle::StaticClass, TEXT("ULyraDamagePopStyle"), &Z_Registration_Info_UClass_ULyraDamagePopStyle, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamagePopStyle), 3693153276U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_3086197041(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h new file mode 100644 index 00000000..c88023fb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraDamagePopStyle.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamagePopStyle_generated_h +#error "LyraDamagePopStyle.generated.h already included, missing '#pragma once' in LyraDamagePopStyle.h" +#endif +#define LYRAGAME_LyraDamagePopStyle_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamagePopStyle(); \ + friend struct Z_Construct_UClass_ULyraDamagePopStyle_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamagePopStyle, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamagePopStyle) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamagePopStyle(ULyraDamagePopStyle&&); \ + ULyraDamagePopStyle(const ULyraDamagePopStyle&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamagePopStyle); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamagePopStyle); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDamagePopStyle) \ + NO_API virtual ~ULyraDamagePopStyle(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp new file mode 100644 index 00000000..f8895b98 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraDamagePopStyleNiagara.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamagePopStyleNiagara() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamagePopStyleNiagara +void ULyraDamagePopStyleNiagara::StaticRegisterNativesULyraDamagePopStyleNiagara() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamagePopStyleNiagara); +UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister() +{ + return ULyraDamagePopStyleNiagara::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/*PopStyle is used to define what Niagara asset should be used for the Damage System representation*/" }, +#endif + { "IncludePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "PopStyle is used to define what Niagara asset should be used for the Damage System representation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraArrayName_MetaData[] = { + { "Category", "DamagePop" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Name of the Niagra Array to set the Damage informations\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the Niagra Array to set the Damage informations" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextNiagara_MetaData[] = { + { "Category", "DamagePop" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Niagara System used to display the damages\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Niagara System used to display the damages" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NiagaraArrayName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextNiagara; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_NiagaraArrayName = { "NiagaraArrayName", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyleNiagara, NiagaraArrayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraArrayName_MetaData), NewProp_NiagaraArrayName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_TextNiagara = { "TextNiagara", nullptr, (EPropertyFlags)0x0114000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyleNiagara, TextNiagara), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextNiagara_MetaData), NewProp_TextNiagara_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_NiagaraArrayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_TextNiagara, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::ClassParams = { + &ULyraDamagePopStyleNiagara::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara() +{ + if (!Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton, Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamagePopStyleNiagara::StaticClass(); +} +ULyraDamagePopStyleNiagara::ULyraDamagePopStyleNiagara(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamagePopStyleNiagara); +ULyraDamagePopStyleNiagara::~ULyraDamagePopStyleNiagara() {} +// End Class ULyraDamagePopStyleNiagara + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamagePopStyleNiagara, ULyraDamagePopStyleNiagara::StaticClass, TEXT("ULyraDamagePopStyleNiagara"), &Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamagePopStyleNiagara), 3108807808U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_2506536618(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h new file mode 100644 index 00000000..12f30325 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamagePopStyleNiagara_generated_h +#error "LyraDamagePopStyleNiagara.generated.h already included, missing '#pragma once' in LyraDamagePopStyleNiagara.h" +#endif +#define LYRAGAME_LyraDamagePopStyleNiagara_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamagePopStyleNiagara(); \ + friend struct Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamagePopStyleNiagara, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamagePopStyleNiagara) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraDamagePopStyleNiagara(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamagePopStyleNiagara(ULyraDamagePopStyleNiagara&&); \ + ULyraDamagePopStyleNiagara(const ULyraDamagePopStyleNiagara&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamagePopStyleNiagara); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamagePopStyleNiagara); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDamagePopStyleNiagara) \ + NO_API virtual ~ULyraDamagePopStyleNiagara(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp new file mode 100644 index 00000000..a7a97031 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraDebugCameraController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDebugCameraController() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ADebugCameraController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraDebugCameraController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraDebugCameraController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraDebugCameraController +void ALyraDebugCameraController::StaticRegisterNativesALyraDebugCameraController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraDebugCameraController); +UClass* Z_Construct_UClass_ALyraDebugCameraController_NoRegister() +{ + return ALyraDebugCameraController::StaticClass(); +} +struct Z_Construct_UClass_ALyraDebugCameraController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraDebugCameraController\n *\n *\x09Used for controlling the debug camera when it is enabled via the cheat manager.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraDebugCameraController.h" }, + { "ModuleRelativePath", "Player/LyraDebugCameraController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraDebugCameraController\n\n Used for controlling the debug camera when it is enabled via the cheat manager." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraDebugCameraController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ADebugCameraController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraDebugCameraController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraDebugCameraController_Statics::ClassParams = { + &ALyraDebugCameraController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraDebugCameraController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraDebugCameraController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraDebugCameraController() +{ + if (!Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton, Z_Construct_UClass_ALyraDebugCameraController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraDebugCameraController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraDebugCameraController); +ALyraDebugCameraController::~ALyraDebugCameraController() {} +// End Class ALyraDebugCameraController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraDebugCameraController, ALyraDebugCameraController::StaticClass, TEXT("ALyraDebugCameraController"), &Z_Registration_Info_UClass_ALyraDebugCameraController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraDebugCameraController), 3964773842U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_2791657467(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h new file mode 100644 index 00000000..82738b9f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraDebugCameraController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDebugCameraController_generated_h +#error "LyraDebugCameraController.generated.h already included, missing '#pragma once' in LyraDebugCameraController.h" +#endif +#define LYRAGAME_LyraDebugCameraController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraDebugCameraController(); \ + friend struct Z_Construct_UClass_ALyraDebugCameraController_Statics; \ +public: \ + DECLARE_CLASS(ALyraDebugCameraController, ADebugCameraController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraDebugCameraController) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraDebugCameraController(ALyraDebugCameraController&&); \ + ALyraDebugCameraController(const ALyraDebugCameraController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraDebugCameraController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraDebugCameraController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraDebugCameraController) \ + NO_API virtual ~ALyraDebugCameraController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp new file mode 100644 index 00000000..79a649d1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp @@ -0,0 +1,398 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraDeveloperSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDeveloperSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDeveloperSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECheatExecutionTime(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCheatToRun(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECheatExecutionTime +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECheatExecutionTime; +static UEnum* ECheatExecutionTime_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton) + { + Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECheatExecutionTime, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECheatExecutionTime")); + } + return Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECheatExecutionTime_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + { "OnCheatManagerCreated.Comment", "// When the cheat manager is created\n" }, + { "OnCheatManagerCreated.Name", "ECheatExecutionTime::OnCheatManagerCreated" }, + { "OnCheatManagerCreated.ToolTip", "When the cheat manager is created" }, + { "OnPlayerPawnPossession.Comment", "// When a pawn is possessed by a player\n" }, + { "OnPlayerPawnPossession.Name", "ECheatExecutionTime::OnPlayerPawnPossession" }, + { "OnPlayerPawnPossession.ToolTip", "When a pawn is possessed by a player" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECheatExecutionTime::OnCheatManagerCreated", (int64)ECheatExecutionTime::OnCheatManagerCreated }, + { "ECheatExecutionTime::OnPlayerPawnPossession", (int64)ECheatExecutionTime::OnPlayerPawnPossession }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECheatExecutionTime", + "ECheatExecutionTime", + Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECheatExecutionTime() +{ + if (!Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton, Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton; +} +// End Enum ECheatExecutionTime + +// Begin ScriptStruct FLyraCheatToRun +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCheatToRun; +class UScriptStruct* FLyraCheatToRun::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCheatToRun, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCheatToRun")); + } + return Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCheatToRun::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCheatToRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Phase_MetaData[] = { + { "Category", "LyraCheatToRun" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Cheat_MetaData[] = { + { "Category", "LyraCheatToRun" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Phase_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Phase; + static const UECodeGen_Private::FStrPropertyParams NewProp_Cheat; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCheatToRun, Phase), Z_Construct_UEnum_LyraGame_ECheatExecutionTime, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Phase_MetaData), NewProp_Phase_MetaData) }; // 1272832148 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Cheat = { "Cheat", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCheatToRun, Cheat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Cheat_MetaData), NewProp_Cheat_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Cheat, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCheatToRun", + Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers), + sizeof(FLyraCheatToRun), + alignof(FLyraCheatToRun), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCheatToRun() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton, Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton; +} +// End ScriptStruct FLyraCheatToRun + +// Begin Class ULyraDeveloperSettings +void ULyraDeveloperSettings::StaticRegisterNativesULyraDeveloperSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDeveloperSettings); +UClass* Z_Construct_UClass_ULyraDeveloperSettings_NoRegister() +{ + return ULyraDeveloperSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraDeveloperSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "Development/LyraDeveloperSettings.h" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceOverride_MetaData[] = { + { "AllowedTypes", "LyraExperienceDefinition" }, + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The experience override to use for Play in Editor (if not set, the default for the world settings of the open map will be used)\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The experience override to use for Play in Editor (if not set, the default for the world settings of the open map will be used)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideBotCount_MetaData[] = { + { "Category", "LyraBots" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverrideNumPlayerBotsToSpawn_MetaData[] = { + { "Category", "LyraBots" }, + { "EditCondition", "bOverrideBotCount" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAllowPlayerBotsToAttack_MetaData[] = { + { "Category", "LyraBots" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTestFullGameFlowInPIE_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do the full game flow when playing in the editor, or skip 'waiting for player' / etc... game phases?\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do the full game flow when playing in the editor, or skip 'waiting for player' / etc... game phases?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShouldAlwaysPlayForceFeedback_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Should force feedback effects be played, even if the last input device was not a gamepad?\n\x09* The default behavior in Lyra is to only play force feedback if the most recent input device was a gamepad.\n\x09*/" }, +#endif + { "ConsoleVariable", "LyraPC.ShouldAlwaysPlayForceFeedback" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should force feedback effects be played, even if the last input device was not a gamepad?\nThe default behavior in Lyra is to only play force feedback if the most recent input device was a gamepad." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor or skip them for iteration speed?\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor or skip them for iteration speed?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatsToRun_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of cheats to auto-run during 'play in editor'\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of cheats to auto-run during 'play in editor'" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogGameplayMessages_MetaData[] = { + { "Category", "GameplayMessages" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should messages broadcast through the gameplay message subsystem be logged?\n" }, +#endif + { "ConsoleVariable", "GameplayMessageSubsystem.LogMessages" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should messages broadcast through the gameplay message subsystem be logged?" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CommonEditorMaps_MetaData[] = { + { "AllowedClasses", "/Script/Engine.World" }, + { "Category", "Maps" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A list of common maps that will be accessible via the editor detoolbar */" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A list of common maps that will be accessible via the editor detoolbar" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExperienceOverride; + static void NewProp_bOverrideBotCount_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideBotCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_OverrideNumPlayerBotsToSpawn; + static void NewProp_bAllowPlayerBotsToAttack_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAllowPlayerBotsToAttack; + static void NewProp_bTestFullGameFlowInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTestFullGameFlowInPIE; + static void NewProp_bShouldAlwaysPlayForceFeedback_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShouldAlwaysPlayForceFeedback; + static void NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSkipLoadingCosmeticBackgroundsInPIE; + static const UECodeGen_Private::FStructPropertyParams NewProp_CheatsToRun_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CheatsToRun; + static void NewProp_LogGameplayMessages_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_LogGameplayMessages; +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CommonEditorMaps_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CommonEditorMaps; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_ExperienceOverride = { "ExperienceOverride", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, ExperienceOverride), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceOverride_MetaData), NewProp_ExperienceOverride_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bOverrideBotCount = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount = { "bOverrideBotCount", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideBotCount_MetaData), NewProp_bOverrideBotCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_OverrideNumPlayerBotsToSpawn = { "OverrideNumPlayerBotsToSpawn", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, OverrideNumPlayerBotsToSpawn), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverrideNumPlayerBotsToSpawn_MetaData), NewProp_OverrideNumPlayerBotsToSpawn_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bAllowPlayerBotsToAttack = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack = { "bAllowPlayerBotsToAttack", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAllowPlayerBotsToAttack_MetaData), NewProp_bAllowPlayerBotsToAttack_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bTestFullGameFlowInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE = { "bTestFullGameFlowInPIE", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTestFullGameFlowInPIE_MetaData), NewProp_bTestFullGameFlowInPIE_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bShouldAlwaysPlayForceFeedback = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback = { "bShouldAlwaysPlayForceFeedback", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShouldAlwaysPlayForceFeedback_MetaData), NewProp_bShouldAlwaysPlayForceFeedback_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bSkipLoadingCosmeticBackgroundsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE = { "bSkipLoadingCosmeticBackgroundsInPIE", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData), NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun_Inner = { "CheatsToRun", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraCheatToRun, METADATA_PARAMS(0, nullptr) }; // 1176648613 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun = { "CheatsToRun", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, CheatsToRun), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatsToRun_MetaData), NewProp_CheatsToRun_MetaData) }; // 1176648613 +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->LogGameplayMessages = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages = { "LogGameplayMessages", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogGameplayMessages_MetaData), NewProp_LogGameplayMessages_MetaData) }; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps_Inner = { "CommonEditorMaps", nullptr, (EPropertyFlags)0x0000000800004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps = { "CommonEditorMaps", nullptr, (EPropertyFlags)0x0010000800004015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, CommonEditorMaps), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CommonEditorMaps_MetaData), NewProp_CommonEditorMaps_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_ExperienceOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_OverrideNumPlayerBotsToSpawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDeveloperSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::ClassParams = { + &ULyraDeveloperSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDeveloperSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDeveloperSettings() +{ + if (!Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton, Z_Construct_UClass_ULyraDeveloperSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDeveloperSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDeveloperSettings); +ULyraDeveloperSettings::~ULyraDeveloperSettings() {} +// End Class ULyraDeveloperSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECheatExecutionTime_StaticEnum, TEXT("ECheatExecutionTime"), &Z_Registration_Info_UEnum_ECheatExecutionTime, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1272832148U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCheatToRun::StaticStruct, Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewStructOps, TEXT("LyraCheatToRun"), &Z_Registration_Info_UScriptStruct_LyraCheatToRun, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCheatToRun), 1176648613U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDeveloperSettings, ULyraDeveloperSettings::StaticClass, TEXT("ULyraDeveloperSettings"), &Z_Registration_Info_UClass_ULyraDeveloperSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDeveloperSettings), 2911190068U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_2408991893(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h new file mode 100644 index 00000000..2c82b3bc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraDeveloperSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDeveloperSettings_generated_h +#error "LyraDeveloperSettings.generated.h already included, missing '#pragma once' in LyraDeveloperSettings.h" +#endif +#define LYRAGAME_LyraDeveloperSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCheatToRun_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDeveloperSettings(); \ + friend struct Z_Construct_UClass_ULyraDeveloperSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraDeveloperSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraDeveloperSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDeveloperSettings(ULyraDeveloperSettings&&); \ + ULyraDeveloperSettings(const ULyraDeveloperSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraDeveloperSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDeveloperSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDeveloperSettings) \ + LYRAGAME_API virtual ~ULyraDeveloperSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h + + +#define FOREACH_ENUM_ECHEATEXECUTIONTIME(op) \ + op(ECheatExecutionTime::OnCheatManagerCreated) \ + op(ECheatExecutionTime::OnPlayerPawnPossession) + +enum class ECheatExecutionTime; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp new file mode 100644 index 00000000..8d8a395c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp @@ -0,0 +1,264 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraDevelopmentStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDevelopmentStatics() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDevelopmentStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDevelopmentStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDevelopmentStatics Function CanPlayerBotsAttack +struct Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics +{ + struct LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor?\n// Will always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true\n" }, +#endif + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor?\nWill always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "CanPlayerBotsAttack", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execCanPlayerBotsAttack) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::CanPlayerBotsAttack(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function CanPlayerBotsAttack + +// Begin Class ULyraDevelopmentStatics Function ShouldLoadCosmeticBackgrounds +struct Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics +{ + struct LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor?\n// Will always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor?\nWill always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "ShouldLoadCosmeticBackgrounds", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execShouldLoadCosmeticBackgrounds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::ShouldLoadCosmeticBackgrounds(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function ShouldLoadCosmeticBackgrounds + +// Begin Class ULyraDevelopmentStatics Function ShouldSkipDirectlyToGameplay +struct Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics +{ + struct LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic skip directly to gameplay (skipping any match warmup / waiting for players / etc... aspects)\n// Will always return false except when playing in the editor and bTestFullGameFlowInPIE (in Lyra Developer Settings) is false\n" }, +#endif + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic skip directly to gameplay (skipping any match warmup / waiting for players / etc... aspects)\nWill always return false except when playing in the editor and bTestFullGameFlowInPIE (in Lyra Developer Settings) is false" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "ShouldSkipDirectlyToGameplay", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execShouldSkipDirectlyToGameplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::ShouldSkipDirectlyToGameplay(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function ShouldSkipDirectlyToGameplay + +// Begin Class ULyraDevelopmentStatics +void ULyraDevelopmentStatics::StaticRegisterNativesULyraDevelopmentStatics() +{ + UClass* Class = ULyraDevelopmentStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanPlayerBotsAttack", &ULyraDevelopmentStatics::execCanPlayerBotsAttack }, + { "ShouldLoadCosmeticBackgrounds", &ULyraDevelopmentStatics::execShouldLoadCosmeticBackgrounds }, + { "ShouldSkipDirectlyToGameplay", &ULyraDevelopmentStatics::execShouldSkipDirectlyToGameplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDevelopmentStatics); +UClass* Z_Construct_UClass_ULyraDevelopmentStatics_NoRegister() +{ + return ULyraDevelopmentStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraDevelopmentStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraDevelopmentStatics.h" }, + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack, "CanPlayerBotsAttack" }, // 4103685777 + { &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds, "ShouldLoadCosmeticBackgrounds" }, // 3933123727 + { &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay, "ShouldSkipDirectlyToGameplay" }, // 748154050 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraDevelopmentStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDevelopmentStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDevelopmentStatics_Statics::ClassParams = { + &ULyraDevelopmentStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDevelopmentStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDevelopmentStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDevelopmentStatics() +{ + if (!Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton, Z_Construct_UClass_ULyraDevelopmentStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDevelopmentStatics::StaticClass(); +} +ULyraDevelopmentStatics::ULyraDevelopmentStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDevelopmentStatics); +ULyraDevelopmentStatics::~ULyraDevelopmentStatics() {} +// End Class ULyraDevelopmentStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDevelopmentStatics, ULyraDevelopmentStatics::StaticClass, TEXT("ULyraDevelopmentStatics"), &Z_Registration_Info_UClass_ULyraDevelopmentStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDevelopmentStatics), 2600899717U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_4060184328(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h new file mode 100644 index 00000000..d6856468 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraDevelopmentStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDevelopmentStatics_generated_h +#error "LyraDevelopmentStatics.generated.h already included, missing '#pragma once' in LyraDevelopmentStatics.h" +#endif +#define LYRAGAME_LyraDevelopmentStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCanPlayerBotsAttack); \ + DECLARE_FUNCTION(execShouldLoadCosmeticBackgrounds); \ + DECLARE_FUNCTION(execShouldSkipDirectlyToGameplay); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDevelopmentStatics(); \ + friend struct Z_Construct_UClass_ULyraDevelopmentStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraDevelopmentStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDevelopmentStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraDevelopmentStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDevelopmentStatics(ULyraDevelopmentStatics&&); \ + ULyraDevelopmentStatics(const ULyraDevelopmentStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDevelopmentStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDevelopmentStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDevelopmentStatics) \ + NO_API virtual ~ULyraDevelopmentStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_16_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp new file mode 100644 index 00000000..ba88bd0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp @@ -0,0 +1,232 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FTransform(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraEquipmentActorToSpawn +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn; +class UScriptStruct* FLyraEquipmentActorToSpawn::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraEquipmentActorToSpawn")); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraEquipmentActorToSpawn::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorToSpawn_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachSocket_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachTransform_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ActorToSpawn; + static const UECodeGen_Private::FNamePropertyParams NewProp_AttachSocket; + static const UECodeGen_Private::FStructPropertyParams NewProp_AttachTransform; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_ActorToSpawn = { "ActorToSpawn", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, ActorToSpawn), Z_Construct_UClass_UClass, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorToSpawn_MetaData), NewProp_ActorToSpawn_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachSocket = { "AttachSocket", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, AttachSocket), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachSocket_MetaData), NewProp_AttachSocket_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachTransform = { "AttachTransform", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, AttachTransform), Z_Construct_UScriptStruct_FTransform, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachTransform_MetaData), NewProp_AttachTransform_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_ActorToSpawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachSocket, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachTransform, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraEquipmentActorToSpawn", + Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers), + sizeof(FLyraEquipmentActorToSpawn), + alignof(FLyraEquipmentActorToSpawn), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton; +} +// End ScriptStruct FLyraEquipmentActorToSpawn + +// Begin Class ULyraEquipmentDefinition +void ULyraEquipmentDefinition::StaticRegisterNativesULyraEquipmentDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentDefinition); +UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister() +{ + return ULyraEquipmentDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraEquipmentDefinition\n *\n * Definition of a piece of equipment that can be applied to a pawn\n */" }, +#endif + { "IncludePath", "Equipment/LyraEquipmentDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraEquipmentDefinition\n\nDefinition of a piece of equipment that can be applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstanceType_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Class to spawn\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Class to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySetsToGrant_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay ability sets to grant when this is equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay ability sets to grant when this is equipped" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorsToSpawn_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Actors to spawn on the pawn when this is equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Actors to spawn on the pawn when this is equipped" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySetsToGrant_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySetsToGrant; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActorsToSpawn_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActorsToSpawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstanceType_MetaData), NewProp_InstanceType_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant_Inner = { "AbilitySetsToGrant", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant = { "AbilitySetsToGrant", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, AbilitySetsToGrant), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySetsToGrant_MetaData), NewProp_AbilitySetsToGrant_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn_Inner = { "ActorsToSpawn", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn, METADATA_PARAMS(0, nullptr) }; // 125030440 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn = { "ActorsToSpawn", nullptr, (EPropertyFlags)0x0010000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, ActorsToSpawn), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorsToSpawn_MetaData), NewProp_ActorsToSpawn_MetaData) }; // 125030440 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::ClassParams = { + &ULyraEquipmentDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers), + 0, + 0x000100A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton, Z_Construct_UClass_ULyraEquipmentDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentDefinition); +ULyraEquipmentDefinition::~ULyraEquipmentDefinition() {} +// End Class ULyraEquipmentDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraEquipmentActorToSpawn::StaticStruct, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewStructOps, TEXT("LyraEquipmentActorToSpawn"), &Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraEquipmentActorToSpawn), 125030440U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentDefinition, ULyraEquipmentDefinition::StaticClass, TEXT("ULyraEquipmentDefinition"), &Z_Registration_Info_UClass_ULyraEquipmentDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentDefinition), 740516705U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_1575900213(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h new file mode 100644 index 00000000..80d2b8f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraEquipmentDefinition_generated_h +#error "LyraEquipmentDefinition.generated.h already included, missing '#pragma once' in LyraEquipmentDefinition.h" +#endif +#define LYRAGAME_LyraEquipmentDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentDefinition(); \ + friend struct Z_Construct_UClass_ULyraEquipmentDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentDefinition, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentDefinition(ULyraEquipmentDefinition&&); \ + ULyraEquipmentDefinition(const ULyraEquipmentDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentDefinition); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentDefinition) \ + NO_API virtual ~ULyraEquipmentDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_37_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp new file mode 100644 index 00000000..ad96d0d3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp @@ -0,0 +1,419 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraEquipmentInstance Function GetInstigator +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics +{ + struct LyraEquipmentInstance_eventGetInstigator_Parms + { + UObject* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UObject interface\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetInstigator_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetInstigator", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::LyraEquipmentInstance_eventGetInstigator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::LyraEquipmentInstance_eventGetInstigator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetInstigator) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UObject**)Z_Param__Result=P_THIS->GetInstigator(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetInstigator + +// Begin Class ULyraEquipmentInstance Function GetPawn +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics +{ + struct LyraEquipmentInstance_eventGetPawn_Parms + { + APawn* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetPawn_Parms, ReturnValue), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetPawn", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::LyraEquipmentInstance_eventGetPawn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::LyraEquipmentInstance_eventGetPawn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetPawn) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(APawn**)Z_Param__Result=P_THIS->GetPawn(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetPawn + +// Begin Class ULyraEquipmentInstance Function GetSpawnedActors +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics +{ + struct LyraEquipmentInstance_eventGetSpawnedActors_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetSpawnedActors_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetSpawnedActors", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::LyraEquipmentInstance_eventGetSpawnedActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::LyraEquipmentInstance_eventGetSpawnedActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetSpawnedActors) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetSpawnedActors(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetSpawnedActors + +// Begin Class ULyraEquipmentInstance Function GetTypedPawn +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics +{ + struct LyraEquipmentInstance_eventGetTypedPawn_Parms + { + TSubclassOf PawnType; + APawn* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DeterminesOutputType", "PawnType" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PawnType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_PawnType = { "PawnType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetTypedPawn_Parms, PawnType), Z_Construct_UClass_UClass, Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetTypedPawn_Parms, ReturnValue), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_PawnType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetTypedPawn", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::LyraEquipmentInstance_eventGetTypedPawn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::LyraEquipmentInstance_eventGetTypedPawn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetTypedPawn) +{ + P_GET_OBJECT(UClass,Z_Param_PawnType); + P_FINISH; + P_NATIVE_BEGIN; + *(APawn**)Z_Param__Result=P_THIS->GetTypedPawn(Z_Param_PawnType); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetTypedPawn + +// Begin Class ULyraEquipmentInstance Function K2_OnEquipped +static const FName NAME_ULyraEquipmentInstance_K2_OnEquipped = FName(TEXT("K2_OnEquipped")); +void ULyraEquipmentInstance::K2_OnEquipped() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraEquipmentInstance_K2_OnEquipped); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DisplayName", "OnEquipped" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "K2_OnEquipped", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraEquipmentInstance Function K2_OnEquipped + +// Begin Class ULyraEquipmentInstance Function K2_OnUnequipped +static const FName NAME_ULyraEquipmentInstance_K2_OnUnequipped = FName(TEXT("K2_OnUnequipped")); +void ULyraEquipmentInstance::K2_OnUnequipped() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraEquipmentInstance_K2_OnUnequipped); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DisplayName", "OnUnequipped" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "K2_OnUnequipped", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraEquipmentInstance Function K2_OnUnequipped + +// Begin Class ULyraEquipmentInstance Function OnRep_Instigator +struct Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "OnRep_Instigator", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execOnRep_Instigator) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Instigator(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function OnRep_Instigator + +// Begin Class ULyraEquipmentInstance +void ULyraEquipmentInstance::StaticRegisterNativesULyraEquipmentInstance() +{ + UClass* Class = ULyraEquipmentInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetInstigator", &ULyraEquipmentInstance::execGetInstigator }, + { "GetPawn", &ULyraEquipmentInstance::execGetPawn }, + { "GetSpawnedActors", &ULyraEquipmentInstance::execGetSpawnedActors }, + { "GetTypedPawn", &ULyraEquipmentInstance::execGetTypedPawn }, + { "OnRep_Instigator", &ULyraEquipmentInstance::execOnRep_Instigator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentInstance); +UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister() +{ + return ULyraEquipmentInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraEquipmentInstance\n *\n * A piece of equipment spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Equipment/LyraEquipmentInstance.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraEquipmentInstance\n\nA piece of equipment spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedActors_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedActors_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SpawnedActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator, "GetInstigator" }, // 2790713788 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn, "GetPawn" }, // 1192323272 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors, "GetSpawnedActors" }, // 1113875159 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn, "GetTypedPawn" }, // 3227741586 + { &Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped, "K2_OnEquipped" }, // 2486391177 + { &Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped, "K2_OnUnequipped" }, // 2112522029 + { &Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator, "OnRep_Instigator" }, // 1734193005 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_Instigator = { "Instigator", "OnRep_Instigator", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentInstance, Instigator), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors_Inner = { "SpawnedActors", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors = { "SpawnedActors", nullptr, (EPropertyFlags)0x0144000000000020, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentInstance, SpawnedActors), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedActors_MetaData), NewProp_SpawnedActors_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::ClassParams = { + &ULyraEquipmentInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentInstance() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton, Z_Construct_UClass_ULyraEquipmentInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentInstance::StaticClass(); +} +void ULyraEquipmentInstance::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Instigator(TEXT("Instigator")); + static const FName Name_SpawnedActors(TEXT("SpawnedActors")); + const bool bIsValid = true + && Name_Instigator == ClassReps[(int32)ENetFields_Private::Instigator].Property->GetFName() + && Name_SpawnedActors == ClassReps[(int32)ENetFields_Private::SpawnedActors].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraEquipmentInstance")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentInstance); +ULyraEquipmentInstance::~ULyraEquipmentInstance() {} +// End Class ULyraEquipmentInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentInstance, ULyraEquipmentInstance::StaticClass, TEXT("ULyraEquipmentInstance"), &Z_Registration_Info_UClass_ULyraEquipmentInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentInstance), 3103249624U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_4113626647(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h new file mode 100644 index 00000000..5f9ac993 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h @@ -0,0 +1,80 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class APawn; +class UObject; +#ifdef LYRAGAME_LyraEquipmentInstance_generated_h +#error "LyraEquipmentInstance.generated.h already included, missing '#pragma once' in LyraEquipmentInstance.h" +#endif +#define LYRAGAME_LyraEquipmentInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_Instigator); \ + DECLARE_FUNCTION(execGetSpawnedActors); \ + DECLARE_FUNCTION(execGetTypedPawn); \ + DECLARE_FUNCTION(execGetPawn); \ + DECLARE_FUNCTION(execGetInstigator); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentInstance(); \ + friend struct Z_Construct_UClass_ULyraEquipmentInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentInstance) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Instigator=NETFIELD_REP_START, \ + SpawnedActors, \ + NETFIELD_REP_END=SpawnedActors }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraEquipmentInstance) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentInstance(ULyraEquipmentInstance&&); \ + ULyraEquipmentInstance(const ULyraEquipmentInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentInstance) \ + NO_API virtual ~ULyraEquipmentInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp new file mode 100644 index 00000000..19da3586 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp @@ -0,0 +1,522 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentManagerComponent.h" +#include "LyraGame/AbilitySystem/LyraAbilitySet.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentList(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAppliedEquipmentEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAppliedEquipmentEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry; +class UScriptStruct* FLyraAppliedEquipmentEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAppliedEquipmentEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAppliedEquipmentEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A single piece of applied equipment */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single piece of applied equipment" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentDefinition_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The equipment class that got equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The equipment class that got equipped" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Authority-only list of granted handles\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Authority-only list of granted handles" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentDefinition_MetaData), NewProp_EquipmentDefinition_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, Instance), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_GrantedHandles = { "GrantedHandles", nullptr, (EPropertyFlags)0x0040008080000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, GrantedHandles), Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedHandles_MetaData), NewProp_GrantedHandles_MetaData) }; // 3322214549 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_EquipmentDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_GrantedHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraAppliedEquipmentEntry", + Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers), + sizeof(FLyraAppliedEquipmentEntry), + alignof(FLyraAppliedEquipmentEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton; +} +// End ScriptStruct FLyraAppliedEquipmentEntry + +// Begin ScriptStruct FLyraEquipmentList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraEquipmentList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraEquipmentList; +class UScriptStruct* FLyraEquipmentList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraEquipmentList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraEquipmentList")); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraEquipmentList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraEquipmentList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraEquipmentList); +#endif +struct Z_Construct_UScriptStruct_FLyraEquipmentList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of applied equipment */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of applied equipment" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of equipment entries\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of equipment entries" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry, METADATA_PARAMS(0, nullptr) }; // 3484684559 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 3484684559 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentList, OwnerComponent), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraEquipmentList", + Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers), + sizeof(FLyraEquipmentList), + alignof(FLyraEquipmentList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton, Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton; +} +// End ScriptStruct FLyraEquipmentList + +// Begin Class ULyraEquipmentManagerComponent Function EquipItem +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics +{ + struct LyraEquipmentManagerComponent_eventEquipItem_Parms + { + TSubclassOf EquipmentDefinition; + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventEquipItem_Parms, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventEquipItem_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_EquipmentDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "EquipItem", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::LyraEquipmentManagerComponent_eventEquipItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::LyraEquipmentManagerComponent_eventEquipItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execEquipItem) +{ + P_GET_OBJECT(UClass,Z_Param_EquipmentDefinition); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->EquipItem(Z_Param_EquipmentDefinition); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function EquipItem + +// Begin Class ULyraEquipmentManagerComponent Function GetEquipmentInstancesOfType +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics +{ + struct LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms + { + TSubclassOf InstanceType; + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns all equipped instances of a given type, or an empty array if none are found */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns all equipped instances of a given type, or an empty array if none are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "GetEquipmentInstancesOfType", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execGetEquipmentInstancesOfType) +{ + P_GET_OBJECT(UClass,Z_Param_InstanceType); + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetEquipmentInstancesOfType(Z_Param_InstanceType); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function GetEquipmentInstancesOfType + +// Begin Class ULyraEquipmentManagerComponent Function GetFirstInstanceOfType +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics +{ + struct LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms + { + TSubclassOf InstanceType; + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the first equipped instance of a given type, or nullptr if none are found */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the first equipped instance of a given type, or nullptr if none are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "GetFirstInstanceOfType", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execGetFirstInstanceOfType) +{ + P_GET_OBJECT(UClass,Z_Param_InstanceType); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->GetFirstInstanceOfType(Z_Param_InstanceType); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function GetFirstInstanceOfType + +// Begin Class ULyraEquipmentManagerComponent Function UnequipItem +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics +{ + struct LyraEquipmentManagerComponent_eventUnequipItem_Parms + { + ULyraEquipmentInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventUnequipItem_Parms, ItemInstance), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "UnequipItem", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::LyraEquipmentManagerComponent_eventUnequipItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::LyraEquipmentManagerComponent_eventUnequipItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execUnequipItem) +{ + P_GET_OBJECT(ULyraEquipmentInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnequipItem(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function UnequipItem + +// Begin Class ULyraEquipmentManagerComponent +void ULyraEquipmentManagerComponent::StaticRegisterNativesULyraEquipmentManagerComponent() +{ + UClass* Class = ULyraEquipmentManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "EquipItem", &ULyraEquipmentManagerComponent::execEquipItem }, + { "GetEquipmentInstancesOfType", &ULyraEquipmentManagerComponent::execGetEquipmentInstancesOfType }, + { "GetFirstInstanceOfType", &ULyraEquipmentManagerComponent::execGetFirstInstanceOfType }, + { "UnequipItem", &ULyraEquipmentManagerComponent::execUnequipItem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentManagerComponent); +UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent_NoRegister() +{ + return ULyraEquipmentManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manages equipment applied to a pawn\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Equipment/LyraEquipmentManagerComponent.h" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manages equipment applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentList_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EquipmentList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem, "EquipItem" }, // 2559626297 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType, "GetEquipmentInstancesOfType" }, // 2246725947 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType, "GetFirstInstanceOfType" }, // 4237005983 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem, "UnequipItem" }, // 664167058 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::NewProp_EquipmentList = { "EquipmentList", nullptr, (EPropertyFlags)0x0040008000000030, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentManagerComponent, EquipmentList), Z_Construct_UScriptStruct_FLyraEquipmentList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentList_MetaData), NewProp_EquipmentList_MetaData) }; // 1014251434 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::NewProp_EquipmentList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::ClassParams = { + &ULyraEquipmentManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers), + 0, + 0x00B100A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentManagerComponent::StaticClass(); +} +void ULyraEquipmentManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_EquipmentList(TEXT("EquipmentList")); + const bool bIsValid = true + && Name_EquipmentList == ClassReps[(int32)ENetFields_Private::EquipmentList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraEquipmentManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentManagerComponent); +ULyraEquipmentManagerComponent::~ULyraEquipmentManagerComponent() {} +// End Class ULyraEquipmentManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAppliedEquipmentEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewStructOps, TEXT("LyraAppliedEquipmentEntry"), &Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAppliedEquipmentEntry), 3484684559U) }, + { FLyraEquipmentList::StaticStruct, Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewStructOps, TEXT("LyraEquipmentList"), &Z_Registration_Info_UScriptStruct_LyraEquipmentList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraEquipmentList), 1014251434U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentManagerComponent, ULyraEquipmentManagerComponent::StaticClass, TEXT("ULyraEquipmentManagerComponent"), &Z_Registration_Info_UClass_ULyraEquipmentManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentManagerComponent), 445075383U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_398427944(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h new file mode 100644 index 00000000..8c3900a0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h @@ -0,0 +1,88 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraEquipmentDefinition; +class ULyraEquipmentInstance; +#ifdef LYRAGAME_LyraEquipmentManagerComponent_generated_h +#error "LyraEquipmentManagerComponent.generated.h already included, missing '#pragma once' in LyraEquipmentManagerComponent.h" +#endif +#define LYRAGAME_LyraEquipmentManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_26_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_53_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraEquipmentList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraEquipmentList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetEquipmentInstancesOfType); \ + DECLARE_FUNCTION(execGetFirstInstanceOfType); \ + DECLARE_FUNCTION(execUnequipItem); \ + DECLARE_FUNCTION(execEquipItem); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentManagerComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentManagerComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + EquipmentList=NETFIELD_REP_START, \ + NETFIELD_REP_END=EquipmentList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentManagerComponent(ULyraEquipmentManagerComponent&&); \ + ULyraEquipmentManagerComponent(const ULyraEquipmentManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentManagerComponent) \ + NO_API virtual ~ULyraEquipmentManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_112_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp new file mode 100644 index 00000000..00f1873e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp @@ -0,0 +1,146 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceActionSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceActionSet() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceActionSet +void ULyraExperienceActionSet::StaticRegisterNativesULyraExperienceActionSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceActionSet); +UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister() +{ + return ULyraExperienceActionSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceActionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Definition of a set of actions to perform as part of entering an experience\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceActionSet.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Definition of a set of actions to perform as part of entering an experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_Inner_MetaData[] = { + { "Category", "Actions to Perform" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_MetaData[] = { + { "Category", "Actions to Perform" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameFeaturesToEnable_MetaData[] = { + { "Category", "Feature Dependencies" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of Game Feature Plugins this experience wants to have active\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of Game Feature Plugins this experience wants to have active" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Actions; + static const UECodeGen_Private::FStrPropertyParams NewProp_GameFeaturesToEnable_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameFeaturesToEnable; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions_Inner = { "Actions", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameFeatureAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_Inner_MetaData), NewProp_Actions_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions = { "Actions", nullptr, (EPropertyFlags)0x0114008000000009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceActionSet, Actions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_MetaData), NewProp_Actions_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable_Inner = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceActionSet, GameFeaturesToEnable), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameFeaturesToEnable_MetaData), NewProp_GameFeaturesToEnable_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceActionSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::ClassParams = { + &ULyraExperienceActionSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceActionSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceActionSet() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton, Z_Construct_UClass_ULyraExperienceActionSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceActionSet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceActionSet); +ULyraExperienceActionSet::~ULyraExperienceActionSet() {} +// End Class ULyraExperienceActionSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceActionSet, ULyraExperienceActionSet::StaticClass, TEXT("ULyraExperienceActionSet"), &Z_Registration_Info_UClass_ULyraExperienceActionSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceActionSet), 4055757052U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_1260607070(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h new file mode 100644 index 00000000..b737299e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceActionSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceActionSet_generated_h +#error "LyraExperienceActionSet.generated.h already included, missing '#pragma once' in LyraExperienceActionSet.h" +#endif +#define LYRAGAME_LyraExperienceActionSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceActionSet(); \ + friend struct Z_Construct_UClass_ULyraExperienceActionSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceActionSet, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceActionSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceActionSet(ULyraExperienceActionSet&&); \ + ULyraExperienceActionSet(const ULyraExperienceActionSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceActionSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceActionSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceActionSet) \ + NO_API virtual ~ULyraExperienceActionSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp new file mode 100644 index 00000000..3fffcfbc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp @@ -0,0 +1,178 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceDefinition() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceDefinition +void ULyraExperienceDefinition::StaticRegisterNativesULyraExperienceDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceDefinition); +UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister() +{ + return ULyraExperienceDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Definition of an experience\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceDefinition.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Definition of an experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameFeaturesToEnable_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of Game Feature Plugins this experience wants to have active\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of Game Feature Plugins this experience wants to have active" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPawnData_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The default pawn class to spawn for players *///@TODO: Make soft?\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default pawn class to spawn for players //@TODO: Make soft?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_Inner_MetaData[] = { + { "Category", "Actions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_MetaData[] = { + { "Category", "Actions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionSets_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of additional action sets to compose into this experience\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of additional action sets to compose into this experience" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_GameFeaturesToEnable_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameFeaturesToEnable; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultPawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Actions; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActionSets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActionSets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable_Inner = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0010000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, GameFeaturesToEnable), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameFeaturesToEnable_MetaData), NewProp_GameFeaturesToEnable_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_DefaultPawnData = { "DefaultPawnData", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, DefaultPawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPawnData_MetaData), NewProp_DefaultPawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions_Inner = { "Actions", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameFeatureAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_Inner_MetaData), NewProp_Actions_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions = { "Actions", nullptr, (EPropertyFlags)0x0114008000010019, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, Actions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_MetaData), NewProp_Actions_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets_Inner = { "ActionSets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraExperienceActionSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets = { "ActionSets", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, ActionSets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionSets_MetaData), NewProp_ActionSets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_DefaultPawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::ClassParams = { + &ULyraExperienceDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers), + 0, + 0x008100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton, Z_Construct_UClass_ULyraExperienceDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceDefinition); +ULyraExperienceDefinition::~ULyraExperienceDefinition() {} +// End Class ULyraExperienceDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceDefinition, ULyraExperienceDefinition::StaticClass, TEXT("ULyraExperienceDefinition"), &Z_Registration_Info_UClass_ULyraExperienceDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceDefinition), 1947259723U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_530867882(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h new file mode 100644 index 00000000..b43b15c3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceDefinition_generated_h +#error "LyraExperienceDefinition.generated.h already included, missing '#pragma once' in LyraExperienceDefinition.h" +#endif +#define LYRAGAME_LyraExperienceDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceDefinition(); \ + friend struct Z_Construct_UClass_ULyraExperienceDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceDefinition, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceDefinition(ULyraExperienceDefinition&&); \ + ULyraExperienceDefinition(const ULyraExperienceDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceDefinition); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceDefinition) \ + NO_API virtual ~ULyraExperienceDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp new file mode 100644 index 00000000..757e8f2a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UEngineSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceManager +void ULyraExperienceManager::StaticRegisterNativesULyraExperienceManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceManager); +UClass* Z_Construct_UClass_ULyraExperienceManager_NoRegister() +{ + return ULyraExperienceManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manager for experiences - primarily for arbitration between multiple PIE sessions\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceManager.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manager for experiences - primarily for arbitration between multiple PIE sessions" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraExperienceManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEngineSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceManager_Statics::ClassParams = { + &ULyraExperienceManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceManager() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton, Z_Construct_UClass_ULyraExperienceManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceManager::StaticClass(); +} +ULyraExperienceManager::ULyraExperienceManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceManager); +ULyraExperienceManager::~ULyraExperienceManager() {} +// End Class ULyraExperienceManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceManager, ULyraExperienceManager::StaticClass, TEXT("ULyraExperienceManager"), &Z_Registration_Info_UClass_ULyraExperienceManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceManager), 3492659886U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_702102588(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.generated.h new file mode 100644 index 00000000..88453924 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceManager_generated_h +#error "LyraExperienceManager.generated.h already included, missing '#pragma once' in LyraExperienceManager.h" +#endif +#define LYRAGAME_LyraExperienceManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceManager(); \ + friend struct Z_Construct_UClass_ULyraExperienceManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceManager, UEngineSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraExperienceManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraExperienceManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceManager(ULyraExperienceManager&&); \ + ULyraExperienceManager(const ULyraExperienceManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraExperienceManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceManager) \ + LYRAGAME_API virtual ~ULyraExperienceManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp new file mode 100644 index 00000000..b4333621 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp @@ -0,0 +1,154 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceManagerComponent() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceManagerComponent Function OnRep_CurrentExperience +struct Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraExperienceManagerComponent, nullptr, "OnRep_CurrentExperience", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraExperienceManagerComponent::execOnRep_CurrentExperience) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_CurrentExperience(); + P_NATIVE_END; +} +// End Class ULyraExperienceManagerComponent Function OnRep_CurrentExperience + +// Begin Class ULyraExperienceManagerComponent +void ULyraExperienceManagerComponent::StaticRegisterNativesULyraExperienceManagerComponent() +{ + UClass* Class = ULyraExperienceManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_CurrentExperience", &ULyraExperienceManagerComponent::execOnRep_CurrentExperience }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceManagerComponent); +UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister() +{ + return ULyraExperienceManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentExperience_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "NativeConstTemplateArg", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentExperience; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience, "OnRep_CurrentExperience" }, // 4097387189 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::NewProp_CurrentExperience = { "CurrentExperience", "OnRep_CurrentExperience", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceManagerComponent, CurrentExperience), Z_Construct_UClass_ULyraExperienceDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentExperience_MetaData), NewProp_CurrentExperience_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::NewProp_CurrentExperience, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraExperienceManagerComponent, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::ClassParams = { + &ULyraExperienceManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceManagerComponent::StaticClass(); +} +void ULyraExperienceManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_CurrentExperience(TEXT("CurrentExperience")); + const bool bIsValid = true + && Name_CurrentExperience == ClassReps[(int32)ENetFields_Private::CurrentExperience].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraExperienceManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceManagerComponent); +ULyraExperienceManagerComponent::~ULyraExperienceManagerComponent() {} +// End Class ULyraExperienceManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceManagerComponent, ULyraExperienceManagerComponent::StaticClass, TEXT("ULyraExperienceManagerComponent"), &Z_Registration_Info_UClass_ULyraExperienceManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceManagerComponent), 3363878492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_1622901189(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h new file mode 100644 index 00000000..39f5f73f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceManagerComponent_generated_h +#error "LyraExperienceManagerComponent.generated.h already included, missing '#pragma once' in LyraExperienceManagerComponent.h" +#endif +#define LYRAGAME_LyraExperienceManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_CurrentExperience); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraExperienceManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceManagerComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + CurrentExperience=NETFIELD_REP_START, \ + NETFIELD_REP_END=CurrentExperience }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceManagerComponent(ULyraExperienceManagerComponent&&); \ + ULyraExperienceManagerComponent(const ULyraExperienceManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraExperienceManagerComponent) \ + NO_API virtual ~ULyraExperienceManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_27_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp new file mode 100644 index 00000000..c3e30167 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp @@ -0,0 +1,204 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/LyraFrontendStateComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraFrontendStateComponent() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraFrontendStateComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraFrontendStateComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraFrontendStateComponent Function OnUserInitialized +struct Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics +{ + struct LyraFrontendStateComponent_eventOnUserInitialized_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraFrontendStateComponent_eventOnUserInitialized_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraFrontendStateComponent_eventOnUserInitialized_Parms), &Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraFrontendStateComponent, nullptr, "OnUserInitialized", nullptr, nullptr, Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::LyraFrontendStateComponent_eventOnUserInitialized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::LyraFrontendStateComponent_eventOnUserInitialized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraFrontendStateComponent::execOnUserInitialized) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnUserInitialized(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class ULyraFrontendStateComponent Function OnUserInitialized + +// Begin Class ULyraFrontendStateComponent +void ULyraFrontendStateComponent::StaticRegisterNativesULyraFrontendStateComponent() +{ + UClass* Class = ULyraFrontendStateComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnUserInitialized", &ULyraFrontendStateComponent::execOnUserInitialized }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraFrontendStateComponent); +UClass* Z_Construct_UClass_ULyraFrontendStateComponent_NoRegister() +{ + return ULyraFrontendStateComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraFrontendStateComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PressStartScreenClass_MetaData[] = { + { "Category", "UI" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MainScreenClass_MetaData[] = { + { "Category", "UI" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_PressStartScreenClass; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_MainScreenClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized, "OnUserInitialized" }, // 191081245 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_PressStartScreenClass = { "PressStartScreenClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraFrontendStateComponent, PressStartScreenClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PressStartScreenClass_MetaData), NewProp_PressStartScreenClass_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_MainScreenClass = { "MainScreenClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraFrontendStateComponent, MainScreenClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MainScreenClass_MetaData), NewProp_MainScreenClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_PressStartScreenClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_MainScreenClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraFrontendStateComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraFrontendStateComponent, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::ClassParams = { + &ULyraFrontendStateComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraFrontendStateComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraFrontendStateComponent() +{ + if (!Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton, Z_Construct_UClass_ULyraFrontendStateComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraFrontendStateComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraFrontendStateComponent); +ULyraFrontendStateComponent::~ULyraFrontendStateComponent() {} +// End Class ULyraFrontendStateComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraFrontendStateComponent, ULyraFrontendStateComponent::StaticClass, TEXT("ULyraFrontendStateComponent"), &Z_Registration_Info_UClass_ULyraFrontendStateComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraFrontendStateComponent), 284612570U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_598321021(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h new file mode 100644 index 00000000..42e6a342 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/LyraFrontendStateComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +#ifdef LYRAGAME_LyraFrontendStateComponent_generated_h +#error "LyraFrontendStateComponent.generated.h already included, missing '#pragma once' in LyraFrontendStateComponent.h" +#endif +#define LYRAGAME_LyraFrontendStateComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnUserInitialized); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraFrontendStateComponent(); \ + friend struct Z_Construct_UClass_ULyraFrontendStateComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraFrontendStateComponent, UGameStateComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraFrontendStateComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraFrontendStateComponent(ULyraFrontendStateComponent&&); \ + ULyraFrontendStateComponent(const ULyraFrontendStateComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraFrontendStateComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraFrontendStateComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraFrontendStateComponent) \ + NO_API virtual ~ULyraFrontendStateComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGame.init.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGame.init.gen.cpp new file mode 100644 index 00000000..250d604a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGame.init.gen.cpp @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGame_init() {} + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LyraGame; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LyraGame() + { + if (!Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/LyraGame", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xE0BE2CA1, + 0x6B9D6B2C, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LyraGame(Z_Construct_UPackage__Script_LyraGame, TEXT("/Script/LyraGame"), Z_Registration_Info_UPackage__Script_LyraGame, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE0BE2CA1, 0x6B9D6B2C)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameClasses.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.gen.cpp new file mode 100644 index 00000000..bc50764d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.gen.cpp @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameData +void ULyraGameData::StaticRegisterNativesULyraGameData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameData); +UClass* Z_Construct_UClass_ULyraGameData_NoRegister() +{ + return ULyraGameData::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameData\n *\n *\x09Non-mutable data asset that contains global game data.\n */" }, +#endif + { "DisplayName", "Lyra Game Data" }, + { "IncludePath", "System/LyraGameData.h" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, + { "ShortTooltip", "Data asset containing global game data." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameData\n\n Non-mutable data asset that contains global game data." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DamageGameplayEffect_SetByCaller_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to apply damage. Uses SetByCaller for the damage magnitude.\n" }, +#endif + { "DisplayName", "Damage Gameplay Effect (SetByCaller)" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to apply damage. Uses SetByCaller for the damage magnitude." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealGameplayEffect_SetByCaller_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to apply healing. Uses SetByCaller for the healing magnitude.\n" }, +#endif + { "DisplayName", "Heal Gameplay Effect (SetByCaller)" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to apply healing. Uses SetByCaller for the healing magnitude." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DynamicTagGameplayEffect_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to add and remove dynamic tags.\n" }, +#endif + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to add and remove dynamic tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DamageGameplayEffect_SetByCaller; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_HealGameplayEffect_SetByCaller; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DynamicTagGameplayEffect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_DamageGameplayEffect_SetByCaller = { "DamageGameplayEffect_SetByCaller", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, DamageGameplayEffect_SetByCaller), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DamageGameplayEffect_SetByCaller_MetaData), NewProp_DamageGameplayEffect_SetByCaller_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_HealGameplayEffect_SetByCaller = { "HealGameplayEffect_SetByCaller", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, HealGameplayEffect_SetByCaller), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealGameplayEffect_SetByCaller_MetaData), NewProp_HealGameplayEffect_SetByCaller_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_DynamicTagGameplayEffect = { "DynamicTagGameplayEffect", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, DynamicTagGameplayEffect), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DynamicTagGameplayEffect_MetaData), NewProp_DynamicTagGameplayEffect_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_DamageGameplayEffect_SetByCaller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_HealGameplayEffect_SetByCaller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_DynamicTagGameplayEffect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameData_Statics::ClassParams = { + &ULyraGameData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameData() +{ + if (!Z_Registration_Info_UClass_ULyraGameData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameData.OuterSingleton, Z_Construct_UClass_ULyraGameData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameData); +ULyraGameData::~ULyraGameData() {} +// End Class ULyraGameData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameData, ULyraGameData::StaticClass, TEXT("ULyraGameData"), &Z_Registration_Info_UClass_ULyraGameData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameData), 953686270U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_1472322684(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.generated.h new file mode 100644 index 00000000..6788a651 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameData_generated_h +#error "LyraGameData.generated.h already included, missing '#pragma once' in LyraGameData.h" +#endif +#define LYRAGAME_LyraGameData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameData(); \ + friend struct Z_Construct_UClass_ULyraGameData_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameData) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameData(ULyraGameData&&); \ + ULyraGameData(const ULyraGameData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameData); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameData) \ + NO_API virtual ~ULyraGameData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp new file mode 100644 index 00000000..ffb05970 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameEngine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameEngine() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameEngine(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameEngine(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameEngine_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameEngine +void ULyraGameEngine::StaticRegisterNativesULyraGameEngine() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameEngine); +UClass* Z_Construct_UClass_ULyraGameEngine_NoRegister() +{ + return ULyraGameEngine::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameEngine_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraGameEngine.h" }, + { "ModuleRelativePath", "System/LyraGameEngine.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameEngine_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameEngine, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameEngine_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameEngine_Statics::ClassParams = { + &ULyraGameEngine::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000AEu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameEngine_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameEngine_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameEngine() +{ + if (!Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton, Z_Construct_UClass_ULyraGameEngine_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameEngine::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameEngine); +ULyraGameEngine::~ULyraGameEngine() {} +// End Class ULyraGameEngine + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameEngine, ULyraGameEngine::StaticClass, TEXT("ULyraGameEngine"), &Z_Registration_Info_UClass_ULyraGameEngine, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameEngine), 4029335229U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_3738857720(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.generated.h new file mode 100644 index 00000000..0be2dfd5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameEngine.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameEngine.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameEngine_generated_h +#error "LyraGameEngine.generated.h already included, missing '#pragma once' in LyraGameEngine.h" +#endif +#define LYRAGAME_LyraGameEngine_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameEngine(); \ + friend struct Z_Construct_UClass_ULyraGameEngine_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameEngine, UGameEngine, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameEngine) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameEngine(ULyraGameEngine&&); \ + ULyraGameEngine(const ULyraGameEngine&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameEngine); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameEngine); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameEngine) \ + NO_API virtual ~ULyraGameEngine(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp new file mode 100644 index 00000000..c2e89509 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp @@ -0,0 +1,259 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/LyraGameFeaturePolicy.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameFeaturePolicy() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UDefaultGameFeaturesProjectPolicies(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeaturePolicy(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeaturePolicy_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameFeaturePolicy +void ULyraGameFeaturePolicy::StaticRegisterNativesULyraGameFeaturePolicy() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeaturePolicy); +UClass* Z_Construct_UClass_ULyraGameFeaturePolicy_NoRegister() +{ + return ULyraGameFeaturePolicy::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeaturePolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manager to keep track of the state machines that bring a game feature plugin into memory and active\n * This class discovers plugins either that are built-in and distributed with the game or are reported externally (i.e. by a web service or other endpoint)\n */" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manager to keep track of the state machines that bring a game feature plugin into memory and active\nThis class discovers plugins either that are built-in and distributed with the game or are reported externally (i.e. by a web service or other endpoint)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Observers_MetaData[] = { + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Observers_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Observers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers_Inner = { "Observers", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers = { "Observers", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameFeaturePolicy, Observers), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Observers_MetaData), NewProp_Observers_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDefaultGameFeaturesProjectPolicies, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::ClassParams = { + &ULyraGameFeaturePolicy::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeaturePolicy() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton, Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeaturePolicy::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeaturePolicy); +ULyraGameFeaturePolicy::~ULyraGameFeaturePolicy() {} +// End Class ULyraGameFeaturePolicy + +// Begin Class ULyraGameFeature_HotfixManager +void ULyraGameFeature_HotfixManager::StaticRegisterNativesULyraGameFeature_HotfixManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeature_HotfixManager); +UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager_NoRegister() +{ + return ULyraGameFeature_HotfixManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// checked\n" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "checked" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister, (int32)VTABLE_OFFSET(ULyraGameFeature_HotfixManager, IGameFeatureStateChangeObserver), false }, // 487324916 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::ClassParams = { + &ULyraGameFeature_HotfixManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton, Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeature_HotfixManager::StaticClass(); +} +ULyraGameFeature_HotfixManager::ULyraGameFeature_HotfixManager(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeature_HotfixManager); +ULyraGameFeature_HotfixManager::~ULyraGameFeature_HotfixManager() {} +// End Class ULyraGameFeature_HotfixManager + +// Begin Class ULyraGameFeature_AddGameplayCuePaths +void ULyraGameFeature_AddGameplayCuePaths::StaticRegisterNativesULyraGameFeature_AddGameplayCuePaths() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeature_AddGameplayCuePaths); +UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_NoRegister() +{ + return ULyraGameFeature_AddGameplayCuePaths::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// checked\n" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "checked" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister, (int32)VTABLE_OFFSET(ULyraGameFeature_AddGameplayCuePaths, IGameFeatureStateChangeObserver), false }, // 487324916 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::ClassParams = { + &ULyraGameFeature_AddGameplayCuePaths::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton, Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeature_AddGameplayCuePaths::StaticClass(); +} +ULyraGameFeature_AddGameplayCuePaths::ULyraGameFeature_AddGameplayCuePaths(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeature_AddGameplayCuePaths); +ULyraGameFeature_AddGameplayCuePaths::~ULyraGameFeature_AddGameplayCuePaths() {} +// End Class ULyraGameFeature_AddGameplayCuePaths + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameFeaturePolicy, ULyraGameFeaturePolicy::StaticClass, TEXT("ULyraGameFeaturePolicy"), &Z_Registration_Info_UClass_ULyraGameFeaturePolicy, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeaturePolicy), 4110007641U) }, + { Z_Construct_UClass_ULyraGameFeature_HotfixManager, ULyraGameFeature_HotfixManager::StaticClass, TEXT("ULyraGameFeature_HotfixManager"), &Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeature_HotfixManager), 114562789U) }, + { Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths, ULyraGameFeature_AddGameplayCuePaths::StaticClass, TEXT("ULyraGameFeature_AddGameplayCuePaths"), &Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeature_AddGameplayCuePaths), 65435744U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_3864838416(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h new file mode 100644 index 00000000..5b02b7b6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/LyraGameFeaturePolicy.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameFeaturePolicy_generated_h +#error "LyraGameFeaturePolicy.generated.h already included, missing '#pragma once' in LyraGameFeaturePolicy.h" +#endif +#define LYRAGAME_LyraGameFeaturePolicy_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeaturePolicy(); \ + friend struct Z_Construct_UClass_ULyraGameFeaturePolicy_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeaturePolicy, UDefaultGameFeaturesProjectPolicies, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraGameFeaturePolicy) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeaturePolicy(ULyraGameFeaturePolicy&&); \ + ULyraGameFeaturePolicy(const ULyraGameFeaturePolicy&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraGameFeaturePolicy); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeaturePolicy); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeaturePolicy) \ + LYRAGAME_API virtual ~ULyraGameFeaturePolicy(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeature_HotfixManager(); \ + friend struct Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeature_HotfixManager, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameFeature_HotfixManager) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameFeature_HotfixManager(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeature_HotfixManager(ULyraGameFeature_HotfixManager&&); \ + ULyraGameFeature_HotfixManager(const ULyraGameFeature_HotfixManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameFeature_HotfixManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeature_HotfixManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeature_HotfixManager) \ + NO_API virtual ~ULyraGameFeature_HotfixManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeature_AddGameplayCuePaths(); \ + friend struct Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeature_AddGameplayCuePaths, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameFeature_AddGameplayCuePaths) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameFeature_AddGameplayCuePaths(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeature_AddGameplayCuePaths(ULyraGameFeature_AddGameplayCuePaths&&); \ + ULyraGameFeature_AddGameplayCuePaths(const ULyraGameFeature_AddGameplayCuePaths&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameFeature_AddGameplayCuePaths); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeature_AddGameplayCuePaths); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeature_AddGameplayCuePaths) \ + NO_API virtual ~ULyraGameFeature_AddGameplayCuePaths(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_55_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp new file mode 100644 index 00000000..f6d0ba83 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameInstance() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameInstance +void ULyraGameInstance::StaticRegisterNativesULyraGameInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameInstance); +UClass* Z_Construct_UClass_ULyraGameInstance_NoRegister() +{ + return ULyraGameInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraGameInstance.h" }, + { "ModuleRelativePath", "System/LyraGameInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameInstance_Statics::ClassParams = { + &ULyraGameInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameInstance() +{ + if (!Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton, Z_Construct_UClass_ULyraGameInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameInstance); +ULyraGameInstance::~ULyraGameInstance() {} +// End Class ULyraGameInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameInstance, ULyraGameInstance::StaticClass, TEXT("ULyraGameInstance"), &Z_Registration_Info_UClass_ULyraGameInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameInstance), 3731891058U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_2251477346(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.generated.h new file mode 100644 index 00000000..c51e2dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameInstance.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameInstance_generated_h +#error "LyraGameInstance.generated.h already included, missing '#pragma once' in LyraGameInstance.h" +#endif +#define LYRAGAME_LyraGameInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameInstance(); \ + friend struct Z_Construct_UClass_ULyraGameInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameInstance, UCommonGameInstance, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameInstance) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameInstance(ULyraGameInstance&&); \ + ULyraGameInstance(const ULyraGameInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameInstance) \ + NO_API virtual ~ULyraGameInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.gen.cpp new file mode 100644 index 00000000..d27a7b9a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.gen.cpp @@ -0,0 +1,306 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraGameMode.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameMode() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameMode Function GetPawnDataForController +struct Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics +{ + struct LyraGameMode_eventGetPawnDataForController_Parms + { + const AController* InController; + const ULyraPawnData* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InController_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_InController = { "InController", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventGetPawnDataForController_Parms, InController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InController_MetaData), NewProp_InController_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventGetPawnDataForController_Parms, ReturnValue), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_InController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "GetPawnDataForController", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::LyraGameMode_eventGetPawnDataForController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::LyraGameMode_eventGetPawnDataForController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execGetPawnDataForController) +{ + P_GET_OBJECT(AController,Z_Param_InController); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraPawnData**)Z_Param__Result=P_THIS->GetPawnDataForController(Z_Param_InController); + P_NATIVE_END; +} +// End Class ALyraGameMode Function GetPawnDataForController + +// Begin Class ALyraGameMode Function OnUserInitializedForDedicatedServer +struct Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics +{ + struct LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms), &Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "OnUserInitializedForDedicatedServer", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execOnUserInitializedForDedicatedServer) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnUserInitializedForDedicatedServer(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class ALyraGameMode Function OnUserInitializedForDedicatedServer + +// Begin Class ALyraGameMode Function RequestPlayerRestartNextFrame +struct Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics +{ + struct LyraGameMode_eventRequestPlayerRestartNextFrame_Parms + { + AController* Controller; + bool bForceReset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Restart (respawn) the specified player or bot next frame\n// - If bForceReset is true, the controller will be reset this frame (abandoning the currently possessed pawn, if any)\n" }, +#endif + { "CPP_Default_bForceReset", "false" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Restart (respawn) the specified player or bot next frame\n- If bForceReset is true, the controller will be reset this frame (abandoning the currently possessed pawn, if any)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Controller; + static void NewProp_bForceReset_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bForceReset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_Controller = { "Controller", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventRequestPlayerRestartNextFrame_Parms, Controller), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset_SetBit(void* Obj) +{ + ((LyraGameMode_eventRequestPlayerRestartNextFrame_Parms*)Obj)->bForceReset = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset = { "bForceReset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameMode_eventRequestPlayerRestartNextFrame_Parms), &Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_Controller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "RequestPlayerRestartNextFrame", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::LyraGameMode_eventRequestPlayerRestartNextFrame_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::LyraGameMode_eventRequestPlayerRestartNextFrame_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execRequestPlayerRestartNextFrame) +{ + P_GET_OBJECT(AController,Z_Param_Controller); + P_GET_UBOOL(Z_Param_bForceReset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RequestPlayerRestartNextFrame(Z_Param_Controller,Z_Param_bForceReset); + P_NATIVE_END; +} +// End Class ALyraGameMode Function RequestPlayerRestartNextFrame + +// Begin Class ALyraGameMode +void ALyraGameMode::StaticRegisterNativesALyraGameMode() +{ + UClass* Class = ALyraGameMode::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPawnDataForController", &ALyraGameMode::execGetPawnDataForController }, + { "OnUserInitializedForDedicatedServer", &ALyraGameMode::execOnUserInitializedForDedicatedServer }, + { "RequestPlayerRestartNextFrame", &ALyraGameMode::execRequestPlayerRestartNextFrame }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameMode); +UClass* Z_Construct_UClass_ALyraGameMode_NoRegister() +{ + return ALyraGameMode::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraGameMode\n *\n *\x09The base game mode class used by this project.\n */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "GameModes/LyraGameMode.h" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base game mode class used by this project." }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraGameMode\n\n The base game mode class used by this project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController, "GetPawnDataForController" }, // 1357452646 + { &Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer, "OnUserInitializedForDedicatedServer" }, // 3591449817 + { &Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame, "RequestPlayerRestartNextFrame" }, // 380837510 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraGameMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularGameModeBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameMode_Statics::ClassParams = { + &ALyraGameMode::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameMode_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameMode() +{ + if (!Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton, Z_Construct_UClass_ALyraGameMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameMode); +ALyraGameMode::~ALyraGameMode() {} +// End Class ALyraGameMode + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameMode, ALyraGameMode::StaticClass, TEXT("ALyraGameMode"), &Z_Registration_Info_UClass_ALyraGameMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameMode), 2350183155U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_92523888(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.generated.h new file mode 100644 index 00000000..b566e9e1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameMode.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraGameMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class UCommonUserInfo; +class ULyraPawnData; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +#ifdef LYRAGAME_LyraGameMode_generated_h +#error "LyraGameMode.generated.h already included, missing '#pragma once' in LyraGameMode.h" +#endif +#define LYRAGAME_LyraGameMode_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnUserInitializedForDedicatedServer); \ + DECLARE_FUNCTION(execRequestPlayerRestartNextFrame); \ + DECLARE_FUNCTION(execGetPawnDataForController); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameMode(); \ + friend struct Z_Construct_UClass_ALyraGameMode_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameMode, AModularGameModeBase, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameMode) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameMode(ALyraGameMode&&); \ + ALyraGameMode(const ALyraGameMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameMode); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameMode) \ + NO_API virtual ~ALyraGameMode(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_34_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp new file mode 100644 index 00000000..33d8b1f0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Phases/LyraGamePhaseAbility.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGamePhaseAbility() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGamePhaseAbility +void ULyraGamePhaseAbility::StaticRegisterNativesULyraGamePhaseAbility() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGamePhaseAbility); +UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister() +{ + return ULyraGamePhaseAbility::StaticClass(); +} +struct Z_Construct_UClass_ULyraGamePhaseAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGamePhaseAbility\n *\n * The base gameplay ability for any ability that is used to change the active game phase.\n */" }, +#endif + { "HideCategories", "Input Input" }, + { "IncludePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGamePhaseAbility\n\nThe base gameplay ability for any ability that is used to change the active game phase." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamePhaseTag_MetaData[] = { + { "Category", "Lyra|Game Phase" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines the game phase that this game phase ability is part of. So for example,\n// if your game phase is GamePhase.RoundStart, then it will cancel all sibling phases.\n// So if you had a phase such as GamePhase.WaitingToStart that was active, starting\n// the ability part of RoundStart would end WaitingToStart. However to get nested behaviors\n// you can also nest the phases. So for example, GamePhase.Playing.NormalPlay, is a sub-phase\n// of the parent GamePhase.Playing, so changing the sub-phase to GamePhase.Playing.SuddenDeath,\n// would stop any ability tied to GamePhase.Playing.*, but wouldn't end any ability \n// tied to the GamePhase.Playing phase.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the game phase that this game phase ability is part of. So for example,\nif your game phase is GamePhase.RoundStart, then it will cancel all sibling phases.\nSo if you had a phase such as GamePhase.WaitingToStart that was active, starting\nthe ability part of RoundStart would end WaitingToStart. However to get nested behaviors\nyou can also nest the phases. So for example, GamePhase.Playing.NormalPlay, is a sub-phase\nof the parent GamePhase.Playing, so changing the sub-phase to GamePhase.Playing.SuddenDeath,\nwould stop any ability tied to GamePhase.Playing.*, but wouldn't end any ability\ntied to the GamePhase.Playing phase." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GamePhaseTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGamePhaseAbility_Statics::NewProp_GamePhaseTag = { "GamePhaseTag", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGamePhaseAbility, GamePhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamePhaseTag_MetaData), NewProp_GamePhaseTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGamePhaseAbility_Statics::NewProp_GamePhaseTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGamePhaseAbility_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGamePhaseAbility_Statics::ClassParams = { + &ULyraGamePhaseAbility::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGamePhaseAbility_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGamePhaseAbility() +{ + if (!Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton, Z_Construct_UClass_ULyraGamePhaseAbility_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGamePhaseAbility::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGamePhaseAbility); +ULyraGamePhaseAbility::~ULyraGamePhaseAbility() {} +// End Class ULyraGamePhaseAbility + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGamePhaseAbility, ULyraGamePhaseAbility::StaticClass, TEXT("ULyraGamePhaseAbility"), &Z_Registration_Info_UClass_ULyraGamePhaseAbility, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGamePhaseAbility), 615369293U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_2689296165(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h new file mode 100644 index 00000000..200ead54 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Phases/LyraGamePhaseAbility.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGamePhaseAbility_generated_h +#error "LyraGamePhaseAbility.generated.h already included, missing '#pragma once' in LyraGamePhaseAbility.h" +#endif +#define LYRAGAME_LyraGamePhaseAbility_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGamePhaseAbility(); \ + friend struct Z_Construct_UClass_ULyraGamePhaseAbility_Statics; \ +public: \ + DECLARE_CLASS(ULyraGamePhaseAbility, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGamePhaseAbility) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGamePhaseAbility(ULyraGamePhaseAbility&&); \ + ULyraGamePhaseAbility(const ULyraGamePhaseAbility&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGamePhaseAbility); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGamePhaseAbility); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGamePhaseAbility) \ + NO_API virtual ~ULyraGamePhaseAbility(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp new file mode 100644 index 00000000..d91a77b3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp @@ -0,0 +1,501 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Phases/LyraGamePhaseSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGamePhaseSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EPhaseTagMatchType(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraGamePhaseDynamicDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms + { + const ULyraGamePhaseAbility* Phase; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Phase_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Phase; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms, Phase), Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Phase_MetaData), NewProp_Phase_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::NewProp_Phase, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraGamePhaseDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraGamePhaseDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseDynamicDelegate, const ULyraGamePhaseAbility* Phase) +{ + struct _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms + { + const ULyraGamePhaseAbility* Phase; + }; + _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms Parms; + Parms.Phase=Phase; + LyraGamePhaseDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FLyraGamePhaseDynamicDelegate + +// Begin Delegate FLyraGamePhaseTagDynamicDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms + { + FGameplayTag PhaseTag; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseTag_MetaData), NewProp_PhaseTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::NewProp_PhaseTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraGamePhaseTagDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraGamePhaseTagDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseTagDynamicDelegate, FGameplayTag const& PhaseTag) +{ + struct _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms + { + FGameplayTag PhaseTag; + }; + _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms Parms; + Parms.PhaseTag=PhaseTag; + LyraGamePhaseTagDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FLyraGamePhaseTagDynamicDelegate + +// Begin Enum EPhaseTagMatchType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EPhaseTagMatchType; +static UEnum* EPhaseTagMatchType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton) + { + Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EPhaseTagMatchType")); + } + return Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EPhaseTagMatchType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for message receivers\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive messages with exactly the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EPhaseTagMatchType::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive messages with exactly the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + { "PartialMatch.Comment", "// A partial match will receive any messages rooted in the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EPhaseTagMatchType::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any messages rooted in the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for message receivers" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EPhaseTagMatchType::ExactMatch", (int64)EPhaseTagMatchType::ExactMatch }, + { "EPhaseTagMatchType::PartialMatch", (int64)EPhaseTagMatchType::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EPhaseTagMatchType", + "EPhaseTagMatchType", + Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EPhaseTagMatchType() +{ + if (!Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton, Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton; +} +// End Enum EPhaseTagMatchType + +// Begin Class ULyraGamePhaseSubsystem Function IsPhaseActive +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics +{ + struct LyraGamePhaseSubsystem_eventIsPhaseActive_Parms + { + FGameplayTag PhaseTag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "PhaseTag" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventIsPhaseActive_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseTag_MetaData), NewProp_PhaseTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGamePhaseSubsystem_eventIsPhaseActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGamePhaseSubsystem_eventIsPhaseActive_Parms), &Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "IsPhaseActive", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::LyraGamePhaseSubsystem_eventIsPhaseActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::LyraGamePhaseSubsystem_eventIsPhaseActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execIsPhaseActive) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_PhaseTag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsPhaseActive(Z_Param_Out_PhaseTag); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function IsPhaseActive + +// Begin Class ULyraGamePhaseSubsystem Function K2_StartPhase +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_StartPhase_Parms + { + TSubclassOf Phase; + FScriptDelegate PhaseEnded; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "PhaseEnded" }, + { "Category", "Game Phase" }, + { "DisplayName", "Start Phase" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseEnded_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Phase; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_PhaseEnded; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_StartPhase_Parms, Phase), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_PhaseEnded = { "PhaseEnded", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_StartPhase_Parms, PhaseEnded), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseEnded_MetaData), NewProp_PhaseEnded_MetaData) }; // 4190339885 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_Phase, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_PhaseEnded, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_StartPhase", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::LyraGamePhaseSubsystem_eventK2_StartPhase_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::LyraGamePhaseSubsystem_eventK2_StartPhase_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_StartPhase) +{ + P_GET_OBJECT(UClass,Z_Param_Phase); + P_GET_PROPERTY_REF(FDelegateProperty,Z_Param_Out_PhaseEnded); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_StartPhase(Z_Param_Phase,FLyraGamePhaseDynamicDelegate(Z_Param_Out_PhaseEnded)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_StartPhase + +// Begin Class ULyraGamePhaseSubsystem Function K2_WhenPhaseEnds +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms + { + FGameplayTag PhaseTag; + EPhaseTagMatchType MatchType; + FScriptDelegate WhenPhaseEnd; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "WhenPhaseEnd" }, + { "Category", "Game Phase" }, + { "DisplayName", "When Phase Ends" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_WhenPhaseEnd; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, MatchType), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, METADATA_PARAMS(0, nullptr) }; // 2047295966 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_WhenPhaseEnd = { "WhenPhaseEnd", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, WhenPhaseEnd), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 1514117767 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_WhenPhaseEnd, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_WhenPhaseEnds", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_WhenPhaseEnds) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_PhaseTag); + P_GET_ENUM(EPhaseTagMatchType,Z_Param_MatchType); + P_GET_PROPERTY(FDelegateProperty,Z_Param_WhenPhaseEnd); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_WhenPhaseEnds(Z_Param_PhaseTag,EPhaseTagMatchType(Z_Param_MatchType),FLyraGamePhaseTagDynamicDelegate(Z_Param_WhenPhaseEnd)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_WhenPhaseEnds + +// Begin Class ULyraGamePhaseSubsystem Function K2_WhenPhaseStartsOrIsActive +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms + { + FGameplayTag PhaseTag; + EPhaseTagMatchType MatchType; + FScriptDelegate WhenPhaseActive; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "WhenPhaseActive" }, + { "Category", "Game Phase" }, + { "DisplayName", "When Phase Starts or Is Active" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_WhenPhaseActive; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, MatchType), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, METADATA_PARAMS(0, nullptr) }; // 2047295966 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_WhenPhaseActive = { "WhenPhaseActive", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, WhenPhaseActive), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 1514117767 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_WhenPhaseActive, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_WhenPhaseStartsOrIsActive", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_WhenPhaseStartsOrIsActive) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_PhaseTag); + P_GET_ENUM(EPhaseTagMatchType,Z_Param_MatchType); + P_GET_PROPERTY(FDelegateProperty,Z_Param_WhenPhaseActive); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_WhenPhaseStartsOrIsActive(Z_Param_PhaseTag,EPhaseTagMatchType(Z_Param_MatchType),FLyraGamePhaseTagDynamicDelegate(Z_Param_WhenPhaseActive)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_WhenPhaseStartsOrIsActive + +// Begin Class ULyraGamePhaseSubsystem +void ULyraGamePhaseSubsystem::StaticRegisterNativesULyraGamePhaseSubsystem() +{ + UClass* Class = ULyraGamePhaseSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsPhaseActive", &ULyraGamePhaseSubsystem::execIsPhaseActive }, + { "K2_StartPhase", &ULyraGamePhaseSubsystem::execK2_StartPhase }, + { "K2_WhenPhaseEnds", &ULyraGamePhaseSubsystem::execK2_WhenPhaseEnds }, + { "K2_WhenPhaseStartsOrIsActive", &ULyraGamePhaseSubsystem::execK2_WhenPhaseStartsOrIsActive }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGamePhaseSubsystem); +UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem_NoRegister() +{ + return ULyraGamePhaseSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Subsystem for managing Lyra's game phases using gameplay tags in a nested manner, which allows parent and child \n * phases to be active at the same time, but not sibling phases.\n * Example: Game.Playing and Game.Playing.WarmUp can coexist, but Game.Playing and Game.ShowingScore cannot. \n * When a new phase is started, any active phases that are not ancestors will be ended.\n * Example: if Game.Playing and Game.Playing.CaptureTheFlag are active when Game.Playing.PostGame is started, \n * Game.Playing will remain active, while Game.Playing.CaptureTheFlag will end.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem for managing Lyra's game phases using gameplay tags in a nested manner, which allows parent and child\nphases to be active at the same time, but not sibling phases.\nExample: Game.Playing and Game.Playing.WarmUp can coexist, but Game.Playing and Game.ShowingScore cannot.\nWhen a new phase is started, any active phases that are not ancestors will be ended.\nExample: if Game.Playing and Game.Playing.CaptureTheFlag are active when Game.Playing.PostGame is started,\n Game.Playing will remain active, while Game.Playing.CaptureTheFlag will end." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive, "IsPhaseActive" }, // 3041214234 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase, "K2_StartPhase" }, // 3095646158 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds, "K2_WhenPhaseEnds" }, // 2396743627 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive, "K2_WhenPhaseStartsOrIsActive" }, // 2236314844 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::ClassParams = { + &ULyraGamePhaseSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton, Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGamePhaseSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGamePhaseSubsystem); +ULyraGamePhaseSubsystem::~ULyraGamePhaseSubsystem() {} +// End Class ULyraGamePhaseSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EPhaseTagMatchType_StaticEnum, TEXT("EPhaseTagMatchType"), &Z_Registration_Info_UEnum_EPhaseTagMatchType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2047295966U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGamePhaseSubsystem, ULyraGamePhaseSubsystem::StaticClass, TEXT("ULyraGamePhaseSubsystem"), &Z_Registration_Info_UClass_ULyraGamePhaseSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGamePhaseSubsystem), 3229667276U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_2349810849(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h new file mode 100644 index 00000000..aa385f4e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h @@ -0,0 +1,81 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraGamePhaseAbility; +enum class EPhaseTagMatchType : uint8; +struct FGameplayTag; +#ifdef LYRAGAME_LyraGamePhaseSubsystem_generated_h +#error "LyraGamePhaseSubsystem.generated.h already included, missing '#pragma once' in LyraGamePhaseSubsystem.h" +#endif +#define LYRAGAME_LyraGamePhaseSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_18_DELEGATE \ +LYRAGAME_API void FLyraGamePhaseDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseDynamicDelegate, const ULyraGamePhaseAbility* Phase); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_21_DELEGATE \ +LYRAGAME_API void FLyraGamePhaseTagDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseTagDynamicDelegate, FGameplayTag const& PhaseTag); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execK2_WhenPhaseEnds); \ + DECLARE_FUNCTION(execK2_WhenPhaseStartsOrIsActive); \ + DECLARE_FUNCTION(execK2_StartPhase); \ + DECLARE_FUNCTION(execIsPhaseActive); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGamePhaseSubsystem(); \ + friend struct Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraGamePhaseSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGamePhaseSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGamePhaseSubsystem(ULyraGamePhaseSubsystem&&); \ + ULyraGamePhaseSubsystem(const ULyraGamePhaseSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGamePhaseSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGamePhaseSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGamePhaseSubsystem) \ + NO_API virtual ~ULyraGamePhaseSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h + + +#define FOREACH_ENUM_EPHASETAGMATCHTYPE(op) \ + op(EPhaseTagMatchType::ExactMatch) \ + op(EPhaseTagMatchType::PartialMatch) + +enum class EPhaseTagMatchType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.gen.cpp new file mode 100644 index 00000000..777fdfd4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameSession.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameSession() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameSession(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameSession(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameSession_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameSession +void ALyraGameSession::StaticRegisterNativesALyraGameSession() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameSession); +UClass* Z_Construct_UClass_ALyraGameSession_NoRegister() +{ + return ALyraGameSession::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameSession_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "System/LyraGameSession.h" }, + { "ModuleRelativePath", "System/LyraGameSession.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraGameSession_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameSession, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameSession_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameSession_Statics::ClassParams = { + &ALyraGameSession::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameSession_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameSession_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameSession() +{ + if (!Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton, Z_Construct_UClass_ALyraGameSession_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameSession::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameSession); +ALyraGameSession::~ALyraGameSession() {} +// End Class ALyraGameSession + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameSession, ALyraGameSession::StaticClass, TEXT("ALyraGameSession"), &Z_Registration_Info_UClass_ALyraGameSession, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameSession), 234065977U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_752696698(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.generated.h new file mode 100644 index 00000000..7d5c150c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSession.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameSession.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameSession_generated_h +#error "LyraGameSession.generated.h already included, missing '#pragma once' in LyraGameSession.h" +#endif +#define LYRAGAME_LyraGameSession_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameSession(); \ + friend struct Z_Construct_UClass_ALyraGameSession_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameSession, AGameSession, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameSession) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameSession(ALyraGameSession&&); \ + ALyraGameSession(const ALyraGameSession&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameSession); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameSession); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameSession) \ + NO_API virtual ~ALyraGameSession(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp new file mode 100644 index 00000000..db838dc9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraGameSettingRegistry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameSettingRegistry() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameSettingRegistry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameSettingRegistry_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameSettingRegistry +void ULyraGameSettingRegistry::StaticRegisterNativesULyraGameSettingRegistry() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameSettingRegistry); +UClass* Z_Construct_UClass_ULyraGameSettingRegistry_NoRegister() +{ + return ULyraGameSettingRegistry::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameSettingRegistry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Settings/LyraGameSettingRegistry.h" }, + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VideoSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplaySettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseAndKeyboardSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VideoSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AudioSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GameplaySettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MouseAndKeyboardSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GamepadSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_VideoSettings = { "VideoSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, VideoSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VideoSettings_MetaData), NewProp_VideoSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_AudioSettings = { "AudioSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, AudioSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioSettings_MetaData), NewProp_AudioSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GameplaySettings = { "GameplaySettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, GameplaySettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplaySettings_MetaData), NewProp_GameplaySettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_MouseAndKeyboardSettings = { "MouseAndKeyboardSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, MouseAndKeyboardSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseAndKeyboardSettings_MetaData), NewProp_MouseAndKeyboardSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GamepadSettings = { "GamepadSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, GamepadSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadSettings_MetaData), NewProp_GamepadSettings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_VideoSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_AudioSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GameplaySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_MouseAndKeyboardSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GamepadSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameSettingRegistry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingRegistry, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::ClassParams = { + &ULyraGameSettingRegistry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameSettingRegistry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameSettingRegistry() +{ + if (!Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton, Z_Construct_UClass_ULyraGameSettingRegistry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameSettingRegistry::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameSettingRegistry); +ULyraGameSettingRegistry::~ULyraGameSettingRegistry() {} +// End Class ULyraGameSettingRegistry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameSettingRegistry, ULyraGameSettingRegistry::StaticClass, TEXT("ULyraGameSettingRegistry"), &Z_Registration_Info_UClass_ULyraGameSettingRegistry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameSettingRegistry), 14763327U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_3890635981(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h new file mode 100644 index 00000000..90bdca9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraGameSettingRegistry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameSettingRegistry_generated_h +#error "LyraGameSettingRegistry.generated.h already included, missing '#pragma once' in LyraGameSettingRegistry.h" +#endif +#define LYRAGAME_LyraGameSettingRegistry_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameSettingRegistry(); \ + friend struct Z_Construct_UClass_ULyraGameSettingRegistry_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameSettingRegistry, UGameSettingRegistry, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameSettingRegistry) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameSettingRegistry(ULyraGameSettingRegistry&&); \ + ULyraGameSettingRegistry(const ULyraGameSettingRegistry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameSettingRegistry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameSettingRegistry); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameSettingRegistry) \ + NO_API virtual ~ULyraGameSettingRegistry(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.gen.cpp new file mode 100644 index 00000000..a39fb497 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.gen.cpp @@ -0,0 +1,382 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraGameState.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameState(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameState Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics +{ + struct LyraGameState_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the ability system component used for game wide things\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the ability system component used for game wide things" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::LyraGameState_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::LyraGameState_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraGameState Function GetLyraAbilitySystemComponent + +// Begin Class ALyraGameState Function MulticastMessageToClients +struct LyraGameState_eventMulticastMessageToClients_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraGameState_MulticastMessageToClients = FName(TEXT("MulticastMessageToClients")); +void ALyraGameState::MulticastMessageToClients(const FLyraVerbMessage Message) +{ + LyraGameState_eventMulticastMessageToClients_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraGameState_MulticastMessageToClients); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message that all clients will (probably) get\n// (use only for client notifications like eliminations, server join messages, etc... that can handle being lost)\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message that all clients will (probably) get\n(use only for client notifications like eliminations, server join messages, etc... that can handle being lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventMulticastMessageToClients_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "MulticastMessageToClients", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers), sizeof(LyraGameState_eventMulticastMessageToClients_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04024C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameState_eventMulticastMessageToClients_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execMulticastMessageToClients) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->MulticastMessageToClients_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraGameState Function MulticastMessageToClients + +// Begin Class ALyraGameState Function MulticastReliableMessageToClients +struct LyraGameState_eventMulticastReliableMessageToClients_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraGameState_MulticastReliableMessageToClients = FName(TEXT("MulticastReliableMessageToClients")); +void ALyraGameState::MulticastReliableMessageToClients(const FLyraVerbMessage Message) +{ + LyraGameState_eventMulticastReliableMessageToClients_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraGameState_MulticastReliableMessageToClients); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message that all clients will be guaranteed to get\n// (use only for client notifications that cannot handle being lost)\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message that all clients will be guaranteed to get\n(use only for client notifications that cannot handle being lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventMulticastReliableMessageToClients_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "MulticastReliableMessageToClients", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers), sizeof(LyraGameState_eventMulticastReliableMessageToClients_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04024CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameState_eventMulticastReliableMessageToClients_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execMulticastReliableMessageToClients) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->MulticastReliableMessageToClients_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraGameState Function MulticastReliableMessageToClients + +// Begin Class ALyraGameState Function OnRep_RecorderPlayerState +struct Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "OnRep_RecorderPlayerState", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execOnRep_RecorderPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_RecorderPlayerState(); + P_NATIVE_END; +} +// End Class ALyraGameState Function OnRep_RecorderPlayerState + +// Begin Class ALyraGameState +void ALyraGameState::StaticRegisterNativesALyraGameState() +{ + UClass* Class = ALyraGameState::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLyraAbilitySystemComponent", &ALyraGameState::execGetLyraAbilitySystemComponent }, + { "MulticastMessageToClients", &ALyraGameState::execMulticastMessageToClients }, + { "MulticastReliableMessageToClients", &ALyraGameState::execMulticastReliableMessageToClients }, + { "OnRep_RecorderPlayerState", &ALyraGameState::execOnRep_RecorderPlayerState }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameState); +UClass* Z_Construct_UClass_ALyraGameState_NoRegister() +{ + return ALyraGameState::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraGameState\n *\n *\x09The base game state class used by this project.\n */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "GameModes/LyraGameState.h" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraGameState\n\n The base game state class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceManagerComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles loading and managing the current gameplay experience\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles loading and managing the current gameplay experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component subobject for game-wide things (primarily gameplay cues)\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component subobject for game-wide things (primarily gameplay cues)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ServerFPS_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RecorderPlayerState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The player state that recorded a replay, it is used to select the right pawn to follow\n// This is only set in replay streams and is not replicated normally\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The player state that recorded a replay, it is used to select the right pawn to follow\nThis is only set in replay streams and is not replicated normally" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ExperienceManagerComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ServerFPS; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RecorderPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 3064388432 + { &Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients, "MulticastMessageToClients" }, // 4065021098 + { &Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients, "MulticastReliableMessageToClients" }, // 120084616 + { &Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState, "OnRep_RecorderPlayerState" }, // 1609352783 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_ExperienceManagerComponent = { "ExperienceManagerComponent", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, ExperienceManagerComponent), Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceManagerComponent_MetaData), NewProp_ExperienceManagerComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_ServerFPS = { "ServerFPS", nullptr, (EPropertyFlags)0x0020080000000020, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, ServerFPS), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ServerFPS_MetaData), NewProp_ServerFPS_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_RecorderPlayerState = { "RecorderPlayerState", "OnRep_RecorderPlayerState", (EPropertyFlags)0x0124080100002020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, RecorderPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RecorderPlayerState_MetaData), NewProp_RecorderPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraGameState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_ExperienceManagerComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_ServerFPS, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_RecorderPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraGameState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularGameStateBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraGameState_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraGameState, IAbilitySystemInterface), false }, // 2272790346 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameState_Statics::ClassParams = { + &ALyraGameState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraGameState_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameState() +{ + if (!Z_Registration_Info_UClass_ALyraGameState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameState.OuterSingleton, Z_Construct_UClass_ALyraGameState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameState.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameState::StaticClass(); +} +void ALyraGameState::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_ServerFPS(TEXT("ServerFPS")); + static const FName Name_RecorderPlayerState(TEXT("RecorderPlayerState")); + const bool bIsValid = true + && Name_ServerFPS == ClassReps[(int32)ENetFields_Private::ServerFPS].Property->GetFName() + && Name_RecorderPlayerState == ClassReps[(int32)ENetFields_Private::RecorderPlayerState].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraGameState")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameState); +ALyraGameState::~ALyraGameState() {} +// End Class ALyraGameState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameState, ALyraGameState::StaticClass, TEXT("ALyraGameState"), &Z_Registration_Info_UClass_ALyraGameState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameState), 2413448556U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_3907717568(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.generated.h new file mode 100644 index 00000000..31941ab8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameState.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraGameState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraAbilitySystemComponent; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraGameState_generated_h +#error "LyraGameState.generated.h already included, missing '#pragma once' in LyraGameState.h" +#endif +#define LYRAGAME_LyraGameState_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void MulticastReliableMessageToClients_Implementation(const FLyraVerbMessage Message); \ + virtual void MulticastMessageToClients_Implementation(const FLyraVerbMessage Message); \ + DECLARE_FUNCTION(execOnRep_RecorderPlayerState); \ + DECLARE_FUNCTION(execMulticastReliableMessageToClients); \ + DECLARE_FUNCTION(execMulticastMessageToClients); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameState(); \ + friend struct Z_Construct_UClass_ALyraGameState_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameState, AModularGameStateBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameState) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + ServerFPS=NETFIELD_REP_START, \ + RecorderPlayerState, \ + NETFIELD_REP_END=RecorderPlayerState }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameState(ALyraGameState&&); \ + ALyraGameState(const ALyraGameState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameState) \ + NO_API virtual ~ALyraGameState(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp new file mode 100644 index 00000000..949b1a23 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraGameViewportClient.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameViewportClient() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonGameViewportClient(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameViewportClient(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameViewportClient_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameViewportClient +void ULyraGameViewportClient::StaticRegisterNativesULyraGameViewportClient() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameViewportClient); +UClass* Z_Construct_UClass_ULyraGameViewportClient_NoRegister() +{ + return ULyraGameViewportClient::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameViewportClient_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/LyraGameViewportClient.h" }, + { "ModuleRelativePath", "UI/LyraGameViewportClient.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameViewportClient_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameViewportClient, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameViewportClient_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameViewportClient_Statics::ClassParams = { + &ULyraGameViewportClient::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameViewportClient_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameViewportClient_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameViewportClient() +{ + if (!Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton, Z_Construct_UClass_ULyraGameViewportClient_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameViewportClient::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameViewportClient); +ULyraGameViewportClient::~ULyraGameViewportClient() {} +// End Class ULyraGameViewportClient + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameViewportClient, ULyraGameViewportClient::StaticClass, TEXT("ULyraGameViewportClient"), &Z_Registration_Info_UClass_ULyraGameViewportClient, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameViewportClient), 1471261696U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_1035542228(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h new file mode 100644 index 00000000..fa8b36ef --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraGameViewportClient.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameViewportClient_generated_h +#error "LyraGameViewportClient.generated.h already included, missing '#pragma once' in LyraGameViewportClient.h" +#endif +#define LYRAGAME_LyraGameViewportClient_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameViewportClient(); \ + friend struct Z_Construct_UClass_ULyraGameViewportClient_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameViewportClient, UCommonGameViewportClient, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameViewportClient) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameViewportClient(ULyraGameViewportClient&&); \ + ULyraGameViewportClient(const ULyraGameViewportClient&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameViewportClient); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameViewportClient); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameViewportClient) \ + NO_API virtual ~ULyraGameViewportClient(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp new file mode 100644 index 00000000..aaf22f50 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp @@ -0,0 +1,1098 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAnimMontage_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraAbilityActivationPolicy +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy; +static UEnum* ELyraAbilityActivationPolicy_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityActivationPolicy")); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityActivationPolicy_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraAbilityActivationPolicy\n *\n *\x09""Defines how an ability is meant to activate.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "OnInputTriggered.Comment", "// Try to activate the ability when the input is triggered.\n" }, + { "OnInputTriggered.Name", "ELyraAbilityActivationPolicy::OnInputTriggered" }, + { "OnInputTriggered.ToolTip", "Try to activate the ability when the input is triggered." }, + { "OnSpawn.Comment", "// Try to activate the ability when an avatar is assigned.\n" }, + { "OnSpawn.Name", "ELyraAbilityActivationPolicy::OnSpawn" }, + { "OnSpawn.ToolTip", "Try to activate the ability when an avatar is assigned." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraAbilityActivationPolicy\n\n Defines how an ability is meant to activate." }, +#endif + { "WhileInputActive.Comment", "// Continually try to activate the ability while the input is active.\n" }, + { "WhileInputActive.Name", "ELyraAbilityActivationPolicy::WhileInputActive" }, + { "WhileInputActive.ToolTip", "Continually try to activate the ability while the input is active." }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityActivationPolicy::OnInputTriggered", (int64)ELyraAbilityActivationPolicy::OnInputTriggered }, + { "ELyraAbilityActivationPolicy::WhileInputActive", (int64)ELyraAbilityActivationPolicy::WhileInputActive }, + { "ELyraAbilityActivationPolicy::OnSpawn", (int64)ELyraAbilityActivationPolicy::OnSpawn }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityActivationPolicy", + "ELyraAbilityActivationPolicy", + Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton; +} +// End Enum ELyraAbilityActivationPolicy + +// Begin Enum ELyraAbilityActivationGroup +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityActivationGroup; +static UEnum* ELyraAbilityActivationGroup_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityActivationGroup")); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityActivationGroup_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraAbilityActivationGroup\n *\n *\x09""Defines how an ability activates in relation to other abilities.\n */" }, +#endif + { "Exclusive_Blocking.Comment", "// Ability blocks all other exclusive abilities from activating.\n" }, + { "Exclusive_Blocking.Name", "ELyraAbilityActivationGroup::Exclusive_Blocking" }, + { "Exclusive_Blocking.ToolTip", "Ability blocks all other exclusive abilities from activating." }, + { "Exclusive_Replaceable.Comment", "// Ability is canceled and replaced by other exclusive abilities.\n" }, + { "Exclusive_Replaceable.Name", "ELyraAbilityActivationGroup::Exclusive_Replaceable" }, + { "Exclusive_Replaceable.ToolTip", "Ability is canceled and replaced by other exclusive abilities." }, + { "Independent.Comment", "// Ability runs independently of all other abilities.\n" }, + { "Independent.Name", "ELyraAbilityActivationGroup::Independent" }, + { "Independent.ToolTip", "Ability runs independently of all other abilities." }, + { "MAX.Hidden", "" }, + { "MAX.Name", "ELyraAbilityActivationGroup::MAX" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraAbilityActivationGroup\n\n Defines how an ability activates in relation to other abilities." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityActivationGroup::Independent", (int64)ELyraAbilityActivationGroup::Independent }, + { "ELyraAbilityActivationGroup::Exclusive_Replaceable", (int64)ELyraAbilityActivationGroup::Exclusive_Replaceable }, + { "ELyraAbilityActivationGroup::Exclusive_Blocking", (int64)ELyraAbilityActivationGroup::Exclusive_Blocking }, + { "ELyraAbilityActivationGroup::MAX", (int64)ELyraAbilityActivationGroup::MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityActivationGroup", + "ELyraAbilityActivationGroup", + Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton; +} +// End Enum ELyraAbilityActivationGroup + +// Begin ScriptStruct FLyraAbilityMontageFailureMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage; +class UScriptStruct* FLyraAbilityMontageFailureMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityMontageFailureMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityMontageFailureMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Failure reason that can be used to play an animation montage when a failure occurs */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Failure reason that can be used to play an animation montage when a failure occurs" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerController_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Player controller that failed to activate the ability, if the AbilitySystemComponent was player owned\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Player controller that failed to activate the ability, if the AbilitySystemComponent was player owned" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AvatarActor_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Avatar actor that failed to activate the ability\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Avatar actor that failed to activate the ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTags_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// All the reasons why this ability has failed\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "All the reasons why this ability has failed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureMontage_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AvatarActor; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTags; + static const UECodeGen_Private::FObjectPropertyParams NewProp_FailureMontage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerController_MetaData), NewProp_PlayerController_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_AvatarActor = { "AvatarActor", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, AvatarActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AvatarActor_MetaData), NewProp_AvatarActor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureTags = { "FailureTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, FailureTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTags_MetaData), NewProp_FailureTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureMontage = { "FailureMontage", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, FailureMontage), Z_Construct_UClass_UAnimMontage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureMontage_MetaData), NewProp_FailureMontage_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_AvatarActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureMontage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityMontageFailureMessage", + Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers), + sizeof(FLyraAbilityMontageFailureMessage), + alignof(FLyraAbilityMontageFailureMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton; +} +// End ScriptStruct FLyraAbilityMontageFailureMessage + +// Begin Class ULyraGameplayAbility Function CanChangeActivationGroup +struct Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics +{ + struct LyraGameplayAbility_eventCanChangeActivationGroup_Parms + { + ELyraAbilityActivationGroup NewGroup; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if the requested activation group is a valid transition.\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the requested activation group is a valid transition." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewGroup; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup = { "NewGroup", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventCanChangeActivationGroup_Parms, NewGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(0, nullptr) }; // 4247120011 +void Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGameplayAbility_eventCanChangeActivationGroup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameplayAbility_eventCanChangeActivationGroup_Parms), &Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "CanChangeActivationGroup", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::LyraGameplayAbility_eventCanChangeActivationGroup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::LyraGameplayAbility_eventCanChangeActivationGroup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execCanChangeActivationGroup) +{ + P_GET_ENUM(ELyraAbilityActivationGroup,Z_Param_NewGroup); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanChangeActivationGroup(ELyraAbilityActivationGroup(Z_Param_NewGroup)); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function CanChangeActivationGroup + +// Begin Class ULyraGameplayAbility Function ChangeActivationGroup +struct Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics +{ + struct LyraGameplayAbility_eventChangeActivationGroup_Parms + { + ELyraAbilityActivationGroup NewGroup; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tries to change the activation group. Returns true if it successfully changed.\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tries to change the activation group. Returns true if it successfully changed." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewGroup; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup = { "NewGroup", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventChangeActivationGroup_Parms, NewGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(0, nullptr) }; // 4247120011 +void Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGameplayAbility_eventChangeActivationGroup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameplayAbility_eventChangeActivationGroup_Parms), &Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ChangeActivationGroup", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::LyraGameplayAbility_eventChangeActivationGroup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::LyraGameplayAbility_eventChangeActivationGroup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execChangeActivationGroup) +{ + P_GET_ENUM(ELyraAbilityActivationGroup,Z_Param_NewGroup); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ChangeActivationGroup(ELyraAbilityActivationGroup(Z_Param_NewGroup)); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function ChangeActivationGroup + +// Begin Class ULyraGameplayAbility Function ClearCameraMode +struct Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Clears the ability's camera mode. Automatically called if needed when the ability ends.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clears the ability's camera mode. Automatically called if needed when the ability ends." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ClearCameraMode", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execClearCameraMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClearCameraMode(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function ClearCameraMode + +// Begin Class ULyraGameplayAbility Function GetControllerFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetControllerFromActorInfo_Parms + { + AController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetControllerFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetControllerFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetControllerFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetControllerFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetControllerFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(AController**)Z_Param__Result=P_THIS->GetControllerFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetControllerFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetHeroComponentFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms + { + ULyraHeroComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ULyraHeroComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetHeroComponentFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetHeroComponentFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHeroComponent**)Z_Param__Result=P_THIS->GetHeroComponentFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetHeroComponentFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraAbilitySystemComponentFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraAbilitySystemComponentFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraAbilitySystemComponentFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponentFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraAbilitySystemComponentFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraCharacterFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms + { + ALyraCharacter* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ALyraCharacter_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraCharacterFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraCharacterFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraCharacter**)Z_Param__Result=P_THIS->GetLyraCharacterFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraCharacterFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraPlayerControllerFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraPlayerControllerFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraPlayerControllerFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerControllerFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraPlayerControllerFromActorInfo + +// Begin Class ULyraGameplayAbility Function K2_OnAbilityAdded +static const FName NAME_ULyraGameplayAbility_K2_OnAbilityAdded = FName(TEXT("K2_OnAbilityAdded")); +void ULyraGameplayAbility::K2_OnAbilityAdded() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnAbilityAdded); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when this ability is granted to the ability system component. */" }, +#endif + { "DisplayName", "OnAbilityAdded" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when this ability is granted to the ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnAbilityAdded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnAbilityAdded + +// Begin Class ULyraGameplayAbility Function K2_OnAbilityRemoved +static const FName NAME_ULyraGameplayAbility_K2_OnAbilityRemoved = FName(TEXT("K2_OnAbilityRemoved")); +void ULyraGameplayAbility::K2_OnAbilityRemoved() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnAbilityRemoved); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when this ability is removed from the ability system component. */" }, +#endif + { "DisplayName", "OnAbilityRemoved" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when this ability is removed from the ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnAbilityRemoved", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnAbilityRemoved + +// Begin Class ULyraGameplayAbility Function K2_OnPawnAvatarSet +static const FName NAME_ULyraGameplayAbility_K2_OnPawnAvatarSet = FName(TEXT("K2_OnPawnAvatarSet")); +void ULyraGameplayAbility::K2_OnPawnAvatarSet() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnPawnAvatarSet); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when the ability system is initialized with a pawn avatar. */" }, +#endif + { "DisplayName", "OnPawnAvatarSet" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the ability system is initialized with a pawn avatar." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnPawnAvatarSet", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnPawnAvatarSet + +// Begin Class ULyraGameplayAbility Function ScriptOnAbilityFailedToActivate +struct LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms +{ + FGameplayTagContainer FailedReason; +}; +static const FName NAME_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate = FName(TEXT("ScriptOnAbilityFailedToActivate")); +void ULyraGameplayAbility::ScriptOnAbilityFailedToActivate(FGameplayTagContainer const& FailedReason) const +{ + LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms Parms; + Parms.FailedReason=FailedReason; + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate); + const_cast(this)->ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the ability fails to activate\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the ability fails to activate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailedReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_FailedReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::NewProp_FailedReason = { "FailedReason", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms, FailedReason), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailedReason_MetaData), NewProp_FailedReason_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::NewProp_FailedReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ScriptOnAbilityFailedToActivate", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers), sizeof(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x48480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function ScriptOnAbilityFailedToActivate + +// Begin Class ULyraGameplayAbility Function SetCameraMode +struct Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics +{ + struct LyraGameplayAbility_eventSetCameraMode_Parms + { + TSubclassOf CameraMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the ability's camera mode.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the ability's camera mode." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_CameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::NewProp_CameraMode = { "CameraMode", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventSetCameraMode_Parms, CameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::NewProp_CameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "SetCameraMode", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::LyraGameplayAbility_eventSetCameraMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::LyraGameplayAbility_eventSetCameraMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execSetCameraMode) +{ + P_GET_OBJECT(UClass,Z_Param_CameraMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetCameraMode(Z_Param_CameraMode); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function SetCameraMode + +// Begin Class ULyraGameplayAbility +void ULyraGameplayAbility::StaticRegisterNativesULyraGameplayAbility() +{ + UClass* Class = ULyraGameplayAbility::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanChangeActivationGroup", &ULyraGameplayAbility::execCanChangeActivationGroup }, + { "ChangeActivationGroup", &ULyraGameplayAbility::execChangeActivationGroup }, + { "ClearCameraMode", &ULyraGameplayAbility::execClearCameraMode }, + { "GetControllerFromActorInfo", &ULyraGameplayAbility::execGetControllerFromActorInfo }, + { "GetHeroComponentFromActorInfo", &ULyraGameplayAbility::execGetHeroComponentFromActorInfo }, + { "GetLyraAbilitySystemComponentFromActorInfo", &ULyraGameplayAbility::execGetLyraAbilitySystemComponentFromActorInfo }, + { "GetLyraCharacterFromActorInfo", &ULyraGameplayAbility::execGetLyraCharacterFromActorInfo }, + { "GetLyraPlayerControllerFromActorInfo", &ULyraGameplayAbility::execGetLyraPlayerControllerFromActorInfo }, + { "SetCameraMode", &ULyraGameplayAbility::execSetCameraMode }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility); +UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister() +{ + return ULyraGameplayAbility::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility\n *\n *\x09The base gameplay ability class used by this project.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base gameplay ability class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility\n\n The base gameplay ability class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationPolicy_MetaData[] = { + { "Category", "Lyra|Ability Activation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines how this ability is meant to activate.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines how this ability is meant to activate." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationGroup_MetaData[] = { + { "Category", "Lyra|Ability Activation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines the relationship between this ability activating and other abilities activating.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the relationship between this ability activating and other abilities activating." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalCosts_Inner_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Additional costs that must be paid to activate this ability\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Additional costs that must be paid to activate this ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalCosts_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Additional costs that must be paid to activate this ability\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Additional costs that must be paid to activate this ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTagToUserFacingMessages_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of failure tags to simple error messages\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of failure tags to simple error messages" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTagToAnimMontage_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of failure tags to anim montages that should be played with them\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of failure tags to anim montages that should be played with them" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bLogCancelation_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If true, extra information should be logged when this ability is canceled. This is temporary, used for tracking a bug.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, extra information should be logged when this ability is canceled. This is temporary, used for tracking a bug." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ActivationPolicy_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ActivationPolicy; + static const UECodeGen_Private::FBytePropertyParams NewProp_ActivationGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ActivationGroup; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AdditionalCosts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AdditionalCosts; + static const UECodeGen_Private::FTextPropertyParams NewProp_FailureTagToUserFacingMessages_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTagToUserFacingMessages_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_FailureTagToUserFacingMessages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_FailureTagToAnimMontage_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTagToAnimMontage_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_FailureTagToAnimMontage; + static void NewProp_bLogCancelation_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogCancelation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup, "CanChangeActivationGroup" }, // 2281971574 + { &Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup, "ChangeActivationGroup" }, // 775962407 + { &Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode, "ClearCameraMode" }, // 610189094 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo, "GetControllerFromActorInfo" }, // 3169612665 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo, "GetHeroComponentFromActorInfo" }, // 3763579031 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo, "GetLyraAbilitySystemComponentFromActorInfo" }, // 2536779444 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo, "GetLyraCharacterFromActorInfo" }, // 2509278072 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo, "GetLyraPlayerControllerFromActorInfo" }, // 3171412522 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded, "K2_OnAbilityAdded" }, // 2928589694 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved, "K2_OnAbilityRemoved" }, // 1723495760 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet, "K2_OnPawnAvatarSet" }, // 2453556630 + { &Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate, "ScriptOnAbilityFailedToActivate" }, // 3900705727 + { &Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode, "SetCameraMode" }, // 2229774396 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy = { "ActivationPolicy", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, ActivationPolicy), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationPolicy_MetaData), NewProp_ActivationPolicy_MetaData) }; // 2395389423 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup = { "ActivationGroup", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, ActivationGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationGroup_MetaData), NewProp_ActivationGroup_MetaData) }; // 4247120011 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts_Inner = { "AdditionalCosts", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilityCost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalCosts_Inner_MetaData), NewProp_AdditionalCosts_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts = { "AdditionalCosts", nullptr, (EPropertyFlags)0x0124088000010009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, AdditionalCosts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalCosts_MetaData), NewProp_AdditionalCosts_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_ValueProp = { "FailureTagToUserFacingMessages", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_Key_KeyProp = { "FailureTagToUserFacingMessages_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages = { "FailureTagToUserFacingMessages", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, FailureTagToUserFacingMessages), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTagToUserFacingMessages_MetaData), NewProp_FailureTagToUserFacingMessages_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_ValueProp = { "FailureTagToAnimMontage", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UAnimMontage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_Key_KeyProp = { "FailureTagToAnimMontage_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage = { "FailureTagToAnimMontage", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, FailureTagToAnimMontage), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTagToAnimMontage_MetaData), NewProp_FailureTagToAnimMontage_MetaData) }; // 1298103297 +void Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation_SetBit(void* Obj) +{ + ((ULyraGameplayAbility*)Obj)->bLogCancelation = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation = { "bLogCancelation", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraGameplayAbility), &Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bLogCancelation_MetaData), NewProp_bLogCancelation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Statics::ClassParams = { + &ULyraGameplayAbility::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility); +ULyraGameplayAbility::~ULyraGameplayAbility() {} +// End Class ULyraGameplayAbility + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraAbilityActivationPolicy_StaticEnum, TEXT("ELyraAbilityActivationPolicy"), &Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2395389423U) }, + { ELyraAbilityActivationGroup_StaticEnum, TEXT("ELyraAbilityActivationGroup"), &Z_Registration_Info_UEnum_ELyraAbilityActivationGroup, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4247120011U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityMontageFailureMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewStructOps, TEXT("LyraAbilityMontageFailureMessage"), &Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityMontageFailureMessage), 2511577848U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility, ULyraGameplayAbility::StaticClass, TEXT("ULyraGameplayAbility"), &Z_Registration_Info_UClass_ULyraGameplayAbility, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility), 1109250617U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_2844354040(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h new file mode 100644 index 00000000..7e9421ca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h @@ -0,0 +1,102 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class ALyraCharacter; +class ALyraPlayerController; +class ULyraAbilitySystemComponent; +class ULyraCameraMode; +class ULyraHeroComponent; +enum class ELyraAbilityActivationGroup : uint8; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraGameplayAbility_generated_h +#error "LyraGameplayAbility.generated.h already included, missing '#pragma once' in LyraGameplayAbility.h" +#endif +#define LYRAGAME_LyraGameplayAbility_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_74_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execClearCameraMode); \ + DECLARE_FUNCTION(execSetCameraMode); \ + DECLARE_FUNCTION(execChangeActivationGroup); \ + DECLARE_FUNCTION(execCanChangeActivationGroup); \ + DECLARE_FUNCTION(execGetHeroComponentFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraCharacterFromActorInfo); \ + DECLARE_FUNCTION(execGetControllerFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraPlayerControllerFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponentFromActorInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility, UGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility(ULyraGameplayAbility&&); \ + ULyraGameplayAbility(const ULyraGameplayAbility&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility) \ + NO_API virtual ~ULyraGameplayAbility(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_98_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h + + +#define FOREACH_ENUM_ELYRAABILITYACTIVATIONPOLICY(op) \ + op(ELyraAbilityActivationPolicy::OnInputTriggered) \ + op(ELyraAbilityActivationPolicy::WhileInputActive) \ + op(ELyraAbilityActivationPolicy::OnSpawn) + +enum class ELyraAbilityActivationPolicy : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAABILITYACTIVATIONGROUP(op) \ + op(ELyraAbilityActivationGroup::Independent) \ + op(ELyraAbilityActivationGroup::Exclusive_Replaceable) \ + op(ELyraAbilityActivationGroup::Exclusive_Blocking) + +enum class ELyraAbilityActivationGroup : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp new file mode 100644 index 00000000..2b19594a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp @@ -0,0 +1,103 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbilityTargetData_SingleTargetHit() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetData_SingleTargetHit(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraGameplayAbilityTargetData_SingleTargetHit +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraGameplayAbilityTargetData_SingleTargetHit cannot be polymorphic unless super FGameplayAbilityTargetData_SingleTargetHit is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit; +class UScriptStruct* FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraGameplayAbilityTargetData_SingleTargetHit")); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Game-specific additions to SingleTargetHit tracking */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game-specific additions to SingleTargetHit tracking" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CartridgeID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ID to allow the identification of multiple bullets that were part of the same cartridge */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ID to allow the identification of multiple bullets that were part of the same cartridge" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_CartridgeID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewProp_CartridgeID = { "CartridgeID", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayAbilityTargetData_SingleTargetHit, CartridgeID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CartridgeID_MetaData), NewProp_CartridgeID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewProp_CartridgeID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FGameplayAbilityTargetData_SingleTargetHit, + &NewStructOps, + "LyraGameplayAbilityTargetData_SingleTargetHit", + Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers), + sizeof(FLyraGameplayAbilityTargetData_SingleTargetHit), + alignof(FLyraGameplayAbilityTargetData_SingleTargetHit), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton, Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton; +} +// End ScriptStruct FLyraGameplayAbilityTargetData_SingleTargetHit + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct, Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewStructOps, TEXT("LyraGameplayAbilityTargetData_SingleTargetHit"), &Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraGameplayAbilityTargetData_SingleTargetHit), 4165700736U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_4169223465(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h new file mode 100644 index 00000000..e428f84f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbilityTargetData_SingleTargetHit_generated_h +#error "LyraGameplayAbilityTargetData_SingleTargetHit.generated.h already included, missing '#pragma once' in LyraGameplayAbilityTargetData_SingleTargetHit.h" +#endif +#define LYRAGAME_LyraGameplayAbilityTargetData_SingleTargetHit_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FGameplayAbilityTargetData_SingleTargetHit Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp new file mode 100644 index 00000000..adbd3607 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp @@ -0,0 +1,203 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Death.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Death() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Death(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Death_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Death Function FinishDeath +struct Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Finishes the death sequence.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Finishes the death sequence." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Death, nullptr, "FinishDeath", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Death::execFinishDeath) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FinishDeath(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Death Function FinishDeath + +// Begin Class ULyraGameplayAbility_Death Function StartDeath +struct Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Starts the death sequence.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the death sequence." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Death, nullptr, "StartDeath", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Death::execStartDeath) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartDeath(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Death Function StartDeath + +// Begin Class ULyraGameplayAbility_Death +void ULyraGameplayAbility_Death::StaticRegisterNativesULyraGameplayAbility_Death() +{ + UClass* Class = ULyraGameplayAbility_Death::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FinishDeath", &ULyraGameplayAbility_Death::execFinishDeath }, + { "StartDeath", &ULyraGameplayAbility_Death::execStartDeath }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Death); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Death_NoRegister() +{ + return ULyraGameplayAbility_Death::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Death_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Death\n *\n *\x09Gameplay ability used for handling death.\n *\x09""Ability is activated automatically via the \"GameplayEvent.Death\" ability trigger tag.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Death\n\n Gameplay ability used for handling death.\n Ability is activated automatically via the \"GameplayEvent.Death\" ability trigger tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAutoStartDeath_MetaData[] = { + { "Category", "Lyra|Death" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If enabled, the ability will automatically call StartDeath. FinishDeath is always called when the ability ends if the death was started.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If enabled, the ability will automatically call StartDeath. FinishDeath is always called when the ability ends if the death was started." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bAutoStartDeath_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAutoStartDeath; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath, "FinishDeath" }, // 802332818 + { &Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath, "StartDeath" }, // 2637820104 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath_SetBit(void* Obj) +{ + ((ULyraGameplayAbility_Death*)Obj)->bAutoStartDeath = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath = { "bAutoStartDeath", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraGameplayAbility_Death), &Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAutoStartDeath_MetaData), NewProp_bAutoStartDeath_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::ClassParams = { + &ULyraGameplayAbility_Death::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Death() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Death::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Death); +ULyraGameplayAbility_Death::~ULyraGameplayAbility_Death() {} +// End Class ULyraGameplayAbility_Death + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Death, ULyraGameplayAbility_Death::StaticClass, TEXT("ULyraGameplayAbility_Death"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Death, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Death), 1516132492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_2467541724(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h new file mode 100644 index 00000000..b3e6982e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Death_generated_h +#error "LyraGameplayAbility_Death.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Death.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Death_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFinishDeath); \ + DECLARE_FUNCTION(execStartDeath); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Death(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Death_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Death, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Death) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Death(ULyraGameplayAbility_Death&&); \ + ULyraGameplayAbility_Death(const ULyraGameplayAbility_Death&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Death); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Death); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Death) \ + NO_API virtual ~ULyraGameplayAbility_Death(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp new file mode 100644 index 00000000..695a9534 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp @@ -0,0 +1,195 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraGameplayAbility_FromEquipment.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_FromEquipment() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_FromEquipment Function GetAssociatedEquipment +struct Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics +{ + struct LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms + { + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, nullptr, "GetAssociatedEquipment", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_FromEquipment::execGetAssociatedEquipment) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->GetAssociatedEquipment(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_FromEquipment Function GetAssociatedEquipment + +// Begin Class ULyraGameplayAbility_FromEquipment Function GetAssociatedItem +struct Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics +{ + struct LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms + { + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, nullptr, "GetAssociatedItem", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_FromEquipment::execGetAssociatedItem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->GetAssociatedItem(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_FromEquipment Function GetAssociatedItem + +// Begin Class ULyraGameplayAbility_FromEquipment +void ULyraGameplayAbility_FromEquipment::StaticRegisterNativesULyraGameplayAbility_FromEquipment() +{ + UClass* Class = ULyraGameplayAbility_FromEquipment::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAssociatedEquipment", &ULyraGameplayAbility_FromEquipment::execGetAssociatedEquipment }, + { "GetAssociatedItem", &ULyraGameplayAbility_FromEquipment::execGetAssociatedItem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_FromEquipment); +UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_NoRegister() +{ + return ULyraGameplayAbility_FromEquipment::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_FromEquipment\n *\n * An ability granted by and associated with an equipment instance\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_FromEquipment\n\nAn ability granted by and associated with an equipment instance" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment, "GetAssociatedEquipment" }, // 1561147770 + { &Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem, "GetAssociatedItem" }, // 3213721993 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::ClassParams = { + &ULyraGameplayAbility_FromEquipment::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_FromEquipment::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_FromEquipment); +ULyraGameplayAbility_FromEquipment::~ULyraGameplayAbility_FromEquipment() {} +// End Class ULyraGameplayAbility_FromEquipment + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, ULyraGameplayAbility_FromEquipment::StaticClass, TEXT("ULyraGameplayAbility_FromEquipment"), &Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_FromEquipment), 514303417U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_787396172(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h new file mode 100644 index 00000000..8baba1bd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraGameplayAbility_FromEquipment.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraEquipmentInstance; +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraGameplayAbility_FromEquipment_generated_h +#error "LyraGameplayAbility_FromEquipment.generated.h already included, missing '#pragma once' in LyraGameplayAbility_FromEquipment.h" +#endif +#define LYRAGAME_LyraGameplayAbility_FromEquipment_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetAssociatedItem); \ + DECLARE_FUNCTION(execGetAssociatedEquipment); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_FromEquipment(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_FromEquipment, ULyraGameplayAbility, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_FromEquipment) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_FromEquipment(ULyraGameplayAbility_FromEquipment&&); \ + ULyraGameplayAbility_FromEquipment(const ULyraGameplayAbility_FromEquipment&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_FromEquipment); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_FromEquipment); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_FromEquipment) \ + NO_API virtual ~ULyraGameplayAbility_FromEquipment(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp new file mode 100644 index 00000000..99f41a9d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp @@ -0,0 +1,234 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Abilities/LyraGameplayAbility_Interact.h" +#include "LyraGame/Interaction/InteractionOption.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Interact() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Interact Function TriggerInteraction +struct Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Interact, nullptr, "TriggerInteraction", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Interact::execTriggerInteraction) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->TriggerInteraction(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Interact Function TriggerInteraction + +// Begin Class ULyraGameplayAbility_Interact Function UpdateInteractions +struct Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics +{ + struct LyraGameplayAbility_Interact_eventUpdateInteractions_Parms + { + TArray InteractiveOptions; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractiveOptions_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractiveOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InteractiveOptions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions_Inner = { "InteractiveOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions = { "InteractiveOptions", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_Interact_eventUpdateInteractions_Parms, InteractiveOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractiveOptions_MetaData), NewProp_InteractiveOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Interact, nullptr, "UpdateInteractions", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::LyraGameplayAbility_Interact_eventUpdateInteractions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::LyraGameplayAbility_Interact_eventUpdateInteractions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Interact::execUpdateInteractions) +{ + P_GET_TARRAY_REF(FInteractionOption,Z_Param_Out_InteractiveOptions); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateInteractions(Z_Param_Out_InteractiveOptions); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Interact Function UpdateInteractions + +// Begin Class ULyraGameplayAbility_Interact +void ULyraGameplayAbility_Interact::StaticRegisterNativesULyraGameplayAbility_Interact() +{ + UClass* Class = ULyraGameplayAbility_Interact::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "TriggerInteraction", &ULyraGameplayAbility_Interact::execTriggerInteraction }, + { "UpdateInteractions", &ULyraGameplayAbility_Interact::execUpdateInteractions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Interact); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact_NoRegister() +{ + return ULyraGameplayAbility_Interact::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Interact\n *\n * Gameplay ability used for character interacting\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Interact\n\nGameplay ability used for character interacting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentOptions_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicators_MetaData[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionScanRate_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionScanRange_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultInteractionWidgetClass_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CurrentOptions; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicators_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Indicators; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultInteractionWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction, "TriggerInteraction" }, // 913604556 + { &Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions, "UpdateInteractions" }, // 2832937983 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions_Inner = { "CurrentOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions = { "CurrentOptions", nullptr, (EPropertyFlags)0x0020088000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, CurrentOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentOptions_MetaData), NewProp_CurrentOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators_Inner = { "Indicators", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators = { "Indicators", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, Indicators), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicators_MetaData), NewProp_Indicators_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, InteractionScanRate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionScanRate_MetaData), NewProp_InteractionScanRate_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, InteractionScanRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionScanRange_MetaData), NewProp_InteractionScanRange_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_DefaultInteractionWidgetClass = { "DefaultInteractionWidgetClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, DefaultInteractionWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultInteractionWidgetClass_MetaData), NewProp_DefaultInteractionWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_DefaultInteractionWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::ClassParams = { + &ULyraGameplayAbility_Interact::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Interact::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Interact); +ULyraGameplayAbility_Interact::~ULyraGameplayAbility_Interact() {} +// End Class ULyraGameplayAbility_Interact + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Interact, ULyraGameplayAbility_Interact::StaticClass, TEXT("ULyraGameplayAbility_Interact"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Interact, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Interact), 2312143525U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_3006297050(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h new file mode 100644 index 00000000..86f12448 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Abilities/LyraGameplayAbility_Interact.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FInteractionOption; +#ifdef LYRAGAME_LyraGameplayAbility_Interact_generated_h +#error "LyraGameplayAbility_Interact.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Interact.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Interact_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execTriggerInteraction); \ + DECLARE_FUNCTION(execUpdateInteractions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Interact(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Interact, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Interact) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Interact(ULyraGameplayAbility_Interact&&); \ + ULyraGameplayAbility_Interact(const ULyraGameplayAbility_Interact&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Interact); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Interact); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Interact) \ + NO_API virtual ~ULyraGameplayAbility_Interact(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp new file mode 100644 index 00000000..17ecc928 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp @@ -0,0 +1,169 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Jump() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Jump Function CharacterJumpStart +struct Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Jump, nullptr, "CharacterJumpStart", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Jump::execCharacterJumpStart) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CharacterJumpStart(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Jump Function CharacterJumpStart + +// Begin Class ULyraGameplayAbility_Jump Function CharacterJumpStop +struct Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Jump, nullptr, "CharacterJumpStop", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Jump::execCharacterJumpStop) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CharacterJumpStop(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Jump Function CharacterJumpStop + +// Begin Class ULyraGameplayAbility_Jump +void ULyraGameplayAbility_Jump::StaticRegisterNativesULyraGameplayAbility_Jump() +{ + UClass* Class = ULyraGameplayAbility_Jump::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CharacterJumpStart", &ULyraGameplayAbility_Jump::execCharacterJumpStart }, + { "CharacterJumpStop", &ULyraGameplayAbility_Jump::execCharacterJumpStop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Jump); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump_NoRegister() +{ + return ULyraGameplayAbility_Jump::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Jump\n *\n *\x09Gameplay ability used for character jumping.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Jump\n\n Gameplay ability used for character jumping." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart, "CharacterJumpStart" }, // 1545979615 + { &Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop, "CharacterJumpStop" }, // 3062632824 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::ClassParams = { + &ULyraGameplayAbility_Jump::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Jump::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Jump); +ULyraGameplayAbility_Jump::~ULyraGameplayAbility_Jump() {} +// End Class ULyraGameplayAbility_Jump + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Jump, ULyraGameplayAbility_Jump::StaticClass, TEXT("ULyraGameplayAbility_Jump"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Jump, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Jump), 3887090753U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_1275472939(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h new file mode 100644 index 00000000..33bb855f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Jump_generated_h +#error "LyraGameplayAbility_Jump.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Jump.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Jump_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCharacterJumpStop); \ + DECLARE_FUNCTION(execCharacterJumpStart); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Jump(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Jump, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Jump) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Jump(ULyraGameplayAbility_Jump&&); \ + ULyraGameplayAbility_Jump(const ULyraGameplayAbility_Jump&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Jump); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Jump); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Jump) \ + NO_API virtual ~ULyraGameplayAbility_Jump(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp new file mode 100644 index 00000000..436e6477 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp @@ -0,0 +1,317 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraGameplayAbility_RangedWeapon.h" +#include "GameplayAbilities/Public/Abilities/GameplayAbilityTargetTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_RangedWeapon() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetDataHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraAbilityTargetingSource +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityTargetingSource; +static UEnum* ELyraAbilityTargetingSource_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityTargetingSource")); + } + return Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityTargetingSource_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CameraTowardsFocus.Comment", "// From the player's camera towards camera focus\n" }, + { "CameraTowardsFocus.Name", "ELyraAbilityTargetingSource::CameraTowardsFocus" }, + { "CameraTowardsFocus.ToolTip", "From the player's camera towards camera focus" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines where an ability starts its trace from and where it should face */" }, +#endif + { "Custom.Comment", "// Custom blueprint-specified source location\n" }, + { "Custom.Name", "ELyraAbilityTargetingSource::Custom" }, + { "Custom.ToolTip", "Custom blueprint-specified source location" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "PawnForward.Comment", "// From the pawn's center, in the pawn's orientation\n" }, + { "PawnForward.Name", "ELyraAbilityTargetingSource::PawnForward" }, + { "PawnForward.ToolTip", "From the pawn's center, in the pawn's orientation" }, + { "PawnTowardsFocus.Comment", "// From the pawn's center, oriented towards camera focus\n" }, + { "PawnTowardsFocus.Name", "ELyraAbilityTargetingSource::PawnTowardsFocus" }, + { "PawnTowardsFocus.ToolTip", "From the pawn's center, oriented towards camera focus" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines where an ability starts its trace from and where it should face" }, +#endif + { "WeaponForward.Comment", "// From the weapon's muzzle or location, in the pawn's orientation\n" }, + { "WeaponForward.Name", "ELyraAbilityTargetingSource::WeaponForward" }, + { "WeaponForward.ToolTip", "From the weapon's muzzle or location, in the pawn's orientation" }, + { "WeaponTowardsFocus.Comment", "// From the weapon's muzzle or location, towards camera focus\n" }, + { "WeaponTowardsFocus.Name", "ELyraAbilityTargetingSource::WeaponTowardsFocus" }, + { "WeaponTowardsFocus.ToolTip", "From the weapon's muzzle or location, towards camera focus" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityTargetingSource::CameraTowardsFocus", (int64)ELyraAbilityTargetingSource::CameraTowardsFocus }, + { "ELyraAbilityTargetingSource::PawnForward", (int64)ELyraAbilityTargetingSource::PawnForward }, + { "ELyraAbilityTargetingSource::PawnTowardsFocus", (int64)ELyraAbilityTargetingSource::PawnTowardsFocus }, + { "ELyraAbilityTargetingSource::WeaponForward", (int64)ELyraAbilityTargetingSource::WeaponForward }, + { "ELyraAbilityTargetingSource::WeaponTowardsFocus", (int64)ELyraAbilityTargetingSource::WeaponTowardsFocus }, + { "ELyraAbilityTargetingSource::Custom", (int64)ELyraAbilityTargetingSource::Custom }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityTargetingSource", + "ELyraAbilityTargetingSource", + Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton; +} +// End Enum ELyraAbilityTargetingSource + +// Begin Class ULyraGameplayAbility_RangedWeapon Function GetWeaponInstance +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics +{ + struct LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms + { + ULyraRangedWeaponInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms, ReturnValue), Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "GetWeaponInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_RangedWeapon::execGetWeaponInstance) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraRangedWeaponInstance**)Z_Param__Result=P_THIS->GetWeaponInstance(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_RangedWeapon Function GetWeaponInstance + +// Begin Class ULyraGameplayAbility_RangedWeapon Function OnRangedWeaponTargetDataReady +struct LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms +{ + FGameplayAbilityTargetDataHandle TargetData; +}; +static const FName NAME_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady = FName(TEXT("OnRangedWeaponTargetDataReady")); +void ULyraGameplayAbility_RangedWeapon::OnRangedWeaponTargetDataReady(FGameplayAbilityTargetDataHandle const& TargetData) +{ + LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms Parms; + Parms.TargetData=TargetData; + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when target data is ready\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when target data is ready" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetData_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::NewProp_TargetData = { "TargetData", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms, TargetData), Z_Construct_UScriptStruct_FGameplayAbilityTargetDataHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetData_MetaData), NewProp_TargetData_MetaData) }; // 2741862775 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::NewProp_TargetData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "OnRangedWeaponTargetDataReady", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers), sizeof(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility_RangedWeapon Function OnRangedWeaponTargetDataReady + +// Begin Class ULyraGameplayAbility_RangedWeapon Function StartRangedWeaponTargeting +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "StartRangedWeaponTargeting", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_RangedWeapon::execStartRangedWeaponTargeting) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartRangedWeaponTargeting(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_RangedWeapon Function StartRangedWeaponTargeting + +// Begin Class ULyraGameplayAbility_RangedWeapon +void ULyraGameplayAbility_RangedWeapon::StaticRegisterNativesULyraGameplayAbility_RangedWeapon() +{ + UClass* Class = ULyraGameplayAbility_RangedWeapon::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetWeaponInstance", &ULyraGameplayAbility_RangedWeapon::execGetWeaponInstance }, + { "StartRangedWeaponTargeting", &ULyraGameplayAbility_RangedWeapon::execStartRangedWeaponTargeting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_RangedWeapon); +UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_NoRegister() +{ + return ULyraGameplayAbility_RangedWeapon::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_RangedWeapon\n *\n * An ability granted by and associated with a ranged weapon instance\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_RangedWeapon\n\nAn ability granted by and associated with a ranged weapon instance" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance, "GetWeaponInstance" }, // 553260993 + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady, "OnRangedWeaponTargetDataReady" }, // 513777091 + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting, "StartRangedWeaponTargeting" }, // 2328979196 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::ClassParams = { + &ULyraGameplayAbility_RangedWeapon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_RangedWeapon::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_RangedWeapon); +ULyraGameplayAbility_RangedWeapon::~ULyraGameplayAbility_RangedWeapon() {} +// End Class ULyraGameplayAbility_RangedWeapon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraAbilityTargetingSource_StaticEnum, TEXT("ELyraAbilityTargetingSource"), &Z_Registration_Info_UEnum_ELyraAbilityTargetingSource, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 941686663U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, ULyraGameplayAbility_RangedWeapon::StaticClass, TEXT("ULyraGameplayAbility_RangedWeapon"), &Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_RangedWeapon), 1733701408U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_3643790214(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h new file mode 100644 index 00000000..1736ce35 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h @@ -0,0 +1,76 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraGameplayAbility_RangedWeapon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraRangedWeaponInstance; +struct FGameplayAbilityTargetDataHandle; +#ifdef LYRAGAME_LyraGameplayAbility_RangedWeapon_generated_h +#error "LyraGameplayAbility_RangedWeapon.generated.h already included, missing '#pragma once' in LyraGameplayAbility_RangedWeapon.h" +#endif +#define LYRAGAME_LyraGameplayAbility_RangedWeapon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execStartRangedWeaponTargeting); \ + DECLARE_FUNCTION(execGetWeaponInstance); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_RangedWeapon(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_RangedWeapon, ULyraGameplayAbility_FromEquipment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_RangedWeapon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_RangedWeapon(ULyraGameplayAbility_RangedWeapon&&); \ + ULyraGameplayAbility_RangedWeapon(const ULyraGameplayAbility_RangedWeapon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_RangedWeapon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_RangedWeapon); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_RangedWeapon) \ + NO_API virtual ~ULyraGameplayAbility_RangedWeapon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_46_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h + + +#define FOREACH_ENUM_ELYRAABILITYTARGETINGSOURCE(op) \ + op(ELyraAbilityTargetingSource::CameraTowardsFocus) \ + op(ELyraAbilityTargetingSource::PawnForward) \ + op(ELyraAbilityTargetingSource::PawnTowardsFocus) \ + op(ELyraAbilityTargetingSource::WeaponForward) \ + op(ELyraAbilityTargetingSource::WeaponTowardsFocus) \ + op(ELyraAbilityTargetingSource::Custom) + +enum class ELyraAbilityTargetingSource : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp new file mode 100644 index 00000000..46236c81 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp @@ -0,0 +1,165 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Reset() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPlayerResetMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Reset +void ULyraGameplayAbility_Reset::StaticRegisterNativesULyraGameplayAbility_Reset() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Reset); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset_NoRegister() +{ + return ULyraGameplayAbility_Reset::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Reset\n *\n *\x09Gameplay ability used for handling quickly resetting the player back to initial spawn state.\n *\x09""Ability is activated automatically via the \"GameplayEvent.RequestReset\" ability trigger tag (server only).\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Reset\n\n Gameplay ability used for handling quickly resetting the player back to initial spawn state.\n Ability is activated automatically via the \"GameplayEvent.RequestReset\" ability trigger tag (server only)." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::ClassParams = { + &ULyraGameplayAbility_Reset::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Reset::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Reset); +ULyraGameplayAbility_Reset::~ULyraGameplayAbility_Reset() {} +// End Class ULyraGameplayAbility_Reset + +// Begin ScriptStruct FLyraPlayerResetMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage; +class UScriptStruct* FLyraPlayerResetMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPlayerResetMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPlayerResetMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPlayerResetMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerPlayerState_MetaData[] = { + { "Category", "LyraPlayerResetMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewProp_OwnerPlayerState = { "OwnerPlayerState", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPlayerResetMessage, OwnerPlayerState), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerPlayerState_MetaData), NewProp_OwnerPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewProp_OwnerPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPlayerResetMessage", + Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers), + sizeof(FLyraPlayerResetMessage), + alignof(FLyraPlayerResetMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPlayerResetMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton; +} +// End ScriptStruct FLyraPlayerResetMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraPlayerResetMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewStructOps, TEXT("LyraPlayerResetMessage"), &Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPlayerResetMessage), 2171040134U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Reset, ULyraGameplayAbility_Reset::StaticClass, TEXT("ULyraGameplayAbility_Reset"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Reset, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Reset), 3006277567U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_3711010582(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h new file mode 100644 index 00000000..603b8141 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Reset_generated_h +#error "LyraGameplayAbility_Reset.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Reset.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Reset_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Reset(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Reset, ULyraGameplayAbility, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Reset) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Reset(ULyraGameplayAbility_Reset&&); \ + ULyraGameplayAbility_Reset(const ULyraGameplayAbility_Reset&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Reset); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Reset); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Reset) \ + NO_API virtual ~ULyraGameplayAbility_Reset(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_38_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp new file mode 100644 index 00000000..a97c3cc9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp @@ -0,0 +1,133 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayCueManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayCueManager() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayCueManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayCueManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayCueManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayCueManager +void ULyraGameplayCueManager::StaticRegisterNativesULyraGameplayCueManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayCueManager); +UClass* Z_Construct_UClass_ULyraGameplayCueManager_NoRegister() +{ + return ULyraGameplayCueManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayCueManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayCueManager\n *\n * Game-specific manager for gameplay cues\n */" }, +#endif + { "IncludePath", "AbilitySystem/LyraGameplayCueManager.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayCueManager\n\nGame-specific manager for gameplay cues" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreloadedCues_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cues that were preloaded on the client due to being referenced by content\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cues that were preloaded on the client due to being referenced by content" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysLoadedCues_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cues that were preloaded on the client and will always be loaded (code referenced or explicitly always loaded)\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cues that were preloaded on the client and will always be loaded (code referenced or explicitly always loaded)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PreloadedCues_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_PreloadedCues; + static const UECodeGen_Private::FClassPropertyParams NewProp_AlwaysLoadedCues_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_AlwaysLoadedCues; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues_ElementProp = { "PreloadedCues", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues = { "PreloadedCues", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayCueManager, PreloadedCues), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreloadedCues_MetaData), NewProp_PreloadedCues_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues_ElementProp = { "AlwaysLoadedCues", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues = { "AlwaysLoadedCues", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayCueManager, AlwaysLoadedCues), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysLoadedCues_MetaData), NewProp_AlwaysLoadedCues_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayCueManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayCueManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::ClassParams = { + &ULyraGameplayCueManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayCueManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayCueManager() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton, Z_Construct_UClass_ULyraGameplayCueManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayCueManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayCueManager); +ULyraGameplayCueManager::~ULyraGameplayCueManager() {} +// End Class ULyraGameplayCueManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayCueManager, ULyraGameplayCueManager::StaticClass, TEXT("ULyraGameplayCueManager"), &Z_Registration_Info_UClass_ULyraGameplayCueManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayCueManager), 3295187608U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_2131321812(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h new file mode 100644 index 00000000..4ecf8042 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayCueManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayCueManager_generated_h +#error "LyraGameplayCueManager.generated.h already included, missing '#pragma once' in LyraGameplayCueManager.h" +#endif +#define LYRAGAME_LyraGameplayCueManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayCueManager(); \ + friend struct Z_Construct_UClass_ULyraGameplayCueManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayCueManager, UGameplayCueManager, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayCueManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayCueManager(ULyraGameplayCueManager&&); \ + ULyraGameplayCueManager(const ULyraGameplayCueManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayCueManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayCueManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayCueManager) \ + NO_API virtual ~ULyraGameplayCueManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp new file mode 100644 index 00000000..2c1c223c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp @@ -0,0 +1,111 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayEffectContext.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayEffectContext() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayEffectContext(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayEffectContext(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraGameplayEffectContext +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraGameplayEffectContext cannot be polymorphic unless super FGameplayEffectContext is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext; +class UScriptStruct* FLyraGameplayEffectContext::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraGameplayEffectContext, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraGameplayEffectContext")); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraGameplayEffectContext::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CartridgeID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ID to allow the identification of multiple bullets that were part of the same cartridge */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ID to allow the identification of multiple bullets that were part of the same cartridge" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySourceObject_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ability Source object (should implement ILyraAbilitySourceInterface). NOT replicated currently */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability Source object (should implement ILyraAbilitySourceInterface). NOT replicated currently" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_CartridgeID; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_AbilitySourceObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_CartridgeID = { "CartridgeID", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayEffectContext, CartridgeID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CartridgeID_MetaData), NewProp_CartridgeID_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_AbilitySourceObject = { "AbilitySourceObject", nullptr, (EPropertyFlags)0x0024080000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayEffectContext, AbilitySourceObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySourceObject_MetaData), NewProp_AbilitySourceObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_CartridgeID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_AbilitySourceObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FGameplayEffectContext, + &NewStructOps, + "LyraGameplayEffectContext", + Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers), + sizeof(FLyraGameplayEffectContext), + alignof(FLyraGameplayEffectContext), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayEffectContext() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton, Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton; +} +// End ScriptStruct FLyraGameplayEffectContext + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraGameplayEffectContext::StaticStruct, Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewStructOps, TEXT("LyraGameplayEffectContext"), &Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraGameplayEffectContext), 108798499U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_2065585915(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h new file mode 100644 index 00000000..be3f07a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayEffectContext.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayEffectContext_generated_h +#error "LyraGameplayEffectContext.generated.h already included, missing '#pragma once' in LyraGameplayEffectContext.h" +#endif +#define LYRAGAME_LyraGameplayEffectContext_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FGameplayEffectContext Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp new file mode 100644 index 00000000..0619c310 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Tests/LyraGameplayRpcRegistrationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayRpcRegistrationComponent() {} + +// Begin Cross Module References +EXTERNALRPCREGISTRY_API UClass* Z_Construct_UClass_UExternalRpcRegistrationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayRpcRegistrationComponent +void ULyraGameplayRpcRegistrationComponent::StaticRegisterNativesULyraGameplayRpcRegistrationComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayRpcRegistrationComponent); +UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_NoRegister() +{ + return ULyraGameplayRpcRegistrationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Tests/LyraGameplayRpcRegistrationComponent.h" }, + { "ModuleRelativePath", "Tests/LyraGameplayRpcRegistrationComponent.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UExternalRpcRegistrationComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::ClassParams = { + &ULyraGameplayRpcRegistrationComponent::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton, Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayRpcRegistrationComponent::StaticClass(); +} +ULyraGameplayRpcRegistrationComponent::ULyraGameplayRpcRegistrationComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayRpcRegistrationComponent); +ULyraGameplayRpcRegistrationComponent::~ULyraGameplayRpcRegistrationComponent() {} +// End Class ULyraGameplayRpcRegistrationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent, ULyraGameplayRpcRegistrationComponent::StaticClass, TEXT("ULyraGameplayRpcRegistrationComponent"), &Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayRpcRegistrationComponent), 540384407U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_864919071(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h new file mode 100644 index 00000000..4120cfab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Tests/LyraGameplayRpcRegistrationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayRpcRegistrationComponent_generated_h +#error "LyraGameplayRpcRegistrationComponent.generated.h already included, missing '#pragma once' in LyraGameplayRpcRegistrationComponent.h" +#endif +#define LYRAGAME_LyraGameplayRpcRegistrationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayRpcRegistrationComponent(); \ + friend struct Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayRpcRegistrationComponent, UExternalRpcRegistrationComponent, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayRpcRegistrationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameplayRpcRegistrationComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayRpcRegistrationComponent(ULyraGameplayRpcRegistrationComponent&&); \ + ULyraGameplayRpcRegistrationComponent(const ULyraGameplayRpcRegistrationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayRpcRegistrationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayRpcRegistrationComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayRpcRegistrationComponent) \ + NO_API virtual ~ULyraGameplayRpcRegistrationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp new file mode 100644 index 00000000..731706b5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp @@ -0,0 +1,461 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGlobalAbilitySystem.h" +#include "GameplayAbilities/Public/ActiveGameplayEffectHandle.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGlobalAbilitySystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FActiveGameplayEffectHandle(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedAbilityList(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedEffectList(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FGlobalAppliedAbilityList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList; +class UScriptStruct* FGlobalAppliedAbilityList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GlobalAppliedAbilityList")); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGlobalAppliedAbilityList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Handles_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handles_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Handles_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Handles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_ValueProp = { "Handles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(0, nullptr) }; // 3490030742 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_Key_KeyProp = { "Handles_Key", nullptr, (EPropertyFlags)0x0004000000080000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles = { "Handles", nullptr, (EPropertyFlags)0x0010008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGlobalAppliedAbilityList, Handles), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Handles_MetaData), NewProp_Handles_MetaData) }; // 3490030742 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GlobalAppliedAbilityList", + Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers), + sizeof(FGlobalAppliedAbilityList), + alignof(FGlobalAppliedAbilityList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedAbilityList() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton; +} +// End ScriptStruct FGlobalAppliedAbilityList + +// Begin ScriptStruct FGlobalAppliedEffectList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList; +class UScriptStruct* FGlobalAppliedEffectList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGlobalAppliedEffectList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GlobalAppliedEffectList")); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGlobalAppliedEffectList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Handles_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handles_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Handles_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Handles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_ValueProp = { "Handles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FActiveGameplayEffectHandle, METADATA_PARAMS(0, nullptr) }; // 290910411 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_Key_KeyProp = { "Handles_Key", nullptr, (EPropertyFlags)0x0004000000080000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles = { "Handles", nullptr, (EPropertyFlags)0x0010008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGlobalAppliedEffectList, Handles), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Handles_MetaData), NewProp_Handles_MetaData) }; // 290910411 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GlobalAppliedEffectList", + Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers), + sizeof(FGlobalAppliedEffectList), + alignof(FGlobalAppliedEffectList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedEffectList() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton, Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton; +} +// End ScriptStruct FGlobalAppliedEffectList + +// Begin Class ULyraGlobalAbilitySystem Function ApplyAbilityToAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics +{ + struct LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms + { + TSubclassOf Ability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::NewProp_Ability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "ApplyAbilityToAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execApplyAbilityToAll) +{ + P_GET_OBJECT(UClass,Z_Param_Ability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyAbilityToAll(Z_Param_Ability); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function ApplyAbilityToAll + +// Begin Class ULyraGlobalAbilitySystem Function ApplyEffectToAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics +{ + struct LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms + { + TSubclassOf Effect; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Effect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms, Effect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::NewProp_Effect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "ApplyEffectToAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execApplyEffectToAll) +{ + P_GET_OBJECT(UClass,Z_Param_Effect); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyEffectToAll(Z_Param_Effect); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function ApplyEffectToAll + +// Begin Class ULyraGlobalAbilitySystem Function RemoveAbilityFromAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics +{ + struct LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms + { + TSubclassOf Ability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::NewProp_Ability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "RemoveAbilityFromAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execRemoveAbilityFromAll) +{ + P_GET_OBJECT(UClass,Z_Param_Ability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAbilityFromAll(Z_Param_Ability); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function RemoveAbilityFromAll + +// Begin Class ULyraGlobalAbilitySystem Function RemoveEffectFromAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics +{ + struct LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms + { + TSubclassOf Effect; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Effect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms, Effect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::NewProp_Effect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "RemoveEffectFromAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execRemoveEffectFromAll) +{ + P_GET_OBJECT(UClass,Z_Param_Effect); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveEffectFromAll(Z_Param_Effect); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function RemoveEffectFromAll + +// Begin Class ULyraGlobalAbilitySystem +void ULyraGlobalAbilitySystem::StaticRegisterNativesULyraGlobalAbilitySystem() +{ + UClass* Class = ULyraGlobalAbilitySystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyAbilityToAll", &ULyraGlobalAbilitySystem::execApplyAbilityToAll }, + { "ApplyEffectToAll", &ULyraGlobalAbilitySystem::execApplyEffectToAll }, + { "RemoveAbilityFromAll", &ULyraGlobalAbilitySystem::execRemoveAbilityFromAll }, + { "RemoveEffectFromAll", &ULyraGlobalAbilitySystem::execRemoveEffectFromAll }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGlobalAbilitySystem); +UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem_NoRegister() +{ + return ULyraGlobalAbilitySystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AppliedAbilities_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AppliedEffects_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RegisteredASCs_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AppliedAbilities_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_AppliedAbilities_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AppliedAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_AppliedEffects_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_AppliedEffects_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AppliedEffects; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RegisteredASCs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RegisteredASCs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll, "ApplyAbilityToAll" }, // 1499766359 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll, "ApplyEffectToAll" }, // 1211284620 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll, "RemoveAbilityFromAll" }, // 728643378 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll, "RemoveEffectFromAll" }, // 3779592866 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_ValueProp = { "AppliedAbilities", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList, METADATA_PARAMS(0, nullptr) }; // 3548407565 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_Key_KeyProp = { "AppliedAbilities_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities = { "AppliedAbilities", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, AppliedAbilities), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AppliedAbilities_MetaData), NewProp_AppliedAbilities_MetaData) }; // 3548407565 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_ValueProp = { "AppliedEffects", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGlobalAppliedEffectList, METADATA_PARAMS(0, nullptr) }; // 467594997 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_Key_KeyProp = { "AppliedEffects_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects = { "AppliedEffects", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, AppliedEffects), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AppliedEffects_MetaData), NewProp_AppliedEffects_MetaData) }; // 467594997 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs_Inner = { "RegisteredASCs", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs = { "RegisteredASCs", nullptr, (EPropertyFlags)0x0144008000000008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, RegisteredASCs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RegisteredASCs_MetaData), NewProp_RegisteredASCs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::ClassParams = { + &ULyraGlobalAbilitySystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem() +{ + if (!Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton, Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGlobalAbilitySystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGlobalAbilitySystem); +ULyraGlobalAbilitySystem::~ULyraGlobalAbilitySystem() {} +// End Class ULyraGlobalAbilitySystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGlobalAppliedAbilityList::StaticStruct, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewStructOps, TEXT("GlobalAppliedAbilityList"), &Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGlobalAppliedAbilityList), 3548407565U) }, + { FGlobalAppliedEffectList::StaticStruct, Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewStructOps, TEXT("GlobalAppliedEffectList"), &Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGlobalAppliedEffectList), 467594997U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGlobalAbilitySystem, ULyraGlobalAbilitySystem::StaticClass, TEXT("ULyraGlobalAbilitySystem"), &Z_Registration_Info_UClass_ULyraGlobalAbilitySystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGlobalAbilitySystem), 2558192301U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_3509633250(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h new file mode 100644 index 00000000..b5e90b34 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h @@ -0,0 +1,78 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGlobalAbilitySystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameplayAbility; +class UGameplayEffect; +#ifdef LYRAGAME_LyraGlobalAbilitySystem_generated_h +#error "LyraGlobalAbilitySystem.generated.h already included, missing '#pragma once' in LyraGlobalAbilitySystem.h" +#endif +#define LYRAGAME_LyraGlobalAbilitySystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_36_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemoveEffectFromAll); \ + DECLARE_FUNCTION(execRemoveAbilityFromAll); \ + DECLARE_FUNCTION(execApplyEffectToAll); \ + DECLARE_FUNCTION(execApplyAbilityToAll); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGlobalAbilitySystem(); \ + friend struct Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraGlobalAbilitySystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGlobalAbilitySystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGlobalAbilitySystem(ULyraGlobalAbilitySystem&&); \ + ULyraGlobalAbilitySystem(const ULyraGlobalAbilitySystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGlobalAbilitySystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGlobalAbilitySystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGlobalAbilitySystem) \ + NO_API virtual ~ULyraGlobalAbilitySystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_46_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.gen.cpp new file mode 100644 index 00000000..39867a58 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraHUD.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHUD() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AHUD(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraHUD +void ALyraHUD::StaticRegisterNativesALyraHUD() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraHUD); +UClass* Z_Construct_UClass_ALyraHUD_NoRegister() +{ + return ALyraHUD::StaticClass(); +} +struct Z_Construct_UClass_ALyraHUD_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraHUD\n *\n * Note that you typically do not need to extend or modify this class, instead you would\n * use an \"Add Widget\" action in your experience to add a HUD layout and widgets to it\n * \n * This class exists primarily for debug rendering\n */" }, +#endif + { "HideCategories", "Rendering Actor Input Replication" }, + { "IncludePath", "UI/LyraHUD.h" }, + { "ModuleRelativePath", "UI/LyraHUD.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraHUD\n\n Note that you typically do not need to extend or modify this class, instead you would\n use an \"Add Widget\" action in your experience to add a HUD layout and widgets to it\n\n This class exists primarily for debug rendering" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraHUD_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AHUD, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraHUD_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraHUD_Statics::ClassParams = { + &ALyraHUD::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraHUD_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraHUD_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraHUD() +{ + if (!Z_Registration_Info_UClass_ALyraHUD.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraHUD.OuterSingleton, Z_Construct_UClass_ALyraHUD_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraHUD.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraHUD::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraHUD); +ALyraHUD::~ALyraHUD() {} +// End Class ALyraHUD + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraHUD, ALyraHUD::StaticClass, TEXT("ALyraHUD"), &Z_Registration_Info_UClass_ALyraHUD, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraHUD), 640045642U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_2163309064(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.generated.h new file mode 100644 index 00000000..91bbd677 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUD.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraHUD.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHUD_generated_h +#error "LyraHUD.generated.h already included, missing '#pragma once' in LyraHUD.h" +#endif +#define LYRAGAME_LyraHUD_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraHUD(); \ + friend struct Z_Construct_UClass_ALyraHUD_Statics; \ +public: \ + DECLARE_CLASS(ALyraHUD, AHUD, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraHUD) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraHUD(ALyraHUD&&); \ + ALyraHUD(const ALyraHUD&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraHUD); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraHUD); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraHUD) \ + NO_API virtual ~ALyraHUD(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp new file mode 100644 index 00000000..f6139f84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp @@ -0,0 +1,271 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraHUDLayout.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHUDLayout() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHUDLayout(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHUDLayout_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHUDLayout Function DisplayControllerDisconnectedMenu +static const FName NAME_ULyraHUDLayout_DisplayControllerDisconnectedMenu = FName(TEXT("DisplayControllerDisconnectedMenu")); +void ULyraHUDLayout::DisplayControllerDisconnectedMenu() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraHUDLayout_DisplayControllerDisconnectedMenu); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + DisplayControllerDisconnectedMenu_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Pushes the ControllerDisconnectedMenuClass to the Menu layer (UI.Layer.Menu)\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pushes the ControllerDisconnectedMenuClass to the Menu layer (UI.Layer.Menu)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHUDLayout, nullptr, "DisplayControllerDisconnectedMenu", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHUDLayout::execDisplayControllerDisconnectedMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DisplayControllerDisconnectedMenu_Implementation(); + P_NATIVE_END; +} +// End Class ULyraHUDLayout Function DisplayControllerDisconnectedMenu + +// Begin Class ULyraHUDLayout Function HideControllerDisconnectedMenu +static const FName NAME_ULyraHUDLayout_HideControllerDisconnectedMenu = FName(TEXT("HideControllerDisconnectedMenu")); +void ULyraHUDLayout::HideControllerDisconnectedMenu() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraHUDLayout_HideControllerDisconnectedMenu); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + HideControllerDisconnectedMenu_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Hides the controller disconnected menu if it is active.\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Hides the controller disconnected menu if it is active." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHUDLayout, nullptr, "HideControllerDisconnectedMenu", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHUDLayout::execHideControllerDisconnectedMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HideControllerDisconnectedMenu_Implementation(); + P_NATIVE_END; +} +// End Class ULyraHUDLayout Function HideControllerDisconnectedMenu + +// Begin Class ULyraHUDLayout +void ULyraHUDLayout::StaticRegisterNativesULyraHUDLayout() +{ + UClass* Class = ULyraHUDLayout::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "DisplayControllerDisconnectedMenu", &ULyraHUDLayout::execDisplayControllerDisconnectedMenu }, + { "HideControllerDisconnectedMenu", &ULyraHUDLayout::execHideControllerDisconnectedMenu }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHUDLayout); +UClass* Z_Construct_UClass_ULyraHUDLayout_NoRegister() +{ + return ULyraHUDLayout::StaticClass(); +} +struct Z_Construct_UClass_ULyraHUDLayout_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Lyra|HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHUDLayout\n *\n *\x09Widget used to lay out the player's HUD (typically specified by an Add Widgets action in the experience)\n */" }, +#endif + { "DisplayName", "Lyra HUD Layout" }, + { "IncludePath", "UI/LyraHUDLayout.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHUDLayout\n\n Widget used to lay out the player's HUD (typically specified by an Add Widgets action in the experience)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EscapeMenuClass_MetaData[] = { + { "Category", "LyraHUDLayout" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The menu to be displayed when the user presses the \"Pause\" or \"Escape\" button \n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The menu to be displayed when the user presses the \"Pause\" or \"Escape\" button" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerDisconnectedScreen_MetaData[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09* The widget which should be presented to the user if all of their controllers are disconnected.\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget which should be presented to the user if all of their controllers are disconnected." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformRequiresControllerDisconnectScreen_MetaData[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The platform tags that are required in order to show the \"Controller Disconnected\" screen.\n\x09 *\n\x09 * If these tags are not set in the INI file for this platform, then the controller disconnect screen\n\x09 * will not ever be displayed. \n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The platform tags that are required in order to show the \"Controller Disconnected\" screen.\n\nIf these tags are not set in the INI file for this platform, then the controller disconnect screen\nwill not ever be displayed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedControllerDisconnectScreen_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pointer to the active \"Controller Disconnected\" menu if there is one. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointer to the active \"Controller Disconnected\" menu if there is one." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_EscapeMenuClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_ControllerDisconnectedScreen; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformRequiresControllerDisconnectScreen; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedControllerDisconnectScreen; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu, "DisplayControllerDisconnectedMenu" }, // 1053584253 + { &Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu, "HideControllerDisconnectedMenu" }, // 1544965496 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_EscapeMenuClass = { "EscapeMenuClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, EscapeMenuClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EscapeMenuClass_MetaData), NewProp_EscapeMenuClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_ControllerDisconnectedScreen = { "ControllerDisconnectedScreen", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, ControllerDisconnectedScreen), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerDisconnectedScreen_MetaData), NewProp_ControllerDisconnectedScreen_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_PlatformRequiresControllerDisconnectScreen = { "PlatformRequiresControllerDisconnectScreen", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, PlatformRequiresControllerDisconnectScreen), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformRequiresControllerDisconnectScreen_MetaData), NewProp_PlatformRequiresControllerDisconnectScreen_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_SpawnedControllerDisconnectScreen = { "SpawnedControllerDisconnectScreen", nullptr, (EPropertyFlags)0x0124080000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, SpawnedControllerDisconnectScreen), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedControllerDisconnectScreen_MetaData), NewProp_SpawnedControllerDisconnectScreen_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_EscapeMenuClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_ControllerDisconnectedScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_PlatformRequiresControllerDisconnectScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_SpawnedControllerDisconnectScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHUDLayout_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHUDLayout_Statics::ClassParams = { + &ULyraHUDLayout::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHUDLayout_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHUDLayout() +{ + if (!Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton, Z_Construct_UClass_ULyraHUDLayout_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHUDLayout::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHUDLayout); +ULyraHUDLayout::~ULyraHUDLayout() {} +// End Class ULyraHUDLayout + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHUDLayout, ULyraHUDLayout::StaticClass, TEXT("ULyraHUDLayout"), &Z_Registration_Info_UClass_ULyraHUDLayout, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHUDLayout), 161247801U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_4192464121(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.generated.h new file mode 100644 index 00000000..cdd5862b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHUDLayout.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraHUDLayout.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHUDLayout_generated_h +#error "LyraHUDLayout.generated.h already included, missing '#pragma once' in LyraHUDLayout.h" +#endif +#define LYRAGAME_LyraHUDLayout_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void HideControllerDisconnectedMenu_Implementation(); \ + virtual void DisplayControllerDisconnectedMenu_Implementation(); \ + DECLARE_FUNCTION(execHideControllerDisconnectedMenu); \ + DECLARE_FUNCTION(execDisplayControllerDisconnectedMenu); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHUDLayout(); \ + friend struct Z_Construct_UClass_ULyraHUDLayout_Statics; \ +public: \ + DECLARE_CLASS(ULyraHUDLayout, ULyraActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHUDLayout) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHUDLayout(ULyraHUDLayout&&); \ + ULyraHUDLayout(const ULyraHUDLayout&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHUDLayout); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHUDLayout); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHUDLayout) \ + NO_API virtual ~ULyraHUDLayout(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp new file mode 100644 index 00000000..b4a50dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Executions/LyraHealExecution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealExecution() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectExecutionCalculation(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealExecution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealExecution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHealExecution +void ULyraHealExecution::StaticRegisterNativesULyraHealExecution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealExecution); +UClass* Z_Construct_UClass_ULyraHealExecution_NoRegister() +{ + return ULyraHealExecution::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealExecution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealExecution\n *\n *\x09""Execution used by gameplay effects to apply healing to the health attributes.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Executions/LyraHealExecution.h" }, + { "ModuleRelativePath", "AbilitySystem/Executions/LyraHealExecution.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealExecution\n\n Execution used by gameplay effects to apply healing to the health attributes." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraHealExecution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectExecutionCalculation, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealExecution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealExecution_Statics::ClassParams = { + &ULyraHealExecution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealExecution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealExecution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealExecution() +{ + if (!Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton, Z_Construct_UClass_ULyraHealExecution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealExecution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealExecution); +ULyraHealExecution::~ULyraHealExecution() {} +// End Class ULyraHealExecution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealExecution, ULyraHealExecution::StaticClass, TEXT("ULyraHealExecution"), &Z_Registration_Info_UClass_ULyraHealExecution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealExecution), 3867593513U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_2681827526(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.generated.h new file mode 100644 index 00000000..5abb5b9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealExecution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Executions/LyraHealExecution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHealExecution_generated_h +#error "LyraHealExecution.generated.h already included, missing '#pragma once' in LyraHealExecution.h" +#endif +#define LYRAGAME_LyraHealExecution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealExecution(); \ + friend struct Z_Construct_UClass_ULyraHealExecution_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealExecution, UGameplayEffectExecutionCalculation, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealExecution) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealExecution(ULyraHealExecution&&); \ + ULyraHealExecution(const ULyraHealExecution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealExecution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealExecution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHealExecution) \ + NO_API virtual ~ULyraHealExecution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp new file mode 100644 index 00000000..fb0f2dbd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp @@ -0,0 +1,834 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraHealthComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealthComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDeathState(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraHealth_DeathEvent +struct Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraHealth_DeathEvent_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_DeathEvent_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraHealth_DeathEvent__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_DeathEvent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_DeathEvent_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraHealth_DeathEvent_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_DeathEvent, AActor* OwningActor) +{ + struct _Script_LyraGame_eventLyraHealth_DeathEvent_Parms + { + AActor* OwningActor; + }; + _Script_LyraGame_eventLyraHealth_DeathEvent_Parms Parms; + Parms.OwningActor=OwningActor; + LyraHealth_DeathEvent.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraHealth_DeathEvent + +// Begin Delegate FLyraHealth_AttributeChanged +struct Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms + { + ULyraHealthComponent* HealthComponent; + float OldValue; + float NewValue; + AActor* Instigator; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthComponent; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_HealthComponent = { "HealthComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, HealthComponent), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthComponent_MetaData), NewProp_HealthComponent_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, OldValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, Instigator), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_HealthComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_OldValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_NewValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_Instigator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraHealth_AttributeChanged__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraHealth_AttributeChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_AttributeChanged, ULyraHealthComponent* HealthComponent, float OldValue, float NewValue, AActor* Instigator) +{ + struct _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms + { + ULyraHealthComponent* HealthComponent; + float OldValue; + float NewValue; + AActor* Instigator; + }; + _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms Parms; + Parms.HealthComponent=HealthComponent; + Parms.OldValue=OldValue; + Parms.NewValue=NewValue; + Parms.Instigator=Instigator; + LyraHealth_AttributeChanged.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraHealth_AttributeChanged + +// Begin Enum ELyraDeathState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraDeathState; +static UEnum* ELyraDeathState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraDeathState, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraDeathState")); + } + return Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraDeathState_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraDeathState\n *\n *\x09""Defines current state of death.\n */" }, +#endif + { "DeathFinished.Name", "ELyraDeathState::DeathFinished" }, + { "DeathStarted.Name", "ELyraDeathState::DeathStarted" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "NotDead.Name", "ELyraDeathState::NotDead" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraDeathState\n\n Defines current state of death." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraDeathState::NotDead", (int64)ELyraDeathState::NotDead }, + { "ELyraDeathState::DeathStarted", (int64)ELyraDeathState::DeathStarted }, + { "ELyraDeathState::DeathFinished", (int64)ELyraDeathState::DeathFinished }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraDeathState", + "ELyraDeathState", + Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraDeathState() +{ + if (!Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton; +} +// End Enum ELyraDeathState + +// Begin Class ULyraHealthComponent Function FindHealthComponent +struct Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics +{ + struct LyraHealthComponent_eventFindHealthComponent_Parms + { + const AActor* Actor; + ULyraHealthComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the health component if one exists on the specified actor.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the health component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventFindHealthComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventFindHealthComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "FindHealthComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::LyraHealthComponent_eventFindHealthComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::LyraHealthComponent_eventFindHealthComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execFindHealthComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHealthComponent**)Z_Param__Result=ULyraHealthComponent::FindHealthComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function FindHealthComponent + +// Begin Class ULyraHealthComponent Function GetDeathState +struct Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics +{ + struct LyraHealthComponent_eventGetDeathState_Parms + { + ELyraDeathState ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetDeathState_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(0, nullptr) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetDeathState", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::LyraHealthComponent_eventGetDeathState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::LyraHealthComponent_eventGetDeathState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetDeathState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetDeathState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraDeathState*)Z_Param__Result=P_THIS->GetDeathState(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetDeathState + +// Begin Class ULyraHealthComponent Function GetHealth +struct Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics +{ + struct LyraHealthComponent_eventGetHealth_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current health value.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current health value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetHealth_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::LyraHealthComponent_eventGetHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::LyraHealthComponent_eventGetHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetHealth) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetHealth(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetHealth + +// Begin Class ULyraHealthComponent Function GetHealthNormalized +struct Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics +{ + struct LyraHealthComponent_eventGetHealthNormalized_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current health in the range [0.0, 1.0].\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current health in the range [0.0, 1.0]." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetHealthNormalized_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetHealthNormalized", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::LyraHealthComponent_eventGetHealthNormalized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::LyraHealthComponent_eventGetHealthNormalized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetHealthNormalized) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetHealthNormalized(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetHealthNormalized + +// Begin Class ULyraHealthComponent Function GetMaxHealth +struct Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics +{ + struct LyraHealthComponent_eventGetMaxHealth_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current maximum health value.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current maximum health value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetMaxHealth_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetMaxHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::LyraHealthComponent_eventGetMaxHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::LyraHealthComponent_eventGetMaxHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetMaxHealth) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetMaxHealth(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetMaxHealth + +// Begin Class ULyraHealthComponent Function InitializeWithAbilitySystem +struct Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics +{ + struct LyraHealthComponent_eventInitializeWithAbilitySystem_Parms + { + ULyraAbilitySystemComponent* InASC; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Initialize the component using an ability system component.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Initialize the component using an ability system component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InASC_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InASC; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::NewProp_InASC = { "InASC", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventInitializeWithAbilitySystem_Parms, InASC), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InASC_MetaData), NewProp_InASC_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::NewProp_InASC, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "InitializeWithAbilitySystem", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::LyraHealthComponent_eventInitializeWithAbilitySystem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::LyraHealthComponent_eventInitializeWithAbilitySystem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execInitializeWithAbilitySystem) +{ + P_GET_OBJECT(ULyraAbilitySystemComponent,Z_Param_InASC); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InitializeWithAbilitySystem(Z_Param_InASC); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function InitializeWithAbilitySystem + +// Begin Class ULyraHealthComponent Function IsDeadOrDying +struct Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics +{ + struct LyraHealthComponent_eventIsDeadOrDying_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraHealthComponent_eventIsDeadOrDying_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraHealthComponent_eventIsDeadOrDying_Parms), &Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "IsDeadOrDying", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::LyraHealthComponent_eventIsDeadOrDying_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::LyraHealthComponent_eventIsDeadOrDying_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execIsDeadOrDying) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsDeadOrDying(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function IsDeadOrDying + +// Begin Class ULyraHealthComponent Function OnRep_DeathState +struct Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics +{ + struct LyraHealthComponent_eventOnRep_DeathState_Parms + { + ELyraDeathState OldDeathState; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OldDeathState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldDeathState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState = { "OldDeathState", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventOnRep_DeathState_Parms, OldDeathState), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(0, nullptr) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "OnRep_DeathState", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::LyraHealthComponent_eventOnRep_DeathState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::LyraHealthComponent_eventOnRep_DeathState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execOnRep_DeathState) +{ + P_GET_ENUM(ELyraDeathState,Z_Param_OldDeathState); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_DeathState(ELyraDeathState(Z_Param_OldDeathState)); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function OnRep_DeathState + +// Begin Class ULyraHealthComponent Function UninitializeFromAbilitySystem +struct Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Uninitialize the component, clearing any references to the ability system.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Uninitialize the component, clearing any references to the ability system." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "UninitializeFromAbilitySystem", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execUninitializeFromAbilitySystem) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UninitializeFromAbilitySystem(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function UninitializeFromAbilitySystem + +// Begin Class ULyraHealthComponent +void ULyraHealthComponent::StaticRegisterNativesULyraHealthComponent() +{ + UClass* Class = ULyraHealthComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindHealthComponent", &ULyraHealthComponent::execFindHealthComponent }, + { "GetDeathState", &ULyraHealthComponent::execGetDeathState }, + { "GetHealth", &ULyraHealthComponent::execGetHealth }, + { "GetHealthNormalized", &ULyraHealthComponent::execGetHealthNormalized }, + { "GetMaxHealth", &ULyraHealthComponent::execGetMaxHealth }, + { "InitializeWithAbilitySystem", &ULyraHealthComponent::execInitializeWithAbilitySystem }, + { "IsDeadOrDying", &ULyraHealthComponent::execIsDeadOrDying }, + { "OnRep_DeathState", &ULyraHealthComponent::execOnRep_DeathState }, + { "UninitializeFromAbilitySystem", &ULyraHealthComponent::execUninitializeFromAbilitySystem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealthComponent); +UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister() +{ + return ULyraHealthComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealthComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealthComponent\n *\n *\x09""An actor component used to handle anything related to health.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraHealthComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealthComponent\n\n An actor component used to handle anything related to health." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnHealthChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the health value has changed. This is called on the client but the instigator may not be valid\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the health value has changed. This is called on the client but the instigator may not be valid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnMaxHealthChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the max health value has changed. This is called on the client but the instigator may not be valid\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the max health value has changed. This is called on the client but the instigator may not be valid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnDeathStarted_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the death sequence has started.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the death sequence has started." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnDeathFinished_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the death sequence has finished.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the death sequence has finished." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability system used by this component.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability system used by this component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health set used by this component.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health set used by this component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeathState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated state used to handle dying.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated state used to handle dying." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnHealthChanged; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnMaxHealthChanged; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnDeathStarted; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnDeathFinished; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FBytePropertyParams NewProp_DeathState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DeathState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent, "FindHealthComponent" }, // 1897155955 + { &Z_Construct_UFunction_ULyraHealthComponent_GetDeathState, "GetDeathState" }, // 1952650617 + { &Z_Construct_UFunction_ULyraHealthComponent_GetHealth, "GetHealth" }, // 1653434200 + { &Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized, "GetHealthNormalized" }, // 513986809 + { &Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth, "GetMaxHealth" }, // 2487856545 + { &Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem, "InitializeWithAbilitySystem" }, // 4252823002 + { &Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying, "IsDeadOrDying" }, // 2768371454 + { &Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState, "OnRep_DeathState" }, // 3603482237 + { &Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem, "UninitializeFromAbilitySystem" }, // 2511624743 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnHealthChanged = { "OnHealthChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnHealthChanged), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnHealthChanged_MetaData), NewProp_OnHealthChanged_MetaData) }; // 2134901530 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnMaxHealthChanged = { "OnMaxHealthChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnMaxHealthChanged), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnMaxHealthChanged_MetaData), NewProp_OnMaxHealthChanged_MetaData) }; // 2134901530 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathStarted = { "OnDeathStarted", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnDeathStarted), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnDeathStarted_MetaData), NewProp_OnDeathStarted_MetaData) }; // 3162790194 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathFinished = { "OnDeathFinished", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnDeathFinished), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnDeathFinished_MetaData), NewProp_OnDeathFinished_MetaData) }; // 3162790194 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState = { "DeathState", "OnRep_DeathState", (EPropertyFlags)0x0020080100000020, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, DeathState), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeathState_MetaData), NewProp_DeathState_MetaData) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnHealthChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnMaxHealthChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathStarted, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathFinished, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHealthComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFrameworkComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealthComponent_Statics::ClassParams = { + &ULyraHealthComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealthComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealthComponent() +{ + if (!Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton, Z_Construct_UClass_ULyraHealthComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealthComponent::StaticClass(); +} +void ULyraHealthComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_DeathState(TEXT("DeathState")); + const bool bIsValid = true + && Name_DeathState == ClassReps[(int32)ENetFields_Private::DeathState].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraHealthComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealthComponent); +ULyraHealthComponent::~ULyraHealthComponent() {} +// End Class ULyraHealthComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraDeathState_StaticEnum, TEXT("ELyraDeathState"), &Z_Registration_Info_UEnum_ELyraDeathState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1910665219U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealthComponent, ULyraHealthComponent::StaticClass, TEXT("ULyraHealthComponent"), &Z_Registration_Info_UClass_ULyraHealthComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealthComponent), 2508419166U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_2564252272(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.generated.h new file mode 100644 index 00000000..0efe4008 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthComponent.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraHealthComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraAbilitySystemComponent; +class ULyraHealthComponent; +enum class ELyraDeathState : uint8; +#ifdef LYRAGAME_LyraHealthComponent_generated_h +#error "LyraHealthComponent.generated.h already included, missing '#pragma once' in LyraHealthComponent.h" +#endif +#define LYRAGAME_LyraHealthComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_17_DELEGATE \ +LYRAGAME_API void FLyraHealth_DeathEvent_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_DeathEvent, AActor* OwningActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_18_DELEGATE \ +LYRAGAME_API void FLyraHealth_AttributeChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_AttributeChanged, ULyraHealthComponent* HealthComponent, float OldValue, float NewValue, AActor* Instigator); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_DeathState); \ + DECLARE_FUNCTION(execIsDeadOrDying); \ + DECLARE_FUNCTION(execGetDeathState); \ + DECLARE_FUNCTION(execGetHealthNormalized); \ + DECLARE_FUNCTION(execGetMaxHealth); \ + DECLARE_FUNCTION(execGetHealth); \ + DECLARE_FUNCTION(execUninitializeFromAbilitySystem); \ + DECLARE_FUNCTION(execInitializeWithAbilitySystem); \ + DECLARE_FUNCTION(execFindHealthComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealthComponent(); \ + friend struct Z_Construct_UClass_ULyraHealthComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealthComponent, UGameFrameworkComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealthComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + DeathState=NETFIELD_REP_START, \ + NETFIELD_REP_END=DeathState }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealthComponent(ULyraHealthComponent&&); \ + ULyraHealthComponent(const ULyraHealthComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealthComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealthComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHealthComponent) \ + NO_API virtual ~ULyraHealthComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h + + +#define FOREACH_ENUM_ELYRADEATHSTATE(op) \ + op(ELyraDeathState::NotDead) \ + op(ELyraDeathState::DeathStarted) \ + op(ELyraDeathState::DeathFinished) + +enum class ELyraDeathState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp new file mode 100644 index 00000000..6c61b62a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp @@ -0,0 +1,271 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraHealthSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealthSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHealthSet Function OnRep_Health +struct Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics +{ + struct LyraHealthSet_eventOnRep_Health_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthSet_eventOnRep_Health_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthSet, nullptr, "OnRep_Health", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::LyraHealthSet_eventOnRep_Health_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::LyraHealthSet_eventOnRep_Health_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthSet_OnRep_Health() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthSet::execOnRep_Health) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Health(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraHealthSet Function OnRep_Health + +// Begin Class ULyraHealthSet Function OnRep_MaxHealth +struct Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics +{ + struct LyraHealthSet_eventOnRep_MaxHealth_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthSet_eventOnRep_MaxHealth_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthSet, nullptr, "OnRep_MaxHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::LyraHealthSet_eventOnRep_MaxHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::LyraHealthSet_eventOnRep_MaxHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthSet::execOnRep_MaxHealth) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MaxHealth(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraHealthSet Function OnRep_MaxHealth + +// Begin Class ULyraHealthSet +void ULyraHealthSet::StaticRegisterNativesULyraHealthSet() +{ + UClass* Class = ULyraHealthSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_Health", &ULyraHealthSet::execOnRep_Health }, + { "OnRep_MaxHealth", &ULyraHealthSet::execOnRep_MaxHealth }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealthSet); +UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister() +{ + return ULyraHealthSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealthSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealthSet\n *\n *\x09""Class that defines attributes that are necessary for taking damage.\n *\x09""Attribute examples include: health, shields, and resistances.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealthSet\n\n Class that defines attributes that are necessary for taking damage.\n Attribute examples include: health, shields, and resistances." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Health_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current health attribute. The health will be capped by the max health attribute. Health is hidden from modifiers so only executions can modify it.\n" }, +#endif + { "HideFromModifiers", "" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current health attribute. The health will be capped by the max health attribute. Health is hidden from modifiers so only executions can modify it." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxHealth_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current max health attribute. Max health is an attribute since gameplay effects can modify it.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current max health attribute. Max health is an attribute since gameplay effects can modify it." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Healing_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Incoming healing. This is mapped directly to +Health\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Incoming healing. This is mapped directly to +Health" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Damage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Incoming damage. This is mapped directly to -Health\n" }, +#endif + { "HideFromModifiers", "" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Incoming damage. This is mapped directly to -Health" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Health; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaxHealth; + static const UECodeGen_Private::FStructPropertyParams NewProp_Healing; + static const UECodeGen_Private::FStructPropertyParams NewProp_Damage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHealthSet_OnRep_Health, "OnRep_Health" }, // 3019174776 + { &Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth, "OnRep_MaxHealth" }, // 727151021 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Health = { "Health", "OnRep_Health", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Health), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Health_MetaData), NewProp_Health_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_MaxHealth = { "MaxHealth", "OnRep_MaxHealth", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, MaxHealth), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxHealth_MetaData), NewProp_MaxHealth_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Healing = { "Healing", nullptr, (EPropertyFlags)0x0040000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Healing), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Healing_MetaData), NewProp_Healing_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Damage = { "Damage", nullptr, (EPropertyFlags)0x0040000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Damage), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Damage_MetaData), NewProp_Damage_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Health, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_MaxHealth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Healing, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Damage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHealthSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealthSet_Statics::ClassParams = { + &ULyraHealthSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers), + 0, + 0x003000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealthSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealthSet() +{ + if (!Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton, Z_Construct_UClass_ULyraHealthSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealthSet::StaticClass(); +} +void ULyraHealthSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Health(TEXT("Health")); + static const FName Name_MaxHealth(TEXT("MaxHealth")); + const bool bIsValid = true + && Name_Health == ClassReps[(int32)ENetFields_Private::Health].Property->GetFName() + && Name_MaxHealth == ClassReps[(int32)ENetFields_Private::MaxHealth].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraHealthSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealthSet); +ULyraHealthSet::~ULyraHealthSet() {} +// End Class ULyraHealthSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealthSet, ULyraHealthSet::StaticClass, TEXT("ULyraHealthSet"), &Z_Registration_Info_UClass_ULyraHealthSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealthSet), 293291445U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_3569779746(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.generated.h new file mode 100644 index 00000000..9894d35d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHealthSet.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraHealthSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef LYRAGAME_LyraHealthSet_generated_h +#error "LyraHealthSet.generated.h already included, missing '#pragma once' in LyraHealthSet.h" +#endif +#define LYRAGAME_LyraHealthSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MaxHealth); \ + DECLARE_FUNCTION(execOnRep_Health); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealthSet(); \ + friend struct Z_Construct_UClass_ULyraHealthSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealthSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealthSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Health=NETFIELD_REP_START, \ + MaxHealth, \ + NETFIELD_REP_END=MaxHealth }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraHealthSet) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealthSet(ULyraHealthSet&&); \ + ULyraHealthSet(const ULyraHealthSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealthSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealthSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHealthSet) \ + NO_API virtual ~ULyraHealthSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp new file mode 100644 index 00000000..5179218a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp @@ -0,0 +1,205 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraHeroComponent.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHeroComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHeroComponent Function FindHeroComponent +struct Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics +{ + struct LyraHeroComponent_eventFindHeroComponent_Parms + { + const AActor* Actor; + ULyraHeroComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Hero" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the hero component if one exists on the specified actor. */" }, +#endif + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the hero component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHeroComponent_eventFindHeroComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHeroComponent_eventFindHeroComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraHeroComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHeroComponent, nullptr, "FindHeroComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::LyraHeroComponent_eventFindHeroComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::LyraHeroComponent_eventFindHeroComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHeroComponent::execFindHeroComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHeroComponent**)Z_Param__Result=ULyraHeroComponent::FindHeroComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraHeroComponent Function FindHeroComponent + +// Begin Class ULyraHeroComponent +void ULyraHeroComponent::StaticRegisterNativesULyraHeroComponent() +{ + UClass* Class = ULyraHeroComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindHeroComponent", &ULyraHeroComponent::execFindHeroComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHeroComponent); +UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister() +{ + return ULyraHeroComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraHeroComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Component that sets up input and camera handling for player controlled pawns (or bots that simulate players).\n * This depends on a PawnExtensionComponent to coordinate initialization.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraHeroComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Component that sets up input and camera handling for player controlled pawns (or bots that simulate players).\nThis depends on a PawnExtensionComponent to coordinate initialization." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultInputMappings_MetaData[] = { + { "Category", "LyraHeroComponent" }, + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityCameraMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Camera mode set by an ability. */" }, +#endif + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Camera mode set by an ability." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultInputMappings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DefaultInputMappings; + static const UECodeGen_Private::FClassPropertyParams NewProp_AbilityCameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent, "FindHeroComponent" }, // 2285230326 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings_Inner = { "DefaultInputMappings", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputMappingContextAndPriority, METADATA_PARAMS(0, nullptr) }; // 1299260669 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings = { "DefaultInputMappings", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHeroComponent, DefaultInputMappings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultInputMappings_MetaData), NewProp_DefaultInputMappings_MetaData) }; // 1299260669 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_AbilityCameraMode = { "AbilityCameraMode", nullptr, (EPropertyFlags)0x0024080000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHeroComponent, AbilityCameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityCameraMode_MetaData), NewProp_AbilityCameraMode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_AbilityCameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHeroComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraHeroComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraHeroComponent, IGameFrameworkInitStateInterface), false }, // 363983679 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHeroComponent_Statics::ClassParams = { + &ULyraHeroComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHeroComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHeroComponent() +{ + if (!Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton, Z_Construct_UClass_ULyraHeroComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHeroComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHeroComponent); +ULyraHeroComponent::~ULyraHeroComponent() {} +// End Class ULyraHeroComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHeroComponent, ULyraHeroComponent::StaticClass, TEXT("ULyraHeroComponent"), &Z_Registration_Info_UClass_ULyraHeroComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHeroComponent), 4045578168U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_4197183927(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.generated.h new file mode 100644 index 00000000..8a929861 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHeroComponent.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraHeroComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraHeroComponent; +#ifdef LYRAGAME_LyraHeroComponent_generated_h +#error "LyraHeroComponent.generated.h already included, missing '#pragma once' in LyraHeroComponent.h" +#endif +#define LYRAGAME_LyraHeroComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindHeroComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHeroComponent(); \ + friend struct Z_Construct_UClass_ULyraHeroComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraHeroComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHeroComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHeroComponent(ULyraHeroComponent&&); \ + ULyraHeroComponent(const ULyraHeroComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHeroComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHeroComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHeroComponent) \ + NO_API virtual ~ULyraHeroComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp new file mode 100644 index 00000000..3c4ef996 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraHotfixManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHotfixManager() {} + +// Begin Cross Module References +HOTFIX_API UClass* Z_Construct_UClass_UOnlineHotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHotfixManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHotfixManager +void ULyraHotfixManager::StaticRegisterNativesULyraHotfixManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHotfixManager); +UClass* Z_Construct_UClass_ULyraHotfixManager_NoRegister() +{ + return ULyraHotfixManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraHotfixManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Hotfix/LyraHotfixManager.h" }, + { "ModuleRelativePath", "Hotfix/LyraHotfixManager.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraHotfixManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UOnlineHotfixManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHotfixManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHotfixManager_Statics::ClassParams = { + &ULyraHotfixManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHotfixManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHotfixManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHotfixManager() +{ + if (!Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton, Z_Construct_UClass_ULyraHotfixManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHotfixManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHotfixManager); +// End Class ULyraHotfixManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHotfixManager, ULyraHotfixManager::StaticClass, TEXT("ULyraHotfixManager"), &Z_Registration_Info_UClass_ULyraHotfixManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHotfixManager), 3421603915U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_2693062744(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.generated.h new file mode 100644 index 00000000..55b1e161 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraHotfixManager.generated.h @@ -0,0 +1,53 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraHotfixManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHotfixManager_generated_h +#error "LyraHotfixManager.generated.h already included, missing '#pragma once' in LyraHotfixManager.h" +#endif +#define LYRAGAME_LyraHotfixManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHotfixManager(); \ + friend struct Z_Construct_UClass_ULyraHotfixManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraHotfixManager, UOnlineHotfixManager, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHotfixManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHotfixManager(ULyraHotfixManager&&); \ + ULyraHotfixManager(const ULyraHotfixManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHotfixManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHotfixManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHotfixManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_10_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp new file mode 100644 index 00000000..04d67894 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp @@ -0,0 +1,211 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/LyraIndicatorManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraIndicatorManagerComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraIndicatorManagerComponent Function AddIndicator +struct Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics +{ + struct LyraIndicatorManagerComponent_eventAddIndicator_Parms + { + UIndicatorDescriptor* IndicatorDescriptor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_IndicatorDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::NewProp_IndicatorDescriptor = { "IndicatorDescriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraIndicatorManagerComponent_eventAddIndicator_Parms, IndicatorDescriptor), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::NewProp_IndicatorDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraIndicatorManagerComponent, nullptr, "AddIndicator", nullptr, nullptr, Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::LyraIndicatorManagerComponent_eventAddIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::LyraIndicatorManagerComponent_eventAddIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraIndicatorManagerComponent::execAddIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_IndicatorDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddIndicator(Z_Param_IndicatorDescriptor); + P_NATIVE_END; +} +// End Class ULyraIndicatorManagerComponent Function AddIndicator + +// Begin Class ULyraIndicatorManagerComponent Function RemoveIndicator +struct Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics +{ + struct LyraIndicatorManagerComponent_eventRemoveIndicator_Parms + { + UIndicatorDescriptor* IndicatorDescriptor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_IndicatorDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::NewProp_IndicatorDescriptor = { "IndicatorDescriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraIndicatorManagerComponent_eventRemoveIndicator_Parms, IndicatorDescriptor), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::NewProp_IndicatorDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraIndicatorManagerComponent, nullptr, "RemoveIndicator", nullptr, nullptr, Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::LyraIndicatorManagerComponent_eventRemoveIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::LyraIndicatorManagerComponent_eventRemoveIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraIndicatorManagerComponent::execRemoveIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_IndicatorDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveIndicator(Z_Param_IndicatorDescriptor); + P_NATIVE_END; +} +// End Class ULyraIndicatorManagerComponent Function RemoveIndicator + +// Begin Class ULyraIndicatorManagerComponent +void ULyraIndicatorManagerComponent::StaticRegisterNativesULyraIndicatorManagerComponent() +{ + UClass* Class = ULyraIndicatorManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddIndicator", &ULyraIndicatorManagerComponent::execAddIndicator }, + { "RemoveIndicator", &ULyraIndicatorManagerComponent::execRemoveIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraIndicatorManagerComponent); +UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister() +{ + return ULyraIndicatorManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * @class ULyraIndicatorManagerComponent\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@class ULyraIndicatorManagerComponent" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicators_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicators_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Indicators; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator, "AddIndicator" }, // 928547484 + { &Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator, "RemoveIndicator" }, // 2490811903 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators_Inner = { "Indicators", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators = { "Indicators", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraIndicatorManagerComponent, Indicators), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicators_MetaData), NewProp_Indicators_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::ClassParams = { + &ULyraIndicatorManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraIndicatorManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraIndicatorManagerComponent); +ULyraIndicatorManagerComponent::~ULyraIndicatorManagerComponent() {} +// End Class ULyraIndicatorManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraIndicatorManagerComponent, ULyraIndicatorManagerComponent::StaticClass, TEXT("ULyraIndicatorManagerComponent"), &Z_Registration_Info_UClass_ULyraIndicatorManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraIndicatorManagerComponent), 2434299181U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_1784138061(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h new file mode 100644 index 00000000..7e5c6a2b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UIndicatorDescriptor; +#ifdef LYRAGAME_LyraIndicatorManagerComponent_generated_h +#error "LyraIndicatorManagerComponent.generated.h already included, missing '#pragma once' in LyraIndicatorManagerComponent.h" +#endif +#define LYRAGAME_LyraIndicatorManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemoveIndicator); \ + DECLARE_FUNCTION(execAddIndicator); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraIndicatorManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraIndicatorManagerComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraIndicatorManagerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraIndicatorManagerComponent(ULyraIndicatorManagerComponent&&); \ + ULyraIndicatorManagerComponent(const ULyraIndicatorManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraIndicatorManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraIndicatorManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraIndicatorManagerComponent) \ + NO_API virtual ~ULyraIndicatorManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp new file mode 100644 index 00000000..99007afd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputComponent() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInputComponent +void ULyraInputComponent::StaticRegisterNativesULyraInputComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputComponent); +UClass* Z_Construct_UClass_ULyraInputComponent_NoRegister() +{ + return ULyraInputComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInputComponent\n *\n *\x09""Component used to manage input mappings and bindings using an input config data asset.\n */" }, +#endif + { "HideCategories", "Activation Components|Activation Activation Components|Activation" }, + { "IncludePath", "Input/LyraInputComponent.h" }, + { "ModuleRelativePath", "Input/LyraInputComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInputComponent\n\n Component used to manage input mappings and bindings using an input config data asset." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedInputComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputComponent_Statics::ClassParams = { + &ULyraInputComponent::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputComponent() +{ + if (!Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton, Z_Construct_UClass_ULyraInputComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputComponent); +ULyraInputComponent::~ULyraInputComponent() {} +// End Class ULyraInputComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputComponent, ULyraInputComponent::StaticClass, TEXT("ULyraInputComponent"), &Z_Registration_Info_UClass_ULyraInputComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputComponent), 4289628356U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_4023734558(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.generated.h new file mode 100644 index 00000000..16d1fe8c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputComponent_generated_h +#error "LyraInputComponent.generated.h already included, missing '#pragma once' in LyraInputComponent.h" +#endif +#define LYRAGAME_LyraInputComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputComponent(); \ + friend struct Z_Construct_UClass_ULyraInputComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputComponent, UEnhancedInputComponent, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputComponent(ULyraInputComponent&&); \ + ULyraInputComponent(const ULyraInputComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputComponent) \ + NO_API virtual ~ULyraInputComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp new file mode 100644 index 00000000..0f362556 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp @@ -0,0 +1,359 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputConfig.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputConfig() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInputAction(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInputAction +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInputAction; +class UScriptStruct* FLyraInputAction::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInputAction, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInputAction")); + } + return Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInputAction::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInputAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraInputAction\n *\n *\x09Struct used to map a input action to a gameplay input tag.\n */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraInputAction\n\n Struct used to map a input action to a gameplay input tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputAction_MetaData[] = { + { "Category", "LyraInputAction" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "Categories", "InputTag" }, + { "Category", "LyraInputAction" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputAction; + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputAction = { "InputAction", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInputAction, InputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputAction_MetaData), NewProp_InputAction_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInputAction, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInputAction", + Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers), + sizeof(FLyraInputAction), + alignof(FLyraInputAction), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInputAction_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInputAction() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton, Z_Construct_UScriptStruct_FLyraInputAction_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton; +} +// End ScriptStruct FLyraInputAction + +// Begin Class ULyraInputConfig Function FindAbilityInputActionForTag +struct Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics +{ + struct LyraInputConfig_eventFindAbilityInputActionForTag_Parms + { + FGameplayTag InputTag; + bool bLogNotFound; + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "CPP_Default_bLogNotFound", "true" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static void NewProp_bLogNotFound_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogNotFound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindAbilityInputActionForTag_Parms, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound_SetBit(void* Obj) +{ + ((LyraInputConfig_eventFindAbilityInputActionForTag_Parms*)Obj)->bLogNotFound = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound = { "bLogNotFound", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInputConfig_eventFindAbilityInputActionForTag_Parms), &Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindAbilityInputActionForTag_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_InputTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInputConfig, nullptr, "FindAbilityInputActionForTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::LyraInputConfig_eventFindAbilityInputActionForTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::LyraInputConfig_eventFindAbilityInputActionForTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInputConfig::execFindAbilityInputActionForTag) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_InputTag); + P_GET_UBOOL(Z_Param_bLogNotFound); + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->FindAbilityInputActionForTag(Z_Param_Out_InputTag,Z_Param_bLogNotFound); + P_NATIVE_END; +} +// End Class ULyraInputConfig Function FindAbilityInputActionForTag + +// Begin Class ULyraInputConfig Function FindNativeInputActionForTag +struct Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics +{ + struct LyraInputConfig_eventFindNativeInputActionForTag_Parms + { + FGameplayTag InputTag; + bool bLogNotFound; + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "CPP_Default_bLogNotFound", "true" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static void NewProp_bLogNotFound_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogNotFound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindNativeInputActionForTag_Parms, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound_SetBit(void* Obj) +{ + ((LyraInputConfig_eventFindNativeInputActionForTag_Parms*)Obj)->bLogNotFound = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound = { "bLogNotFound", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInputConfig_eventFindNativeInputActionForTag_Parms), &Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindNativeInputActionForTag_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_InputTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInputConfig, nullptr, "FindNativeInputActionForTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::LyraInputConfig_eventFindNativeInputActionForTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::LyraInputConfig_eventFindNativeInputActionForTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInputConfig::execFindNativeInputActionForTag) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_InputTag); + P_GET_UBOOL(Z_Param_bLogNotFound); + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->FindNativeInputActionForTag(Z_Param_Out_InputTag,Z_Param_bLogNotFound); + P_NATIVE_END; +} +// End Class ULyraInputConfig Function FindNativeInputActionForTag + +// Begin Class ULyraInputConfig +void ULyraInputConfig::StaticRegisterNativesULyraInputConfig() +{ + UClass* Class = ULyraInputConfig::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindAbilityInputActionForTag", &ULyraInputConfig::execFindAbilityInputActionForTag }, + { "FindNativeInputActionForTag", &ULyraInputConfig::execFindNativeInputActionForTag }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputConfig); +UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister() +{ + return ULyraInputConfig::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInputConfig\n *\n *\x09Non-mutable data asset that contains input configuration properties.\n */" }, +#endif + { "IncludePath", "Input/LyraInputConfig.h" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInputConfig\n\n Non-mutable data asset that contains input configuration properties." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NativeInputActions_MetaData[] = { + { "Category", "LyraInputConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of input actions used by the owner. These input actions are mapped to a gameplay tag and must be manually bound.\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "TitleProperty", "InputAction" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of input actions used by the owner. These input actions are mapped to a gameplay tag and must be manually bound." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityInputActions_MetaData[] = { + { "Category", "LyraInputConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of input actions used by the owner. These input actions are mapped to a gameplay tag and are automatically bound to abilities with matching input tags.\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "TitleProperty", "InputAction" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of input actions used by the owner. These input actions are mapped to a gameplay tag and are automatically bound to abilities with matching input tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NativeInputActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NativeInputActions; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityInputActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilityInputActions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag, "FindAbilityInputActionForTag" }, // 1734908005 + { &Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag, "FindNativeInputActionForTag" }, // 2340640036 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions_Inner = { "NativeInputActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInputAction, METADATA_PARAMS(0, nullptr) }; // 46609985 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions = { "NativeInputActions", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputConfig, NativeInputActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NativeInputActions_MetaData), NewProp_NativeInputActions_MetaData) }; // 46609985 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions_Inner = { "AbilityInputActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInputAction, METADATA_PARAMS(0, nullptr) }; // 46609985 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions = { "AbilityInputActions", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputConfig, AbilityInputActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityInputActions_MetaData), NewProp_AbilityInputActions_MetaData) }; // 46609985 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputConfig_Statics::ClassParams = { + &ULyraInputConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers), + 0, + 0x000100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputConfig() +{ + if (!Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton, Z_Construct_UClass_ULyraInputConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputConfig::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputConfig); +ULyraInputConfig::~ULyraInputConfig() {} +// End Class ULyraInputConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInputAction::StaticStruct, Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewStructOps, TEXT("LyraInputAction"), &Z_Registration_Info_UScriptStruct_LyraInputAction, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInputAction), 46609985U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputConfig, ULyraInputConfig::StaticClass, TEXT("ULyraInputConfig"), &Z_Registration_Info_UClass_ULyraInputConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputConfig), 2797413737U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_1596402001(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.generated.h new file mode 100644 index 00000000..0c279573 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputConfig.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UInputAction; +struct FGameplayTag; +#ifdef LYRAGAME_LyraInputConfig_generated_h +#error "LyraInputConfig.generated.h already included, missing '#pragma once' in LyraInputConfig.h" +#endif +#define LYRAGAME_LyraInputConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_22_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInputAction_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindAbilityInputActionForTag); \ + DECLARE_FUNCTION(execFindNativeInputActionForTag); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputConfig(); \ + friend struct Z_Construct_UClass_ULyraInputConfig_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputConfig, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputConfig(ULyraInputConfig&&); \ + ULyraInputConfig(const ULyraInputConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputConfig) \ + NO_API virtual ~ULyraInputConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp new file mode 100644 index 00000000..51b8d30d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp @@ -0,0 +1,590 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputModifiers.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputModifiers() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputModifier(); +ENHANCEDINPUT_API UEnum* Z_Construct_UEnum_EnhancedInput_EDeadZoneType(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierAimInversion(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierAimInversion_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierDeadZone(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierDeadZone_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingBasedScalar(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingBasedScalar_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EDeadzoneStick(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingBasedScalar +void ULyraSettingBasedScalar::StaticRegisterNativesULyraSettingBasedScalar() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingBasedScalar); +UClass* Z_Construct_UClass_ULyraSettingBasedScalar_NoRegister() +{ + return ULyraSettingBasedScalar::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingBasedScalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n* Scales input basedon a double property in the SharedUserSettings\n*/" }, +#endif + { "DisplayName", "Setting Based Scalar" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scales input basedon a double property in the SharedUserSettings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_XAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the X Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the X Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_YAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the Y Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the Y Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ZAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the Z Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the Z Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxValueClamp_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the maximium value of this setting on each axis. */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the maximium value of this setting on each axis." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MinValueClamp_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the minimum value of this setting on each axis. */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the minimum value of this setting on each axis." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_XAxisScalarSettingName; + static const UECodeGen_Private::FNamePropertyParams NewProp_YAxisScalarSettingName; + static const UECodeGen_Private::FNamePropertyParams NewProp_ZAxisScalarSettingName; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaxValueClamp; + static const UECodeGen_Private::FStructPropertyParams NewProp_MinValueClamp; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_XAxisScalarSettingName = { "XAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, XAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_XAxisScalarSettingName_MetaData), NewProp_XAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_YAxisScalarSettingName = { "YAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, YAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_YAxisScalarSettingName_MetaData), NewProp_YAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_ZAxisScalarSettingName = { "ZAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, ZAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ZAxisScalarSettingName_MetaData), NewProp_ZAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MaxValueClamp = { "MaxValueClamp", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, MaxValueClamp), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxValueClamp_MetaData), NewProp_MaxValueClamp_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MinValueClamp = { "MinValueClamp", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, MinValueClamp), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MinValueClamp_MetaData), NewProp_MinValueClamp_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_XAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_YAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_ZAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MaxValueClamp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MinValueClamp, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingBasedScalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::ClassParams = { + &ULyraSettingBasedScalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers), + 0, + 0x400830A2u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingBasedScalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingBasedScalar() +{ + if (!Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton, Z_Construct_UClass_ULyraSettingBasedScalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingBasedScalar::StaticClass(); +} +ULyraSettingBasedScalar::ULyraSettingBasedScalar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingBasedScalar); +ULyraSettingBasedScalar::~ULyraSettingBasedScalar() {} +// End Class ULyraSettingBasedScalar + +// Begin Enum EDeadzoneStick +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EDeadzoneStick; +static UEnum* EDeadzoneStick_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton) + { + Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EDeadzoneStick, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EDeadzoneStick")); + } + return Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EDeadzoneStick_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Represents which stick that this deadzone is for, either the move or the look stick */" }, +#endif + { "LookStick.Comment", "/** Deadzone for the looking stick */" }, + { "LookStick.Name", "EDeadzoneStick::LookStick" }, + { "LookStick.ToolTip", "Deadzone for the looking stick" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "MoveStick.Comment", "/** Deadzone for the movement stick */" }, + { "MoveStick.Name", "EDeadzoneStick::MoveStick" }, + { "MoveStick.ToolTip", "Deadzone for the movement stick" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents which stick that this deadzone is for, either the move or the look stick" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EDeadzoneStick::MoveStick", (int64)EDeadzoneStick::MoveStick }, + { "EDeadzoneStick::LookStick", (int64)EDeadzoneStick::LookStick }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EDeadzoneStick", + "EDeadzoneStick", + Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EDeadzoneStick() +{ + if (!Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton, Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton; +} +// End Enum EDeadzoneStick + +// Begin Class ULyraInputModifierDeadZone +void ULyraInputModifierDeadZone::StaticRegisterNativesULyraInputModifierDeadZone() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierDeadZone); +UClass* Z_Construct_UClass_ULyraInputModifierDeadZone_NoRegister() +{ + return ULyraInputModifierDeadZone::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierDeadZone_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This is a deadzone input modifier that will have it's thresholds driven by what is in the Lyra Shared game settings. \n */" }, +#endif + { "DisplayName", "Lyra Settings Driven Dead Zone" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a deadzone input modifier that will have it's thresholds driven by what is in the Lyra Shared game settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Type_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UpperThreshold_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Threshold above which input is clamped to 1\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Threshold above which input is clamped to 1" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeadzoneStick_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which stick this deadzone is for. This controls which setting will be used when calculating the deadzone */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which stick this deadzone is for. This controls which setting will be used when calculating the deadzone" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Type_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Type; + static const UECodeGen_Private::FFloatPropertyParams NewProp_UpperThreshold; + static const UECodeGen_Private::FBytePropertyParams NewProp_DeadzoneStick_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DeadzoneStick; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type = { "Type", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, Type), Z_Construct_UEnum_EnhancedInput_EDeadZoneType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Type_MetaData), NewProp_Type_MetaData) }; // 4170391957 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_UpperThreshold = { "UpperThreshold", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, UpperThreshold), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UpperThreshold_MetaData), NewProp_UpperThreshold_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick = { "DeadzoneStick", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, DeadzoneStick), Z_Construct_UEnum_LyraGame_EDeadzoneStick, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeadzoneStick_MetaData), NewProp_DeadzoneStick_MetaData) }; // 2169288601 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_UpperThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::ClassParams = { + &ULyraInputModifierDeadZone::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers), + 0, + 0x400830A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierDeadZone() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton, Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierDeadZone::StaticClass(); +} +ULyraInputModifierDeadZone::ULyraInputModifierDeadZone(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierDeadZone); +ULyraInputModifierDeadZone::~ULyraInputModifierDeadZone() {} +// End Class ULyraInputModifierDeadZone + +// Begin Enum ELyraTargetingType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraTargetingType; +static UEnum* ELyraTargetingType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraTargetingType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraTargetingType")); + } + return Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraTargetingType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ADS.Comment", "/** The sensitivity that should be applied while Aiming Down Sights */" }, + { "ADS.Name", "ELyraTargetingType::ADS" }, + { "ADS.ToolTip", "The sensitivity that should be applied while Aiming Down Sights" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting sensitity that should be considered */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "Normal.Comment", "/** Sensitivity to be applied why normally looking around */" }, + { "Normal.Name", "ELyraTargetingType::Normal" }, + { "Normal.ToolTip", "Sensitivity to be applied why normally looking around" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting sensitity that should be considered" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraTargetingType::Normal", (int64)ELyraTargetingType::Normal }, + { "ELyraTargetingType::ADS", (int64)ELyraTargetingType::ADS }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraTargetingType", + "ELyraTargetingType", + Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType() +{ + if (!Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton; +} +// End Enum ELyraTargetingType + +// Begin Class ULyraInputModifierGamepadSensitivity +void ULyraInputModifierGamepadSensitivity::StaticRegisterNativesULyraInputModifierGamepadSensitivity() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierGamepadSensitivity); +UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_NoRegister() +{ + return ULyraInputModifierGamepadSensitivity::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Applies a scalar modifier based on the current gamepad settings in Lyra Shared game settings. */" }, +#endif + { "DisplayName", "Lyra Gamepad Sensitivity" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies a scalar modifier based on the current gamepad settings in Lyra Shared game settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingType_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting to use for this Sensitivity */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting to use for this Sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityLevelTable_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraInputModifierGamepadSensitivity" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Asset that gives us access to the float scalar value being used for sensitivty */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asset that gives us access to the float scalar value being used for sensitivty" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_TargetingType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_TargetingType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SensitivityLevelTable; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType = { "TargetingType", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierGamepadSensitivity, TargetingType), Z_Construct_UEnum_LyraGame_ELyraTargetingType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingType_MetaData), NewProp_TargetingType_MetaData) }; // 667227071 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_SensitivityLevelTable = { "SensitivityLevelTable", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierGamepadSensitivity, SensitivityLevelTable), Z_Construct_UClass_ULyraAimSensitivityData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityLevelTable_MetaData), NewProp_SensitivityLevelTable_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_SensitivityLevelTable, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::ClassParams = { + &ULyraInputModifierGamepadSensitivity::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers), + 0, + 0x400830A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton, Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierGamepadSensitivity::StaticClass(); +} +ULyraInputModifierGamepadSensitivity::ULyraInputModifierGamepadSensitivity(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierGamepadSensitivity); +ULyraInputModifierGamepadSensitivity::~ULyraInputModifierGamepadSensitivity() {} +// End Class ULyraInputModifierGamepadSensitivity + +// Begin Class ULyraInputModifierAimInversion +void ULyraInputModifierAimInversion::StaticRegisterNativesULyraInputModifierAimInversion() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierAimInversion); +UClass* Z_Construct_UClass_ULyraInputModifierAimInversion_NoRegister() +{ + return ULyraInputModifierAimInversion::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierAimInversion_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Applies an inversion of axis values based on a setting in the Lyra Shared game settings */" }, +#endif + { "DisplayName", "Lyra Aim Inversion Setting" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies an inversion of axis values based on a setting in the Lyra Shared game settings" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::ClassParams = { + &ULyraInputModifierAimInversion::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x400830A2u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierAimInversion() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton, Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierAimInversion::StaticClass(); +} +ULyraInputModifierAimInversion::ULyraInputModifierAimInversion(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierAimInversion); +ULyraInputModifierAimInversion::~ULyraInputModifierAimInversion() {} +// End Class ULyraInputModifierAimInversion + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EDeadzoneStick_StaticEnum, TEXT("EDeadzoneStick"), &Z_Registration_Info_UEnum_EDeadzoneStick, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2169288601U) }, + { ELyraTargetingType_StaticEnum, TEXT("ELyraTargetingType"), &Z_Registration_Info_UEnum_ELyraTargetingType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 667227071U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingBasedScalar, ULyraSettingBasedScalar::StaticClass, TEXT("ULyraSettingBasedScalar"), &Z_Registration_Info_UClass_ULyraSettingBasedScalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingBasedScalar), 1309995525U) }, + { Z_Construct_UClass_ULyraInputModifierDeadZone, ULyraInputModifierDeadZone::StaticClass, TEXT("ULyraInputModifierDeadZone"), &Z_Registration_Info_UClass_ULyraInputModifierDeadZone, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierDeadZone), 781816133U) }, + { Z_Construct_UClass_ULyraInputModifierGamepadSensitivity, ULyraInputModifierGamepadSensitivity::StaticClass, TEXT("ULyraInputModifierGamepadSensitivity"), &Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierGamepadSensitivity), 3129653212U) }, + { Z_Construct_UClass_ULyraInputModifierAimInversion, ULyraInputModifierAimInversion::StaticClass, TEXT("ULyraInputModifierAimInversion"), &Z_Registration_Info_UClass_ULyraInputModifierAimInversion, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierAimInversion), 1499972857U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_1267794667(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.generated.h new file mode 100644 index 00000000..c6f5e4ab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputModifiers.generated.h @@ -0,0 +1,177 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputModifiers.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputModifiers_generated_h +#error "LyraInputModifiers.generated.h already included, missing '#pragma once' in LyraInputModifiers.h" +#endif +#define LYRAGAME_LyraInputModifiers_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingBasedScalar(); \ + friend struct Z_Construct_UClass_ULyraSettingBasedScalar_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingBasedScalar, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraSettingBasedScalar) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraSettingBasedScalar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingBasedScalar(ULyraSettingBasedScalar&&); \ + ULyraSettingBasedScalar(const ULyraSettingBasedScalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraSettingBasedScalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingBasedScalar); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingBasedScalar) \ + LYRAGAME_API virtual ~ULyraSettingBasedScalar(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierDeadZone(); \ + friend struct Z_Construct_UClass_ULyraInputModifierDeadZone_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierDeadZone, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierDeadZone) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierDeadZone(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierDeadZone(ULyraInputModifierDeadZone&&); \ + ULyraInputModifierDeadZone(const ULyraInputModifierDeadZone&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierDeadZone); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierDeadZone); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierDeadZone) \ + LYRAGAME_API virtual ~ULyraInputModifierDeadZone(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_68_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierGamepadSensitivity(); \ + friend struct Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierGamepadSensitivity, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierGamepadSensitivity) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierGamepadSensitivity(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierGamepadSensitivity(ULyraInputModifierGamepadSensitivity&&); \ + ULyraInputModifierGamepadSensitivity(const ULyraInputModifierGamepadSensitivity&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierGamepadSensitivity); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierGamepadSensitivity); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierGamepadSensitivity) \ + LYRAGAME_API virtual ~ULyraInputModifierGamepadSensitivity(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_106_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierAimInversion(); \ + friend struct Z_Construct_UClass_ULyraInputModifierAimInversion_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierAimInversion, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierAimInversion) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierAimInversion(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierAimInversion(ULyraInputModifierAimInversion&&); \ + ULyraInputModifierAimInversion(const ULyraInputModifierAimInversion&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierAimInversion); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierAimInversion); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierAimInversion) \ + LYRAGAME_API virtual ~ULyraInputModifierAimInversion(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_125_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h + + +#define FOREACH_ENUM_EDEADZONESTICK(op) \ + op(EDeadzoneStick::MoveStick) \ + op(EDeadzoneStick::LookStick) + +enum class EDeadzoneStick : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRATARGETINGTYPE(op) \ + op(ELyraTargetingType::Normal) \ + op(ELyraTargetingType::ADS) + +enum class ELyraTargetingType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp new file mode 100644 index 00000000..d4231d7a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp @@ -0,0 +1,185 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputUserSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputUserSettings() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputUserSettings(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UPlayerMappableKeySettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputUserSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputUserSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInputUserSettings +void ULyraInputUserSettings::StaticRegisterNativesULyraInputUserSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputUserSettings); +UClass* Z_Construct_UClass_ULyraInputUserSettings_NoRegister() +{ + return ULyraInputUserSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputUserSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Custom settings class for any input related settings for the Lyra game.\n * This will be serialized out at the same time as the Lyra Shared Settings and is\n * compatible with cloud saves through by calling the \"Serialize\" function.\n */" }, +#endif + { "IncludePath", "Input/LyraInputUserSettings.h" }, + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Custom settings class for any input related settings for the Lyra game.\nThis will be serialized out at the same time as the Lyra Shared Settings and is\ncompatible with cloud saves through by calling the \"Serialize\" function." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputUserSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedInputUserSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputUserSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputUserSettings_Statics::ClassParams = { + &ULyraInputUserSettings::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputUserSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputUserSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputUserSettings() +{ + if (!Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton, Z_Construct_UClass_ULyraInputUserSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputUserSettings::StaticClass(); +} +ULyraInputUserSettings::ULyraInputUserSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputUserSettings); +ULyraInputUserSettings::~ULyraInputUserSettings() {} +// End Class ULyraInputUserSettings + +// Begin Class ULyraPlayerMappableKeySettings +void ULyraPlayerMappableKeySettings::StaticRegisterNativesULyraPlayerMappableKeySettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerMappableKeySettings); +UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings_NoRegister() +{ + return ULyraPlayerMappableKeySettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Player Mappable Key settings are settings that are accessible per-action key mapping.\n * This is where you could place additional metadata that may be used by your settings UI,\n * input triggers, or other places where you want to know about a key setting.\n */" }, +#endif + { "IncludePath", "Input/LyraInputUserSettings.h" }, + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Player Mappable Key settings are settings that are accessible per-action key mapping.\nThis is where you could place additional metadata that may be used by your settings UI,\ninput triggers, or other places where you want to know about a key setting." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tooltip_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tooltip that should be associated with this action when displayed on the settings screen */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tooltip that should be associated with this action when displayed on the settings screen" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Tooltip; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::NewProp_Tooltip = { "Tooltip", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlayerMappableKeySettings, Tooltip), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tooltip_MetaData), NewProp_Tooltip_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::NewProp_Tooltip, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPlayerMappableKeySettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::ClassParams = { + &ULyraPlayerMappableKeySettings::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers), + 0, + 0x003010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton, Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerMappableKeySettings::StaticClass(); +} +ULyraPlayerMappableKeySettings::ULyraPlayerMappableKeySettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerMappableKeySettings); +ULyraPlayerMappableKeySettings::~ULyraPlayerMappableKeySettings() {} +// End Class ULyraPlayerMappableKeySettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputUserSettings, ULyraInputUserSettings::StaticClass, TEXT("ULyraInputUserSettings"), &Z_Registration_Info_UClass_ULyraInputUserSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputUserSettings), 1645180660U) }, + { Z_Construct_UClass_ULyraPlayerMappableKeySettings, ULyraPlayerMappableKeySettings::StaticClass, TEXT("ULyraPlayerMappableKeySettings"), &Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerMappableKeySettings), 1891548204U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_833077401(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h new file mode 100644 index 00000000..1803cf79 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputUserSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputUserSettings_generated_h +#error "LyraInputUserSettings.generated.h already included, missing '#pragma once' in LyraInputUserSettings.h" +#endif +#define LYRAGAME_LyraInputUserSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputUserSettings(); \ + friend struct Z_Construct_UClass_ULyraInputUserSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputUserSettings, UEnhancedInputUserSettings, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputUserSettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInputUserSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputUserSettings(ULyraInputUserSettings&&); \ + ULyraInputUserSettings(const ULyraInputUserSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputUserSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputUserSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputUserSettings) \ + NO_API virtual ~ULyraInputUserSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerMappableKeySettings(); \ + friend struct Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerMappableKeySettings, UPlayerMappableKeySettings, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerMappableKeySettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPlayerMappableKeySettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerMappableKeySettings(ULyraPlayerMappableKeySettings&&); \ + ULyraPlayerMappableKeySettings(const ULyraPlayerMappableKeySettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerMappableKeySettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerMappableKeySettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerMappableKeySettings) \ + NO_API virtual ~ULyraPlayerMappableKeySettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_40_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp new file mode 100644 index 00000000..e4452754 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/LyraInteractionDurationMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInteractionDurationMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInteractionDurationMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInteractionDurationMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage; +class UScriptStruct* FLyraInteractionDurationMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInteractionDurationMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInteractionDurationMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "Category", "LyraInteractionDurationMessage" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Duration_MetaData[] = { + { "Category", "LyraInteractionDurationMessage" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Duration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInteractionDurationMessage, Instigator), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Duration = { "Duration", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInteractionDurationMessage, Duration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Duration_MetaData), NewProp_Duration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Duration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInteractionDurationMessage", + Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers), + sizeof(FLyraInteractionDurationMessage), + alignof(FLyraInteractionDurationMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInteractionDurationMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton; +} +// End ScriptStruct FLyraInteractionDurationMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInteractionDurationMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewStructOps, TEXT("LyraInteractionDurationMessage"), &Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInteractionDurationMessage), 3510813716U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_1764469930(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h new file mode 100644 index 00000000..602e15f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/LyraInteractionDurationMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInteractionDurationMessage_generated_h +#error "LyraInteractionDurationMessage.generated.h already included, missing '#pragma once' in LyraInteractionDurationMessage.h" +#endif +#define LYRAGAME_LyraInteractionDurationMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp new file mode 100644 index 00000000..b5854317 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp @@ -0,0 +1,331 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryItemDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryItemDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInventoryItemFragment +void ULyraInventoryItemFragment::StaticRegisterNativesULyraInventoryItemFragment() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemFragment); +UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister() +{ + return ULyraInventoryItemFragment::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemFragment_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents a fragment of an item definition\n" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a fragment of an item definition" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInventoryItemFragment_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemFragment_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemFragment_Statics::ClassParams = { + &ULyraInventoryItemFragment::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x003010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemFragment_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemFragment_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemFragment() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemFragment_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemFragment::StaticClass(); +} +ULyraInventoryItemFragment::ULyraInventoryItemFragment(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemFragment); +ULyraInventoryItemFragment::~ULyraInventoryItemFragment() {} +// End Class ULyraInventoryItemFragment + +// Begin Class ULyraInventoryItemDefinition +void ULyraInventoryItemDefinition::StaticRegisterNativesULyraInventoryItemDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemDefinition); +UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister() +{ + return ULyraInventoryItemDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInventoryItemDefinition\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInventoryItemDefinition" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "Display" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Fragments_Inner_MetaData[] = { + { "Category", "Display" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Fragments_MetaData[] = { + { "Category", "Display" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Fragments_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Fragments; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemDefinition, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments_Inner = { "Fragments", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Fragments_Inner_MetaData), NewProp_Fragments_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments = { "Fragments", nullptr, (EPropertyFlags)0x011400800001001d, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemDefinition, Fragments), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Fragments_MetaData), NewProp_Fragments_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::ClassParams = { + &ULyraInventoryItemDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers), + 0, + 0x008100A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemDefinition); +ULyraInventoryItemDefinition::~ULyraInventoryItemDefinition() {} +// End Class ULyraInventoryItemDefinition + +// Begin Class ULyraInventoryFunctionLibrary Function FindItemDefinitionFragment +struct Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics +{ + struct LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms + { + TSubclassOf ItemDef; + TSubclassOf FragmentClass; + const ULyraInventoryItemFragment* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DeterminesOutputType", "FragmentClass" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FClassPropertyParams NewProp_FragmentClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_FragmentClass = { "FragmentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, FragmentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x001000000008058a, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_FragmentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryFunctionLibrary, nullptr, "FindItemDefinitionFragment", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04042401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryFunctionLibrary::execFindItemDefinitionFragment) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_OBJECT(UClass,Z_Param_FragmentClass); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraInventoryItemFragment**)Z_Param__Result=ULyraInventoryFunctionLibrary::FindItemDefinitionFragment(Z_Param_ItemDef,Z_Param_FragmentClass); + P_NATIVE_END; +} +// End Class ULyraInventoryFunctionLibrary Function FindItemDefinitionFragment + +// Begin Class ULyraInventoryFunctionLibrary +void ULyraInventoryFunctionLibrary::StaticRegisterNativesULyraInventoryFunctionLibrary() +{ + UClass* Class = ULyraInventoryFunctionLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindItemDefinitionFragment", &ULyraInventoryFunctionLibrary::execFindItemDefinitionFragment }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryFunctionLibrary); +UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary_NoRegister() +{ + return ULyraInventoryFunctionLibrary::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//@TODO: Make into a subsystem instead?\n" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@TODO: Make into a subsystem instead?" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment, "FindItemDefinitionFragment" }, // 4202061973 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::ClassParams = { + &ULyraInventoryFunctionLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton, Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryFunctionLibrary::StaticClass(); +} +ULyraInventoryFunctionLibrary::ULyraInventoryFunctionLibrary(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryFunctionLibrary); +ULyraInventoryFunctionLibrary::~ULyraInventoryFunctionLibrary() {} +// End Class ULyraInventoryFunctionLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryItemFragment, ULyraInventoryItemFragment::StaticClass, TEXT("ULyraInventoryItemFragment"), &Z_Registration_Info_UClass_ULyraInventoryItemFragment, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemFragment), 937772045U) }, + { Z_Construct_UClass_ULyraInventoryItemDefinition, ULyraInventoryItemDefinition::StaticClass, TEXT("ULyraInventoryItemDefinition"), &Z_Registration_Info_UClass_ULyraInventoryItemDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemDefinition), 2166324033U) }, + { Z_Construct_UClass_ULyraInventoryFunctionLibrary, ULyraInventoryFunctionLibrary::StaticClass, TEXT("ULyraInventoryFunctionLibrary"), &Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryFunctionLibrary), 507560405U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_2972630360(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h new file mode 100644 index 00000000..58da99b9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryItemDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemDefinition; +class ULyraInventoryItemFragment; +#ifdef LYRAGAME_LyraInventoryItemDefinition_generated_h +#error "LyraInventoryItemDefinition.generated.h already included, missing '#pragma once' in LyraInventoryItemDefinition.h" +#endif +#define LYRAGAME_LyraInventoryItemDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemFragment(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemFragment_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemFragment, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemFragment) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInventoryItemFragment(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemFragment(ULyraInventoryItemFragment&&); \ + ULyraInventoryItemFragment(const ULyraInventoryItemFragment&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemFragment); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemFragment); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemFragment) \ + NO_API virtual ~ULyraInventoryItemFragment(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemDefinition(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemDefinition, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemDefinition(ULyraInventoryItemDefinition&&); \ + ULyraInventoryItemDefinition(const ULyraInventoryItemDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemDefinition); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemDefinition) \ + NO_API virtual ~ULyraInventoryItemDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_31_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindItemDefinitionFragment); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryFunctionLibrary(); \ + friend struct Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryFunctionLibrary, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryFunctionLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInventoryFunctionLibrary(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryFunctionLibrary(ULyraInventoryFunctionLibrary&&); \ + ULyraInventoryFunctionLibrary(const ULyraInventoryFunctionLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryFunctionLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryFunctionLibrary); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryFunctionLibrary) \ + NO_API virtual ~ULyraInventoryFunctionLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_50_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp new file mode 100644 index 00000000..7fcf3c18 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp @@ -0,0 +1,423 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryItemInstance.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryItemInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInventoryItemInstance Function AddStatTagStack +struct Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics +{ + struct LyraInventoryItemInstance_eventAddStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventAddStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventAddStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "AddStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::LyraInventoryItemInstance_eventAddStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::LyraInventoryItemInstance_eventAddStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execAddStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function AddStatTagStack + +// Begin Class ULyraInventoryItemInstance Function FindFragmentByClass +struct Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics +{ + struct LyraInventoryItemInstance_eventFindFragmentByClass_Parms + { + TSubclassOf FragmentClass; + const ULyraInventoryItemFragment* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DeterminesOutputType", "FragmentClass" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_FragmentClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_FragmentClass = { "FragmentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventFindFragmentByClass_Parms, FragmentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x001000000008058a, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventFindFragmentByClass_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_FragmentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "FindFragmentByClass", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::LyraInventoryItemInstance_eventFindFragmentByClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::LyraInventoryItemInstance_eventFindFragmentByClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execFindFragmentByClass) +{ + P_GET_OBJECT(UClass,Z_Param_FragmentClass); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraInventoryItemFragment**)Z_Param__Result=P_THIS->FindFragmentByClass(Z_Param_FragmentClass); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function FindFragmentByClass + +// Begin Class ULyraInventoryItemInstance Function GetStatTagStackCount +struct Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics +{ + struct LyraInventoryItemInstance_eventGetStatTagStackCount_Parms + { + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventGetStatTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventGetStatTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "GetStatTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::LyraInventoryItemInstance_eventGetStatTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::LyraInventoryItemInstance_eventGetStatTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execGetStatTagStackCount) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetStatTagStackCount(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function GetStatTagStackCount + +// Begin Class ULyraInventoryItemInstance Function HasStatTag +struct Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics +{ + struct LyraInventoryItemInstance_eventHasStatTag_Parms + { + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventHasStatTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraInventoryItemInstance_eventHasStatTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInventoryItemInstance_eventHasStatTag_Parms), &Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "HasStatTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::LyraInventoryItemInstance_eventHasStatTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::LyraInventoryItemInstance_eventHasStatTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execHasStatTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasStatTag(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function HasStatTag + +// Begin Class ULyraInventoryItemInstance Function RemoveStatTagStack +struct Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics +{ + struct LyraInventoryItemInstance_eventRemoveStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventRemoveStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventRemoveStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "RemoveStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::LyraInventoryItemInstance_eventRemoveStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::LyraInventoryItemInstance_eventRemoveStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execRemoveStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function RemoveStatTagStack + +// Begin Class ULyraInventoryItemInstance +void ULyraInventoryItemInstance::StaticRegisterNativesULyraInventoryItemInstance() +{ + UClass* Class = ULyraInventoryItemInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddStatTagStack", &ULyraInventoryItemInstance::execAddStatTagStack }, + { "FindFragmentByClass", &ULyraInventoryItemInstance::execFindFragmentByClass }, + { "GetStatTagStackCount", &ULyraInventoryItemInstance::execGetStatTagStackCount }, + { "HasStatTag", &ULyraInventoryItemInstance::execHasStatTag }, + { "RemoveStatTagStack", &ULyraInventoryItemInstance::execRemoveStatTagStack }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemInstance); +UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister() +{ + return ULyraInventoryItemInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInventoryItemInstance\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemInstance.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInventoryItemInstance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatTags_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDef_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The item definition\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The item definition" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTags; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack, "AddStatTagStack" }, // 196181504 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass, "FindFragmentByClass" }, // 1722664729 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount, "GetStatTagStackCount" }, // 4193754830 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag, "HasStatTag" }, // 2598682131 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack, "RemoveStatTagStack" }, // 3359208670 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_StatTags = { "StatTags", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemInstance, StatTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatTags_MetaData), NewProp_StatTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0044000000000020, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemInstance, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDef_MetaData), NewProp_ItemDef_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_StatTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_ItemDef, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryItemInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::ClassParams = { + &ULyraInventoryItemInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemInstance() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemInstance::StaticClass(); +} +void ULyraInventoryItemInstance::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_StatTags(TEXT("StatTags")); + static const FName Name_ItemDef(TEXT("ItemDef")); + const bool bIsValid = true + && Name_StatTags == ClassReps[(int32)ENetFields_Private::StatTags].Property->GetFName() + && Name_ItemDef == ClassReps[(int32)ENetFields_Private::ItemDef].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraInventoryItemInstance")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemInstance); +ULyraInventoryItemInstance::~ULyraInventoryItemInstance() {} +// End Class ULyraInventoryItemInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryItemInstance, ULyraInventoryItemInstance::StaticClass, TEXT("ULyraInventoryItemInstance"), &Z_Registration_Info_UClass_ULyraInventoryItemInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemInstance), 2390782932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_2796688837(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h new file mode 100644 index 00000000..6a3ec6b6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryItemInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemFragment; +struct FGameplayTag; +#ifdef LYRAGAME_LyraInventoryItemInstance_generated_h +#error "LyraInventoryItemInstance.generated.h already included, missing '#pragma once' in LyraInventoryItemInstance.h" +#endif +#define LYRAGAME_LyraInventoryItemInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindFragmentByClass); \ + DECLARE_FUNCTION(execHasStatTag); \ + DECLARE_FUNCTION(execGetStatTagStackCount); \ + DECLARE_FUNCTION(execRemoveStatTagStack); \ + DECLARE_FUNCTION(execAddStatTagStack); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemInstance(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemInstance) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + StatTags=NETFIELD_REP_START, \ + ItemDef, \ + NETFIELD_REP_END=ItemDef }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraInventoryItemInstance) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemInstance(ULyraInventoryItemInstance&&); \ + ULyraInventoryItemInstance(const ULyraInventoryItemInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemInstance) \ + NO_API virtual ~ULyraInventoryItemInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp new file mode 100644 index 00000000..dbd14fa6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp @@ -0,0 +1,703 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryManagerComponent.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryChangeMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryList(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInventoryChangeMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage; +class UScriptStruct* FLyraInventoryChangeMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryChangeMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryChangeMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A message when an item is added to the inventory */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A message when an item is added to the inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryOwner_MetaData[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//@TODO: Tag based names+owning actors for inventories instead of directly exposing the component?\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@TODO: Tag based names+owning actors for inventories instead of directly exposing the component?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewCount_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Delta_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryOwner; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_Delta; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_InventoryOwner = { "InventoryOwner", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, InventoryOwner), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryOwner_MetaData), NewProp_InventoryOwner_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, Instance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_NewCount = { "NewCount", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, NewCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewCount_MetaData), NewProp_NewCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Delta = { "Delta", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, Delta), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Delta_MetaData), NewProp_Delta_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_InventoryOwner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_NewCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Delta, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInventoryChangeMessage", + Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers), + sizeof(FLyraInventoryChangeMessage), + alignof(FLyraInventoryChangeMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryChangeMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton; +} +// End ScriptStruct FLyraInventoryChangeMessage + +// Begin ScriptStruct FLyraInventoryEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraInventoryEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryEntry; +class UScriptStruct* FLyraInventoryEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A single entry in an inventory */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single entry in an inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastObservedCount_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_LastObservedCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, Instance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_LastObservedCount = { "LastObservedCount", nullptr, (EPropertyFlags)0x0040000080000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, LastObservedCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastObservedCount_MetaData), NewProp_LastObservedCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_LastObservedCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraInventoryEntry", + Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers), + sizeof(FLyraInventoryEntry), + alignof(FLyraInventoryEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton; +} +// End ScriptStruct FLyraInventoryEntry + +// Begin ScriptStruct FLyraInventoryList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraInventoryList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryList; +class UScriptStruct* FLyraInventoryList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryList")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraInventoryList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraInventoryList); +#endif +struct Z_Construct_UScriptStruct_FLyraInventoryList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of inventory items */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of inventory items" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of items\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of items" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInventoryEntry, METADATA_PARAMS(0, nullptr) }; // 2762558394 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 2762558394 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryList, OwnerComponent), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraInventoryList", + Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers), + sizeof(FLyraInventoryList), + alignof(FLyraInventoryList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton; +} +// End ScriptStruct FLyraInventoryList + +// Begin Class ULyraInventoryManagerComponent Function AddItemDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventAddItemDefinition_Parms + { + TSubclassOf ItemDef; + int32 StackCount; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "CPP_Default_StackCount", "1" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "AddItemDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::LyraInventoryManagerComponent_eventAddItemDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::LyraInventoryManagerComponent_eventAddItemDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execAddItemDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->AddItemDefinition(Z_Param_ItemDef,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function AddItemDefinition + +// Begin Class ULyraInventoryManagerComponent Function AddItemInstance +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics +{ + struct LyraInventoryManagerComponent_eventAddItemInstance_Parms + { + ULyraInventoryItemInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemInstance_Parms, ItemInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "AddItemInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::LyraInventoryManagerComponent_eventAddItemInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::LyraInventoryManagerComponent_eventAddItemInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execAddItemInstance) +{ + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddItemInstance(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function AddItemInstance + +// Begin Class ULyraInventoryManagerComponent Function CanAddItemDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms + { + TSubclassOf ItemDef; + int32 StackCount; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "CPP_Default_StackCount", "1" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms), &Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "CanAddItemDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execCanAddItemDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanAddItemDefinition(Z_Param_ItemDef,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function CanAddItemDefinition + +// Begin Class ULyraInventoryManagerComponent Function FindFirstItemStackByDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms + { + TSubclassOf ItemDef; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "FindFirstItemStackByDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execFindFirstItemStackByDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->FindFirstItemStackByDefinition(Z_Param_ItemDef); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function FindFirstItemStackByDefinition + +// Begin Class ULyraInventoryManagerComponent Function GetAllItems +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics +{ + struct LyraInventoryManagerComponent_eventGetAllItems_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventGetAllItems_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "GetAllItems", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::LyraInventoryManagerComponent_eventGetAllItems_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::LyraInventoryManagerComponent_eventGetAllItems_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execGetAllItems) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetAllItems(); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function GetAllItems + +// Begin Class ULyraInventoryManagerComponent Function RemoveItemInstance +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics +{ + struct LyraInventoryManagerComponent_eventRemoveItemInstance_Parms + { + ULyraInventoryItemInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventRemoveItemInstance_Parms, ItemInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "RemoveItemInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::LyraInventoryManagerComponent_eventRemoveItemInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::LyraInventoryManagerComponent_eventRemoveItemInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execRemoveItemInstance) +{ + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveItemInstance(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function RemoveItemInstance + +// Begin Class ULyraInventoryManagerComponent +void ULyraInventoryManagerComponent::StaticRegisterNativesULyraInventoryManagerComponent() +{ + UClass* Class = ULyraInventoryManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddItemDefinition", &ULyraInventoryManagerComponent::execAddItemDefinition }, + { "AddItemInstance", &ULyraInventoryManagerComponent::execAddItemInstance }, + { "CanAddItemDefinition", &ULyraInventoryManagerComponent::execCanAddItemDefinition }, + { "FindFirstItemStackByDefinition", &ULyraInventoryManagerComponent::execFindFirstItemStackByDefinition }, + { "GetAllItems", &ULyraInventoryManagerComponent::execGetAllItems }, + { "RemoveItemInstance", &ULyraInventoryManagerComponent::execRemoveItemInstance }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryManagerComponent); +UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister() +{ + return ULyraInventoryManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manages an inventory\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryManagerComponent.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manages an inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryList_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InventoryList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition, "AddItemDefinition" }, // 940893233 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance, "AddItemInstance" }, // 2139561162 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition, "CanAddItemDefinition" }, // 732182595 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition, "FindFirstItemStackByDefinition" }, // 2009381956 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems, "GetAllItems" }, // 231367481 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance, "RemoveItemInstance" }, // 92560425 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::NewProp_InventoryList = { "InventoryList", nullptr, (EPropertyFlags)0x0040008000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryManagerComponent, InventoryList), Z_Construct_UScriptStruct_FLyraInventoryList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryList_MetaData), NewProp_InventoryList_MetaData) }; // 3911428757 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::NewProp_InventoryList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::ClassParams = { + &ULyraInventoryManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryManagerComponent::StaticClass(); +} +void ULyraInventoryManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_InventoryList(TEXT("InventoryList")); + const bool bIsValid = true + && Name_InventoryList == ClassReps[(int32)ENetFields_Private::InventoryList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraInventoryManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryManagerComponent); +ULyraInventoryManagerComponent::~ULyraInventoryManagerComponent() {} +// End Class ULyraInventoryManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInventoryChangeMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewStructOps, TEXT("LyraInventoryChangeMessage"), &Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryChangeMessage), 385530698U) }, + { FLyraInventoryEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewStructOps, TEXT("LyraInventoryEntry"), &Z_Registration_Info_UScriptStruct_LyraInventoryEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryEntry), 2762558394U) }, + { FLyraInventoryList::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewStructOps, TEXT("LyraInventoryList"), &Z_Registration_Info_UScriptStruct_LyraInventoryList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryList), 3911428757U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryManagerComponent, ULyraInventoryManagerComponent::StaticClass, TEXT("ULyraInventoryManagerComponent"), &Z_Registration_Info_UClass_ULyraInventoryManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryManagerComponent), 1171517227U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_70412829(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h new file mode 100644 index 00000000..a3f1232f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemDefinition; +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraInventoryManagerComponent_generated_h +#error "LyraInventoryManagerComponent.generated.h already included, missing '#pragma once' in LyraInventoryManagerComponent.h" +#endif +#define LYRAGAME_LyraInventoryManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_43_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_68_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraInventoryList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindFirstItemStackByDefinition); \ + DECLARE_FUNCTION(execGetAllItems); \ + DECLARE_FUNCTION(execRemoveItemInstance); \ + DECLARE_FUNCTION(execAddItemInstance); \ + DECLARE_FUNCTION(execAddItemDefinition); \ + DECLARE_FUNCTION(execCanAddItemDefinition); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraInventoryManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryManagerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryManagerComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + InventoryList=NETFIELD_REP_START, \ + NETFIELD_REP_END=InventoryList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryManagerComponent(ULyraInventoryManagerComponent&&); \ + ULyraInventoryManagerComponent(const ULyraInventoryManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryManagerComponent) \ + NO_API virtual ~ULyraInventoryManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_132_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp new file mode 100644 index 00000000..3c030096 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp @@ -0,0 +1,183 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraJoystickWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraJoystickWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraJoystickWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraJoystickWidget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +UMG_API UClass* Z_Construct_UClass_UImage_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraJoystickWidget +void ULyraJoystickWidget::StaticRegisterNativesULyraJoystickWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraJoystickWidget); +UClass* Z_Construct_UClass_ULyraJoystickWidget_NoRegister() +{ + return ULyraJoystickWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraJoystickWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A UMG wrapper for the lyra virtual joystick.\n *\n * This will calculate a 2D vector clamped between -1 and 1\n * to input as a key value to the player, simulating a gamepad analog stick.\n *\n * This is intended for use with and Enhanced Input player.\n */" }, +#endif + { "DisplayName", "Lyra Joystick" }, + { "IncludePath", "UI/LyraJoystickWidget.h" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A UMG wrapper for the lyra virtual joystick.\n\nThis will calculate a 2D vector clamped between -1 and 1\nto input as a key value to the player, simulating a gamepad analog stick.\n\nThis is intended for use with and Enhanced Input player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StickRange_MetaData[] = { + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How far can the inner image of the joystick be moved? */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How far can the inner image of the joystick be moved?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_JoystickBackground_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Image to be used as the background of the joystick */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Image to be used as the background of the joystick" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_JoystickForeground_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Image to be used as the foreground of the joystick */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Image to be used as the foreground of the joystick" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bNegateYAxis_MetaData[] = { + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Should we negate the Y-axis value of the joystick? This is common for \"movement\" sticks */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we negate the Y-axis value of the joystick? This is common for \"movement\" sticks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TouchOrigin_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The origin of the touch. Set on NativeOnTouchStarted */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The origin of the touch. Set on NativeOnTouchStarted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StickVector_MetaData[] = { + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_StickRange; + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoystickBackground; + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoystickForeground; + static void NewProp_bNegateYAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bNegateYAxis; + static const UECodeGen_Private::FStructPropertyParams NewProp_TouchOrigin; + static const UECodeGen_Private::FStructPropertyParams NewProp_StickVector; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickRange = { "StickRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, StickRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StickRange_MetaData), NewProp_StickRange_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickBackground = { "JoystickBackground", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, JoystickBackground), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_JoystickBackground_MetaData), NewProp_JoystickBackground_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickForeground = { "JoystickForeground", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, JoystickForeground), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_JoystickForeground_MetaData), NewProp_JoystickForeground_MetaData) }; +void Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis_SetBit(void* Obj) +{ + ((ULyraJoystickWidget*)Obj)->bNegateYAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis = { "bNegateYAxis", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraJoystickWidget), &Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bNegateYAxis_MetaData), NewProp_bNegateYAxis_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_TouchOrigin = { "TouchOrigin", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, TouchOrigin), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TouchOrigin_MetaData), NewProp_TouchOrigin_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickVector = { "StickVector", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, StickVector), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StickVector_MetaData), NewProp_StickVector_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickForeground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_TouchOrigin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickVector, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraJoystickWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraSimulatedInputWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraJoystickWidget_Statics::ClassParams = { + &ULyraJoystickWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers), + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraJoystickWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraJoystickWidget() +{ + if (!Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton, Z_Construct_UClass_ULyraJoystickWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraJoystickWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraJoystickWidget); +ULyraJoystickWidget::~ULyraJoystickWidget() {} +// End Class ULyraJoystickWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraJoystickWidget, ULyraJoystickWidget::StaticClass, TEXT("ULyraJoystickWidget"), &Z_Registration_Info_UClass_ULyraJoystickWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraJoystickWidget), 616353682U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_2979251625(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h new file mode 100644 index 00000000..655d0c97 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraJoystickWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraJoystickWidget_generated_h +#error "LyraJoystickWidget.generated.h already included, missing '#pragma once' in LyraJoystickWidget.h" +#endif +#define LYRAGAME_LyraJoystickWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraJoystickWidget(); \ + friend struct Z_Construct_UClass_ULyraJoystickWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraJoystickWidget, ULyraSimulatedInputWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraJoystickWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraJoystickWidget(ULyraJoystickWidget&&); \ + ULyraJoystickWidget(const ULyraJoystickWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraJoystickWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraJoystickWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraJoystickWidget) \ + NO_API virtual ~ULyraJoystickWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.gen.cpp new file mode 100644 index 00000000..f45e4c7c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.gen.cpp @@ -0,0 +1,113 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraListView.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraListView() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonListView(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraListView(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraListView_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraListView +void ULyraListView::StaticRegisterNativesULyraListView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraListView); +UClass* Z_Construct_UClass_ULyraListView_NoRegister() +{ + return ULyraListView::StaticClass(); +} +struct Z_Construct_UClass_ULyraListView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraListView.h" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FactoryRules_Inner_MetaData[] = { + { "Category", "Entry Creation" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FactoryRules_MetaData[] = { + { "Category", "Entry Creation" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_FactoryRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_FactoryRules; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules_Inner = { "FactoryRules", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraWidgetFactory_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FactoryRules_Inner_MetaData), NewProp_FactoryRules_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules = { "FactoryRules", nullptr, (EPropertyFlags)0x0124088000000009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraListView, FactoryRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FactoryRules_MetaData), NewProp_FactoryRules_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraListView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraListView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonListView, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraListView_Statics::ClassParams = { + &ULyraListView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraListView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraListView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraListView() +{ + if (!Z_Registration_Info_UClass_ULyraListView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraListView.OuterSingleton, Z_Construct_UClass_ULyraListView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraListView.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraListView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraListView); +ULyraListView::~ULyraListView() {} +// End Class ULyraListView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraListView, ULyraListView::StaticClass, TEXT("ULyraListView"), &Z_Registration_Info_UClass_ULyraListView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraListView), 2760010003U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_3255114841(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.generated.h new file mode 100644 index 00000000..7639d518 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraListView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraListView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraListView_generated_h +#error "LyraListView.generated.h already included, missing '#pragma once' in LyraListView.h" +#endif +#define LYRAGAME_LyraListView_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraListView(); \ + friend struct Z_Construct_UClass_ULyraListView_Statics; \ +public: \ + DECLARE_CLASS(ULyraListView, UCommonListView, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraListView) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraListView(ULyraListView&&); \ + ULyraListView(const ULyraListView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraListView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraListView); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraListView) \ + NO_API virtual ~ULyraListView(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp new file mode 100644 index 00000000..8d56b1ec --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp @@ -0,0 +1,267 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraLoadingScreenSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLoadingScreenSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLoadingScreenWidgetChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms + { + TSubclassOf NewWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_NewWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::NewProp_NewWidgetClass = { "NewWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms, NewWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::NewProp_NewWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LoadingScreenWidgetChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLoadingScreenWidgetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& LoadingScreenWidgetChangedDelegate, TSubclassOf NewWidgetClass) +{ + struct _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms + { + TSubclassOf NewWidgetClass; + }; + _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms Parms; + Parms.NewWidgetClass=NewWidgetClass; + LoadingScreenWidgetChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLoadingScreenWidgetChangedDelegate + +// Begin Class ULyraLoadingScreenSubsystem Function GetLoadingScreenContentWidget +struct Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics +{ + struct LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms + { + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the last set loading screen widget class to display inside of the loading screen widget host\n" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the last set loading screen widget class to display inside of the loading screen widget host" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLoadingScreenSubsystem, nullptr, "GetLoadingScreenContentWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLoadingScreenSubsystem::execGetLoadingScreenContentWidget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->GetLoadingScreenContentWidget(); + P_NATIVE_END; +} +// End Class ULyraLoadingScreenSubsystem Function GetLoadingScreenContentWidget + +// Begin Class ULyraLoadingScreenSubsystem Function SetLoadingScreenContentWidget +struct Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics +{ + struct LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms + { + TSubclassOf NewWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the loading screen widget class to display inside of the loading screen widget host\n" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the loading screen widget class to display inside of the loading screen widget host" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_NewWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::NewProp_NewWidgetClass = { "NewWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms, NewWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::NewProp_NewWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLoadingScreenSubsystem, nullptr, "SetLoadingScreenContentWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLoadingScreenSubsystem::execSetLoadingScreenContentWidget) +{ + P_GET_OBJECT(UClass,Z_Param_NewWidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetLoadingScreenContentWidget(Z_Param_NewWidgetClass); + P_NATIVE_END; +} +// End Class ULyraLoadingScreenSubsystem Function SetLoadingScreenContentWidget + +// Begin Class ULyraLoadingScreenSubsystem +void ULyraLoadingScreenSubsystem::StaticRegisterNativesULyraLoadingScreenSubsystem() +{ + UClass* Class = ULyraLoadingScreenSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLoadingScreenContentWidget", &ULyraLoadingScreenSubsystem::execGetLoadingScreenContentWidget }, + { "SetLoadingScreenContentWidget", &ULyraLoadingScreenSubsystem::execSetLoadingScreenContentWidget }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLoadingScreenSubsystem); +UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem_NoRegister() +{ + return ULyraLoadingScreenSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Tracks/stores the current loading screen configuration in a place\n * that persists across map transitions\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks/stores the current loading screen configuration in a place\nthat persists across map transitions" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnLoadingScreenWidgetChanged_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidgetClass_MetaData[] = { + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnLoadingScreenWidgetChanged; + static const UECodeGen_Private::FClassPropertyParams NewProp_LoadingScreenWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget, "GetLoadingScreenContentWidget" }, // 250376568 + { &Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget, "SetLoadingScreenContentWidget" }, // 607494212 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_OnLoadingScreenWidgetChanged = { "OnLoadingScreenWidgetChanged", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLoadingScreenSubsystem, OnLoadingScreenWidgetChanged), Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnLoadingScreenWidgetChanged_MetaData), NewProp_OnLoadingScreenWidgetChanged_MetaData) }; // 1120714707 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_LoadingScreenWidgetClass = { "LoadingScreenWidgetClass", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLoadingScreenSubsystem, LoadingScreenWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidgetClass_MetaData), NewProp_LoadingScreenWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_OnLoadingScreenWidgetChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_LoadingScreenWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::ClassParams = { + &ULyraLoadingScreenSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton, Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLoadingScreenSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLoadingScreenSubsystem); +ULyraLoadingScreenSubsystem::~ULyraLoadingScreenSubsystem() {} +// End Class ULyraLoadingScreenSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLoadingScreenSubsystem, ULyraLoadingScreenSubsystem::StaticClass, TEXT("ULyraLoadingScreenSubsystem"), &Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLoadingScreenSubsystem), 4138788381U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_3089691389(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h new file mode 100644 index 00000000..91a59a0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraLoadingScreenSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UUserWidget; +#ifdef LYRAGAME_LyraLoadingScreenSubsystem_generated_h +#error "LyraLoadingScreenSubsystem.generated.h already included, missing '#pragma once' in LyraLoadingScreenSubsystem.h" +#endif +#define LYRAGAME_LyraLoadingScreenSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_15_DELEGATE \ +LYRAGAME_API void FLoadingScreenWidgetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& LoadingScreenWidgetChangedDelegate, TSubclassOf NewWidgetClass); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetLoadingScreenContentWidget); \ + DECLARE_FUNCTION(execSetLoadingScreenContentWidget); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLoadingScreenSubsystem(); \ + friend struct Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraLoadingScreenSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraLoadingScreenSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLoadingScreenSubsystem(ULyraLoadingScreenSubsystem&&); \ + ULyraLoadingScreenSubsystem(const ULyraLoadingScreenSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraLoadingScreenSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLoadingScreenSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraLoadingScreenSubsystem) \ + NO_API virtual ~ULyraLoadingScreenSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp new file mode 100644 index 00000000..8d4ee3e4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp @@ -0,0 +1,109 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/LyraLobbyBackground.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLobbyBackground() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLobbyBackground(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLobbyBackground_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraLobbyBackground +void ULyraLobbyBackground::StaticRegisterNativesULyraLobbyBackground() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLobbyBackground); +UClass* Z_Construct_UClass_ULyraLobbyBackground_NoRegister() +{ + return ULyraLobbyBackground::StaticClass(); +} +struct Z_Construct_UClass_ULyraLobbyBackground_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "UI/Frontend/LyraLobbyBackground.h" }, + { "ModuleRelativePath", "UI/Frontend/LyraLobbyBackground.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackgroundLevel_MetaData[] = { + { "Category", "LyraLobbyBackground" }, + { "ModuleRelativePath", "UI/Frontend/LyraLobbyBackground.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_BackgroundLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraLobbyBackground_Statics::NewProp_BackgroundLevel = { "BackgroundLevel", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLobbyBackground, BackgroundLevel), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackgroundLevel_MetaData), NewProp_BackgroundLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLobbyBackground_Statics::NewProp_BackgroundLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLobbyBackground_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLobbyBackground_Statics::ClassParams = { + &ULyraLobbyBackground::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLobbyBackground_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLobbyBackground() +{ + if (!Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton, Z_Construct_UClass_ULyraLobbyBackground_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLobbyBackground::StaticClass(); +} +ULyraLobbyBackground::ULyraLobbyBackground(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLobbyBackground); +ULyraLobbyBackground::~ULyraLobbyBackground() {} +// End Class ULyraLobbyBackground + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLobbyBackground, ULyraLobbyBackground::StaticClass, TEXT("ULyraLobbyBackground"), &Z_Registration_Info_UClass_ULyraLobbyBackground, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLobbyBackground), 3695837610U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_3086208806(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h new file mode 100644 index 00000000..586c43f4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h @@ -0,0 +1,58 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/LyraLobbyBackground.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraLobbyBackground_generated_h +#error "LyraLobbyBackground.generated.h already included, missing '#pragma once' in LyraLobbyBackground.h" +#endif +#define LYRAGAME_LyraLobbyBackground_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLobbyBackground(); \ + friend struct Z_Construct_UClass_ULyraLobbyBackground_Statics; \ +public: \ + DECLARE_CLASS(ULyraLobbyBackground, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraLobbyBackground) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraLobbyBackground(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLobbyBackground(ULyraLobbyBackground&&); \ + ULyraLobbyBackground(const ULyraLobbyBackground&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraLobbyBackground); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLobbyBackground); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraLobbyBackground) \ + LYRAGAME_API virtual ~ULyraLobbyBackground(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp new file mode 100644 index 00000000..82af9898 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp @@ -0,0 +1,345 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraLocalPlayer.h" +#include "Runtime/AudioMixer/Public/AudioMixerBlueprintLibrary.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLocalPlayer() {} + +// Begin Cross Module References +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FSwapAudioOutputResult(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputMappingContext_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLocalPlayer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLocalPlayer_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraLocalPlayer Function GetLocalSettings +struct Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics +{ + struct LyraLocalPlayer_eventGetLocalSettings_Parms + { + ULyraSettingsLocal* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the local settings for this player, this is read from config files at process startup and is always valid */" }, +#endif + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the local settings for this player, this is read from config files at process startup and is always valid" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventGetLocalSettings_Parms, ReturnValue), Z_Construct_UClass_ULyraSettingsLocal_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "GetLocalSettings", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::LyraLocalPlayer_eventGetLocalSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::LyraLocalPlayer_eventGetLocalSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execGetLocalSettings) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraSettingsLocal**)Z_Param__Result=P_THIS->GetLocalSettings(); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function GetLocalSettings + +// Begin Class ULyraLocalPlayer Function GetSharedSettings +struct Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics +{ + struct LyraLocalPlayer_eventGetSharedSettings_Parms + { + ULyraSettingsShared* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the shared setting for this player, this is read using the save game system so may not be correct until after user login */" }, +#endif + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the shared setting for this player, this is read using the save game system so may not be correct until after user login" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventGetSharedSettings_Parms, ReturnValue), Z_Construct_UClass_ULyraSettingsShared_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "GetSharedSettings", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::LyraLocalPlayer_eventGetSharedSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::LyraLocalPlayer_eventGetSharedSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execGetSharedSettings) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraSettingsShared**)Z_Param__Result=P_THIS->GetSharedSettings(); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function GetSharedSettings + +// Begin Class ULyraLocalPlayer Function OnCompletedAudioDeviceSwap +struct Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics +{ + struct LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms + { + FSwapAudioOutputResult SwapResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SwapResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SwapResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::NewProp_SwapResult = { "SwapResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms, SwapResult), Z_Construct_UScriptStruct_FSwapAudioOutputResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SwapResult_MetaData), NewProp_SwapResult_MetaData) }; // 556524030 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::NewProp_SwapResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "OnCompletedAudioDeviceSwap", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execOnCompletedAudioDeviceSwap) +{ + P_GET_STRUCT_REF(FSwapAudioOutputResult,Z_Param_Out_SwapResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCompletedAudioDeviceSwap(Z_Param_Out_SwapResult); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function OnCompletedAudioDeviceSwap + +// Begin Class ULyraLocalPlayer Function OnControllerChangedTeam +struct Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics +{ + struct LyraLocalPlayer_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::LyraLocalPlayer_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::LyraLocalPlayer_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function OnControllerChangedTeam + +// Begin Class ULyraLocalPlayer +void ULyraLocalPlayer::StaticRegisterNativesULyraLocalPlayer() +{ + UClass* Class = ULyraLocalPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLocalSettings", &ULyraLocalPlayer::execGetLocalSettings }, + { "GetSharedSettings", &ULyraLocalPlayer::execGetSharedSettings }, + { "OnCompletedAudioDeviceSwap", &ULyraLocalPlayer::execOnCompletedAudioDeviceSwap }, + { "OnControllerChangedTeam", &ULyraLocalPlayer::execOnControllerChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLocalPlayer); +UClass* Z_Construct_UClass_ULyraLocalPlayer_NoRegister() +{ + return ULyraLocalPlayer::StaticClass(); +} +struct Z_Construct_UClass_ULyraLocalPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraLocalPlayer\n */" }, +#endif + { "IncludePath", "Player/LyraLocalPlayer.h" }, + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraLocalPlayer" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SharedSettings_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMappingContext_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastBoundPC_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SharedSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputMappingContext; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_LastBoundPC; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings, "GetLocalSettings" }, // 4080809430 + { &Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings, "GetSharedSettings" }, // 1141656685 + { &Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap, "OnCompletedAudioDeviceSwap" }, // 3600377280 + { &Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 204567769 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_SharedSettings = { "SharedSettings", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, SharedSettings), Z_Construct_UClass_ULyraSettingsShared_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SharedSettings_MetaData), NewProp_SharedSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_InputMappingContext = { "InputMappingContext", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, InputMappingContext), Z_Construct_UClass_UInputMappingContext_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMappingContext_MetaData), NewProp_InputMappingContext_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_LastBoundPC = { "LastBoundPC", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, LastBoundPC), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastBoundPC_MetaData), NewProp_LastBoundPC_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_SharedSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_InputMappingContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_LastBoundPC, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLocalPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonLocalPlayer, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraLocalPlayer_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraLocalPlayer, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLocalPlayer_Statics::ClassParams = { + &ULyraLocalPlayer::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLocalPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLocalPlayer() +{ + if (!Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton, Z_Construct_UClass_ULyraLocalPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLocalPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLocalPlayer); +ULyraLocalPlayer::~ULyraLocalPlayer() {} +// End Class ULyraLocalPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLocalPlayer, ULyraLocalPlayer::StaticClass, TEXT("ULyraLocalPlayer"), &Z_Registration_Info_UClass_ULyraLocalPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLocalPlayer), 2833856415U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_2774431117(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h new file mode 100644 index 00000000..907af9b8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraLocalPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraSettingsLocal; +class ULyraSettingsShared; +class UObject; +struct FSwapAudioOutputResult; +#ifdef LYRAGAME_LyraLocalPlayer_generated_h +#error "LyraLocalPlayer.generated.h already included, missing '#pragma once' in LyraLocalPlayer.h" +#endif +#define LYRAGAME_LyraLocalPlayer_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnControllerChangedTeam); \ + DECLARE_FUNCTION(execOnCompletedAudioDeviceSwap); \ + DECLARE_FUNCTION(execGetSharedSettings); \ + DECLARE_FUNCTION(execGetLocalSettings); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLocalPlayer(); \ + friend struct Z_Construct_UClass_ULyraLocalPlayer_Statics; \ +public: \ + DECLARE_CLASS(ULyraLocalPlayer, UCommonLocalPlayer, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraLocalPlayer) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLocalPlayer(ULyraLocalPlayer&&); \ + ULyraLocalPlayer(const ULyraLocalPlayer&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraLocalPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLocalPlayer); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraLocalPlayer) \ + NO_API virtual ~ULyraLocalPlayer(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp new file mode 100644 index 00000000..298fb2d5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraNotificationMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNotificationMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraNotificationMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraNotificationMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraNotificationMessage; +class UScriptStruct* FLyraNotificationMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraNotificationMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraNotificationMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraNotificationMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A message destined for a transient log (e.g., an elimination feed or inventory pickup stream)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A message destined for a transient log (e.g., an elimination feed or inventory pickup stream)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetChannel_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The destination channel\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The destination channel" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetPlayer_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The target player (if none is set then it will display for all local players)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The target player (if none is set then it will display for all local players)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadMessage_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The message to display\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadTag_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Extra payload specific to the target channel (e.g., a style or definition asset)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra payload specific to the target channel (e.g., a style or definition asset)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadObject_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Extra payload specific to the target channel (e.g., a style or definition asset)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra payload specific to the target channel (e.g., a style or definition asset)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetChannel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetPlayer; + static const UECodeGen_Private::FTextPropertyParams NewProp_PayloadMessage; + static const UECodeGen_Private::FStructPropertyParams NewProp_PayloadTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PayloadObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetChannel = { "TargetChannel", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, TargetChannel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetChannel_MetaData), NewProp_TargetChannel_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetPlayer = { "TargetPlayer", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, TargetPlayer), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetPlayer_MetaData), NewProp_TargetPlayer_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadMessage = { "PayloadMessage", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadMessage), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadMessage_MetaData), NewProp_PayloadMessage_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadTag = { "PayloadTag", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadTag_MetaData), NewProp_PayloadTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadObject = { "PayloadObject", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadObject_MetaData), NewProp_PayloadObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetChannel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraNotificationMessage", + Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers), + sizeof(FLyraNotificationMessage), + alignof(FLyraNotificationMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraNotificationMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton; +} +// End ScriptStruct FLyraNotificationMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraNotificationMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewStructOps, TEXT("LyraNotificationMessage"), &Z_Registration_Info_UScriptStruct_LyraNotificationMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraNotificationMessage), 3955234826U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_2969197401(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h new file mode 100644 index 00000000..6391d592 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraNotificationMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNotificationMessage_generated_h +#error "LyraNotificationMessage.generated.h already included, missing '#pragma once' in LyraNotificationMessage.h" +#endif +#define LYRAGAME_LyraNotificationMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp new file mode 100644 index 00000000..6cf77e55 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp @@ -0,0 +1,285 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraNumberPopRequest(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraNumberPopRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraNumberPopRequest; +class UScriptStruct* FLyraNumberPopRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraNumberPopRequest, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraNumberPopRequest")); + } + return Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraNumberPopRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldLocation_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The world location to create the number pop at\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The world location to create the number pop at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SourceTags_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags related to the source/cause of the number pop (for determining a style)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags related to the source/cause of the number pop (for determining a style)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetTags_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags related to the target of the number pop (for determining a style)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags related to the target of the number pop (for determining a style)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberToDisplay_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The number to display\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsCriticalDamage_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Whether the number is 'critical' or not (@TODO: move to a tag)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether the number is 'critical' or not (@TODO: move to a tag)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_WorldLocation; + static const UECodeGen_Private::FStructPropertyParams NewProp_SourceTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumberToDisplay; + static void NewProp_bIsCriticalDamage_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsCriticalDamage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_WorldLocation = { "WorldLocation", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, WorldLocation), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldLocation_MetaData), NewProp_WorldLocation_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_SourceTags = { "SourceTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, SourceTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SourceTags_MetaData), NewProp_SourceTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_TargetTags = { "TargetTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, TargetTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetTags_MetaData), NewProp_TargetTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_NumberToDisplay = { "NumberToDisplay", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, NumberToDisplay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberToDisplay_MetaData), NewProp_NumberToDisplay_MetaData) }; +void Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage_SetBit(void* Obj) +{ + ((FLyraNumberPopRequest*)Obj)->bIsCriticalDamage = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage = { "bIsCriticalDamage", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraNumberPopRequest), &Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsCriticalDamage_MetaData), NewProp_bIsCriticalDamage_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_WorldLocation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_SourceTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_TargetTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_NumberToDisplay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraNumberPopRequest", + Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers), + sizeof(FLyraNumberPopRequest), + alignof(FLyraNumberPopRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraNumberPopRequest() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton, Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton; +} +// End ScriptStruct FLyraNumberPopRequest + +// Begin Class ULyraNumberPopComponent Function AddNumberPop +struct Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics +{ + struct LyraNumberPopComponent_eventAddNumberPop_Parms + { + FLyraNumberPopRequest NewRequest; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Foo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Adds a damage number to the damage number list for visualization */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a damage number to the damage number list for visualization" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewRequest_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewRequest; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::NewProp_NewRequest = { "NewRequest", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraNumberPopComponent_eventAddNumberPop_Parms, NewRequest), Z_Construct_UScriptStruct_FLyraNumberPopRequest, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewRequest_MetaData), NewProp_NewRequest_MetaData) }; // 863183318 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::NewProp_NewRequest, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraNumberPopComponent, nullptr, "AddNumberPop", nullptr, nullptr, Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::LyraNumberPopComponent_eventAddNumberPop_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::LyraNumberPopComponent_eventAddNumberPop_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraNumberPopComponent::execAddNumberPop) +{ + P_GET_STRUCT_REF(FLyraNumberPopRequest,Z_Param_Out_NewRequest); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddNumberPop(Z_Param_Out_NewRequest); + P_NATIVE_END; +} +// End Class ULyraNumberPopComponent Function AddNumberPop + +// Begin Class ULyraNumberPopComponent +void ULyraNumberPopComponent::StaticRegisterNativesULyraNumberPopComponent() +{ + UClass* Class = ULyraNumberPopComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddNumberPop", &ULyraNumberPopComponent::execAddNumberPop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NoRegister() +{ + return ULyraNumberPopComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop, "AddNumberPop" }, // 1554478480 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_Statics::ClassParams = { + &ULyraNumberPopComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent); +ULyraNumberPopComponent::~ULyraNumberPopComponent() {} +// End Class ULyraNumberPopComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraNumberPopRequest::StaticStruct, Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewStructOps, TEXT("LyraNumberPopRequest"), &Z_Registration_Info_UScriptStruct_LyraNumberPopRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraNumberPopRequest), 863183318U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent, ULyraNumberPopComponent::StaticClass, TEXT("ULyraNumberPopComponent"), &Z_Registration_Info_UClass_ULyraNumberPopComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent), 2015523977U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_519760600(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h new file mode 100644 index 00000000..59a8094f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraNumberPopRequest; +#ifdef LYRAGAME_LyraNumberPopComponent_generated_h +#error "LyraNumberPopComponent.generated.h already included, missing '#pragma once' in LyraNumberPopComponent.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAddNumberPop); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent, UControllerComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent(ULyraNumberPopComponent&&); \ + ULyraNumberPopComponent(const ULyraNumberPopComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent) \ + NO_API virtual ~ULyraNumberPopComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp new file mode 100644 index 00000000..f8a8ae28 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp @@ -0,0 +1,395 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent_MeshText() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLiveNumberPopEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPooledNumberPopComponentList(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FPooledNumberPopComponentList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList; +class UScriptStruct* FPooledNumberPopComponentList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPooledNumberPopComponentList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PooledNumberPopComponentList")); + } + return Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPooledNumberPopComponentList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Components_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Components_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Components; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components_Inner = { "Components", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components = { "Components", nullptr, (EPropertyFlags)0x0114008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPooledNumberPopComponentList, Components), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Components_MetaData), NewProp_Components_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PooledNumberPopComponentList", + Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers), + sizeof(FPooledNumberPopComponentList), + alignof(FPooledNumberPopComponentList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPooledNumberPopComponentList() +{ + if (!Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton, Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton; +} +// End ScriptStruct FPooledNumberPopComponentList + +// Begin ScriptStruct FLiveNumberPopEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LiveNumberPopEntry; +class UScriptStruct* FLiveNumberPopEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLiveNumberPopEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LiveNumberPopEntry")); + } + return Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLiveNumberPopEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Component_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The component that is currently live */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The component that is currently live" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Component; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewProp_Component = { "Component", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLiveNumberPopEntry, Component), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Component_MetaData), NewProp_Component_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewProp_Component, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LiveNumberPopEntry", + Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers), + sizeof(FLiveNumberPopEntry), + alignof(FLiveNumberPopEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLiveNumberPopEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton, Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton; +} +// End ScriptStruct FLiveNumberPopEntry + +// Begin Class ULyraNumberPopComponent_MeshText +void ULyraNumberPopComponent_MeshText::StaticRegisterNativesULyraNumberPopComponent_MeshText() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent_MeshText); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText_NoRegister() +{ + return ULyraNumberPopComponent_MeshText::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Styles_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Style patterns to attempt to apply to the incoming number pops */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Style patterns to attempt to apply to the incoming number pops" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentLifespan_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DistanceFromCameraBeforeDoublingSize_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CriticalHitSizeMultiplier_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FontXSize_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FontYSize_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpacingPercentageForOnes_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberOfNumberRotations_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SignDigitParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationLifespanParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IsCriticalHitParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MoveToCameraParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Damage numbers by default are given a depth close to the camera in the material to make sure they are never occluded. This can be toggled off here, should only be 0/1. */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Damage numbers by default are given a depth close to the camera in the material to make sure they are never occluded. This can be toggled off here, should only be 0/1." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PositionParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScaleRotationAngleParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DurationParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PooledComponentMap_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LiveComponents_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Styles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Styles; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ComponentLifespan; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DistanceFromCameraBeforeDoublingSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CriticalHitSizeMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FontXSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FontYSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpacingPercentageForOnes; + static const UECodeGen_Private::FFloatPropertyParams NewProp_NumberOfNumberRotations; + static const UECodeGen_Private::FNamePropertyParams NewProp_SignDigitParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_ColorParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_AnimationLifespanParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_IsCriticalHitParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_MoveToCameraParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_PositionParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PositionParameterNames; + static const UECodeGen_Private::FNamePropertyParams NewProp_ScaleRotationAngleParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ScaleRotationAngleParameterNames; + static const UECodeGen_Private::FNamePropertyParams NewProp_DurationParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DurationParameterNames; + static const UECodeGen_Private::FStructPropertyParams NewProp_PooledComponentMap_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PooledComponentMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PooledComponentMap; + static const UECodeGen_Private::FStructPropertyParams NewProp_LiveComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LiveComponents; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles_Inner = { "Styles", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraDamagePopStyle_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles = { "Styles", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, Styles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Styles_MetaData), NewProp_Styles_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ComponentLifespan = { "ComponentLifespan", nullptr, (EPropertyFlags)0x0020080000010005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ComponentLifespan), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentLifespan_MetaData), NewProp_ComponentLifespan_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DistanceFromCameraBeforeDoublingSize = { "DistanceFromCameraBeforeDoublingSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, DistanceFromCameraBeforeDoublingSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DistanceFromCameraBeforeDoublingSize_MetaData), NewProp_DistanceFromCameraBeforeDoublingSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_CriticalHitSizeMultiplier = { "CriticalHitSizeMultiplier", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, CriticalHitSizeMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CriticalHitSizeMultiplier_MetaData), NewProp_CriticalHitSizeMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontXSize = { "FontXSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, FontXSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FontXSize_MetaData), NewProp_FontXSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontYSize = { "FontYSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, FontYSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FontYSize_MetaData), NewProp_FontYSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SpacingPercentageForOnes = { "SpacingPercentageForOnes", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, SpacingPercentageForOnes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpacingPercentageForOnes_MetaData), NewProp_SpacingPercentageForOnes_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_NumberOfNumberRotations = { "NumberOfNumberRotations", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, NumberOfNumberRotations), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberOfNumberRotations_MetaData), NewProp_NumberOfNumberRotations_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SignDigitParameterName = { "SignDigitParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, SignDigitParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SignDigitParameterName_MetaData), NewProp_SignDigitParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ColorParameterName = { "ColorParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ColorParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorParameterName_MetaData), NewProp_ColorParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_AnimationLifespanParameterName = { "AnimationLifespanParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, AnimationLifespanParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationLifespanParameterName_MetaData), NewProp_AnimationLifespanParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_IsCriticalHitParameterName = { "IsCriticalHitParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, IsCriticalHitParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IsCriticalHitParameterName_MetaData), NewProp_IsCriticalHitParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_MoveToCameraParameterName = { "MoveToCameraParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, MoveToCameraParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MoveToCameraParameterName_MetaData), NewProp_MoveToCameraParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames_Inner = { "PositionParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames = { "PositionParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, PositionParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PositionParameterNames_MetaData), NewProp_PositionParameterNames_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames_Inner = { "ScaleRotationAngleParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames = { "ScaleRotationAngleParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ScaleRotationAngleParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScaleRotationAngleParameterNames_MetaData), NewProp_ScaleRotationAngleParameterNames_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames_Inner = { "DurationParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames = { "DurationParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, DurationParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DurationParameterNames_MetaData), NewProp_DurationParameterNames_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_ValueProp = { "PooledComponentMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPooledNumberPopComponentList, METADATA_PARAMS(0, nullptr) }; // 1625704582 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_Key_KeyProp = { "PooledComponentMap_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap = { "PooledComponentMap", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, PooledComponentMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PooledComponentMap_MetaData), NewProp_PooledComponentMap_MetaData) }; // 1625704582 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents_Inner = { "LiveComponents", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLiveNumberPopEntry, METADATA_PARAMS(0, nullptr) }; // 1937162421 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents = { "LiveComponents", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, LiveComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LiveComponents_MetaData), NewProp_LiveComponents_MetaData) }; // 1937162421 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ComponentLifespan, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DistanceFromCameraBeforeDoublingSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_CriticalHitSizeMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontXSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontYSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SpacingPercentageForOnes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_NumberOfNumberRotations, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SignDigitParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ColorParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_AnimationLifespanParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_IsCriticalHitParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_MoveToCameraParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraNumberPopComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::ClassParams = { + &ULyraNumberPopComponent_MeshText::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent_MeshText::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent_MeshText); +ULyraNumberPopComponent_MeshText::~ULyraNumberPopComponent_MeshText() {} +// End Class ULyraNumberPopComponent_MeshText + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPooledNumberPopComponentList::StaticStruct, Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewStructOps, TEXT("PooledNumberPopComponentList"), &Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPooledNumberPopComponentList), 1625704582U) }, + { FLiveNumberPopEntry::StaticStruct, Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewStructOps, TEXT("LiveNumberPopEntry"), &Z_Registration_Info_UScriptStruct_LiveNumberPopEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLiveNumberPopEntry), 1937162421U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent_MeshText, ULyraNumberPopComponent_MeshText::StaticClass, TEXT("ULyraNumberPopComponent_MeshText"), &Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent_MeshText), 469462504U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_4255662648(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h new file mode 100644 index 00000000..9e18af5c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNumberPopComponent_MeshText_generated_h +#error "LyraNumberPopComponent_MeshText.generated.h already included, missing '#pragma once' in LyraNumberPopComponent_MeshText.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_MeshText_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent_MeshText(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent_MeshText, ULyraNumberPopComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent_MeshText) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent_MeshText(ULyraNumberPopComponent_MeshText&&); \ + ULyraNumberPopComponent_MeshText(const ULyraNumberPopComponent_MeshText&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent_MeshText); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent_MeshText); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent_MeshText) \ + NO_API virtual ~ULyraNumberPopComponent_MeshText(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_60_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp new file mode 100644 index 00000000..8cfbc7f9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp @@ -0,0 +1,127 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent_NiagaraText() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraNumberPopComponent_NiagaraText +void ULyraNumberPopComponent_NiagaraText::StaticRegisterNativesULyraNumberPopComponent_NiagaraText() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent_NiagaraText); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_NoRegister() +{ + return ULyraNumberPopComponent_NiagaraText::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Style_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Style patterns to attempt to apply to the incoming number pops */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Style patterns to attempt to apply to the incoming number pops" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraComp_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Niagara Component used to display the damage\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Niagara Component used to display the damage" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Style; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraComp; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_Style = { "Style", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_NiagaraText, Style), Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Style_MetaData), NewProp_Style_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_NiagaraComp = { "NiagaraComp", nullptr, (EPropertyFlags)0x0124080000090009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_NiagaraText, NiagaraComp), Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraComp_MetaData), NewProp_NiagaraComp_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_Style, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_NiagaraComp, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraNumberPopComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::ClassParams = { + &ULyraNumberPopComponent_NiagaraText::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent_NiagaraText::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent_NiagaraText); +ULyraNumberPopComponent_NiagaraText::~ULyraNumberPopComponent_NiagaraText() {} +// End Class ULyraNumberPopComponent_NiagaraText + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText, ULyraNumberPopComponent_NiagaraText::StaticClass, TEXT("ULyraNumberPopComponent_NiagaraText"), &Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent_NiagaraText), 375475042U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_801455616(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h new file mode 100644 index 00000000..158c71f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNumberPopComponent_NiagaraText_generated_h +#error "LyraNumberPopComponent_NiagaraText.generated.h already included, missing '#pragma once' in LyraNumberPopComponent_NiagaraText.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_NiagaraText_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent_NiagaraText(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent_NiagaraText, ULyraNumberPopComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent_NiagaraText) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent_NiagaraText(ULyraNumberPopComponent_NiagaraText&&); \ + ULyraNumberPopComponent_NiagaraText(const ULyraNumberPopComponent_NiagaraText&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent_NiagaraText); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent_NiagaraText); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent_NiagaraText) \ + NO_API virtual ~ULyraNumberPopComponent_NiagaraText(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.gen.cpp new file mode 100644 index 00000000..fca074a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.gen.cpp @@ -0,0 +1,235 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawn.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawn() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPawn(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPawn Function OnControllerChangedTeam +struct Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics +{ + struct LyraPawn_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPawn, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::LyraPawn_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::LyraPawn_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPawn::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPawn Function OnControllerChangedTeam + +// Begin Class ALyraPawn Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics +{ + struct LyraPawn_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPawn, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::LyraPawn_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::LyraPawn_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPawn::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraPawn Function OnRep_MyTeamID + +// Begin Class ALyraPawn +void ALyraPawn::StaticRegisterNativesALyraPawn() +{ + UClass* Class = ALyraPawn::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnControllerChangedTeam", &ALyraPawn::execOnControllerChangedTeam }, + { "OnRep_MyTeamID", &ALyraPawn::execOnRep_MyTeamID }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPawn); +UClass* Z_Construct_UClass_ALyraPawn_NoRegister() +{ + return ALyraPawn::StaticClass(); +} +struct Z_Construct_UClass_ALyraPawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPawn\n */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraPawn.h" }, + { "ModuleRelativePath", "Character/LyraPawn.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 3185344502 + { &Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 1608443107 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPawn_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPawn, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPawn_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPawn, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPawn_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPawn_Statics::NewProp_OnTeamChangedDelegate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPawn_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPawn, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPawn_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPawn, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPawn_Statics::ClassParams = { + &ALyraPawn::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPawn_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPawn_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPawn() +{ + if (!Z_Registration_Info_UClass_ALyraPawn.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPawn.OuterSingleton, Z_Construct_UClass_ALyraPawn_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPawn.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPawn::StaticClass(); +} +void ALyraPawn::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_MyTeamID(TEXT("MyTeamID")); + const bool bIsValid = true + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraPawn")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPawn); +ALyraPawn::~ALyraPawn() {} +// End Class ALyraPawn + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPawn, ALyraPawn::StaticClass, TEXT("ALyraPawn"), &Z_Registration_Info_UClass_ALyraPawn, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPawn), 3547856983U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_2250276092(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.generated.h new file mode 100644 index 00000000..2d8be76f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawn.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawn.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +struct FGenericTeamId; +#ifdef LYRAGAME_LyraPawn_generated_h +#error "LyraPawn.generated.h already included, missing '#pragma once' in LyraPawn.h" +#endif +#define LYRAGAME_LyraPawn_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnControllerChangedTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPawn(); \ + friend struct Z_Construct_UClass_ALyraPawn_Statics; \ +public: \ + DECLARE_CLASS(ALyraPawn, AModularPawn, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPawn) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + MyTeamID=NETFIELD_REP_START, \ + NETFIELD_REP_END=MyTeamID }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPawn(ALyraPawn&&); \ + ALyraPawn(const ALyraPawn&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPawn); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPawn); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPawn) \ + NO_API virtual ~ALyraPawn(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp new file mode 100644 index 00000000..247cc45e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp @@ -0,0 +1,670 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraPawnComponent_CharacterParts.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnComponent_CharacterParts() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UChildActorComponent_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartList(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraSpawnedCharacterPartsChanged +struct Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms + { + ULyraPawnComponent_CharacterParts* ComponentWithChangedParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentWithChangedParts_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ComponentWithChangedParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::NewProp_ComponentWithChangedParts = { "ComponentWithChangedParts", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms, ComponentWithChangedParts), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentWithChangedParts_MetaData), NewProp_ComponentWithChangedParts_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::NewProp_ComponentWithChangedParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraSpawnedCharacterPartsChanged__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraSpawnedCharacterPartsChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraSpawnedCharacterPartsChanged, ULyraPawnComponent_CharacterParts* ComponentWithChangedParts) +{ + struct _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms + { + ULyraPawnComponent_CharacterParts* ComponentWithChangedParts; + }; + _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms Parms; + Parms.ComponentWithChangedParts=ComponentWithChangedParts; + LyraSpawnedCharacterPartsChanged.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraSpawnedCharacterPartsChanged + +// Begin ScriptStruct FLyraAppliedCharacterPartEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAppliedCharacterPartEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry; +class UScriptStruct* FLyraAppliedCharacterPartEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAppliedCharacterPartEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAppliedCharacterPartEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A single applied character part\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single applied character part" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Part_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The character part being represented\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The character part being represented" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartHandle_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handle index we returned to the user (server only)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handle index we returned to the user (server only)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The spawned actor instance (client only)\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The spawned actor instance (client only)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Part; + static const UECodeGen_Private::FIntPropertyParams NewProp_PartHandle; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_Part = { "Part", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, Part), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Part_MetaData), NewProp_Part_MetaData) }; // 2027995414 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_PartHandle = { "PartHandle", nullptr, (EPropertyFlags)0x0040000080000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, PartHandle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartHandle_MetaData), NewProp_PartHandle_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_SpawnedComponent = { "SpawnedComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, SpawnedComponent), Z_Construct_UClass_UChildActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedComponent_MetaData), NewProp_SpawnedComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_Part, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_PartHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_SpawnedComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraAppliedCharacterPartEntry", + Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers), + sizeof(FLyraAppliedCharacterPartEntry), + alignof(FLyraAppliedCharacterPartEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton; +} +// End ScriptStruct FLyraAppliedCharacterPartEntry + +// Begin ScriptStruct FLyraCharacterPartList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraCharacterPartList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPartList; +class UScriptStruct* FLyraCharacterPartList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPartList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPartList")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPartList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraCharacterPartList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraCharacterPartList); +#endif +struct Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of applied character parts\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of applied character parts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of equipment entries\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of equipment entries" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The component that contains this list\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The component that contains this list" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry, METADATA_PARAMS(0, nullptr) }; // 1881465708 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 1881465708 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartList, OwnerComponent), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraCharacterPartList", + Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers), + sizeof(FLyraCharacterPartList), + alignof(FLyraCharacterPartList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPartList + +// Begin Class ULyraPawnComponent_CharacterParts Function AddCharacterPart +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics +{ + struct LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms + { + FLyraCharacterPart NewPart; + FLyraCharacterPartHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part to the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part to the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewPart_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewPart; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart = { "NewPart", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms, NewPart), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewPart_MetaData), NewProp_NewPart_MetaData) }; // 2027995414 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraCharacterPartHandle, METADATA_PARAMS(0, nullptr) }; // 1063436802 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execAddCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_NewPart); + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraCharacterPartHandle*)Z_Param__Result=P_THIS->AddCharacterPart(Z_Param_Out_NewPart); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function AddCharacterPart + +// Begin Class ULyraPawnComponent_CharacterParts Function GetCharacterPartActors +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics +{ + struct LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the list of all spawned character parts from this component\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the list of all spawned character parts from this component" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "GetCharacterPartActors", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execGetCharacterPartActors) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetCharacterPartActors(); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function GetCharacterPartActors + +// Begin Class ULyraPawnComponent_CharacterParts Function GetCombinedTags +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics +{ + struct LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms + { + FGameplayTag RequiredPrefix; + FGameplayTagContainer ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the set of combined gameplay tags from attached character parts, optionally filtered to only tags that start with the specified root\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the set of combined gameplay tags from attached character parts, optionally filtered to only tags that start with the specified root" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredPrefix; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_RequiredPrefix = { "RequiredPrefix", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms, RequiredPrefix), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_RequiredPrefix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "GetCombinedTags", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execGetCombinedTags) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_RequiredPrefix); + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayTagContainer*)Z_Param__Result=P_THIS->GetCombinedTags(Z_Param_RequiredPrefix); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function GetCombinedTags + +// Begin Class ULyraPawnComponent_CharacterParts Function RemoveAllCharacterParts +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes all added character parts, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes all added character parts, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "RemoveAllCharacterParts", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execRemoveAllCharacterParts) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAllCharacterParts(); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function RemoveAllCharacterParts + +// Begin Class ULyraPawnComponent_CharacterParts Function RemoveCharacterPart +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics +{ + struct LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms + { + FLyraCharacterPartHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a previously added character part from the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a previously added character part from the actor that owns this customization component, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms, Handle), Z_Construct_UScriptStruct_FLyraCharacterPartHandle, METADATA_PARAMS(0, nullptr) }; // 1063436802 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "RemoveCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execRemoveCharacterPart) +{ + P_GET_STRUCT(FLyraCharacterPartHandle,Z_Param_Handle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveCharacterPart(Z_Param_Handle); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function RemoveCharacterPart + +// Begin Class ULyraPawnComponent_CharacterParts +void ULyraPawnComponent_CharacterParts::StaticRegisterNativesULyraPawnComponent_CharacterParts() +{ + UClass* Class = ULyraPawnComponent_CharacterParts::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraPawnComponent_CharacterParts::execAddCharacterPart }, + { "GetCharacterPartActors", &ULyraPawnComponent_CharacterParts::execGetCharacterPartActors }, + { "GetCombinedTags", &ULyraPawnComponent_CharacterParts::execGetCombinedTags }, + { "RemoveAllCharacterParts", &ULyraPawnComponent_CharacterParts::execRemoveAllCharacterParts }, + { "RemoveCharacterPart", &ULyraPawnComponent_CharacterParts::execRemoveCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnComponent_CharacterParts); +UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister() +{ + return ULyraPawnComponent_CharacterParts::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A component that handles spawning cosmetic actors attached to the owner pawn on all clients\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A component that handles spawning cosmetic actors attached to the owner pawn on all clients" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnCharacterPartsChanged_MetaData[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate that will be called when the list of spawned character parts has changed\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate that will be called when the list of spawned character parts has changed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CharacterPartList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of character parts\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of character parts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BodyMeshes_MetaData[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rules for how to pick a body style mesh for animation to play on, based on character part cosmetics tags\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rules for how to pick a body style mesh for animation to play on, based on character part cosmetics tags" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnCharacterPartsChanged; + static const UECodeGen_Private::FStructPropertyParams NewProp_CharacterPartList; + static const UECodeGen_Private::FStructPropertyParams NewProp_BodyMeshes; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart, "AddCharacterPart" }, // 3331098824 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors, "GetCharacterPartActors" }, // 1116947398 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags, "GetCombinedTags" }, // 1781304781 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts, "RemoveAllCharacterParts" }, // 111002439 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart, "RemoveCharacterPart" }, // 903131853 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_OnCharacterPartsChanged = { "OnCharacterPartsChanged", nullptr, (EPropertyFlags)0x0010100010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, OnCharacterPartsChanged), Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnCharacterPartsChanged_MetaData), NewProp_OnCharacterPartsChanged_MetaData) }; // 3545841739 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_CharacterPartList = { "CharacterPartList", nullptr, (EPropertyFlags)0x0040008000002020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, CharacterPartList), Z_Construct_UScriptStruct_FLyraCharacterPartList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CharacterPartList_MetaData), NewProp_CharacterPartList_MetaData) }; // 1027002543 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_BodyMeshes = { "BodyMeshes", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, BodyMeshes), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BodyMeshes_MetaData), NewProp_BodyMeshes_MetaData) }; // 181859200 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_OnCharacterPartsChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_CharacterPartList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_BodyMeshes, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::ClassParams = { + &ULyraPawnComponent_CharacterParts::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts() +{ + if (!Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton, Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnComponent_CharacterParts::StaticClass(); +} +void ULyraPawnComponent_CharacterParts::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_CharacterPartList(TEXT("CharacterPartList")); + const bool bIsValid = true + && Name_CharacterPartList == ClassReps[(int32)ENetFields_Private::CharacterPartList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraPawnComponent_CharacterParts")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnComponent_CharacterParts); +ULyraPawnComponent_CharacterParts::~ULyraPawnComponent_CharacterParts() {} +// End Class ULyraPawnComponent_CharacterParts + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAppliedCharacterPartEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewStructOps, TEXT("LyraAppliedCharacterPartEntry"), &Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAppliedCharacterPartEntry), 1881465708U) }, + { FLyraCharacterPartList::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewStructOps, TEXT("LyraCharacterPartList"), &Z_Registration_Info_UScriptStruct_LyraCharacterPartList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPartList), 1027002543U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnComponent_CharacterParts, ULyraPawnComponent_CharacterParts::StaticClass, TEXT("ULyraPawnComponent_CharacterParts"), &Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnComponent_CharacterParts), 361170492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_665526194(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h new file mode 100644 index 00000000..4630a70c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraPawnComponent_CharacterParts.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraPawnComponent_CharacterParts; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FLyraCharacterPart; +struct FLyraCharacterPartHandle; +#ifdef LYRAGAME_LyraPawnComponent_CharacterParts_generated_h +#error "LyraPawnComponent_CharacterParts.generated.h already included, missing '#pragma once' in LyraPawnComponent_CharacterParts.h" +#endif +#define LYRAGAME_LyraPawnComponent_CharacterParts_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_25_DELEGATE \ +LYRAGAME_API void FLyraSpawnedCharacterPartsChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraSpawnedCharacterPartsChanged, ULyraPawnComponent_CharacterParts* ComponentWithChangedParts); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_64_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraCharacterPartList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetCombinedTags); \ + DECLARE_FUNCTION(execGetCharacterPartActors); \ + DECLARE_FUNCTION(execRemoveAllCharacterParts); \ + DECLARE_FUNCTION(execRemoveCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnComponent_CharacterParts(); \ + friend struct Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnComponent_CharacterParts, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnComponent_CharacterParts) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + CharacterPartList=NETFIELD_REP_START, \ + NETFIELD_REP_END=CharacterPartList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnComponent_CharacterParts(ULyraPawnComponent_CharacterParts&&); \ + ULyraPawnComponent_CharacterParts(const ULyraPawnComponent_CharacterParts&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnComponent_CharacterParts); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnComponent_CharacterParts); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnComponent_CharacterParts) \ + NO_API virtual ~ULyraPawnComponent_CharacterParts(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_122_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.gen.cpp new file mode 100644 index 00000000..077d8146 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.gen.cpp @@ -0,0 +1,178 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawnData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnData() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPawnData +void ULyraPawnData::StaticRegisterNativesULyraPawnData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnData); +UClass* Z_Construct_UClass_ULyraPawnData_NoRegister() +{ + return ULyraPawnData::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPawnData\n *\n *\x09Non-mutable data asset that contains properties used to define a pawn.\n */" }, +#endif + { "DisplayName", "Lyra Pawn Data" }, + { "IncludePath", "Character/LyraPawnData.h" }, + { "ModuleRelativePath", "Character/LyraPawnData.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "Data asset used to define a Pawn." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPawnData\n\n Non-mutable data asset that contains properties used to define a pawn." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnClass_MetaData[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Class to instantiate for this pawn (should usually derive from ALyraPawn or ALyraCharacter).\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Class to instantiate for this pawn (should usually derive from ALyraPawn or ALyraCharacter)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySets_MetaData[] = { + { "Category", "Lyra|Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability sets to grant to this pawn's ability system.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability sets to grant to this pawn's ability system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TagRelationshipMapping_MetaData[] = { + { "Category", "Lyra|Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// What mapping of ability tags to use for actions taking by this pawn\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What mapping of ability tags to use for actions taking by this pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfig_MetaData[] = { + { "Category", "Lyra|Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Input configuration used by player controlled pawns to create input mappings and bind input actions.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Input configuration used by player controlled pawns to create input mappings and bind input actions." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultCameraMode_MetaData[] = { + { "Category", "Lyra|Camera" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default camera mode used by player controlled pawns.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default camera mode used by player controlled pawns." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PawnClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySets; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TagRelationshipMapping; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputConfig; + static const UECodeGen_Private::FClassPropertyParams NewProp_DefaultCameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_PawnClass = { "PawnClass", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, PawnClass), Z_Construct_UClass_UClass, Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnClass_MetaData), NewProp_PawnClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets_Inner = { "AbilitySets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets = { "AbilitySets", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, AbilitySets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySets_MetaData), NewProp_AbilitySets_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_TagRelationshipMapping = { "TagRelationshipMapping", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, TagRelationshipMapping), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TagRelationshipMapping_MetaData), NewProp_TagRelationshipMapping_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_InputConfig = { "InputConfig", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, InputConfig), Z_Construct_UClass_ULyraInputConfig_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfig_MetaData), NewProp_InputConfig_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_DefaultCameraMode = { "DefaultCameraMode", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, DefaultCameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultCameraMode_MetaData), NewProp_DefaultCameraMode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_PawnClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_TagRelationshipMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_InputConfig, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_DefaultCameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnData_Statics::ClassParams = { + &ULyraPawnData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPawnData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnData() +{ + if (!Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton, Z_Construct_UClass_ULyraPawnData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnData); +ULyraPawnData::~ULyraPawnData() {} +// End Class ULyraPawnData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnData, ULyraPawnData::StaticClass, TEXT("ULyraPawnData"), &Z_Registration_Info_UClass_ULyraPawnData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnData), 4054653562U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_1703379645(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.generated.h new file mode 100644 index 00000000..247ea728 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawnData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPawnData_generated_h +#error "LyraPawnData.generated.h already included, missing '#pragma once' in LyraPawnData.h" +#endif +#define LYRAGAME_LyraPawnData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnData(); \ + friend struct Z_Construct_UClass_ULyraPawnData_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnData) + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnData(ULyraPawnData&&); \ + ULyraPawnData(const ULyraPawnData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnData) \ + NO_API virtual ~ULyraPawnData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp new file mode 100644 index 00000000..6f4e40c5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp @@ -0,0 +1,296 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawnExtensionComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnExtensionComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPawnExtensionComponent Function FindPawnExtensionComponent +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics +{ + struct LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms + { + const AActor* Actor; + ULyraPawnExtensionComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the pawn extension component if one exists on the specified actor. */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the pawn extension component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "FindPawnExtensionComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execFindPawnExtensionComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraPawnExtensionComponent**)Z_Param__Result=ULyraPawnExtensionComponent::FindPawnExtensionComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function FindPawnExtensionComponent + +// Begin Class ULyraPawnExtensionComponent Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the current ability system component, which may be owned by a different actor */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the current ability system component, which may be owned by a different actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function GetLyraAbilitySystemComponent + +// Begin Class ULyraPawnExtensionComponent Function OnRep_PawnData +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "OnRep_PawnData", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execOnRep_PawnData) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_PawnData(); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function OnRep_PawnData + +// Begin Class ULyraPawnExtensionComponent +void ULyraPawnExtensionComponent::StaticRegisterNativesULyraPawnExtensionComponent() +{ + UClass* Class = ULyraPawnExtensionComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindPawnExtensionComponent", &ULyraPawnExtensionComponent::execFindPawnExtensionComponent }, + { "GetLyraAbilitySystemComponent", &ULyraPawnExtensionComponent::execGetLyraAbilitySystemComponent }, + { "OnRep_PawnData", &ULyraPawnExtensionComponent::execOnRep_PawnData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnExtensionComponent); +UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister() +{ + return ULyraPawnExtensionComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnExtensionComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Component that adds functionality to all Pawn classes so it can be used for characters/vehicles/etc.\n * This coordinates the initialization of other components.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraPawnExtensionComponent.h" }, + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Component that adds functionality to all Pawn classes so it can be used for characters/vehicles/etc.\nThis coordinates the initialization of other components." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnData_MetaData[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pawn data used to create the pawn. Specified from a spawn function or on a placed instance. */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pawn data used to create the pawn. Specified from a spawn function or on a placed instance." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pointer to the ability system component that is cached for convenience. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointer to the ability system component that is cached for convenience." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent, "FindPawnExtensionComponent" }, // 3080013759 + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1953023408 + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData, "OnRep_PawnData" }, // 1628551529 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_PawnData = { "PawnData", "OnRep_PawnData", (EPropertyFlags)0x0124080100000821, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnExtensionComponent, PawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnData_MetaData), NewProp_PawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x0124080000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnExtensionComponent, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_PawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_AbilitySystemComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraPawnExtensionComponent, IGameFrameworkInitStateInterface), false }, // 363983679 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::ClassParams = { + &ULyraPawnExtensionComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnExtensionComponent() +{ + if (!Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton, Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnExtensionComponent::StaticClass(); +} +void ULyraPawnExtensionComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_PawnData(TEXT("PawnData")); + const bool bIsValid = true + && Name_PawnData == ClassReps[(int32)ENetFields_Private::PawnData].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraPawnExtensionComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnExtensionComponent); +ULyraPawnExtensionComponent::~ULyraPawnExtensionComponent() {} +// End Class ULyraPawnExtensionComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnExtensionComponent, ULyraPawnExtensionComponent::StaticClass, TEXT("ULyraPawnExtensionComponent"), &Z_Registration_Info_UClass_ULyraPawnExtensionComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnExtensionComponent), 3185851217U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_1046472736(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h new file mode 100644 index 00000000..180df457 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawnExtensionComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraAbilitySystemComponent; +class ULyraPawnExtensionComponent; +#ifdef LYRAGAME_LyraPawnExtensionComponent_generated_h +#error "LyraPawnExtensionComponent.generated.h already included, missing '#pragma once' in LyraPawnExtensionComponent.h" +#endif +#define LYRAGAME_LyraPawnExtensionComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_PawnData); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execFindPawnExtensionComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnExtensionComponent(); \ + friend struct Z_Construct_UClass_ULyraPawnExtensionComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnExtensionComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnExtensionComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + PawnData=NETFIELD_REP_START, \ + NETFIELD_REP_END=PawnData }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnExtensionComponent(ULyraPawnExtensionComponent&&); \ + ULyraPawnExtensionComponent(const ULyraPawnExtensionComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnExtensionComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnExtensionComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnExtensionComponent) \ + NO_API virtual ~ULyraPawnExtensionComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp new file mode 100644 index 00000000..be07bb21 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp @@ -0,0 +1,167 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraPenetrationAvoidanceFeeler.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPenetrationAvoidanceFeeler() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraPenetrationAvoidanceFeeler +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler; +class UScriptStruct* FLyraPenetrationAvoidanceFeeler::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPenetrationAvoidanceFeeler")); + } + return Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPenetrationAvoidanceFeeler::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Struct defining a feeler ray used for camera penetration avoidance.\n */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Struct defining a feeler ray used for camera penetration avoidance." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdjustmentRot_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** FRotator describing deviance from main ray */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FRotator describing deviance from main ray" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldWeight_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** how much this feeler affects the final position if it hits the world */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "how much this feeler affects the final position if it hits the world" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnWeight_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** how much this feeler affects the final position if it hits a APawn (setting to 0 will not attempt to collide with pawns at all) */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "how much this feeler affects the final position if it hits a APawn (setting to 0 will not attempt to collide with pawns at all)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extent_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** extent to use for collision when tracing this feeler */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "extent to use for collision when tracing this feeler" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceInterval_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** minimum frame interval between traces with this feeler if nothing was hit last frame */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "minimum frame interval between traces with this feeler if nothing was hit last frame" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FramesUntilNextTrace_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** number of frames since this feeler was used */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "number of frames since this feeler was used" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AdjustmentRot; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WorldWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PawnWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Extent; + static const UECodeGen_Private::FIntPropertyParams NewProp_TraceInterval; + static const UECodeGen_Private::FIntPropertyParams NewProp_FramesUntilNextTrace; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_AdjustmentRot = { "AdjustmentRot", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, AdjustmentRot), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdjustmentRot_MetaData), NewProp_AdjustmentRot_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_WorldWeight = { "WorldWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, WorldWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldWeight_MetaData), NewProp_WorldWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_PawnWeight = { "PawnWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, PawnWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnWeight_MetaData), NewProp_PawnWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_Extent = { "Extent", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, Extent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extent_MetaData), NewProp_Extent_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_TraceInterval = { "TraceInterval", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, TraceInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceInterval_MetaData), NewProp_TraceInterval_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_FramesUntilNextTrace = { "FramesUntilNextTrace", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, FramesUntilNextTrace), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FramesUntilNextTrace_MetaData), NewProp_FramesUntilNextTrace_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_AdjustmentRot, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_WorldWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_PawnWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_Extent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_TraceInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_FramesUntilNextTrace, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPenetrationAvoidanceFeeler", + Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers), + sizeof(FLyraPenetrationAvoidanceFeeler), + alignof(FLyraPenetrationAvoidanceFeeler), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton; +} +// End ScriptStruct FLyraPenetrationAvoidanceFeeler + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraPenetrationAvoidanceFeeler::StaticStruct, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewStructOps, TEXT("LyraPenetrationAvoidanceFeeler"), &Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPenetrationAvoidanceFeeler), 2900195724U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_4124090625(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h new file mode 100644 index 00000000..6cf0ea7b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraPenetrationAvoidanceFeeler.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPenetrationAvoidanceFeeler_generated_h +#error "LyraPenetrationAvoidanceFeeler.generated.h already included, missing '#pragma once' in LyraPenetrationAvoidanceFeeler.h" +#endif +#define LYRAGAME_LyraPenetrationAvoidanceFeeler_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_15_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp new file mode 100644 index 00000000..0e056ee2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/PerformanceStats/LyraPerfStatContainerBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerfStatContainerBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatContainerBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatContainerBase_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerfStatContainerBase Function UpdateVisibilityOfChildren +struct Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatContainerBase, nullptr, "UpdateVisibilityOfChildren", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatContainerBase::execUpdateVisibilityOfChildren) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateVisibilityOfChildren(); + P_NATIVE_END; +} +// End Class ULyraPerfStatContainerBase Function UpdateVisibilityOfChildren + +// Begin Class ULyraPerfStatContainerBase +void ULyraPerfStatContainerBase::StaticRegisterNativesULyraPerfStatContainerBase() +{ + UClass* Class = ULyraPerfStatContainerBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "UpdateVisibilityOfChildren", &ULyraPerfStatContainerBase::execUpdateVisibilityOfChildren }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerfStatContainerBase); +UClass* Z_Construct_UClass_ULyraPerfStatContainerBase_NoRegister() +{ + return ULyraPerfStatContainerBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerfStatContainerBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPerfStatsContainerBase\n *\n * Panel that contains a set of ULyraPerfStatWidgetBase widgets and manages\n * their visibility based on user settings.\n */" }, +#endif + { "IncludePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPerfStatsContainerBase\n\nPanel that contains a set of ULyraPerfStatWidgetBase widgets and manages\ntheir visibility based on user settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatDisplayModeFilter_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Are we showing text or graph stats?\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Are we showing text or graph stats?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_StatDisplayModeFilter_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_StatDisplayModeFilter; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren, "UpdateVisibilityOfChildren" }, // 3585891793 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter = { "StatDisplayModeFilter", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatContainerBase, StatDisplayModeFilter), Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatDisplayModeFilter_MetaData), NewProp_StatDisplayModeFilter_MetaData) }; // 3127134116 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::ClassParams = { + &ULyraPerfStatContainerBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerfStatContainerBase() +{ + if (!Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton, Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerfStatContainerBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerfStatContainerBase); +ULyraPerfStatContainerBase::~ULyraPerfStatContainerBase() {} +// End Class ULyraPerfStatContainerBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerfStatContainerBase, ULyraPerfStatContainerBase::StaticClass, TEXT("ULyraPerfStatContainerBase"), &Z_Registration_Info_UClass_ULyraPerfStatContainerBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerfStatContainerBase), 4136689824U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_1464097075(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h new file mode 100644 index 00000000..72a14728 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/PerformanceStats/LyraPerfStatContainerBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerfStatContainerBase_generated_h +#error "LyraPerfStatContainerBase.generated.h already included, missing '#pragma once' in LyraPerfStatContainerBase.h" +#endif +#define LYRAGAME_LyraPerfStatContainerBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUpdateVisibilityOfChildren); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerfStatContainerBase(); \ + friend struct Z_Construct_UClass_ULyraPerfStatContainerBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerfStatContainerBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerfStatContainerBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerfStatContainerBase(ULyraPerfStatContainerBase&&); \ + ULyraPerfStatContainerBase(const ULyraPerfStatContainerBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerfStatContainerBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerfStatContainerBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPerfStatContainerBase) \ + NO_API virtual ~ULyraPerfStatContainerBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_ENHANCED_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp new file mode 100644 index 00000000..04a72ff7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp @@ -0,0 +1,239 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/PerformanceStats/LyraPerfStatWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerfStatWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerfStatWidgetBase Function FetchStatValue +struct Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics +{ + struct LyraPerfStatWidgetBase_eventFetchStatValue_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Polls for the value of this stat (unscaled)\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Polls for the value of this stat (unscaled)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerfStatWidgetBase_eventFetchStatValue_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatWidgetBase, nullptr, "FetchStatValue", nullptr, nullptr, Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::LyraPerfStatWidgetBase_eventFetchStatValue_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::LyraPerfStatWidgetBase_eventFetchStatValue_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatWidgetBase::execFetchStatValue) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->FetchStatValue(); + P_NATIVE_END; +} +// End Class ULyraPerfStatWidgetBase Function FetchStatValue + +// Begin Class ULyraPerfStatWidgetBase Function GetStatToDisplay +struct Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics +{ + struct LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms + { + ELyraDisplayablePerformanceStat ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stat this widget is supposed to display\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stat this widget is supposed to display" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatWidgetBase, nullptr, "GetStatToDisplay", nullptr, nullptr, Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatWidgetBase::execGetStatToDisplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraDisplayablePerformanceStat*)Z_Param__Result=P_THIS->GetStatToDisplay(); + P_NATIVE_END; +} +// End Class ULyraPerfStatWidgetBase Function GetStatToDisplay + +// Begin Class ULyraPerfStatWidgetBase +void ULyraPerfStatWidgetBase::StaticRegisterNativesULyraPerfStatWidgetBase() +{ + UClass* Class = ULyraPerfStatWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FetchStatValue", &ULyraPerfStatWidgetBase::execFetchStatValue }, + { "GetStatToDisplay", &ULyraPerfStatWidgetBase::execGetStatToDisplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerfStatWidgetBase); +UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase_NoRegister() +{ + return ULyraPerfStatWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPerfStatWidgetBase\n *\n * Base class for a widget that displays a single stat, e.g., FPS, ping, etc...\n */" }, +#endif + { "IncludePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPerfStatWidgetBase\n\nBase class for a widget that displays a single stat, e.g., FPS, ping, etc..." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedStatSubsystem_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cached subsystem pointer\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cached subsystem pointer" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatToDisplay_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The stat to display\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The stat to display" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CachedStatSubsystem; + static const UECodeGen_Private::FBytePropertyParams NewProp_StatToDisplay_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_StatToDisplay; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue, "FetchStatValue" }, // 304981349 + { &Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay, "GetStatToDisplay" }, // 3136888021 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_CachedStatSubsystem = { "CachedStatSubsystem", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatWidgetBase, CachedStatSubsystem), Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedStatSubsystem_MetaData), NewProp_CachedStatSubsystem_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay = { "StatToDisplay", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatWidgetBase, StatToDisplay), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatToDisplay_MetaData), NewProp_StatToDisplay_MetaData) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_CachedStatSubsystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::ClassParams = { + &ULyraPerfStatWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerfStatWidgetBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerfStatWidgetBase); +ULyraPerfStatWidgetBase::~ULyraPerfStatWidgetBase() {} +// End Class ULyraPerfStatWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerfStatWidgetBase, ULyraPerfStatWidgetBase::StaticClass, TEXT("ULyraPerfStatWidgetBase"), &Z_Registration_Info_UClass_ULyraPerfStatWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerfStatWidgetBase), 1979326582U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_1468331206(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h new file mode 100644 index 00000000..333d7d6f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/PerformanceStats/LyraPerfStatWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ELyraDisplayablePerformanceStat : uint8; +#ifdef LYRAGAME_LyraPerfStatWidgetBase_generated_h +#error "LyraPerfStatWidgetBase.generated.h already included, missing '#pragma once' in LyraPerfStatWidgetBase.h" +#endif +#define LYRAGAME_LyraPerfStatWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFetchStatValue); \ + DECLARE_FUNCTION(execGetStatToDisplay); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerfStatWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerfStatWidgetBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerfStatWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerfStatWidgetBase(ULyraPerfStatWidgetBase&&); \ + ULyraPerfStatWidgetBase(const ULyraPerfStatWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerfStatWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerfStatWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPerfStatWidgetBase) \ + NO_API virtual ~ULyraPerfStatWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_ENHANCED_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp new file mode 100644 index 00000000..2e41618e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp @@ -0,0 +1,585 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceSettings.h" +#include "Runtime/DeveloperSettings/Public/Engine/PlatformSettings.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UPlatformSettings(); +DEVELOPERSETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FPerPlatformSettings(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagQuery(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraFramePacingMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPerformanceStatGroup(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraQualityDeviceProfileVariant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant; +class UScriptStruct* FLyraQualityDeviceProfileVariant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQualityDeviceProfileVariant")); + } + return Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQualityDeviceProfileVariant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Describes one platform-specific device profile variant that the user can choose from in the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes one platform-specific device profile variant that the user can choose from in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The display name for this device profile variant (visible in the options screen)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The display name for this device profile variant (visible in the options screen)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeviceProfileSuffix_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The suffix to append to the base device profile name for the current platform\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The suffix to append to the base device profile name for the current platform" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MinRefreshRate_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The minimum required refresh rate to enable this mode\n// (e.g., if this is set to 120 Hz and the device is connected\n// to a 60 Hz display, it won't be available)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The minimum required refresh rate to enable this mode\n(e.g., if this is set to 120 Hz and the device is connected\nto a 60 Hz display, it won't be available)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceProfileSuffix; + static const UECodeGen_Private::FIntPropertyParams NewProp_MinRefreshRate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DeviceProfileSuffix = { "DeviceProfileSuffix", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, DeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeviceProfileSuffix_MetaData), NewProp_DeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_MinRefreshRate = { "MinRefreshRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, MinRefreshRate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MinRefreshRate_MetaData), NewProp_MinRefreshRate_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_MinRefreshRate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQualityDeviceProfileVariant", + Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers), + sizeof(FLyraQualityDeviceProfileVariant), + alignof(FLyraQualityDeviceProfileVariant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton; +} +// End ScriptStruct FLyraQualityDeviceProfileVariant + +// Begin ScriptStruct FLyraPerformanceStatGroup +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup; +class UScriptStruct* FLyraPerformanceStatGroup::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPerformanceStatGroup")); + } + return Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPerformanceStatGroup::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Describes a set of performance stats that the user can enable in settings,\n// predicated on passing a visibility query on platform traits\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes a set of performance stats that the user can enable in settings,\npredicated on passing a visibility query on platform traits" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisibilityQuery_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "LyraPerformanceStatGroup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A query on platform traits to determine whether or not it will be possible\n// to show a set of stats\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A query on platform traits to determine whether or not it will be possible\nto show a set of stats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowedStats_MetaData[] = { + { "Category", "LyraPerformanceStatGroup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The set of stats to allow if the query passes\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The set of stats to allow if the query passes" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_VisibilityQuery; + static const UECodeGen_Private::FBytePropertyParams NewProp_AllowedStats_ElementProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_AllowedStats_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_AllowedStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_VisibilityQuery = { "VisibilityQuery", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPerformanceStatGroup, VisibilityQuery), Z_Construct_UScriptStruct_FGameplayTagQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisibilityQuery_MetaData), NewProp_VisibilityQuery_MetaData) }; // 572225232 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp = { "AllowedStats", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FSetPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats = { "AllowedStats", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPerformanceStatGroup, AllowedStats), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowedStats_MetaData), NewProp_AllowedStats_MetaData) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_VisibilityQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPerformanceStatGroup", + Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers), + sizeof(FLyraPerformanceStatGroup), + alignof(FLyraPerformanceStatGroup), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPerformanceStatGroup() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton; +} +// End ScriptStruct FLyraPerformanceStatGroup + +// Begin Enum ELyraFramePacingMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraFramePacingMode; +static UEnum* ELyraFramePacingMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraFramePacingMode")); + } + return Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraFramePacingMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// How hare frame pacing and overall graphics settings controlled/exposed for the platform?\n" }, +#endif + { "ConsoleStyle.Comment", "// Limits handled by choosing present intervals driven by device profiles\n" }, + { "ConsoleStyle.Name", "ELyraFramePacingMode::ConsoleStyle" }, + { "ConsoleStyle.ToolTip", "Limits handled by choosing present intervals driven by device profiles" }, + { "DesktopStyle.Comment", "// Manual frame rate limits, user is allowed to choose whether or not to lock to vsync\n" }, + { "DesktopStyle.Name", "ELyraFramePacingMode::DesktopStyle" }, + { "DesktopStyle.ToolTip", "Manual frame rate limits, user is allowed to choose whether or not to lock to vsync" }, + { "MobileStyle.Comment", "// Limits handled by a user-facing choice of frame rate from among ones allowed by device profiles for the specific device\n" }, + { "MobileStyle.Name", "ELyraFramePacingMode::MobileStyle" }, + { "MobileStyle.ToolTip", "Limits handled by a user-facing choice of frame rate from among ones allowed by device profiles for the specific device" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How hare frame pacing and overall graphics settings controlled/exposed for the platform?" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraFramePacingMode::DesktopStyle", (int64)ELyraFramePacingMode::DesktopStyle }, + { "ELyraFramePacingMode::ConsoleStyle", (int64)ELyraFramePacingMode::ConsoleStyle }, + { "ELyraFramePacingMode::MobileStyle", (int64)ELyraFramePacingMode::MobileStyle }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraFramePacingMode", + "ELyraFramePacingMode", + Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraFramePacingMode() +{ + if (!Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton; +} +// End Enum ELyraFramePacingMode + +// Begin Class ULyraPlatformSpecificRenderingSettings +void ULyraPlatformSpecificRenderingSettings::StaticRegisterNativesULyraPlatformSpecificRenderingSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlatformSpecificRenderingSettings); +UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_NoRegister() +{ + return ULyraPlatformSpecificRenderingSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Performance/LyraPerformanceSettings.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultDeviceProfileSuffix_MetaData[] = { + { "Category", "DeviceProfiles" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The default variant suffix to append, should typically be a member of\n// UserFacingDeviceProfileOptions unless there is only one for the current platform\n//\n// Note that this will usually be set from platform-specific ini files, not via the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default variant suffix to append, should typically be a member of\nUserFacingDeviceProfileOptions unless there is only one for the current platform\n\nNote that this will usually be set from platform-specific ini files, not via the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingDeviceProfileOptions_MetaData[] = { + { "Category", "DeviceProfiles" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of device profile variations to allow users to choose from in settings\n//\n// These should be sorted from slowest to fastest by target frame rate:\n// If the current display doesn't support a user chosen refresh rate, we'll try\n// previous entries until we find one that works\n//\n// Note that this will usually be set from platform-specific ini files, not via the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of device profile variations to allow users to choose from in settings\n\nThese should be sorted from slowest to fastest by target frame rate:\n If the current display doesn't support a user chosen refresh rate, we'll try\n previous entries until we find one that works\n\nNote that this will usually be set from platform-specific ini files, not via the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSupportsGranularVideoQualitySettings_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Does the platform support granular video quality settings?\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the platform support granular video quality settings?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Does the platform support running the automatic quality benchmark (typically this should only be true if bSupportsGranularVideoQualitySettings is also true)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the platform support running the automatic quality benchmark (typically this should only be true if bSupportsGranularVideoQualitySettings is also true)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FramePacingMode_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How is frame pacing controlled\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How is frame pacing controlled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MobileFrameRateLimits_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Potential frame rates to display for mobile\n// Note: This is further limited by Lyra.DeviceProfile.Mobile.MaxFrameRate from the\n// platform-specific device profile and what the platform frame pacer reports as supported\n" }, +#endif + { "EditCondition", "FramePacingMode==ELyraFramePacingMode::MobileStyle" }, + { "ForceUnits", "Hz" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Potential frame rates to display for mobile\nNote: This is further limited by Lyra.DeviceProfile.Mobile.MaxFrameRate from the\nplatform-specific device profile and what the platform frame pacer reports as supported" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DefaultDeviceProfileSuffix; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserFacingDeviceProfileOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_UserFacingDeviceProfileOptions; + static void NewProp_bSupportsGranularVideoQualitySettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSupportsGranularVideoQualitySettings; + static void NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSupportsAutomaticVideoQualityBenchmark; + static const UECodeGen_Private::FBytePropertyParams NewProp_FramePacingMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_FramePacingMode; + static const UECodeGen_Private::FIntPropertyParams NewProp_MobileFrameRateLimits_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MobileFrameRateLimits; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_DefaultDeviceProfileSuffix = { "DefaultDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, DefaultDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultDeviceProfileSuffix_MetaData), NewProp_DefaultDeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions_Inner = { "UserFacingDeviceProfileOptions", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant, METADATA_PARAMS(0, nullptr) }; // 3049904619 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions = { "UserFacingDeviceProfileOptions", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, UserFacingDeviceProfileOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingDeviceProfileOptions_MetaData), NewProp_UserFacingDeviceProfileOptions_MetaData) }; // 3049904619 +void Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings_SetBit(void* Obj) +{ + ((ULyraPlatformSpecificRenderingSettings*)Obj)->bSupportsGranularVideoQualitySettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings = { "bSupportsGranularVideoQualitySettings", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformSpecificRenderingSettings), &Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSupportsGranularVideoQualitySettings_MetaData), NewProp_bSupportsGranularVideoQualitySettings_MetaData) }; +void Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit(void* Obj) +{ + ((ULyraPlatformSpecificRenderingSettings*)Obj)->bSupportsAutomaticVideoQualityBenchmark = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark = { "bSupportsAutomaticVideoQualityBenchmark", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformSpecificRenderingSettings), &Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData), NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode = { "FramePacingMode", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, FramePacingMode), Z_Construct_UEnum_LyraGame_ELyraFramePacingMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FramePacingMode_MetaData), NewProp_FramePacingMode_MetaData) }; // 4252330403 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits_Inner = { "MobileFrameRateLimits", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits = { "MobileFrameRateLimits", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, MobileFrameRateLimits), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MobileFrameRateLimits_MetaData), NewProp_MobileFrameRateLimits_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_DefaultDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPlatformSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::ClassParams = { + &ULyraPlatformSpecificRenderingSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers), + 0, + 0x000004A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton, Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlatformSpecificRenderingSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlatformSpecificRenderingSettings); +ULyraPlatformSpecificRenderingSettings::~ULyraPlatformSpecificRenderingSettings() {} +// End Class ULyraPlatformSpecificRenderingSettings + +// Begin Class ULyraPerformanceSettings +void ULyraPerformanceSettings::StaticRegisterNativesULyraPerformanceSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerformanceSettings); +UClass* Z_Construct_UClass_ULyraPerformanceSettings_NoRegister() +{ + return ULyraPerformanceSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerformanceSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Project-specific performance profile settings.\n */" }, +#endif + { "DisplayName", "Lyra Performance Settings" }, + { "IncludePath", "Performance/LyraPerformanceSettings.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Project-specific performance profile settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerPlatformSettings_MetaData[] = { + { "Category", "PlatformSpecific" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// This is a special helper to expose the per-platform settings so they can be edited in the project settings\n// It never needs to be directly accessed\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a special helper to expose the per-platform settings so they can be edited in the project settings\nIt never needs to be directly accessed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesktopFrameRateLimits_MetaData[] = { + { "Category", "Performance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of frame rates to allow users to choose from in the various\n// \"frame rate limit\" video settings on desktop platforms\n" }, +#endif + { "ForceUnits", "Hz" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of frame rates to allow users to choose from in the various\n\"frame rate limit\" video settings on desktop platforms" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingPerformanceStats_MetaData[] = { + { "Category", "Stats" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of performance stats that can be enabled in Options by the user\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of performance stats that can be enabled in Options by the user" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PerPlatformSettings; + static const UECodeGen_Private::FIntPropertyParams NewProp_DesktopFrameRateLimits_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DesktopFrameRateLimits; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserFacingPerformanceStats_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_UserFacingPerformanceStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_PerPlatformSettings = { "PerPlatformSettings", nullptr, (EPropertyFlags)0x0040008000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, PerPlatformSettings), Z_Construct_UScriptStruct_FPerPlatformSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerPlatformSettings_MetaData), NewProp_PerPlatformSettings_MetaData) }; // 1467854229 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits_Inner = { "DesktopFrameRateLimits", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits = { "DesktopFrameRateLimits", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, DesktopFrameRateLimits), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesktopFrameRateLimits_MetaData), NewProp_DesktopFrameRateLimits_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats_Inner = { "UserFacingPerformanceStats", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup, METADATA_PARAMS(0, nullptr) }; // 4124904340 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats = { "UserFacingPerformanceStats", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, UserFacingPerformanceStats), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingPerformanceStats_MetaData), NewProp_UserFacingPerformanceStats_MetaData) }; // 4124904340 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_PerPlatformSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerformanceSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::ClassParams = { + &ULyraPerformanceSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers), + 0, + 0x008000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerformanceSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerformanceSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton, Z_Construct_UClass_ULyraPerformanceSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerformanceSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerformanceSettings); +ULyraPerformanceSettings::~ULyraPerformanceSettings() {} +// End Class ULyraPerformanceSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraFramePacingMode_StaticEnum, TEXT("ELyraFramePacingMode"), &Z_Registration_Info_UEnum_ELyraFramePacingMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4252330403U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraQualityDeviceProfileVariant::StaticStruct, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewStructOps, TEXT("LyraQualityDeviceProfileVariant"), &Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQualityDeviceProfileVariant), 3049904619U) }, + { FLyraPerformanceStatGroup::StaticStruct, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewStructOps, TEXT("LyraPerformanceStatGroup"), &Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPerformanceStatGroup), 4124904340U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings, ULyraPlatformSpecificRenderingSettings::StaticClass, TEXT("ULyraPlatformSpecificRenderingSettings"), &Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlatformSpecificRenderingSettings), 1550424330U) }, + { Z_Construct_UClass_ULyraPerformanceSettings, ULyraPerformanceSettings::StaticClass, TEXT("ULyraPerformanceSettings"), &Z_Registration_Info_UClass_ULyraPerformanceSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerformanceSettings), 4020946163U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_2357513266(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h new file mode 100644 index 00000000..3507f6f1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h @@ -0,0 +1,114 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerformanceSettings_generated_h +#error "LyraPerformanceSettings.generated.h already included, missing '#pragma once' in LyraPerformanceSettings.h" +#endif +#define LYRAGAME_LyraPerformanceSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_41_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlatformSpecificRenderingSettings(); \ + friend struct Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlatformSpecificRenderingSettings, UPlatformSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlatformSpecificRenderingSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlatformSpecificRenderingSettings(ULyraPlatformSpecificRenderingSettings&&); \ + ULyraPlatformSpecificRenderingSettings(const ULyraPlatformSpecificRenderingSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlatformSpecificRenderingSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlatformSpecificRenderingSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPlatformSpecificRenderingSettings) \ + NO_API virtual ~ULyraPlatformSpecificRenderingSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_67_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerformanceSettings(); \ + friend struct Z_Construct_UClass_ULyraPerformanceSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerformanceSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerformanceSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerformanceSettings(ULyraPerformanceSettings&&); \ + ULyraPerformanceSettings(const ULyraPerformanceSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerformanceSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerformanceSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPerformanceSettings) \ + NO_API virtual ~ULyraPerformanceSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_120_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h + + +#define FOREACH_ENUM_ELYRAFRAMEPACINGMODE(op) \ + op(ELyraFramePacingMode::DesktopStyle) \ + op(ELyraFramePacingMode::ConsoleStyle) \ + op(ELyraFramePacingMode::MobileStyle) + +enum class ELyraFramePacingMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp new file mode 100644 index 00000000..30ae4029 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceStatSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceStatSubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerformanceStatSubsystem Function GetCachedStat +struct Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics +{ + struct LyraPerformanceStatSubsystem_eventGetCachedStat_Parms + { + ELyraDisplayablePerformanceStat Stat; + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Performance/LyraPerformanceStatSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Stat_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Stat; + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat = { "Stat", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerformanceStatSubsystem_eventGetCachedStat_Parms, Stat), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerformanceStatSubsystem_eventGetCachedStat_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerformanceStatSubsystem, nullptr, "GetCachedStat", nullptr, nullptr, Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::LyraPerformanceStatSubsystem_eventGetCachedStat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::LyraPerformanceStatSubsystem_eventGetCachedStat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerformanceStatSubsystem::execGetCachedStat) +{ + P_GET_ENUM(ELyraDisplayablePerformanceStat,Z_Param_Stat); + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetCachedStat(ELyraDisplayablePerformanceStat(Z_Param_Stat)); + P_NATIVE_END; +} +// End Class ULyraPerformanceStatSubsystem Function GetCachedStat + +// Begin Class ULyraPerformanceStatSubsystem +void ULyraPerformanceStatSubsystem::StaticRegisterNativesULyraPerformanceStatSubsystem() +{ + UClass* Class = ULyraPerformanceStatSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetCachedStat", &ULyraPerformanceStatSubsystem::execGetCachedStat }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerformanceStatSubsystem); +UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister() +{ + return ULyraPerformanceStatSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Subsystem to allow access to performance stats for display purposes\n" }, +#endif + { "IncludePath", "Performance/LyraPerformanceStatSubsystem.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem to allow access to performance stats for display purposes" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat, "GetCachedStat" }, // 2755960125 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::ClassParams = { + &ULyraPerformanceStatSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton, Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerformanceStatSubsystem::StaticClass(); +} +ULyraPerformanceStatSubsystem::ULyraPerformanceStatSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerformanceStatSubsystem); +ULyraPerformanceStatSubsystem::~ULyraPerformanceStatSubsystem() {} +// End Class ULyraPerformanceStatSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerformanceStatSubsystem, ULyraPerformanceStatSubsystem::StaticClass, TEXT("ULyraPerformanceStatSubsystem"), &Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerformanceStatSubsystem), 38366342U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_67258682(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h new file mode 100644 index 00000000..4a562b78 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceStatSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ELyraDisplayablePerformanceStat : uint8; +#ifdef LYRAGAME_LyraPerformanceStatSubsystem_generated_h +#error "LyraPerformanceStatSubsystem.generated.h already included, missing '#pragma once' in LyraPerformanceStatSubsystem.h" +#endif +#define LYRAGAME_LyraPerformanceStatSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetCachedStat); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerformanceStatSubsystem(); \ + friend struct Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerformanceStatSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerformanceStatSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPerformanceStatSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerformanceStatSubsystem(ULyraPerformanceStatSubsystem&&); \ + ULyraPerformanceStatSubsystem(const ULyraPerformanceStatSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerformanceStatSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerformanceStatSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPerformanceStatSubsystem) \ + NO_API virtual ~ULyraPerformanceStatSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_53_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp new file mode 100644 index 00000000..1f61f7e0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp @@ -0,0 +1,220 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceStatTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceStatTypes() {} + +// Begin Cross Module References +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraStatDisplayMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraStatDisplayMode; +static UEnum* ELyraStatDisplayMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraStatDisplayMode")); + } + return Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraStatDisplayMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Way to display the stat\n" }, +#endif + { "GraphOnly.Comment", "// Show this stat in graph form\n" }, + { "GraphOnly.Name", "ELyraStatDisplayMode::GraphOnly" }, + { "GraphOnly.ToolTip", "Show this stat in graph form" }, + { "Hidden.Comment", "// Don't show this stat\n" }, + { "Hidden.Name", "ELyraStatDisplayMode::Hidden" }, + { "Hidden.ToolTip", "Don't show this stat" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatTypes.h" }, + { "TextAndGraph.Comment", "// Show this stat as both text and graph\n" }, + { "TextAndGraph.Name", "ELyraStatDisplayMode::TextAndGraph" }, + { "TextAndGraph.ToolTip", "Show this stat as both text and graph" }, + { "TextOnly.Comment", "// Show this stat in text form\n" }, + { "TextOnly.Name", "ELyraStatDisplayMode::TextOnly" }, + { "TextOnly.ToolTip", "Show this stat in text form" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Way to display the stat" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraStatDisplayMode::Hidden", (int64)ELyraStatDisplayMode::Hidden }, + { "ELyraStatDisplayMode::TextOnly", (int64)ELyraStatDisplayMode::TextOnly }, + { "ELyraStatDisplayMode::GraphOnly", (int64)ELyraStatDisplayMode::GraphOnly }, + { "ELyraStatDisplayMode::TextAndGraph", (int64)ELyraStatDisplayMode::TextAndGraph }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraStatDisplayMode", + "ELyraStatDisplayMode", + Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode() +{ + if (!Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton; +} +// End Enum ELyraStatDisplayMode + +// Begin Enum ELyraDisplayablePerformanceStat +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat; +static UEnum* ELyraDisplayablePerformanceStat_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraDisplayablePerformanceStat")); + } + return Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraDisplayablePerformanceStat_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ClientFPS.Comment", "// stat fps (in Hz)\n" }, + { "ClientFPS.Name", "ELyraDisplayablePerformanceStat::ClientFPS" }, + { "ClientFPS.ToolTip", "stat fps (in Hz)" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Different kinds of stats that can be displayed on-screen\n" }, +#endif + { "Count.Comment", "// New stats should go above here\n" }, + { "Count.Hidden", "" }, + { "Count.Name", "ELyraDisplayablePerformanceStat::Count" }, + { "Count.ToolTip", "New stats should go above here" }, + { "FrameTime.Comment", "// Stat unit overall (in seconds)\n" }, + { "FrameTime.Name", "ELyraDisplayablePerformanceStat::FrameTime" }, + { "FrameTime.ToolTip", "Stat unit overall (in seconds)" }, + { "FrameTime_GameThread.Comment", "// Stat unit (game thread, in seconds)\n" }, + { "FrameTime_GameThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_GameThread" }, + { "FrameTime_GameThread.ToolTip", "Stat unit (game thread, in seconds)" }, + { "FrameTime_GPU.Comment", "// Stat unit (inferred GPU time, in seconds)\n" }, + { "FrameTime_GPU.Name", "ELyraDisplayablePerformanceStat::FrameTime_GPU" }, + { "FrameTime_GPU.ToolTip", "Stat unit (inferred GPU time, in seconds)" }, + { "FrameTime_RenderThread.Comment", "// Stat unit (render thread, in seconds)\n" }, + { "FrameTime_RenderThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_RenderThread" }, + { "FrameTime_RenderThread.ToolTip", "Stat unit (render thread, in seconds)" }, + { "FrameTime_RHIThread.Comment", "// Stat unit (RHI thread, in seconds)\n" }, + { "FrameTime_RHIThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_RHIThread" }, + { "FrameTime_RHIThread.ToolTip", "Stat unit (RHI thread, in seconds)" }, + { "IdleTime.Comment", "// idle time spent waiting for vsync or frame rate limit (in seconds)\n" }, + { "IdleTime.Name", "ELyraDisplayablePerformanceStat::IdleTime" }, + { "IdleTime.ToolTip", "idle time spent waiting for vsync or frame rate limit (in seconds)" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatTypes.h" }, + { "PacketLoss_Incoming.Comment", "// The incoming packet loss percentage (%)\n" }, + { "PacketLoss_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketLoss_Incoming" }, + { "PacketLoss_Incoming.ToolTip", "The incoming packet loss percentage (%)" }, + { "PacketLoss_Outgoing.Comment", "// The outgoing packet loss percentage (%)\n" }, + { "PacketLoss_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketLoss_Outgoing" }, + { "PacketLoss_Outgoing.ToolTip", "The outgoing packet loss percentage (%)" }, + { "PacketRate_Incoming.Comment", "// The number of packets received in the last second\n" }, + { "PacketRate_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketRate_Incoming" }, + { "PacketRate_Incoming.ToolTip", "The number of packets received in the last second" }, + { "PacketRate_Outgoing.Comment", "// The number of packets sent in the past second\n" }, + { "PacketRate_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketRate_Outgoing" }, + { "PacketRate_Outgoing.ToolTip", "The number of packets sent in the past second" }, + { "PacketSize_Incoming.Comment", "// The avg. size (in bytes) of packets received\n" }, + { "PacketSize_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketSize_Incoming" }, + { "PacketSize_Incoming.ToolTip", "The avg. size (in bytes) of packets received" }, + { "PacketSize_Outgoing.Comment", "// The avg. size (in bytes) of packets sent\n" }, + { "PacketSize_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketSize_Outgoing" }, + { "PacketSize_Outgoing.ToolTip", "The avg. size (in bytes) of packets sent" }, + { "Ping.Comment", "// Network ping (in ms)\n" }, + { "Ping.Name", "ELyraDisplayablePerformanceStat::Ping" }, + { "Ping.ToolTip", "Network ping (in ms)" }, + { "ServerFPS.Comment", "// server tick rate (in Hz)\n" }, + { "ServerFPS.Name", "ELyraDisplayablePerformanceStat::ServerFPS" }, + { "ServerFPS.ToolTip", "server tick rate (in Hz)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Different kinds of stats that can be displayed on-screen" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraDisplayablePerformanceStat::ClientFPS", (int64)ELyraDisplayablePerformanceStat::ClientFPS }, + { "ELyraDisplayablePerformanceStat::ServerFPS", (int64)ELyraDisplayablePerformanceStat::ServerFPS }, + { "ELyraDisplayablePerformanceStat::IdleTime", (int64)ELyraDisplayablePerformanceStat::IdleTime }, + { "ELyraDisplayablePerformanceStat::FrameTime", (int64)ELyraDisplayablePerformanceStat::FrameTime }, + { "ELyraDisplayablePerformanceStat::FrameTime_GameThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_GameThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_RenderThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_RenderThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_RHIThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_RHIThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_GPU", (int64)ELyraDisplayablePerformanceStat::FrameTime_GPU }, + { "ELyraDisplayablePerformanceStat::Ping", (int64)ELyraDisplayablePerformanceStat::Ping }, + { "ELyraDisplayablePerformanceStat::PacketLoss_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketLoss_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketLoss_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketLoss_Outgoing }, + { "ELyraDisplayablePerformanceStat::PacketRate_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketRate_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketRate_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketRate_Outgoing }, + { "ELyraDisplayablePerformanceStat::PacketSize_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketSize_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketSize_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketSize_Outgoing }, + { "ELyraDisplayablePerformanceStat::Count", (int64)ELyraDisplayablePerformanceStat::Count }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraDisplayablePerformanceStat", + "ELyraDisplayablePerformanceStat", + Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat() +{ + if (!Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton; +} +// End Enum ELyraDisplayablePerformanceStat + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraStatDisplayMode_StaticEnum, TEXT("ELyraStatDisplayMode"), &Z_Registration_Info_UEnum_ELyraStatDisplayMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3127134116U) }, + { ELyraDisplayablePerformanceStat_StaticEnum, TEXT("ELyraDisplayablePerformanceStat"), &Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3286822108U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_725886397(TEXT("/Script/LyraGame"), + nullptr, 0, + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h new file mode 100644 index 00000000..4693fee0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceStatTypes.h" +#include "Templates/IsUEnumClass.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ReflectedTypeAccessors.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerformanceStatTypes_generated_h +#error "LyraPerformanceStatTypes.generated.h already included, missing '#pragma once' in LyraPerformanceStatTypes.h" +#endif +#define LYRAGAME_LyraPerformanceStatTypes_generated_h + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h + + +#define FOREACH_ENUM_ELYRASTATDISPLAYMODE(op) \ + op(ELyraStatDisplayMode::Hidden) \ + op(ELyraStatDisplayMode::TextOnly) \ + op(ELyraStatDisplayMode::GraphOnly) \ + op(ELyraStatDisplayMode::TextAndGraph) + +enum class ELyraStatDisplayMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRADISPLAYABLEPERFORMANCESTAT(op) \ + op(ELyraDisplayablePerformanceStat::ClientFPS) \ + op(ELyraDisplayablePerformanceStat::ServerFPS) \ + op(ELyraDisplayablePerformanceStat::IdleTime) \ + op(ELyraDisplayablePerformanceStat::FrameTime) \ + op(ELyraDisplayablePerformanceStat::FrameTime_GameThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_RenderThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_RHIThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_GPU) \ + op(ELyraDisplayablePerformanceStat::Ping) \ + op(ELyraDisplayablePerformanceStat::PacketLoss_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketLoss_Outgoing) \ + op(ELyraDisplayablePerformanceStat::PacketRate_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketRate_Outgoing) \ + op(ELyraDisplayablePerformanceStat::PacketSize_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketSize_Outgoing) \ + op(ELyraDisplayablePerformanceStat::Count) + +enum class ELyraDisplayablePerformanceStat : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp new file mode 100644 index 00000000..d0e23dad --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp @@ -0,0 +1,296 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraPickupDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPickupDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPickupDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPickupDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPickupDefinition +void ULyraPickupDefinition::StaticRegisterNativesULyraPickupDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPickupDefinition); +UClass* Z_Construct_UClass_ULyraPickupDefinition_NoRegister() +{ + return ULyraPickupDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraPickupDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "Lyra Pickup Data" }, + { "IncludePath", "Equipment/LyraPickupDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, + { "ShortTooltip", "Data asset used to configure a pickup." }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryItemDefinition_MetaData[] = { + { "Category", "Lyra|Pickup|Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Defines the pickup's actors to spawn, abilities to grant, and tags to add\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the pickup's actors to spawn, abilities to grant, and tags to add" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayMesh_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Visual representation of the pickup\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Visual representation of the pickup" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnCoolDownSeconds_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Cool down time between pickups in seconds\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cool down time between pickups in seconds" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickedUpSound_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sound to play when picked up\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sound to play when picked up" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RespawnedSound_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sound to play when pickup is respawned\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sound to play when pickup is respawned" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickedUpEffect_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Particle FX to play when picked up\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Particle FX to play when picked up" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RespawnedEffect_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Particle FX to play when pickup is respawned\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Particle FX to play when pickup is respawned" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InventoryItemDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayMesh; + static const UECodeGen_Private::FIntPropertyParams NewProp_SpawnCoolDownSeconds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickedUpSound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RespawnedSound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickedUpEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RespawnedEffect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_InventoryItemDefinition = { "InventoryItemDefinition", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, InventoryItemDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryItemDefinition_MetaData), NewProp_InventoryItemDefinition_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_DisplayMesh = { "DisplayMesh", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, DisplayMesh), Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayMesh_MetaData), NewProp_DisplayMesh_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_SpawnCoolDownSeconds = { "SpawnCoolDownSeconds", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, SpawnCoolDownSeconds), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnCoolDownSeconds_MetaData), NewProp_SpawnCoolDownSeconds_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpSound = { "PickedUpSound", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, PickedUpSound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickedUpSound_MetaData), NewProp_PickedUpSound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedSound = { "RespawnedSound", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, RespawnedSound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RespawnedSound_MetaData), NewProp_RespawnedSound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpEffect = { "PickedUpEffect", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, PickedUpEffect), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickedUpEffect_MetaData), NewProp_PickedUpEffect_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedEffect = { "RespawnedEffect", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, RespawnedEffect), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RespawnedEffect_MetaData), NewProp_RespawnedEffect_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_InventoryItemDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_DisplayMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_SpawnCoolDownSeconds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpSound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedSound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedEffect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPickupDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPickupDefinition_Statics::ClassParams = { + &ULyraPickupDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPickupDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPickupDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton, Z_Construct_UClass_ULyraPickupDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPickupDefinition::StaticClass(); +} +ULyraPickupDefinition::ULyraPickupDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPickupDefinition); +ULyraPickupDefinition::~ULyraPickupDefinition() {} +// End Class ULyraPickupDefinition + +// Begin Class ULyraWeaponPickupDefinition +void ULyraWeaponPickupDefinition::StaticRegisterNativesULyraWeaponPickupDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponPickupDefinition); +UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister() +{ + return ULyraWeaponPickupDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisplayName", "Lyra Weapon Pickup Data" }, + { "IncludePath", "Equipment/LyraPickupDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, + { "ShortTooltip", "Data asset used to configure a weapon pickup." }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshOffset_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sets the height of the display mesh above the Weapon spawner\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the height of the display mesh above the Weapon spawner" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshScale_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sets the height of the display mesh above the Weapon spawner\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the height of the display mesh above the Weapon spawner" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_WeaponMeshOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_WeaponMeshScale; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshOffset = { "WeaponMeshOffset", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponPickupDefinition, WeaponMeshOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshOffset_MetaData), NewProp_WeaponMeshOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshScale = { "WeaponMeshScale", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponPickupDefinition, WeaponMeshScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshScale_MetaData), NewProp_WeaponMeshScale_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshScale, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraPickupDefinition, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::ClassParams = { + &ULyraWeaponPickupDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton, Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponPickupDefinition::StaticClass(); +} +ULyraWeaponPickupDefinition::ULyraWeaponPickupDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponPickupDefinition); +ULyraWeaponPickupDefinition::~ULyraWeaponPickupDefinition() {} +// End Class ULyraWeaponPickupDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPickupDefinition, ULyraPickupDefinition::StaticClass, TEXT("ULyraPickupDefinition"), &Z_Registration_Info_UClass_ULyraPickupDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPickupDefinition), 3945233359U) }, + { Z_Construct_UClass_ULyraWeaponPickupDefinition, ULyraWeaponPickupDefinition::StaticClass, TEXT("ULyraWeaponPickupDefinition"), &Z_Registration_Info_UClass_ULyraWeaponPickupDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponPickupDefinition), 3890692470U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_3611235018(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h new file mode 100644 index 00000000..da3e6d0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraPickupDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPickupDefinition_generated_h +#error "LyraPickupDefinition.generated.h already included, missing '#pragma once' in LyraPickupDefinition.h" +#endif +#define LYRAGAME_LyraPickupDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPickupDefinition(); \ + friend struct Z_Construct_UClass_ULyraPickupDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraPickupDefinition, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPickupDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPickupDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPickupDefinition(ULyraPickupDefinition&&); \ + ULyraPickupDefinition(const ULyraPickupDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPickupDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPickupDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPickupDefinition) \ + NO_API virtual ~ULyraPickupDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponPickupDefinition(); \ + friend struct Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponPickupDefinition, ULyraPickupDefinition, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponPickupDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraWeaponPickupDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponPickupDefinition(ULyraWeaponPickupDefinition&&); \ + ULyraWeaponPickupDefinition(const ULyraWeaponPickupDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponPickupDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponPickupDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponPickupDefinition) \ + NO_API virtual ~ULyraWeaponPickupDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_55_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp new file mode 100644 index 00000000..fa03e8c8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp @@ -0,0 +1,298 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraPlatformEmulationSettings.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlatformEmulationSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlatformEmulationSettings Function GetKnownDeviceProfiles +struct Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics +{ + struct LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlatformEmulationSettings, nullptr, "GetKnownDeviceProfiles", nullptr, nullptr, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPlatformEmulationSettings::execGetKnownDeviceProfiles) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetKnownDeviceProfiles(); + P_NATIVE_END; +} +// End Class ULyraPlatformEmulationSettings Function GetKnownDeviceProfiles + +// Begin Class ULyraPlatformEmulationSettings Function GetKnownPlatformIds +struct Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics +{ + struct LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlatformEmulationSettings, nullptr, "GetKnownPlatformIds", nullptr, nullptr, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPlatformEmulationSettings::execGetKnownPlatformIds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetKnownPlatformIds(); + P_NATIVE_END; +} +// End Class ULyraPlatformEmulationSettings Function GetKnownPlatformIds + +// Begin Class ULyraPlatformEmulationSettings +void ULyraPlatformEmulationSettings::StaticRegisterNativesULyraPlatformEmulationSettings() +{ + UClass* Class = ULyraPlatformEmulationSettings::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetKnownDeviceProfiles", &ULyraPlatformEmulationSettings::execGetKnownDeviceProfiles }, + { "GetKnownPlatformIds", &ULyraPlatformEmulationSettings::execGetKnownPlatformIds }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlatformEmulationSettings); +UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings_NoRegister() +{ + return ULyraPlatformEmulationSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Platform emulation settings\n */" }, +#endif + { "IncludePath", "Development/LyraPlatformEmulationSettings.h" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Platform emulation settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalPlatformTraitsToEnable_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "PlatformEmulation" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalPlatformTraitsToSuppress_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "PlatformEmulation" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PretendPlatform_MetaData[] = { + { "Category", "PlatformEmulation" }, + { "GetOptions", "GetKnownPlatformIds" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PretendBaseDeviceProfile_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base device profile to pretend we are using when emulating device-specific device profiles applied from ULyraSettingsLocal\n" }, +#endif + { "EditCondition", "bApplyDeviceProfilesInPIE" }, + { "GetOptions", "GetKnownDeviceProfiles" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base device profile to pretend we are using when emulating device-specific device profiles applied from ULyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyFrameRateSettingsInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do we apply desktop-style frame rate settings in PIE?\n// (frame rate limits are an engine-wide setting so it's not always desirable to have enabled in the editor)\n// You may also want to disable the editor preference \"Use Less CPU when in Background\" if testing background frame rate limits\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyFrameRateSettingsInPIE" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do we apply desktop-style frame rate settings in PIE?\n(frame rate limits are an engine-wide setting so it's not always desirable to have enabled in the editor)\nYou may also want to disable the editor preference \"Use Less CPU when in Background\" if testing background frame rate limits" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do we apply front-end specific performance options in PIE?\n// Most engine performance/scalability settings they drive are global, so if one PIE window\n// is in the front-end and the other is in-game one will win and the other gets stuck with those settings\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyFrontEndPerformanceOptionsInPIE" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do we apply front-end specific performance options in PIE?\nMost engine performance/scalability settings they drive are global, so if one PIE window\nis in the front-end and the other is in-game one will win and the other gets stuck with those settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyDeviceProfilesInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply experience/platform emulated device profiles in PIE?\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyDeviceProfilesInPIE" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply experience/platform emulated device profiles in PIE?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AdditionalPlatformTraitsToEnable; + static const UECodeGen_Private::FStructPropertyParams NewProp_AdditionalPlatformTraitsToSuppress; + static const UECodeGen_Private::FNamePropertyParams NewProp_PretendPlatform; + static const UECodeGen_Private::FNamePropertyParams NewProp_PretendBaseDeviceProfile; + static void NewProp_bApplyFrameRateSettingsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyFrameRateSettingsInPIE; + static void NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyFrontEndPerformanceOptionsInPIE; + static void NewProp_bApplyDeviceProfilesInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyDeviceProfilesInPIE; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles, "GetKnownDeviceProfiles" }, // 4002859016 + { &Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds, "GetKnownPlatformIds" }, // 1561589300 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToEnable = { "AdditionalPlatformTraitsToEnable", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, AdditionalPlatformTraitsToEnable), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalPlatformTraitsToEnable_MetaData), NewProp_AdditionalPlatformTraitsToEnable_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToSuppress = { "AdditionalPlatformTraitsToSuppress", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, AdditionalPlatformTraitsToSuppress), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalPlatformTraitsToSuppress_MetaData), NewProp_AdditionalPlatformTraitsToSuppress_MetaData) }; // 3352185621 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendPlatform = { "PretendPlatform", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, PretendPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PretendPlatform_MetaData), NewProp_PretendPlatform_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendBaseDeviceProfile = { "PretendBaseDeviceProfile", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, PretendBaseDeviceProfile), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PretendBaseDeviceProfile_MetaData), NewProp_PretendBaseDeviceProfile_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyFrameRateSettingsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE = { "bApplyFrameRateSettingsInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyFrameRateSettingsInPIE_MetaData), NewProp_bApplyFrameRateSettingsInPIE_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyFrontEndPerformanceOptionsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE = { "bApplyFrontEndPerformanceOptionsInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData), NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyDeviceProfilesInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE = { "bApplyDeviceProfilesInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyDeviceProfilesInPIE_MetaData), NewProp_bApplyDeviceProfilesInPIE_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToEnable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToSuppress, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendPlatform, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendBaseDeviceProfile, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::ClassParams = { + &ULyraPlatformEmulationSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton, Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlatformEmulationSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlatformEmulationSettings); +ULyraPlatformEmulationSettings::~ULyraPlatformEmulationSettings() {} +// End Class ULyraPlatformEmulationSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlatformEmulationSettings, ULyraPlatformEmulationSettings::StaticClass, TEXT("ULyraPlatformEmulationSettings"), &Z_Registration_Info_UClass_ULyraPlatformEmulationSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlatformEmulationSettings), 1106005283U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_1497237824(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h new file mode 100644 index 00000000..116c282f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraPlatformEmulationSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlatformEmulationSettings_generated_h +#error "LyraPlatformEmulationSettings.generated.h already included, missing '#pragma once' in LyraPlatformEmulationSettings.h" +#endif +#define LYRAGAME_LyraPlatformEmulationSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetKnownDeviceProfiles); \ + DECLARE_FUNCTION(execGetKnownPlatformIds); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlatformEmulationSettings(); \ + friend struct Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlatformEmulationSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraPlatformEmulationSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlatformEmulationSettings(ULyraPlatformEmulationSettings&&); \ + ULyraPlatformEmulationSettings(const ULyraPlatformEmulationSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraPlatformEmulationSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlatformEmulationSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPlatformEmulationSettings) \ + LYRAGAME_API virtual ~ULyraPlatformEmulationSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp new file mode 100644 index 00000000..58a61478 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp @@ -0,0 +1,240 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerBotController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerBotController() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_UAIPerceptionComponent_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerBotController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerBotController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerBotController Function OnPlayerStateChangedTeam +struct Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics +{ + struct LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerBotController, nullptr, "OnPlayerStateChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerBotController::execOnPlayerStateChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStateChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPlayerBotController Function OnPlayerStateChangedTeam + +// Begin Class ALyraPlayerBotController Function UpdateTeamAttitude +struct Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics +{ + struct LyraPlayerBotController_eventUpdateTeamAttitude_Parms + { + UAIPerceptionComponent* AIPerception; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra AI Player Controller" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Update Team Attitude for the AI\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Update Team Attitude for the AI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AIPerception_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AIPerception; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::NewProp_AIPerception = { "AIPerception", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventUpdateTeamAttitude_Parms, AIPerception), Z_Construct_UClass_UAIPerceptionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AIPerception_MetaData), NewProp_AIPerception_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::NewProp_AIPerception, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerBotController, nullptr, "UpdateTeamAttitude", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::LyraPlayerBotController_eventUpdateTeamAttitude_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::LyraPlayerBotController_eventUpdateTeamAttitude_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerBotController::execUpdateTeamAttitude) +{ + P_GET_OBJECT(UAIPerceptionComponent,Z_Param_AIPerception); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateTeamAttitude(Z_Param_AIPerception); + P_NATIVE_END; +} +// End Class ALyraPlayerBotController Function UpdateTeamAttitude + +// Begin Class ALyraPlayerBotController +void ALyraPlayerBotController::StaticRegisterNativesALyraPlayerBotController() +{ + UClass* Class = ALyraPlayerBotController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnPlayerStateChangedTeam", &ALyraPlayerBotController::execOnPlayerStateChangedTeam }, + { "UpdateTeamAttitude", &ALyraPlayerBotController::execUpdateTeamAttitude }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerBotController); +UClass* Z_Construct_UClass_ALyraPlayerBotController_NoRegister() +{ + return ALyraPlayerBotController::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerBotController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerBotController\n *\n *\x09The controller class used by player bots in this project.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerBotController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerBotController\n\n The controller class used by player bots in this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastSeenPlayerState_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastSeenPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam, "OnPlayerStateChangedTeam" }, // 119575124 + { &Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude, "UpdateTeamAttitude" }, // 1094566476 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerBotController, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_LastSeenPlayerState = { "LastSeenPlayerState", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerBotController, LastSeenPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastSeenPlayerState_MetaData), NewProp_LastSeenPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_LastSeenPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerBotController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularAIController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerBotController_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerBotController, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerBotController_Statics::ClassParams = { + &ALyraPlayerBotController::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerBotController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerBotController() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton, Z_Construct_UClass_ALyraPlayerBotController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerBotController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerBotController); +ALyraPlayerBotController::~ALyraPlayerBotController() {} +// End Class ALyraPlayerBotController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerBotController, ALyraPlayerBotController::StaticClass, TEXT("ALyraPlayerBotController"), &Z_Registration_Info_UClass_ALyraPlayerBotController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerBotController), 3169243225U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_4249794595(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h new file mode 100644 index 00000000..6ec4554e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerBotController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAIPerceptionComponent; +class UObject; +#ifdef LYRAGAME_LyraPlayerBotController_generated_h +#error "LyraPlayerBotController.generated.h already included, missing '#pragma once' in LyraPlayerBotController.h" +#endif +#define LYRAGAME_LyraPlayerBotController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPlayerStateChangedTeam); \ + DECLARE_FUNCTION(execUpdateTeamAttitude); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerBotController(); \ + friend struct Z_Construct_UClass_ALyraPlayerBotController_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerBotController, AModularAIController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerBotController) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerBotController(ALyraPlayerBotController&&); \ + ALyraPlayerBotController(const ALyraPlayerBotController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerBotController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerBotController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerBotController) \ + NO_API virtual ~ALyraPlayerBotController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp new file mode 100644 index 00000000..6e6b4dd4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraPlayerCameraManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerCameraManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerCameraManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerCameraManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerCameraManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerCameraManager +void ALyraPlayerCameraManager::StaticRegisterNativesALyraPlayerCameraManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerCameraManager); +UClass* Z_Construct_UClass_ALyraPlayerCameraManager_NoRegister() +{ + return ALyraPlayerCameraManager::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerCameraManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerCameraManager\n *\n *\x09The base player camera manager class used by this project.\n */" }, +#endif + { "IncludePath", "Camera/LyraPlayerCameraManager.h" }, + { "ModuleRelativePath", "Camera/LyraPlayerCameraManager.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerCameraManager\n\n The base player camera manager class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UICamera_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The UI Camera Component, controls the camera when UI is doing something important that gameplay doesn't get priority over. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Camera/LyraPlayerCameraManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The UI Camera Component, controls the camera when UI is doing something important that gameplay doesn't get priority over." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UICamera; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerCameraManager_Statics::NewProp_UICamera = { "UICamera", nullptr, (EPropertyFlags)0x0144000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerCameraManager, UICamera), Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UICamera_MetaData), NewProp_UICamera_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerCameraManager_Statics::NewProp_UICamera, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerCameraManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerCameraManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerCameraManager_Statics::ClassParams = { + &ALyraPlayerCameraManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers), + 0, + 0x008802ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerCameraManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerCameraManager() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton, Z_Construct_UClass_ALyraPlayerCameraManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerCameraManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerCameraManager); +ALyraPlayerCameraManager::~ALyraPlayerCameraManager() {} +// End Class ALyraPlayerCameraManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerCameraManager, ALyraPlayerCameraManager::StaticClass, TEXT("ALyraPlayerCameraManager"), &Z_Registration_Info_UClass_ALyraPlayerCameraManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerCameraManager), 2658804671U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_3056504763(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h new file mode 100644 index 00000000..0fa5e5ca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraPlayerCameraManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerCameraManager_generated_h +#error "LyraPlayerCameraManager.generated.h already included, missing '#pragma once' in LyraPlayerCameraManager.h" +#endif +#define LYRAGAME_LyraPlayerCameraManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerCameraManager(); \ + friend struct Z_Construct_UClass_ALyraPlayerCameraManager_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerCameraManager, APlayerCameraManager, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ALyraPlayerCameraManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerCameraManager(ALyraPlayerCameraManager&&); \ + ALyraPlayerCameraManager(const ALyraPlayerCameraManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ALyraPlayerCameraManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerCameraManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerCameraManager) \ + LYRAGAME_API virtual ~ALyraPlayerCameraManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp new file mode 100644 index 00000000..b787c5cc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp @@ -0,0 +1,831 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerController.h" +#include "UObject/CoreNet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerController() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraReplayPlayerController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraReplayPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerController Function GetIsAutoRunning +struct Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics +{ + struct LyraPlayerController_eventGetIsAutoRunning_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerController_eventGetIsAutoRunning_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventGetIsAutoRunning_Parms), &Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetIsAutoRunning", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::LyraPlayerController_eventGetIsAutoRunning_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::LyraPlayerController_eventGetIsAutoRunning_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetIsAutoRunning) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsAutoRunning(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetIsAutoRunning + +// Begin Class ALyraPlayerController Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraAbilitySystemComponent + +// Begin Class ALyraPlayerController Function GetLyraHUD +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics +{ + struct LyraPlayerController_eventGetLyraHUD_Parms + { + ALyraHUD* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraHUD_Parms, ReturnValue), Z_Construct_UClass_ALyraHUD_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraHUD", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::LyraPlayerController_eventGetLyraHUD_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::LyraPlayerController_eventGetLyraHUD_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraHUD) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraHUD**)Z_Param__Result=P_THIS->GetLyraHUD(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraHUD + +// Begin Class ALyraPlayerController Function GetLyraPlayerState +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics +{ + struct LyraPlayerController_eventGetLyraPlayerState_Parms + { + ALyraPlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraPlayerState_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraPlayerState", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::LyraPlayerController_eventGetLyraPlayerState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::LyraPlayerController_eventGetLyraPlayerState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerState**)Z_Param__Result=P_THIS->GetLyraPlayerState(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraPlayerState + +// Begin Class ALyraPlayerController Function K2_OnEndAutoRun +static const FName NAME_ALyraPlayerController_K2_OnEndAutoRun = FName(TEXT("K2_OnEndAutoRun")); +void ALyraPlayerController::K2_OnEndAutoRun() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_K2_OnEndAutoRun); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnEndAutoRun" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "K2_OnEndAutoRun", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraPlayerController Function K2_OnEndAutoRun + +// Begin Class ALyraPlayerController Function K2_OnStartAutoRun +static const FName NAME_ALyraPlayerController_K2_OnStartAutoRun = FName(TEXT("K2_OnStartAutoRun")); +void ALyraPlayerController::K2_OnStartAutoRun() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_K2_OnStartAutoRun); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnStartAutoRun" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "K2_OnStartAutoRun", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraPlayerController Function K2_OnStartAutoRun + +// Begin Class ALyraPlayerController Function OnPlayerStateChangedTeam +struct Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics +{ + struct LyraPlayerController_eventOnPlayerStateChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "OnPlayerStateChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::LyraPlayerController_eventOnPlayerStateChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::LyraPlayerController_eventOnPlayerStateChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execOnPlayerStateChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStateChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function OnPlayerStateChangedTeam + +// Begin Class ALyraPlayerController Function ServerCheat +struct LyraPlayerController_eventServerCheat_Parms +{ + FString Msg; +}; +static const FName NAME_ALyraPlayerController_ServerCheat = FName(TEXT("ServerCheat")); +void ALyraPlayerController::ServerCheat(const FString& Msg) +{ + LyraPlayerController_eventServerCheat_Parms Parms; + Parms.Msg=Msg; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_ServerCheat); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Run a cheat command on the server.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run a cheat command on the server." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventServerCheat_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "ServerCheat", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers), sizeof(LyraPlayerController_eventServerCheat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x80220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerController_eventServerCheat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_ServerCheat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execServerCheat) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + if (!P_THIS->ServerCheat_Validate(Z_Param_Msg)) + { + RPC_ValidateFailed(TEXT("ServerCheat_Validate")); + return; + } + P_THIS->ServerCheat_Implementation(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function ServerCheat + +// Begin Class ALyraPlayerController Function ServerCheatAll +struct LyraPlayerController_eventServerCheatAll_Parms +{ + FString Msg; +}; +static const FName NAME_ALyraPlayerController_ServerCheatAll = FName(TEXT("ServerCheatAll")); +void ALyraPlayerController::ServerCheatAll(const FString& Msg) +{ + LyraPlayerController_eventServerCheatAll_Parms Parms; + Parms.Msg=Msg; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_ServerCheatAll); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Run a cheat command on the server for all players.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run a cheat command on the server for all players." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventServerCheatAll_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "ServerCheatAll", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers), sizeof(LyraPlayerController_eventServerCheatAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x80220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerController_eventServerCheatAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execServerCheatAll) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + if (!P_THIS->ServerCheatAll_Validate(Z_Param_Msg)) + { + RPC_ValidateFailed(TEXT("ServerCheatAll_Validate")); + return; + } + P_THIS->ServerCheatAll_Implementation(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function ServerCheatAll + +// Begin Class ALyraPlayerController Function SetIsAutoRunning +struct Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics +{ + struct LyraPlayerController_eventSetIsAutoRunning_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of ILyraTeamAgentInterface interface\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnabled_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraPlayerController_eventSetIsAutoRunning_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventSetIsAutoRunning_Parms), &Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnabled_MetaData), NewProp_bEnabled_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "SetIsAutoRunning", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::LyraPlayerController_eventSetIsAutoRunning_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::LyraPlayerController_eventSetIsAutoRunning_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execSetIsAutoRunning) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetIsAutoRunning(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function SetIsAutoRunning + +// Begin Class ALyraPlayerController Function TryToRecordClientReplay +struct Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics +{ + struct LyraPlayerController_eventTryToRecordClientReplay_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Call from game state logic to start recording an automatic client replay if ShouldRecordClientReplay returns true\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Call from game state logic to start recording an automatic client replay if ShouldRecordClientReplay returns true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerController_eventTryToRecordClientReplay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventTryToRecordClientReplay_Parms), &Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "TryToRecordClientReplay", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::LyraPlayerController_eventTryToRecordClientReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::LyraPlayerController_eventTryToRecordClientReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execTryToRecordClientReplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToRecordClientReplay(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function TryToRecordClientReplay + +// Begin Class ALyraPlayerController +void ALyraPlayerController::StaticRegisterNativesALyraPlayerController() +{ + UClass* Class = ALyraPlayerController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetIsAutoRunning", &ALyraPlayerController::execGetIsAutoRunning }, + { "GetLyraAbilitySystemComponent", &ALyraPlayerController::execGetLyraAbilitySystemComponent }, + { "GetLyraHUD", &ALyraPlayerController::execGetLyraHUD }, + { "GetLyraPlayerState", &ALyraPlayerController::execGetLyraPlayerState }, + { "OnPlayerStateChangedTeam", &ALyraPlayerController::execOnPlayerStateChangedTeam }, + { "ServerCheat", &ALyraPlayerController::execServerCheat }, + { "ServerCheatAll", &ALyraPlayerController::execServerCheatAll }, + { "SetIsAutoRunning", &ALyraPlayerController::execSetIsAutoRunning }, + { "TryToRecordClientReplay", &ALyraPlayerController::execTryToRecordClientReplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerController); +UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister() +{ + return ALyraPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerController\n *\n *\x09The base player controller class used by this project.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerController.h" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base player controller class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerController\n\n The base player controller class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastSeenPlayerState_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastSeenPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning, "GetIsAutoRunning" }, // 10190977 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 3394155914 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD, "GetLyraHUD" }, // 3482722933 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState, "GetLyraPlayerState" }, // 1768294287 + { &Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun, "K2_OnEndAutoRun" }, // 2856380040 + { &Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun, "K2_OnStartAutoRun" }, // 2009592095 + { &Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam, "OnPlayerStateChangedTeam" }, // 1100513108 + { &Z_Construct_UFunction_ALyraPlayerController_ServerCheat, "ServerCheat" }, // 3532662300 + { &Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll, "ServerCheatAll" }, // 3042442008 + { &Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning, "SetIsAutoRunning" }, // 1749401899 + { &Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay, "TryToRecordClientReplay" }, // 515405888 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerController, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_LastSeenPlayerState = { "LastSeenPlayerState", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerController, LastSeenPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastSeenPlayerState_MetaData), NewProp_LastSeenPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_LastSeenPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ACommonPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerController_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerController, ILyraCameraAssistInterface), false }, // 1786343506 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerController, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerController_Statics::ClassParams = { + &ALyraPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerController() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton, Z_Construct_UClass_ALyraPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerController); +ALyraPlayerController::~ALyraPlayerController() {} +// End Class ALyraPlayerController + +// Begin Class ALyraReplayPlayerController Function OnPlayerStatePawnSet +struct Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics +{ + struct LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms + { + APlayerState* ChangedPlayerState; + APawn* NewPlayerPawn; + APawn* OldPlayerPawn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Callback for when the followed player state changes pawn\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Callback for when the followed player state changes pawn" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ChangedPlayerState; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewPlayerPawn; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldPlayerPawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_ChangedPlayerState = { "ChangedPlayerState", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, ChangedPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_NewPlayerPawn = { "NewPlayerPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, NewPlayerPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_OldPlayerPawn = { "OldPlayerPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, OldPlayerPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_ChangedPlayerState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_NewPlayerPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_OldPlayerPawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraReplayPlayerController, nullptr, "OnPlayerStatePawnSet", nullptr, nullptr, Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraReplayPlayerController::execOnPlayerStatePawnSet) +{ + P_GET_OBJECT(APlayerState,Z_Param_ChangedPlayerState); + P_GET_OBJECT(APawn,Z_Param_NewPlayerPawn); + P_GET_OBJECT(APawn,Z_Param_OldPlayerPawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStatePawnSet(Z_Param_ChangedPlayerState,Z_Param_NewPlayerPawn,Z_Param_OldPlayerPawn); + P_NATIVE_END; +} +// End Class ALyraReplayPlayerController Function OnPlayerStatePawnSet + +// Begin Class ALyraReplayPlayerController +void ALyraReplayPlayerController::StaticRegisterNativesALyraReplayPlayerController() +{ + UClass* Class = ALyraReplayPlayerController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnPlayerStatePawnSet", &ALyraReplayPlayerController::execOnPlayerStatePawnSet }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraReplayPlayerController); +UClass* Z_Construct_UClass_ALyraReplayPlayerController_NoRegister() +{ + return ALyraReplayPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ALyraReplayPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A player controller used for replay capture and playback\n" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerController.h" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A player controller used for replay capture and playback" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FollowedPlayerState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The player state we are currently following */\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The player state we are currently following */" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_FollowedPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet, "OnPlayerStatePawnSet" }, // 2894763820 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraReplayPlayerController_Statics::NewProp_FollowedPlayerState = { "FollowedPlayerState", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraReplayPlayerController, FollowedPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FollowedPlayerState_MetaData), NewProp_FollowedPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraReplayPlayerController_Statics::NewProp_FollowedPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraReplayPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraReplayPlayerController_Statics::ClassParams = { + &ALyraReplayPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers), + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraReplayPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraReplayPlayerController() +{ + if (!Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton, Z_Construct_UClass_ALyraReplayPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraReplayPlayerController::StaticClass(); +} +ALyraReplayPlayerController::ALyraReplayPlayerController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraReplayPlayerController); +ALyraReplayPlayerController::~ALyraReplayPlayerController() {} +// End Class ALyraReplayPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerController, ALyraPlayerController::StaticClass, TEXT("ALyraPlayerController"), &Z_Registration_Info_UClass_ALyraPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerController), 937311333U) }, + { Z_Construct_UClass_ALyraReplayPlayerController, ALyraReplayPlayerController::StaticClass, TEXT("ALyraReplayPlayerController"), &Z_Registration_Info_UClass_ALyraReplayPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraReplayPlayerController), 3465251294U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_3057073065(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.generated.h new file mode 100644 index 00000000..0984f42c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerController.generated.h @@ -0,0 +1,120 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ALyraHUD; +class ALyraPlayerState; +class APawn; +class APlayerState; +class ULyraAbilitySystemComponent; +class UObject; +#ifdef LYRAGAME_LyraPlayerController_generated_h +#error "LyraPlayerController.generated.h already included, missing '#pragma once' in LyraPlayerController.h" +#endif +#define LYRAGAME_LyraPlayerController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual bool ServerCheatAll_Validate(const FString& ); \ + virtual void ServerCheatAll_Implementation(const FString& Msg); \ + virtual bool ServerCheat_Validate(const FString& ); \ + virtual void ServerCheat_Implementation(const FString& Msg); \ + DECLARE_FUNCTION(execOnPlayerStateChangedTeam); \ + DECLARE_FUNCTION(execGetIsAutoRunning); \ + DECLARE_FUNCTION(execSetIsAutoRunning); \ + DECLARE_FUNCTION(execServerCheatAll); \ + DECLARE_FUNCTION(execServerCheat); \ + DECLARE_FUNCTION(execTryToRecordClientReplay); \ + DECLARE_FUNCTION(execGetLyraHUD); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerState); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerController(); \ + friend struct Z_Construct_UClass_ALyraPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerController, ACommonPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerController) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerController(ALyraPlayerController&&); \ + ALyraPlayerController(const ALyraPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerController) \ + NO_API virtual ~ALyraPlayerController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_30_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPlayerStatePawnSet); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraReplayPlayerController(); \ + friend struct Z_Construct_UClass_ALyraReplayPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ALyraReplayPlayerController, ALyraPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraReplayPlayerController) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ALyraReplayPlayerController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraReplayPlayerController(ALyraReplayPlayerController&&); \ + ALyraReplayPlayerController(const ALyraReplayPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraReplayPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraReplayPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraReplayPlayerController) \ + NO_API virtual ~ALyraReplayPlayerController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_145_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp new file mode 100644 index 00000000..a5537c45 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraPlayerMappableKeyProfile.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerMappableKeyProfile() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedPlayerMappableKeyProfile(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlayerMappableKeyProfile +void ULyraPlayerMappableKeyProfile::StaticRegisterNativesULyraPlayerMappableKeyProfile() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerMappableKeyProfile); +UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile_NoRegister() +{ + return ULyraPlayerMappableKeyProfile::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Input/LyraPlayerMappableKeyProfile.h" }, + { "ModuleRelativePath", "Input/LyraPlayerMappableKeyProfile.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedPlayerMappableKeyProfile, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::ClassParams = { + &ULyraPlayerMappableKeyProfile::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton, Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerMappableKeyProfile::StaticClass(); +} +ULyraPlayerMappableKeyProfile::ULyraPlayerMappableKeyProfile(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerMappableKeyProfile); +ULyraPlayerMappableKeyProfile::~ULyraPlayerMappableKeyProfile() {} +// End Class ULyraPlayerMappableKeyProfile + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlayerMappableKeyProfile, ULyraPlayerMappableKeyProfile::StaticClass, TEXT("ULyraPlayerMappableKeyProfile"), &Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerMappableKeyProfile), 2587236365U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_444754908(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h new file mode 100644 index 00000000..9485f566 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraPlayerMappableKeyProfile.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerMappableKeyProfile_generated_h +#error "LyraPlayerMappableKeyProfile.generated.h already included, missing '#pragma once' in LyraPlayerMappableKeyProfile.h" +#endif +#define LYRAGAME_LyraPlayerMappableKeyProfile_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerMappableKeyProfile(); \ + friend struct Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerMappableKeyProfile, UEnhancedPlayerMappableKeyProfile, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerMappableKeyProfile) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPlayerMappableKeyProfile(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerMappableKeyProfile(ULyraPlayerMappableKeyProfile&&); \ + ULyraPlayerMappableKeyProfile(const ULyraPlayerMappableKeyProfile&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerMappableKeyProfile); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerMappableKeyProfile); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerMappableKeyProfile) \ + NO_API virtual ~ULyraPlayerMappableKeyProfile(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_9_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp new file mode 100644 index 00000000..a2b369e3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerSpawningManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerSpawningManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlayerSpawningManagerComponent Function K2_OnFinishRestartPlayer +struct LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms +{ + AController* Player; + FRotator StartRotation; +}; +static const FName NAME_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer = FName(TEXT("K2_OnFinishRestartPlayer")); +void ULyraPlayerSpawningManagerComponent::K2_OnFinishRestartPlayer(AController* Player, FRotator const& StartRotation) +{ + LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms Parms; + Parms.Player=Player; + Parms.StartRotation=StartRotation; + UFunction* Func = FindFunctionChecked(NAME_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnFinishRestartPlayer" }, + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartRotation_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Player; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartRotation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_Player = { "Player", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms, Player), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_StartRotation = { "StartRotation", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms, StartRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartRotation_MetaData), NewProp_StartRotation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_Player, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_StartRotation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, nullptr, "K2_OnFinishRestartPlayer", nullptr, nullptr, Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers), sizeof(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08C80800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraPlayerSpawningManagerComponent Function K2_OnFinishRestartPlayer + +// Begin Class ULyraPlayerSpawningManagerComponent +void ULyraPlayerSpawningManagerComponent::StaticRegisterNativesULyraPlayerSpawningManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerSpawningManagerComponent); +UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_NoRegister() +{ + return ULyraPlayerSpawningManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * @class ULyraPlayerSpawningManagerComponent\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@class ULyraPlayerSpawningManagerComponent" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedPlayerStarts_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ~ALyraGameMode */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "~ALyraGameMode" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_CachedPlayerStarts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CachedPlayerStarts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer, "K2_OnFinishRestartPlayer" }, // 488054649 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts_Inner = { "CachedPlayerStarts", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ALyraPlayerStart_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts = { "CachedPlayerStarts", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlayerSpawningManagerComponent, CachedPlayerStarts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedPlayerStarts_MetaData), NewProp_CachedPlayerStarts_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::ClassParams = { + &ULyraPlayerSpawningManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerSpawningManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerSpawningManagerComponent); +ULyraPlayerSpawningManagerComponent::~ULyraPlayerSpawningManagerComponent() {} +// End Class ULyraPlayerSpawningManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, ULyraPlayerSpawningManagerComponent::StaticClass, TEXT("ULyraPlayerSpawningManagerComponent"), &Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerSpawningManagerComponent), 83959197U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_2675890202(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h new file mode 100644 index 00000000..b0ccac4d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerSpawningManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +#ifdef LYRAGAME_LyraPlayerSpawningManagerComponent_generated_h +#error "LyraPlayerSpawningManagerComponent.generated.h already included, missing '#pragma once' in LyraPlayerSpawningManagerComponent.h" +#endif +#define LYRAGAME_LyraPlayerSpawningManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerSpawningManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerSpawningManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerSpawningManagerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerSpawningManagerComponent(ULyraPlayerSpawningManagerComponent&&); \ + ULyraPlayerSpawningManagerComponent(const ULyraPlayerSpawningManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerSpawningManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerSpawningManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerSpawningManagerComponent) \ + NO_API virtual ~ULyraPlayerSpawningManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp new file mode 100644 index 00000000..9bf55b51 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerStart.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerStart() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerStart(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerStart +void ALyraPlayerStart::StaticRegisterNativesALyraPlayerStart() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerStart); +UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister() +{ + return ALyraPlayerStart::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerStart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerStart\n * \n * Base player starts that can be used by a lot of modes.\n */" }, +#endif + { "HideCategories", "Collision Lighting LightColor Force" }, + { "IncludePath", "Player/LyraPlayerStart.h" }, + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerStart\n\nBase player starts that can be used by a lot of modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClaimingController_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The controller that claimed this PlayerStart */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The controller that claimed this PlayerStart" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExpirationCheckInterval_MetaData[] = { + { "Category", "Player Start Claiming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Interval in which we'll check if this player start is not colliding with anyone anymore */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Interval in which we'll check if this player start is not colliding with anyone anymore" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartPointTags_MetaData[] = { + { "Category", "LyraPlayerStart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Tags to identify this player start */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags to identify this player start" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ClaimingController; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ExpirationCheckInterval; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartPointTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ClaimingController = { "ClaimingController", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, ClaimingController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClaimingController_MetaData), NewProp_ClaimingController_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ExpirationCheckInterval = { "ExpirationCheckInterval", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, ExpirationCheckInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExpirationCheckInterval_MetaData), NewProp_ExpirationCheckInterval_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_StartPointTags = { "StartPointTags", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, StartPointTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartPointTags_MetaData), NewProp_StartPointTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ClaimingController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ExpirationCheckInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_StartPointTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerStart_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerStart, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerStart_Statics::ClassParams = { + &ALyraPlayerStart::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerStart_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerStart() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton, Z_Construct_UClass_ALyraPlayerStart_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerStart::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerStart); +ALyraPlayerStart::~ALyraPlayerStart() {} +// End Class ALyraPlayerStart + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerStart, ALyraPlayerStart::StaticClass, TEXT("ALyraPlayerStart"), &Z_Registration_Info_UClass_ALyraPlayerStart, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerStart), 3216506585U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_2900205955(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.generated.h new file mode 100644 index 00000000..4b914785 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerStart.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerStart.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerStart_generated_h +#error "LyraPlayerStart.generated.h already included, missing '#pragma once' in LyraPlayerStart.h" +#endif +#define LYRAGAME_LyraPlayerStart_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerStart(); \ + friend struct Z_Construct_UClass_ALyraPlayerStart_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerStart, APlayerStart, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerStart) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerStart(ALyraPlayerStart&&); \ + ALyraPlayerStart(const ALyraPlayerStart&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerStart); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerStart); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerStart) \ + NO_API virtual ~ALyraPlayerStart(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp new file mode 100644 index 00000000..3e479b62 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp @@ -0,0 +1,894 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerState.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerState() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraPlayerConnectionType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraPlayerConnectionType; +static UEnum* ELyraPlayerConnectionType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraPlayerConnectionType")); + } + return Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraPlayerConnectionType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines the types of client connected */" }, +#endif + { "InactivePlayer.Comment", "// A deactivated player (disconnected)\n" }, + { "InactivePlayer.Name", "ELyraPlayerConnectionType::InactivePlayer" }, + { "InactivePlayer.ToolTip", "A deactivated player (disconnected)" }, + { "LiveSpectator.Comment", "// Spectator connected to a running game\n" }, + { "LiveSpectator.Name", "ELyraPlayerConnectionType::LiveSpectator" }, + { "LiveSpectator.ToolTip", "Spectator connected to a running game" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "Player.Comment", "// An active player\n" }, + { "Player.Name", "ELyraPlayerConnectionType::Player" }, + { "Player.ToolTip", "An active player" }, + { "ReplaySpectator.Comment", "// Spectating a demo recording offline\n" }, + { "ReplaySpectator.Name", "ELyraPlayerConnectionType::ReplaySpectator" }, + { "ReplaySpectator.ToolTip", "Spectating a demo recording offline" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the types of client connected" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraPlayerConnectionType::Player", (int64)ELyraPlayerConnectionType::Player }, + { "ELyraPlayerConnectionType::LiveSpectator", (int64)ELyraPlayerConnectionType::LiveSpectator }, + { "ELyraPlayerConnectionType::ReplaySpectator", (int64)ELyraPlayerConnectionType::ReplaySpectator }, + { "ELyraPlayerConnectionType::InactivePlayer", (int64)ELyraPlayerConnectionType::InactivePlayer }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraPlayerConnectionType", + "ELyraPlayerConnectionType", + Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType() +{ + if (!Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton; +} +// End Enum ELyraPlayerConnectionType + +// Begin Class ALyraPlayerState Function AddStatTagStack +struct Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics +{ + struct LyraPlayerState_eventAddStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventAddStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventAddStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "AddStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::LyraPlayerState_eventAddStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::LyraPlayerState_eventAddStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execAddStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function AddStatTagStack + +// Begin Class ALyraPlayerState Function ClientBroadcastMessage +struct LyraPlayerState_eventClientBroadcastMessage_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraPlayerState_ClientBroadcastMessage = FName(TEXT("ClientBroadcastMessage")); +void ALyraPlayerState::ClientBroadcastMessage(const FLyraVerbMessage Message) +{ + LyraPlayerState_eventClientBroadcastMessage_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerState_ClientBroadcastMessage); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message to just this player\n// (use only for client notifications like accolades, quest toasts, etc... that can handle being occasionally lost)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message to just this player\n(use only for client notifications like accolades, quest toasts, etc... that can handle being occasionally lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventClientBroadcastMessage_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "ClientBroadcastMessage", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers), sizeof(LyraPlayerState_eventClientBroadcastMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x05020C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerState_eventClientBroadcastMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execClientBroadcastMessage) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientBroadcastMessage_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function ClientBroadcastMessage + +// Begin Class ALyraPlayerState Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetLyraAbilitySystemComponent + +// Begin Class ALyraPlayerState Function GetLyraPlayerController +struct Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics +{ + struct LyraPlayerState_eventGetLyraPlayerController_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetLyraPlayerController_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetLyraPlayerController", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::LyraPlayerState_eventGetLyraPlayerController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::LyraPlayerState_eventGetLyraPlayerController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetLyraPlayerController) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerController(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetLyraPlayerController + +// Begin Class ALyraPlayerState Function GetSquadId +struct Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics +{ + struct LyraPlayerState_eventGetSquadId_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the Squad ID of the squad the player belongs to. */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the Squad ID of the squad the player belongs to." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetSquadId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetSquadId", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::LyraPlayerState_eventGetSquadId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::LyraPlayerState_eventGetSquadId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetSquadId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetSquadId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetSquadId(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetSquadId + +// Begin Class ALyraPlayerState Function GetStatTagStackCount +struct Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics +{ + struct LyraPlayerState_eventGetStatTagStackCount_Parms + { + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetStatTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetStatTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetStatTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::LyraPlayerState_eventGetStatTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::LyraPlayerState_eventGetStatTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetStatTagStackCount) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetStatTagStackCount(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetStatTagStackCount + +// Begin Class ALyraPlayerState Function GetTeamId +struct Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics +{ + struct LyraPlayerState_eventGetTeamId_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the Team ID of the team the player belongs to. */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the Team ID of the team the player belongs to." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetTeamId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetTeamId", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::LyraPlayerState_eventGetTeamId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::LyraPlayerState_eventGetTeamId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetTeamId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetTeamId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetTeamId(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetTeamId + +// Begin Class ALyraPlayerState Function HasStatTag +struct Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics +{ + struct LyraPlayerState_eventHasStatTag_Parms + { + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventHasStatTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerState_eventHasStatTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerState_eventHasStatTag_Parms), &Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "HasStatTag", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::LyraPlayerState_eventHasStatTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::LyraPlayerState_eventHasStatTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_HasStatTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execHasStatTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasStatTag(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function HasStatTag + +// Begin Class ALyraPlayerState Function OnRep_MySquadID +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_MySquadID", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_MySquadID) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MySquadID(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_MySquadID + +// Begin Class ALyraPlayerState Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics +{ + struct LyraPlayerState_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::LyraPlayerState_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::LyraPlayerState_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_MyTeamID + +// Begin Class ALyraPlayerState Function OnRep_PawnData +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_PawnData", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_PawnData) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_PawnData(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_PawnData + +// Begin Class ALyraPlayerState Function RemoveStatTagStack +struct Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics +{ + struct LyraPlayerState_eventRemoveStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventRemoveStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventRemoveStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "RemoveStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::LyraPlayerState_eventRemoveStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::LyraPlayerState_eventRemoveStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execRemoveStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function RemoveStatTagStack + +// Begin Class ALyraPlayerState +void ALyraPlayerState::StaticRegisterNativesALyraPlayerState() +{ + UClass* Class = ALyraPlayerState::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddStatTagStack", &ALyraPlayerState::execAddStatTagStack }, + { "ClientBroadcastMessage", &ALyraPlayerState::execClientBroadcastMessage }, + { "GetLyraAbilitySystemComponent", &ALyraPlayerState::execGetLyraAbilitySystemComponent }, + { "GetLyraPlayerController", &ALyraPlayerState::execGetLyraPlayerController }, + { "GetSquadId", &ALyraPlayerState::execGetSquadId }, + { "GetStatTagStackCount", &ALyraPlayerState::execGetStatTagStackCount }, + { "GetTeamId", &ALyraPlayerState::execGetTeamId }, + { "HasStatTag", &ALyraPlayerState::execHasStatTag }, + { "OnRep_MySquadID", &ALyraPlayerState::execOnRep_MySquadID }, + { "OnRep_MyTeamID", &ALyraPlayerState::execOnRep_MyTeamID }, + { "OnRep_PawnData", &ALyraPlayerState::execOnRep_PawnData }, + { "RemoveStatTagStack", &ALyraPlayerState::execRemoveStatTagStack }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerState); +UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister() +{ + return ALyraPlayerState::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerState\n *\n *\x09""Base player state class used by this project.\n */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Player/LyraPlayerState.h" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerState\n\n Base player state class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnData_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component sub-object used by player characters.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component sub-object used by player characters." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CombatSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Combat attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Combat attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyPlayerConnectionType_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MySquadID_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatTags_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReplicatedViewRotation_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CombatSet; + static const UECodeGen_Private::FBytePropertyParams NewProp_MyPlayerConnectionType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MyPlayerConnectionType; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FIntPropertyParams NewProp_MySquadID; + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReplicatedViewRotation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack, "AddStatTagStack" }, // 2640783317 + { &Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage, "ClientBroadcastMessage" }, // 279005051 + { &Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1921172123 + { &Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController, "GetLyraPlayerController" }, // 2986415204 + { &Z_Construct_UFunction_ALyraPlayerState_GetSquadId, "GetSquadId" }, // 3939414160 + { &Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount, "GetStatTagStackCount" }, // 966768117 + { &Z_Construct_UFunction_ALyraPlayerState_GetTeamId, "GetTeamId" }, // 3923204237 + { &Z_Construct_UFunction_ALyraPlayerState_HasStatTag, "HasStatTag" }, // 1855966748 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID, "OnRep_MySquadID" }, // 2685631945 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 1268254998 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData, "OnRep_PawnData" }, // 724973030 + { &Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack, "RemoveStatTagStack" }, // 1559879148 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_PawnData = { "PawnData", "OnRep_PawnData", (EPropertyFlags)0x0124080100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, PawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnData_MetaData), NewProp_PawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_CombatSet = { "CombatSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, CombatSet), Z_Construct_UClass_ULyraCombatSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CombatSet_MetaData), NewProp_CombatSet_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType = { "MyPlayerConnectionType", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MyPlayerConnectionType), Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyPlayerConnectionType_MetaData), NewProp_MyPlayerConnectionType_MetaData) }; // 1972617869 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MySquadID = { "MySquadID", "OnRep_MySquadID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MySquadID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MySquadID_MetaData), NewProp_MySquadID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_StatTags = { "StatTags", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, StatTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatTags_MetaData), NewProp_StatTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_ReplicatedViewRotation = { "ReplicatedViewRotation", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, ReplicatedViewRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReplicatedViewRotation_MetaData), NewProp_ReplicatedViewRotation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_PawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_CombatSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MySquadID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_StatTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_ReplicatedViewRotation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPlayerState, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerState_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerState, IAbilitySystemInterface), false }, // 2272790346 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerState, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerState_Statics::ClassParams = { + &ALyraPlayerState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerState() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton, Z_Construct_UClass_ALyraPlayerState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerState::StaticClass(); +} +void ALyraPlayerState::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_PawnData(TEXT("PawnData")); + static const FName Name_MyPlayerConnectionType(TEXT("MyPlayerConnectionType")); + static const FName Name_MyTeamID(TEXT("MyTeamID")); + static const FName Name_MySquadID(TEXT("MySquadID")); + static const FName Name_StatTags(TEXT("StatTags")); + static const FName Name_ReplicatedViewRotation(TEXT("ReplicatedViewRotation")); + const bool bIsValid = true + && Name_PawnData == ClassReps[(int32)ENetFields_Private::PawnData].Property->GetFName() + && Name_MyPlayerConnectionType == ClassReps[(int32)ENetFields_Private::MyPlayerConnectionType].Property->GetFName() + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName() + && Name_MySquadID == ClassReps[(int32)ENetFields_Private::MySquadID].Property->GetFName() + && Name_StatTags == ClassReps[(int32)ENetFields_Private::StatTags].Property->GetFName() + && Name_ReplicatedViewRotation == ClassReps[(int32)ENetFields_Private::ReplicatedViewRotation].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraPlayerState")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerState); +ALyraPlayerState::~ALyraPlayerState() {} +// End Class ALyraPlayerState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraPlayerConnectionType_StaticEnum, TEXT("ELyraPlayerConnectionType"), &Z_Registration_Info_UEnum_ELyraPlayerConnectionType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1972617869U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerState, ALyraPlayerState::StaticClass, TEXT("ALyraPlayerState"), &Z_Registration_Info_UClass_ALyraPlayerState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerState), 179740478U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_4042952888(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.generated.h new file mode 100644 index 00000000..ef89f449 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerState.generated.h @@ -0,0 +1,103 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ALyraPlayerController; +class ULyraAbilitySystemComponent; +struct FGameplayTag; +struct FGenericTeamId; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraPlayerState_generated_h +#error "LyraPlayerState.generated.h already included, missing '#pragma once' in LyraPlayerState.h" +#endif +#define LYRAGAME_LyraPlayerState_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientBroadcastMessage_Implementation(const FLyraVerbMessage Message); \ + DECLARE_FUNCTION(execOnRep_MySquadID); \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnRep_PawnData); \ + DECLARE_FUNCTION(execClientBroadcastMessage); \ + DECLARE_FUNCTION(execHasStatTag); \ + DECLARE_FUNCTION(execGetStatTagStackCount); \ + DECLARE_FUNCTION(execRemoveStatTagStack); \ + DECLARE_FUNCTION(execAddStatTagStack); \ + DECLARE_FUNCTION(execGetTeamId); \ + DECLARE_FUNCTION(execGetSquadId); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerController); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerState(); \ + friend struct Z_Construct_UClass_ALyraPlayerState_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerState, AModularPlayerState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerState) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + PawnData=NETFIELD_REP_START, \ + MyPlayerConnectionType, \ + MyTeamID, \ + MySquadID, \ + StatTags, \ + ReplicatedViewRotation, \ + NETFIELD_REP_END=ReplicatedViewRotation }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerState(ALyraPlayerState&&); \ + ALyraPlayerState(const ALyraPlayerState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerState) \ + NO_API virtual ~ALyraPlayerState(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_48_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h + + +#define FOREACH_ENUM_ELYRAPLAYERCONNECTIONTYPE(op) \ + op(ELyraPlayerConnectionType::Player) \ + op(ELyraPlayerConnectionType::LiveSpectator) \ + op(ELyraPlayerConnectionType::ReplaySpectator) \ + op(ELyraPlayerConnectionType::InactivePlayer) + +enum class ELyraPlayerConnectionType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp new file mode 100644 index 00000000..78d9e4df --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp @@ -0,0 +1,743 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraQuickBarComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraQuickBarComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraQuickBarComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraQuickBarComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraQuickBarComponent Function AddItemToSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics +{ + struct LyraQuickBarComponent_eventAddItemToSlot_Parms + { + int32 SlotIndex; + ULyraInventoryItemInstance* Item; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_SlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Item; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_SlotIndex = { "SlotIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventAddItemToSlot_Parms, SlotIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_Item = { "Item", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventAddItemToSlot_Parms, Item), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_SlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_Item, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "AddItemToSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::LyraQuickBarComponent_eventAddItemToSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::LyraQuickBarComponent_eventAddItemToSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execAddItemToSlot) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_SlotIndex); + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_Item); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddItemToSlot(Z_Param_SlotIndex,Z_Param_Item); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function AddItemToSlot + +// Begin Class ULyraQuickBarComponent Function CycleActiveSlotBackward +struct Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "CycleActiveSlotBackward", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execCycleActiveSlotBackward) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleActiveSlotBackward(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function CycleActiveSlotBackward + +// Begin Class ULyraQuickBarComponent Function CycleActiveSlotForward +struct Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "CycleActiveSlotForward", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execCycleActiveSlotForward) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleActiveSlotForward(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function CycleActiveSlotForward + +// Begin Class ULyraQuickBarComponent Function GetActiveSlotIndex +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics +{ + struct LyraQuickBarComponent_eventGetActiveSlotIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetActiveSlotIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetActiveSlotIndex", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::LyraQuickBarComponent_eventGetActiveSlotIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::LyraQuickBarComponent_eventGetActiveSlotIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetActiveSlotIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetActiveSlotIndex(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetActiveSlotIndex + +// Begin Class ULyraQuickBarComponent Function GetActiveSlotItem +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics +{ + struct LyraQuickBarComponent_eventGetActiveSlotItem_Parms + { + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetActiveSlotItem_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetActiveSlotItem", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::LyraQuickBarComponent_eventGetActiveSlotItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::LyraQuickBarComponent_eventGetActiveSlotItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetActiveSlotItem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->GetActiveSlotItem(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetActiveSlotItem + +// Begin Class ULyraQuickBarComponent Function GetNextFreeItemSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics +{ + struct LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetNextFreeItemSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetNextFreeItemSlot) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNextFreeItemSlot(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetNextFreeItemSlot + +// Begin Class ULyraQuickBarComponent Function GetSlots +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics +{ + struct LyraQuickBarComponent_eventGetSlots_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetSlots_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetSlots", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::LyraQuickBarComponent_eventGetSlots_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::LyraQuickBarComponent_eventGetSlots_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetSlots) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetSlots(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetSlots + +// Begin Class ULyraQuickBarComponent Function OnRep_ActiveSlotIndex +struct Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "OnRep_ActiveSlotIndex", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execOnRep_ActiveSlotIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_ActiveSlotIndex(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function OnRep_ActiveSlotIndex + +// Begin Class ULyraQuickBarComponent Function OnRep_Slots +struct Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "OnRep_Slots", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execOnRep_Slots) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Slots(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function OnRep_Slots + +// Begin Class ULyraQuickBarComponent Function RemoveItemFromSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics +{ + struct LyraQuickBarComponent_eventRemoveItemFromSlot_Parms + { + int32 SlotIndex; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_SlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_SlotIndex = { "SlotIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventRemoveItemFromSlot_Parms, SlotIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventRemoveItemFromSlot_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_SlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "RemoveItemFromSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::LyraQuickBarComponent_eventRemoveItemFromSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::LyraQuickBarComponent_eventRemoveItemFromSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execRemoveItemFromSlot) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_SlotIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->RemoveItemFromSlot(Z_Param_SlotIndex); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function RemoveItemFromSlot + +// Begin Class ULyraQuickBarComponent Function SetActiveSlotIndex +struct LyraQuickBarComponent_eventSetActiveSlotIndex_Parms +{ + int32 NewIndex; +}; +static const FName NAME_ULyraQuickBarComponent_SetActiveSlotIndex = FName(TEXT("SetActiveSlotIndex")); +void ULyraQuickBarComponent::SetActiveSlotIndex(int32 NewIndex) +{ + LyraQuickBarComponent_eventSetActiveSlotIndex_Parms Parms; + Parms.NewIndex=NewIndex; + UFunction* Func = FindFunctionChecked(NAME_ULyraQuickBarComponent_SetActiveSlotIndex); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NewIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::NewProp_NewIndex = { "NewIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms, NewIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::NewProp_NewIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "SetActiveSlotIndex", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers), sizeof(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execSetActiveSlotIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_NewIndex); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetActiveSlotIndex_Implementation(Z_Param_NewIndex); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function SetActiveSlotIndex + +// Begin Class ULyraQuickBarComponent +void ULyraQuickBarComponent::StaticRegisterNativesULyraQuickBarComponent() +{ + UClass* Class = ULyraQuickBarComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddItemToSlot", &ULyraQuickBarComponent::execAddItemToSlot }, + { "CycleActiveSlotBackward", &ULyraQuickBarComponent::execCycleActiveSlotBackward }, + { "CycleActiveSlotForward", &ULyraQuickBarComponent::execCycleActiveSlotForward }, + { "GetActiveSlotIndex", &ULyraQuickBarComponent::execGetActiveSlotIndex }, + { "GetActiveSlotItem", &ULyraQuickBarComponent::execGetActiveSlotItem }, + { "GetNextFreeItemSlot", &ULyraQuickBarComponent::execGetNextFreeItemSlot }, + { "GetSlots", &ULyraQuickBarComponent::execGetSlots }, + { "OnRep_ActiveSlotIndex", &ULyraQuickBarComponent::execOnRep_ActiveSlotIndex }, + { "OnRep_Slots", &ULyraQuickBarComponent::execOnRep_Slots }, + { "RemoveItemFromSlot", &ULyraQuickBarComponent::execRemoveItemFromSlot }, + { "SetActiveSlotIndex", &ULyraQuickBarComponent::execSetActiveSlotIndex }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraQuickBarComponent); +UClass* Z_Construct_UClass_ULyraQuickBarComponent_NoRegister() +{ + return ULyraQuickBarComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraQuickBarComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Equipment/LyraQuickBarComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumSlots_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slots_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveSlotIndex_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquippedItem_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NumSlots; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slots_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Slots; + static const UECodeGen_Private::FIntPropertyParams NewProp_ActiveSlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EquippedItem; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot, "AddItemToSlot" }, // 3863202267 + { &Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward, "CycleActiveSlotBackward" }, // 492003377 + { &Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward, "CycleActiveSlotForward" }, // 3331352916 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex, "GetActiveSlotIndex" }, // 3700513075 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem, "GetActiveSlotItem" }, // 1038067759 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot, "GetNextFreeItemSlot" }, // 796166886 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots, "GetSlots" }, // 1237960195 + { &Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex, "OnRep_ActiveSlotIndex" }, // 1285315285 + { &Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots, "OnRep_Slots" }, // 4268362867 + { &Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot, "RemoveItemFromSlot" }, // 4162228007 + { &Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex, "SetActiveSlotIndex" }, // 2179969190 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_NumSlots = { "NumSlots", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, NumSlots), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumSlots_MetaData), NewProp_NumSlots_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots_Inner = { "Slots", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots = { "Slots", "OnRep_Slots", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, Slots), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slots_MetaData), NewProp_Slots_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_ActiveSlotIndex = { "ActiveSlotIndex", "OnRep_ActiveSlotIndex", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, ActiveSlotIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveSlotIndex_MetaData), NewProp_ActiveSlotIndex_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_EquippedItem = { "EquippedItem", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, EquippedItem), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquippedItem_MetaData), NewProp_EquippedItem_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_NumSlots, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_ActiveSlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_EquippedItem, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraQuickBarComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::ClassParams = { + &ULyraQuickBarComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraQuickBarComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraQuickBarComponent() +{ + if (!Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton, Z_Construct_UClass_ULyraQuickBarComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraQuickBarComponent::StaticClass(); +} +void ULyraQuickBarComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Slots(TEXT("Slots")); + static const FName Name_ActiveSlotIndex(TEXT("ActiveSlotIndex")); + const bool bIsValid = true + && Name_Slots == ClassReps[(int32)ENetFields_Private::Slots].Property->GetFName() + && Name_ActiveSlotIndex == ClassReps[(int32)ENetFields_Private::ActiveSlotIndex].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraQuickBarComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraQuickBarComponent); +ULyraQuickBarComponent::~ULyraQuickBarComponent() {} +// End Class ULyraQuickBarComponent + +// Begin ScriptStruct FLyraQuickBarSlotsChangedMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage; +class UScriptStruct* FLyraQuickBarSlotsChangedMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQuickBarSlotsChangedMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQuickBarSlotsChangedMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slots_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slots_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Slots; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarSlotsChangedMessage, Owner), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots_Inner = { "Slots", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots = { "Slots", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarSlotsChangedMessage, Slots), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slots_MetaData), NewProp_Slots_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Owner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQuickBarSlotsChangedMessage", + Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers), + sizeof(FLyraQuickBarSlotsChangedMessage), + alignof(FLyraQuickBarSlotsChangedMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton; +} +// End ScriptStruct FLyraQuickBarSlotsChangedMessage + +// Begin ScriptStruct FLyraQuickBarActiveIndexChangedMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage; +class UScriptStruct* FLyraQuickBarActiveIndexChangedMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQuickBarActiveIndexChangedMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQuickBarActiveIndexChangedMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveIndex_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FIntPropertyParams NewProp_ActiveIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarActiveIndexChangedMessage, Owner), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_ActiveIndex = { "ActiveIndex", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarActiveIndexChangedMessage, ActiveIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveIndex_MetaData), NewProp_ActiveIndex_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_Owner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_ActiveIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQuickBarActiveIndexChangedMessage", + Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers), + sizeof(FLyraQuickBarActiveIndexChangedMessage), + alignof(FLyraQuickBarActiveIndexChangedMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton; +} +// End ScriptStruct FLyraQuickBarActiveIndexChangedMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraQuickBarSlotsChangedMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewStructOps, TEXT("LyraQuickBarSlotsChangedMessage"), &Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQuickBarSlotsChangedMessage), 1924812973U) }, + { FLyraQuickBarActiveIndexChangedMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewStructOps, TEXT("LyraQuickBarActiveIndexChangedMessage"), &Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQuickBarActiveIndexChangedMessage), 3674454375U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraQuickBarComponent, ULyraQuickBarComponent::StaticClass, TEXT("ULyraQuickBarComponent"), &Z_Registration_Info_UClass_ULyraQuickBarComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraQuickBarComponent), 4238548548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_1828397901(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h new file mode 100644 index 00000000..54c10454 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraQuickBarComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraQuickBarComponent_generated_h +#error "LyraQuickBarComponent.generated.h already included, missing '#pragma once' in LyraQuickBarComponent.h" +#endif +#define LYRAGAME_LyraQuickBarComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void SetActiveSlotIndex_Implementation(int32 NewIndex); \ + DECLARE_FUNCTION(execOnRep_ActiveSlotIndex); \ + DECLARE_FUNCTION(execOnRep_Slots); \ + DECLARE_FUNCTION(execRemoveItemFromSlot); \ + DECLARE_FUNCTION(execAddItemToSlot); \ + DECLARE_FUNCTION(execGetNextFreeItemSlot); \ + DECLARE_FUNCTION(execGetActiveSlotItem); \ + DECLARE_FUNCTION(execGetActiveSlotIndex); \ + DECLARE_FUNCTION(execGetSlots); \ + DECLARE_FUNCTION(execSetActiveSlotIndex); \ + DECLARE_FUNCTION(execCycleActiveSlotBackward); \ + DECLARE_FUNCTION(execCycleActiveSlotForward); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraQuickBarComponent(); \ + friend struct Z_Construct_UClass_ULyraQuickBarComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraQuickBarComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraQuickBarComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Slots=NETFIELD_REP_START, \ + ActiveSlotIndex, \ + NETFIELD_REP_END=ActiveSlotIndex }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraQuickBarComponent(ULyraQuickBarComponent&&); \ + ULyraQuickBarComponent(const ULyraQuickBarComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraQuickBarComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraQuickBarComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraQuickBarComponent) \ + NO_API virtual ~ULyraQuickBarComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_16_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_87_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_100_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp new file mode 100644 index 00000000..cda83d1a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp @@ -0,0 +1,458 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraRangedWeaponInstance.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraRangedWeaponInstance() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraRangedWeaponInstance +void ULyraRangedWeaponInstance::StaticRegisterNativesULyraRangedWeaponInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraRangedWeaponInstance); +UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister() +{ + return ULyraRangedWeaponInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraRangedWeaponInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraRangedWeaponInstance\n *\n * A piece of equipment representing a ranged weapon spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Weapons/LyraRangedWeaponInstance.h" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraRangedWeaponInstance\n\nA piece of equipment representing a ranged weapon spawned and applied to a pawn" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MinHeat_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MaxHeat_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MinSpreadAngle_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MaxSpreadAngle_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentHeat_MetaData[] = { + { "Category", "Spread Debugging" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentSpreadAngle_MetaData[] = { + { "Category", "Spread Debugging" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData[] = { + { "Category", "Spread Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current *combined* spread angle multiplier\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current *combined* spread angle multiplier" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadExponent_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ClampMin", "0.100000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Spread exponent, affects how tightly shots will cluster around the center line\n// when the weapon has spread (non-perfect accuracy). Higher values will cause shots\n// to be closer to the center (default is 1.0 which means uniformly within the spread range)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spread exponent, affects how tightly shots will cluster around the center line\nwhen the weapon has spread (non-perfect accuracy). Higher values will cause shots\nto be closer to the center (default is 1.0 which means uniformly within the spread range)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToSpreadCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the heat to the spread angle\n// The X range of this curve typically sets the min/max heat range of the weapon\n// The Y range of this curve is used to define the min and maximum spread angle\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the heat to the spread angle\nThe X range of this curve typically sets the min/max heat range of the weapon\nThe Y range of this curve is used to define the min and maximum spread angle" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToHeatPerShotCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the current heat to the amount a single shot will further 'heat up'\n// This is typically a flat curve with a single data point indicating how much heat a shot adds,\n// but can be other shapes to do things like punish overheating by adding progressively more heat.\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the current heat to the amount a single shot will further 'heat up'\nThis is typically a flat curve with a single data point indicating how much heat a shot adds,\nbut can be other shapes to do things like punish overheating by adding progressively more heat." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToCoolDownPerSecondCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the current heat to the heat cooldown rate per second\n// This is typically a flat curve with a single data point indicating how fast the heat\n// wears off, but can be other shapes to do things like punish overheating by slowing down\n// recovery at high heat.\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the current heat to the heat cooldown rate per second\nThis is typically a flat curve with a single data point indicating how fast the heat\nwears off, but can be other shapes to do things like punish overheating by slowing down\nrecovery at high heat." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadRecoveryCooldownDelay_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Time since firing before spread cooldown recovery begins (in seconds)\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Time since firing before spread cooldown recovery begins (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAllowFirstShotAccuracy_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should the weapon have perfect accuracy when both player and weapon spread are at their minimum value\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should the weapon have perfect accuracy when both player and weapon spread are at their minimum value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_Aiming_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when in an aiming camera mode\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when in an aiming camera mode" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_StandingStill_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when standing still or moving very slowly\n// (starts to fade out at StandingStillSpeedThreshold, and is gone completely by StandingStillSpeedThreshold + StandingStillToMovingSpeedRange)\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when standing still or moving very slowly\n(starts to fade out at StandingStillSpeedThreshold, and is gone completely by StandingStillSpeedThreshold + StandingStillToMovingSpeedRange)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_StandingStill_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the standing still accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the standing still accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StandingStillSpeedThreshold_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Speeds at or below this are considered standing still\n" }, +#endif + { "ForceUnits", "cm/s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Speeds at or below this are considered standing still" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StandingStillToMovingSpeedRange_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Speeds no more than this above StandingStillSpeedThreshold are used to feather down the standing still bonus until it's back to 1.0\n" }, +#endif + { "ForceUnits", "cm/s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Speeds no more than this above StandingStillSpeedThreshold are used to feather down the standing still bonus until it's back to 1.0" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_Crouching_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when crouching, smoothly blended to based on TransitionRate_Crouching\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when crouching, smoothly blended to based on TransitionRate_Crouching" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_Crouching_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the crouching accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the crouching accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Spread multiplier while jumping/falling, smoothly blended to based on TransitionRate_JumpingOrFalling\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spread multiplier while jumping/falling, smoothly blended to based on TransitionRate_JumpingOrFalling" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_JumpingOrFalling_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the jumping/falling accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the jumping/falling accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BulletsPerCartridge_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Number of bullets to fire in a single cartridge (typically 1, but may be more for shotguns)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of bullets to fire in a single cartridge (typically 1, but may be more for shotguns)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxDamageRange_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The maximum distance at which this weapon can deal damage\n" }, +#endif + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum distance at which this weapon can deal damage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BulletTraceSweepRadius_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The radius for bullet traces sweep spheres (0.0 will result in a line trace)\n" }, +#endif + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The radius for bullet traces sweep spheres (0.0 will result in a line trace)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DistanceDamageFalloff_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the distance (in cm) to a multiplier on the base damage from the associated gameplay effect\n// If there is no data in this curve, then the weapon is assumed to have no falloff with distance\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the distance (in cm) to a multiplier on the base damage from the associated gameplay effect\nIf there is no data in this curve, then the weapon is assumed to have no falloff with distance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaterialDamageMultiplier_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of special tags that affect how damage is dealt\n// These tags will be compared to tags in the physical material of the thing being hit\n// If more than one tag is present, the multipliers will be combined multiplicatively\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of special tags that affect how damage is dealt\nThese tags will be compared to tags in the physical material of the thing being hit\nIf more than one tag is present, the multipliers will be combined multiplicatively" }, +#endif + }; +#endif // WITH_METADATA +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MinHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MaxHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MinSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MaxSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentSpreadAngleMultiplier; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadExponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToSpreadCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToHeatPerShotCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToCoolDownPerSecondCurve; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadRecoveryCooldownDelay; + static void NewProp_bAllowFirstShotAccuracy_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAllowFirstShotAccuracy; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_Aiming; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_StandingStill; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_StandingStill; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StandingStillSpeedThreshold; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StandingStillToMovingSpeedRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_Crouching; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_Crouching; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_JumpingOrFalling; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_JumpingOrFalling; + static const UECodeGen_Private::FIntPropertyParams NewProp_BulletsPerCartridge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MaxDamageRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BulletTraceSweepRadius; + static const UECodeGen_Private::FStructPropertyParams NewProp_DistanceDamageFalloff; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MaterialDamageMultiplier_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaterialDamageMultiplier_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_MaterialDamageMultiplier; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinHeat = { "Debug_MinHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MinHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MinHeat_MetaData), NewProp_Debug_MinHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxHeat = { "Debug_MaxHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MaxHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MaxHeat_MetaData), NewProp_Debug_MaxHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinSpreadAngle = { "Debug_MinSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MinSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MinSpreadAngle_MetaData), NewProp_Debug_MinSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxSpreadAngle = { "Debug_MaxSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MaxSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MaxSpreadAngle_MetaData), NewProp_Debug_MaxSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentHeat = { "Debug_CurrentHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentHeat_MetaData), NewProp_Debug_CurrentHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngle = { "Debug_CurrentSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentSpreadAngle_MetaData), NewProp_Debug_CurrentSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngleMultiplier = { "Debug_CurrentSpreadAngleMultiplier", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentSpreadAngleMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData), NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadExponent = { "SpreadExponent", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadExponent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadExponent_MetaData), NewProp_SpreadExponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToSpreadCurve = { "HeatToSpreadCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToSpreadCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToSpreadCurve_MetaData), NewProp_HeatToSpreadCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToHeatPerShotCurve = { "HeatToHeatPerShotCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToHeatPerShotCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToHeatPerShotCurve_MetaData), NewProp_HeatToHeatPerShotCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToCoolDownPerSecondCurve = { "HeatToCoolDownPerSecondCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToCoolDownPerSecondCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToCoolDownPerSecondCurve_MetaData), NewProp_HeatToCoolDownPerSecondCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadRecoveryCooldownDelay = { "SpreadRecoveryCooldownDelay", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadRecoveryCooldownDelay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadRecoveryCooldownDelay_MetaData), NewProp_SpreadRecoveryCooldownDelay_MetaData) }; +void Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy_SetBit(void* Obj) +{ + ((ULyraRangedWeaponInstance*)Obj)->bAllowFirstShotAccuracy = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy = { "bAllowFirstShotAccuracy", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraRangedWeaponInstance), &Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAllowFirstShotAccuracy_MetaData), NewProp_bAllowFirstShotAccuracy_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Aiming = { "SpreadAngleMultiplier_Aiming", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_Aiming), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_Aiming_MetaData), NewProp_SpreadAngleMultiplier_Aiming_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_StandingStill = { "SpreadAngleMultiplier_StandingStill", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_StandingStill), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_StandingStill_MetaData), NewProp_SpreadAngleMultiplier_StandingStill_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_StandingStill = { "TransitionRate_StandingStill", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_StandingStill), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_StandingStill_MetaData), NewProp_TransitionRate_StandingStill_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillSpeedThreshold = { "StandingStillSpeedThreshold", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, StandingStillSpeedThreshold), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StandingStillSpeedThreshold_MetaData), NewProp_StandingStillSpeedThreshold_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillToMovingSpeedRange = { "StandingStillToMovingSpeedRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, StandingStillToMovingSpeedRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StandingStillToMovingSpeedRange_MetaData), NewProp_StandingStillToMovingSpeedRange_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Crouching = { "SpreadAngleMultiplier_Crouching", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_Crouching), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_Crouching_MetaData), NewProp_SpreadAngleMultiplier_Crouching_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_Crouching = { "TransitionRate_Crouching", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_Crouching), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_Crouching_MetaData), NewProp_TransitionRate_Crouching_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_JumpingOrFalling = { "SpreadAngleMultiplier_JumpingOrFalling", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_JumpingOrFalling), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData), NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_JumpingOrFalling = { "TransitionRate_JumpingOrFalling", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_JumpingOrFalling), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_JumpingOrFalling_MetaData), NewProp_TransitionRate_JumpingOrFalling_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletsPerCartridge = { "BulletsPerCartridge", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, BulletsPerCartridge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BulletsPerCartridge_MetaData), NewProp_BulletsPerCartridge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaxDamageRange = { "MaxDamageRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, MaxDamageRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxDamageRange_MetaData), NewProp_MaxDamageRange_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletTraceSweepRadius = { "BulletTraceSweepRadius", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, BulletTraceSweepRadius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BulletTraceSweepRadius_MetaData), NewProp_BulletTraceSweepRadius_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_DistanceDamageFalloff = { "DistanceDamageFalloff", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, DistanceDamageFalloff), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DistanceDamageFalloff_MetaData), NewProp_DistanceDamageFalloff_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_ValueProp = { "MaterialDamageMultiplier", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_Key_KeyProp = { "MaterialDamageMultiplier_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier = { "MaterialDamageMultiplier", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, MaterialDamageMultiplier), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaterialDamageMultiplier_MetaData), NewProp_MaterialDamageMultiplier_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers[] = { +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngleMultiplier, +#endif // WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadExponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToSpreadCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToHeatPerShotCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToCoolDownPerSecondCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadRecoveryCooldownDelay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Aiming, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_StandingStill, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_StandingStill, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillSpeedThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillToMovingSpeedRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Crouching, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_Crouching, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_JumpingOrFalling, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_JumpingOrFalling, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletsPerCartridge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaxDamageRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletTraceSweepRadius, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_DistanceDamageFalloff, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraWeaponInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraRangedWeaponInstance, ILyraAbilitySourceInterface), false }, // 3768332760 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::ClassParams = { + &ULyraRangedWeaponInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraRangedWeaponInstance() +{ + if (!Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton, Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraRangedWeaponInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraRangedWeaponInstance); +ULyraRangedWeaponInstance::~ULyraRangedWeaponInstance() {} +// End Class ULyraRangedWeaponInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraRangedWeaponInstance, ULyraRangedWeaponInstance::StaticClass, TEXT("ULyraRangedWeaponInstance"), &Z_Registration_Info_UClass_ULyraRangedWeaponInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraRangedWeaponInstance), 772691738U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_1344634642(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h new file mode 100644 index 00000000..2f69c3e4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraRangedWeaponInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraRangedWeaponInstance_generated_h +#error "LyraRangedWeaponInstance.generated.h already included, missing '#pragma once' in LyraRangedWeaponInstance.h" +#endif +#define LYRAGAME_LyraRangedWeaponInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraRangedWeaponInstance(); \ + friend struct Z_Construct_UClass_ULyraRangedWeaponInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraRangedWeaponInstance, ULyraWeaponInstance, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraRangedWeaponInstance) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraRangedWeaponInstance(ULyraRangedWeaponInstance&&); \ + ULyraRangedWeaponInstance(const ULyraRangedWeaponInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraRangedWeaponInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraRangedWeaponInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraRangedWeaponInstance) \ + NO_API virtual ~ULyraRangedWeaponInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp new file mode 100644 index 00000000..4e2376ea --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp @@ -0,0 +1,899 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Replays/LyraReplaySubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplaySubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FDateTime(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FTimespan(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayListEntry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayListEntry_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplaySubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplaySubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplayListEntry Function GetDuration +struct Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics +{ + struct LyraReplayListEntry_eventGetDuration_Parms + { + FTimespan ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The duration of the stream in MS */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The duration of the stream in MS" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetDuration_Parms, ReturnValue), Z_Construct_UScriptStruct_FTimespan, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetDuration", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::LyraReplayListEntry_eventGetDuration_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::LyraReplayListEntry_eventGetDuration_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetDuration() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetDuration) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FTimespan*)Z_Param__Result=P_THIS->GetDuration(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetDuration + +// Begin Class ULyraReplayListEntry Function GetFriendlyName +struct Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics +{ + struct LyraReplayListEntry_eventGetFriendlyName_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The UI friendly name of the stream */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The UI friendly name of the stream" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetFriendlyName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetFriendlyName", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::LyraReplayListEntry_eventGetFriendlyName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::LyraReplayListEntry_eventGetFriendlyName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetFriendlyName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetFriendlyName(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetFriendlyName + +// Begin Class ULyraReplayListEntry Function GetIsLive +struct Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics +{ + struct LyraReplayListEntry_eventGetIsLive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if the stream is live and the game hasn't completed yet */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if the stream is live and the game hasn't completed yet" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReplayListEntry_eventGetIsLive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReplayListEntry_eventGetIsLive_Parms), &Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetIsLive", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::LyraReplayListEntry_eventGetIsLive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::LyraReplayListEntry_eventGetIsLive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetIsLive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsLive(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetIsLive + +// Begin Class ULyraReplayListEntry Function GetNumViewers +struct Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics +{ + struct LyraReplayListEntry_eventGetNumViewers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Number of viewers viewing this stream */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of viewers viewing this stream" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetNumViewers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetNumViewers", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::LyraReplayListEntry_eventGetNumViewers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::LyraReplayListEntry_eventGetNumViewers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetNumViewers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumViewers(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetNumViewers + +// Begin Class ULyraReplayListEntry Function GetTimestamp +struct Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics +{ + struct LyraReplayListEntry_eventGetTimestamp_Parms + { + FDateTime ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The date and time the stream was recorded */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The date and time the stream was recorded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetTimestamp_Parms, ReturnValue), Z_Construct_UScriptStruct_FDateTime, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetTimestamp", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::LyraReplayListEntry_eventGetTimestamp_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::LyraReplayListEntry_eventGetTimestamp_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetTimestamp) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FDateTime*)Z_Param__Result=P_THIS->GetTimestamp(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetTimestamp + +// Begin Class ULyraReplayListEntry +void ULyraReplayListEntry::StaticRegisterNativesULyraReplayListEntry() +{ + UClass* Class = ULyraReplayListEntry::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDuration", &ULyraReplayListEntry::execGetDuration }, + { "GetFriendlyName", &ULyraReplayListEntry::execGetFriendlyName }, + { "GetIsLive", &ULyraReplayListEntry::execGetIsLive }, + { "GetNumViewers", &ULyraReplayListEntry::execGetNumViewers }, + { "GetTimestamp", &ULyraReplayListEntry::execGetTimestamp }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplayListEntry); +UClass* Z_Construct_UClass_ULyraReplayListEntry_NoRegister() +{ + return ULyraReplayListEntry::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplayListEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** An available replay for display in the UI */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An available replay for display in the UI" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReplayListEntry_GetDuration, "GetDuration" }, // 608032547 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName, "GetFriendlyName" }, // 832824500 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive, "GetIsLive" }, // 2900708778 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers, "GetNumViewers" }, // 4273820164 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp, "GetTimestamp" }, // 2348328336 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplayListEntry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayListEntry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplayListEntry_Statics::ClassParams = { + &ULyraReplayListEntry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayListEntry_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplayListEntry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplayListEntry() +{ + if (!Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton, Z_Construct_UClass_ULyraReplayListEntry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplayListEntry::StaticClass(); +} +ULyraReplayListEntry::ULyraReplayListEntry(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplayListEntry); +ULyraReplayListEntry::~ULyraReplayListEntry() {} +// End Class ULyraReplayListEntry + +// Begin Class ULyraReplayList +void ULyraReplayList::StaticRegisterNativesULyraReplayList() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplayList); +UClass* Z_Construct_UClass_ULyraReplayList_NoRegister() +{ + return ULyraReplayList::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplayList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Results of querying for replays list of results for the UI */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Results of querying for replays list of results for the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Results_MetaData[] = { + { "Category", "Replays" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Results; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results_Inner = { "Results", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraReplayListEntry_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplayList, Results), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Results_MetaData), NewProp_Results_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplayList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplayList_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplayList_Statics::ClassParams = { + &ULyraReplayList::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplayList_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplayList_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplayList() +{ + if (!Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton, Z_Construct_UClass_ULyraReplayList_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplayList::StaticClass(); +} +ULyraReplayList::ULyraReplayList(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplayList); +ULyraReplayList::~ULyraReplayList() {} +// End Class ULyraReplayList + +// Begin Class ULyraReplaySubsystem Function CleanupLocalReplays +struct Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics +{ + struct LyraReplaySubsystem_eventCleanupLocalReplays_Parms + { + ULocalPlayer* LocalPlayer; + int32 NumReplaysToKeep; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts deleting local replays starting with the oldest until there are NumReplaysToKeep or fewer */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts deleting local replays starting with the oldest until there are NumReplaysToKeep or fewer" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumReplaysToKeep; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventCleanupLocalReplays_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_NumReplaysToKeep = { "NumReplaysToKeep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventCleanupLocalReplays_Parms, NumReplaysToKeep), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_NumReplaysToKeep, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "CleanupLocalReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::LyraReplaySubsystem_eventCleanupLocalReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::LyraReplaySubsystem_eventCleanupLocalReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execCleanupLocalReplays) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_PROPERTY(FIntProperty,Z_Param_NumReplaysToKeep); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CleanupLocalReplays(Z_Param_LocalPlayer,Z_Param_NumReplaysToKeep); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function CleanupLocalReplays + +// Begin Class ULyraReplaySubsystem Function DoesPlatformSupportReplays +struct Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics +{ + struct LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this platform supports replays at all */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this platform supports replays at all" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms), &Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "DoesPlatformSupportReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execDoesPlatformSupportReplays) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraReplaySubsystem::DoesPlatformSupportReplays(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function DoesPlatformSupportReplays + +// Begin Class ULyraReplaySubsystem Function GetReplayCurrentTime +struct Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics +{ + struct LyraReplaySubsystem_eventGetReplayCurrentTime_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets current playback time */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets current playback time" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventGetReplayCurrentTime_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "GetReplayCurrentTime", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::LyraReplaySubsystem_eventGetReplayCurrentTime_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::LyraReplaySubsystem_eventGetReplayCurrentTime_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execGetReplayCurrentTime) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetReplayCurrentTime(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function GetReplayCurrentTime + +// Begin Class ULyraReplaySubsystem Function GetReplayLengthInSeconds +struct Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics +{ + struct LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets length of current replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets length of current replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "GetReplayLengthInSeconds", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execGetReplayLengthInSeconds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetReplayLengthInSeconds(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function GetReplayLengthInSeconds + +// Begin Class ULyraReplaySubsystem Function PlayReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics +{ + struct LyraReplaySubsystem_eventPlayReplay_Parms + { + ULyraReplayListEntry* Replay; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Loads the appropriate map and plays a replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loads the appropriate map and plays a replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Replay; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::NewProp_Replay = { "Replay", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventPlayReplay_Parms, Replay), Z_Construct_UClass_ULyraReplayListEntry_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::NewProp_Replay, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "PlayReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::LyraReplaySubsystem_eventPlayReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::LyraReplaySubsystem_eventPlayReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execPlayReplay) +{ + P_GET_OBJECT(ULyraReplayListEntry,Z_Param_Replay); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayReplay(Z_Param_Replay); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function PlayReplay + +// Begin Class ULyraReplaySubsystem Function RecordClientReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics +{ + struct LyraReplaySubsystem_eventRecordClientReplay_Parms + { + APlayerController* PlayerController; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts recording a client replay, and handles any file cleanup needed */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts recording a client replay, and handles any file cleanup needed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventRecordClientReplay_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::NewProp_PlayerController, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "RecordClientReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::LyraReplaySubsystem_eventRecordClientReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::LyraReplaySubsystem_eventRecordClientReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execRecordClientReplay) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RecordClientReplay(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function RecordClientReplay + +// Begin Class ULyraReplaySubsystem Function SeekInActiveReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics +{ + struct LyraReplaySubsystem_eventSeekInActiveReplay_Parms + { + float TimeInSeconds; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Move forward or back in currently playing replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Move forward or back in currently playing replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_TimeInSeconds; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::NewProp_TimeInSeconds = { "TimeInSeconds", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventSeekInActiveReplay_Parms, TimeInSeconds), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::NewProp_TimeInSeconds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "SeekInActiveReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::LyraReplaySubsystem_eventSeekInActiveReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::LyraReplaySubsystem_eventSeekInActiveReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execSeekInActiveReplay) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_TimeInSeconds); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SeekInActiveReplay(Z_Param_TimeInSeconds); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function SeekInActiveReplay + +// Begin Class ULyraReplaySubsystem +void ULyraReplaySubsystem::StaticRegisterNativesULyraReplaySubsystem() +{ + UClass* Class = ULyraReplaySubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CleanupLocalReplays", &ULyraReplaySubsystem::execCleanupLocalReplays }, + { "DoesPlatformSupportReplays", &ULyraReplaySubsystem::execDoesPlatformSupportReplays }, + { "GetReplayCurrentTime", &ULyraReplaySubsystem::execGetReplayCurrentTime }, + { "GetReplayLengthInSeconds", &ULyraReplaySubsystem::execGetReplayLengthInSeconds }, + { "PlayReplay", &ULyraReplaySubsystem::execPlayReplay }, + { "RecordClientReplay", &ULyraReplaySubsystem::execRecordClientReplay }, + { "SeekInActiveReplay", &ULyraReplaySubsystem::execSeekInActiveReplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplaySubsystem); +UClass* Z_Construct_UClass_ULyraReplaySubsystem_NoRegister() +{ + return ULyraReplaySubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplaySubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Subsystem to handle recording/loading replays */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem to handle recording/loading replays" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerDeletingReplays_MetaData[] = { + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayerDeletingReplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays, "CleanupLocalReplays" }, // 2654932538 + { &Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays, "DoesPlatformSupportReplays" }, // 1922645153 + { &Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime, "GetReplayCurrentTime" }, // 113256180 + { &Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds, "GetReplayLengthInSeconds" }, // 3314333117 + { &Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay, "PlayReplay" }, // 264471819 + { &Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay, "RecordClientReplay" }, // 3619830068 + { &Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay, "SeekInActiveReplay" }, // 138942325 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplaySubsystem_Statics::NewProp_LocalPlayerDeletingReplays = { "LocalPlayerDeletingReplays", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplaySubsystem, LocalPlayerDeletingReplays), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerDeletingReplays_MetaData), NewProp_LocalPlayerDeletingReplays_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplaySubsystem_Statics::NewProp_LocalPlayerDeletingReplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplaySubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplaySubsystem_Statics::ClassParams = { + &ULyraReplaySubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplaySubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplaySubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton, Z_Construct_UClass_ULyraReplaySubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplaySubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplaySubsystem); +ULyraReplaySubsystem::~ULyraReplaySubsystem() {} +// End Class ULyraReplaySubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplayListEntry, ULyraReplayListEntry::StaticClass, TEXT("ULyraReplayListEntry"), &Z_Registration_Info_UClass_ULyraReplayListEntry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplayListEntry), 666646215U) }, + { Z_Construct_UClass_ULyraReplayList, ULyraReplayList::StaticClass, TEXT("ULyraReplayList"), &Z_Registration_Info_UClass_ULyraReplayList, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplayList), 1431111374U) }, + { Z_Construct_UClass_ULyraReplaySubsystem, ULyraReplaySubsystem::StaticClass, TEXT("ULyraReplaySubsystem"), &Z_Registration_Info_UClass_ULyraReplaySubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplaySubsystem), 4122727U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_1445331390(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h new file mode 100644 index 00000000..1cc96425 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Replays/LyraReplaySubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class ULocalPlayer; +class ULyraReplayListEntry; +struct FDateTime; +struct FTimespan; +#ifdef LYRAGAME_LyraReplaySubsystem_generated_h +#error "LyraReplaySubsystem.generated.h already included, missing '#pragma once' in LyraReplaySubsystem.h" +#endif +#define LYRAGAME_LyraReplaySubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetIsLive); \ + DECLARE_FUNCTION(execGetNumViewers); \ + DECLARE_FUNCTION(execGetDuration); \ + DECLARE_FUNCTION(execGetTimestamp); \ + DECLARE_FUNCTION(execGetFriendlyName); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplayListEntry(); \ + friend struct Z_Construct_UClass_ULyraReplayListEntry_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplayListEntry, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplayListEntry) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplayListEntry(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplayListEntry(ULyraReplayListEntry&&); \ + ULyraReplayListEntry(const ULyraReplayListEntry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplayListEntry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplayListEntry); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReplayListEntry) \ + NO_API virtual ~ULyraReplayListEntry(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplayList(); \ + friend struct Z_Construct_UClass_ULyraReplayList_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplayList, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplayList) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplayList(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplayList(ULyraReplayList&&); \ + ULyraReplayList(const ULyraReplayList&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplayList); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplayList); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReplayList) \ + NO_API virtual ~ULyraReplayList(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_47_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetReplayCurrentTime); \ + DECLARE_FUNCTION(execGetReplayLengthInSeconds); \ + DECLARE_FUNCTION(execSeekInActiveReplay); \ + DECLARE_FUNCTION(execCleanupLocalReplays); \ + DECLARE_FUNCTION(execRecordClientReplay); \ + DECLARE_FUNCTION(execPlayReplay); \ + DECLARE_FUNCTION(execDoesPlatformSupportReplays); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplaySubsystem(); \ + friend struct Z_Construct_UClass_ULyraReplaySubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplaySubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplaySubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplaySubsystem(ULyraReplaySubsystem&&); \ + ULyraReplaySubsystem(const ULyraReplaySubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplaySubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplaySubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplaySubsystem) \ + NO_API virtual ~ULyraReplaySubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_58_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp new file mode 100644 index 00000000..c1a29a6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp @@ -0,0 +1,258 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraph.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraph() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraph(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraph_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_NoRegister(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraph(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_ActorList_NoRegister(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_AlwaysRelevant_ForConnection(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_GridSpatialization2D_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplicationGraph +void ULyraReplicationGraph::StaticRegisterNativesULyraReplicationGraph() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraph); +UClass* Z_Construct_UClass_ULyraReplicationGraph_NoRegister() +{ + return ULyraReplicationGraph::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraph_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Lyra Replication Graph implementation. See additional notes in LyraReplicationGraph.cpp! */" }, +#endif + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Lyra Replication Graph implementation. See additional notes in LyraReplicationGraph.cpp!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysRelevantClasses_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GridNode_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysRelevantNode_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_AlwaysRelevantClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AlwaysRelevantClasses; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GridNode; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlwaysRelevantNode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses_Inner = { "AlwaysRelevantClasses", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses = { "AlwaysRelevantClasses", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, AlwaysRelevantClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysRelevantClasses_MetaData), NewProp_AlwaysRelevantClasses_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_GridNode = { "GridNode", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, GridNode), Z_Construct_UClass_UReplicationGraphNode_GridSpatialization2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GridNode_MetaData), NewProp_GridNode_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantNode = { "AlwaysRelevantNode", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, AlwaysRelevantNode), Z_Construct_UClass_UReplicationGraphNode_ActorList_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysRelevantNode_MetaData), NewProp_AlwaysRelevantNode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_GridNode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantNode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplicationGraph_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraph, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraph_Statics::ClassParams = { + &ULyraReplicationGraph::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers), + 0, + 0x000000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraph_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraph() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraph_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraph::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraph); +ULyraReplicationGraph::~ULyraReplicationGraph() {} +// End Class ULyraReplicationGraph + +// Begin Class ULyraReplicationGraphNode_AlwaysRelevant_ForConnection +void ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticRegisterNativesULyraReplicationGraphNode_AlwaysRelevant_ForConnection() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_NoRegister() +{ + return ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraphNode_AlwaysRelevant_ForConnection, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::ClassParams = { + &ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass(); +} +ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); +ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::~ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() {} +// End Class ULyraReplicationGraphNode_AlwaysRelevant_ForConnection + +// Begin Class ULyraReplicationGraphNode_PlayerStateFrequencyLimiter +void ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticRegisterNativesULyraReplicationGraphNode_PlayerStateFrequencyLimiter() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_NoRegister() +{ + return ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09This is a specialized node for handling PlayerState replication in a frequency limited fashion. It tracks all player states but only returns a subset of them to the replication driver each frame. \n\x09This is an optimization for large player connection counts, and not a requirement.\n*/" }, +#endif + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a specialized node for handling PlayerState replication in a frequency limited fashion. It tracks all player states but only returns a subset of them to the replication driver each frame.\nThis is an optimization for large player connection counts, and not a requirement." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraphNode, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::ClassParams = { + &ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); +ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::~ULyraReplicationGraphNode_PlayerStateFrequencyLimiter() {} +// End Class ULyraReplicationGraphNode_PlayerStateFrequencyLimiter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplicationGraph, ULyraReplicationGraph::StaticClass, TEXT("ULyraReplicationGraph"), &Z_Registration_Info_UClass_ULyraReplicationGraph, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraph), 355633528U) }, + { Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass, TEXT("ULyraReplicationGraphNode_AlwaysRelevant_ForConnection"), &Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection), 2444637209U) }, + { Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass, TEXT("ULyraReplicationGraphNode_PlayerStateFrequencyLimiter"), &Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter), 1888665931U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_1025292591(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h new file mode 100644 index 00000000..f10c54f6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraph.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraph_generated_h +#error "LyraReplicationGraph.generated.h already included, missing '#pragma once' in LyraReplicationGraph.h" +#endif +#define LYRAGAME_LyraReplicationGraph_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraph(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraph_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraph, UReplicationGraph, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraph) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraph(ULyraReplicationGraph&&); \ + ULyraReplicationGraph(const ULyraReplicationGraph&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraph); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraph); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraph) \ + NO_API virtual ~ULyraReplicationGraph(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, UReplicationGraphNode_AlwaysRelevant_ForConnection, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection&&); \ + ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(const ULyraReplicationGraphNode_AlwaysRelevant_ForConnection&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection) \ + NO_API virtual ~ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_66_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, UReplicationGraphNode, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter&&); \ + ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(const ULyraReplicationGraphNode_PlayerStateFrequencyLimiter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter) \ + NO_API virtual ~ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_99_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp new file mode 100644 index 00000000..f4254298 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp @@ -0,0 +1,250 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraphSettings.h" +#include "LyraGame/System/LyraReplicationGraphTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraphSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphSettings_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplicationGraphSettings +void ULyraReplicationGraphSettings::StaticRegisterNativesULyraReplicationGraphSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphSettings); +UClass* Z_Construct_UClass_ULyraReplicationGraphSettings_NoRegister() +{ + return ULyraReplicationGraphSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Default settings for the Lyra replication graph\n */" }, +#endif + { "IncludePath", "System/LyraReplicationGraphSettings.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default settings for the Lyra replication graph" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableReplicationGraph_MetaData[] = { + { "Category", "ReplicationGraph" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultReplicationGraphClass_MetaData[] = { + { "Category", "ReplicationGraph" }, + { "MetaClass", "/Script/LyraGame.LyraReplicationGraph" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableFastSharedPath_MetaData[] = { + { "Category", "FastSharedPath" }, + { "ConsoleVariable", "Lyra.RepGraph.EnableFastSharedPath" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetKBytesSecFastSharedPath_MetaData[] = { + { "Category", "FastSharedPath" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much bandwidth to use for FastShared movement updates. This is counted independently of the NetDriver's target bandwidth.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.TargetKBytesSecFastSharedPath" }, + { "ForceUnits", "Kilobytes" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much bandwidth to use for FastShared movement updates. This is counted independently of the NetDriver's target bandwidth." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FastSharedPathCullDistPct_MetaData[] = { + { "Category", "FastSharedPath" }, + { "ConsoleVariable", "Lyra.RepGraph.FastSharedPathCullDistPct" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DestructionInfoMaxDist_MetaData[] = { + { "Category", "DestructionInfo" }, + { "ConsoleVariable", "Lyra.RepGraph.DestructInfo.MaxDist" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialGridCellSize_MetaData[] = { + { "Category", "SpatialGrid" }, + { "ConsoleVariable", "Lyra.RepGraph.CellSize" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialBiasX_MetaData[] = { + { "Category", "SpatialGrid" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Essentially \"Min X\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.SpatialBiasX" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Essentially \"Min X\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialBiasY_MetaData[] = { + { "Category", "SpatialGrid" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Essentially \"Min Y\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.SpatialBiasY" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Essentially \"Min Y\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableSpatialRebuilds_MetaData[] = { + { "Category", "SpatialGrid" }, + { "ConsoleVariable", "Lyra.RepGraph.DisableSpatialRebuilds" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DynamicActorFrequencyBuckets_MetaData[] = { + { "Category", "DynamicSpatialFrequency" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How many buckets to spread dynamic, spatialized actors across.\n// High number = more buckets = smaller effective replication frequency.\n// This happens before individual actors do their own NetUpdateFrequency check.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.DynamicActorFrequencyBuckets" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How many buckets to spread dynamic, spatialized actors across.\nHigh number = more buckets = smaller effective replication frequency.\nThis happens before individual actors do their own NetUpdateFrequency check." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClassSettings_MetaData[] = { + { "Category", "ReplicationGraph" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Array of Custom Settings for Specific Classes \n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Array of Custom Settings for Specific Classes" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bDisableReplicationGraph_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableReplicationGraph; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultReplicationGraphClass; + static void NewProp_bEnableFastSharedPath_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableFastSharedPath; + static const UECodeGen_Private::FIntPropertyParams NewProp_TargetKBytesSecFastSharedPath; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FastSharedPathCullDistPct; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DestructionInfoMaxDist; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialGridCellSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialBiasX; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialBiasY; + static void NewProp_bDisableSpatialRebuilds_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableSpatialRebuilds; + static const UECodeGen_Private::FIntPropertyParams NewProp_DynamicActorFrequencyBuckets; + static const UECodeGen_Private::FStructPropertyParams NewProp_ClassSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ClassSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bDisableReplicationGraph = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph = { "bDisableReplicationGraph", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableReplicationGraph_MetaData), NewProp_bDisableReplicationGraph_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DefaultReplicationGraphClass = { "DefaultReplicationGraphClass", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DefaultReplicationGraphClass), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultReplicationGraphClass_MetaData), NewProp_DefaultReplicationGraphClass_MetaData) }; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bEnableFastSharedPath = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath = { "bEnableFastSharedPath", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableFastSharedPath_MetaData), NewProp_bEnableFastSharedPath_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_TargetKBytesSecFastSharedPath = { "TargetKBytesSecFastSharedPath", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, TargetKBytesSecFastSharedPath), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetKBytesSecFastSharedPath_MetaData), NewProp_TargetKBytesSecFastSharedPath_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_FastSharedPathCullDistPct = { "FastSharedPathCullDistPct", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, FastSharedPathCullDistPct), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FastSharedPathCullDistPct_MetaData), NewProp_FastSharedPathCullDistPct_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DestructionInfoMaxDist = { "DestructionInfoMaxDist", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DestructionInfoMaxDist), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DestructionInfoMaxDist_MetaData), NewProp_DestructionInfoMaxDist_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialGridCellSize = { "SpatialGridCellSize", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialGridCellSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialGridCellSize_MetaData), NewProp_SpatialGridCellSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasX = { "SpatialBiasX", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialBiasX), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialBiasX_MetaData), NewProp_SpatialBiasX_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasY = { "SpatialBiasY", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialBiasY), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialBiasY_MetaData), NewProp_SpatialBiasY_MetaData) }; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bDisableSpatialRebuilds = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds = { "bDisableSpatialRebuilds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableSpatialRebuilds_MetaData), NewProp_bDisableSpatialRebuilds_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DynamicActorFrequencyBuckets = { "DynamicActorFrequencyBuckets", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DynamicActorFrequencyBuckets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DynamicActorFrequencyBuckets_MetaData), NewProp_DynamicActorFrequencyBuckets_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings_Inner = { "ClassSettings", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FRepGraphActorClassSettings, METADATA_PARAMS(0, nullptr) }; // 3119884048 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings = { "ClassSettings", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, ClassSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClassSettings_MetaData), NewProp_ClassSettings_MetaData) }; // 3119884048 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DefaultReplicationGraphClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_TargetKBytesSecFastSharedPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_FastSharedPathCullDistPct, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DestructionInfoMaxDist, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialGridCellSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DynamicActorFrequencyBuckets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::ClassParams = { + &ULyraReplicationGraphSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphSettings() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphSettings); +ULyraReplicationGraphSettings::~ULyraReplicationGraphSettings() {} +// End Class ULyraReplicationGraphSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplicationGraphSettings, ULyraReplicationGraphSettings::StaticClass, TEXT("ULyraReplicationGraphSettings"), &Z_Registration_Info_UClass_ULyraReplicationGraphSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphSettings), 2976429712U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_2052245859(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h new file mode 100644 index 00000000..28ecec01 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraphSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraphSettings_generated_h +#error "LyraReplicationGraphSettings.generated.h already included, missing '#pragma once' in LyraReplicationGraphSettings.h" +#endif +#define LYRAGAME_LyraReplicationGraphSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphSettings(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphSettings(ULyraReplicationGraphSettings&&); \ + ULyraReplicationGraphSettings(const ULyraReplicationGraphSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraReplicationGraphSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphSettings) \ + LYRAGAME_API virtual ~ULyraReplicationGraphSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp new file mode 100644 index 00000000..0f634cef --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp @@ -0,0 +1,252 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraphTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraphTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EClassRepNodeMapping(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EClassRepNodeMapping +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EClassRepNodeMapping; +static UEnum* EClassRepNodeMapping_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton) + { + Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EClassRepNodeMapping")); + } + return Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EClassRepNodeMapping_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// This is the main enum we use to route actors to the right replication node. Each class maps to one enum.\n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, + { "NotRouted.Name", "EClassRepNodeMapping::NotRouted" }, + { "RelevantAllConnections.Comment", "// Doesn't map to any node. Used for special case actors that handled by special case nodes (ULyraReplicationGraphNode_PlayerStateFrequencyLimiter)\n" }, + { "RelevantAllConnections.Name", "EClassRepNodeMapping::RelevantAllConnections" }, + { "RelevantAllConnections.ToolTip", "Doesn't map to any node. Used for special case actors that handled by special case nodes (ULyraReplicationGraphNode_PlayerStateFrequencyLimiter)" }, + { "Spatialize_Dormancy.Comment", "// Routes to GridNode: these actors mode frequently and are updated once per frame.\n" }, + { "Spatialize_Dormancy.Name", "EClassRepNodeMapping::Spatialize_Dormancy" }, + { "Spatialize_Dormancy.ToolTip", "Routes to GridNode: these actors mode frequently and are updated once per frame." }, + { "Spatialize_Dynamic.Comment", "// Routes to GridNode: these actors don't move and don't need to be updated every frame.\n" }, + { "Spatialize_Dynamic.Name", "EClassRepNodeMapping::Spatialize_Dynamic" }, + { "Spatialize_Dynamic.ToolTip", "Routes to GridNode: these actors don't move and don't need to be updated every frame." }, + { "Spatialize_Static.Comment", "// ONLY SPATIALIZED Enums below here! See ULyraReplicationGraph::IsSpatialized\n" }, + { "Spatialize_Static.Name", "EClassRepNodeMapping::Spatialize_Static" }, + { "Spatialize_Static.ToolTip", "ONLY SPATIALIZED Enums below here! See ULyraReplicationGraph::IsSpatialized" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is the main enum we use to route actors to the right replication node. Each class maps to one enum." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EClassRepNodeMapping::NotRouted", (int64)EClassRepNodeMapping::NotRouted }, + { "EClassRepNodeMapping::RelevantAllConnections", (int64)EClassRepNodeMapping::RelevantAllConnections }, + { "EClassRepNodeMapping::Spatialize_Static", (int64)EClassRepNodeMapping::Spatialize_Static }, + { "EClassRepNodeMapping::Spatialize_Dynamic", (int64)EClassRepNodeMapping::Spatialize_Dynamic }, + { "EClassRepNodeMapping::Spatialize_Dormancy", (int64)EClassRepNodeMapping::Spatialize_Dormancy }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EClassRepNodeMapping", + "EClassRepNodeMapping", + Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EClassRepNodeMapping() +{ + if (!Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton, Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton; +} +// End Enum EClassRepNodeMapping + +// Begin ScriptStruct FRepGraphActorClassSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings; +class UScriptStruct* FRepGraphActorClassSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FRepGraphActorClassSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("RepGraphActorClassSettings")); + } + return Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FRepGraphActorClassSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Actor Class Settings that can be assigned directly to a Class. Can also be mapped to a FRepGraphActorTemplateSettings \n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Actor Class Settings that can be assigned directly to a Class. Can also be mapped to a FRepGraphActorTemplateSettings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorClass_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Name of the Class the settings will be applied to\n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the Class the settings will be applied to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddClassRepInfoToMap_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If we should add this Class' RepInfo to the ClassRepNodePolicies Map\n" }, +#endif + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If we should add this Class' RepInfo to the ClassRepNodePolicies Map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClassNodeMapping_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// What ClassNodeMapping we should use when adding Class to ClassRepNodePolicies Map\n" }, +#endif + { "EditCondition", "bAddClassRepInfoToMap" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What ClassNodeMapping we should use when adding Class to ClassRepNodePolicies Map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we add this to the RPC_Multicast_OpenChannelForClass map\n" }, +#endif + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we add this to the RPC_Multicast_OpenChannelForClass map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRPC_Multicast_OpenChannelForClass_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If this is added to RPC_Multicast_OpenChannelForClass map then should we actually open a channel or not\n" }, +#endif + { "EditCondition", "bAddToRPC_Multicast_OpenChannelForClassMap" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this is added to RPC_Multicast_OpenChannelForClass map then should we actually open a channel or not" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ActorClass; + static void NewProp_bAddClassRepInfoToMap_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddClassRepInfoToMap; + static const UECodeGen_Private::FUInt32PropertyParams NewProp_ClassNodeMapping_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ClassNodeMapping; + static void NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddToRPC_Multicast_OpenChannelForClassMap; + static void NewProp_bRPC_Multicast_OpenChannelForClass_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRPC_Multicast_OpenChannelForClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ActorClass = { "ActorClass", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRepGraphActorClassSettings, ActorClass), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorClass_MetaData), NewProp_ActorClass_MetaData) }; +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bAddClassRepInfoToMap = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap = { "bAddClassRepInfoToMap", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddClassRepInfoToMap_MetaData), NewProp_bAddClassRepInfoToMap_MetaData) }; +const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping = { "ClassNodeMapping", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRepGraphActorClassSettings, ClassNodeMapping), Z_Construct_UEnum_LyraGame_EClassRepNodeMapping, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClassNodeMapping_MetaData), NewProp_ClassNodeMapping_MetaData) }; // 4078962432 +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bAddToRPC_Multicast_OpenChannelForClassMap = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap = { "bAddToRPC_Multicast_OpenChannelForClassMap", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData), NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData) }; +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bRPC_Multicast_OpenChannelForClass = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass = { "bRPC_Multicast_OpenChannelForClass", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRPC_Multicast_OpenChannelForClass_MetaData), NewProp_bRPC_Multicast_OpenChannelForClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ActorClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "RepGraphActorClassSettings", + Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers), + sizeof(FRepGraphActorClassSettings), + alignof(FRepGraphActorClassSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings() +{ + if (!Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton, Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton; +} +// End ScriptStruct FRepGraphActorClassSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EClassRepNodeMapping_StaticEnum, TEXT("EClassRepNodeMapping"), &Z_Registration_Info_UEnum_EClassRepNodeMapping, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4078962432U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FRepGraphActorClassSettings::StaticStruct, Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewStructOps, TEXT("RepGraphActorClassSettings"), &Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FRepGraphActorClassSettings), 3119884048U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_2473974175(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h new file mode 100644 index 00000000..c1c8172e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h @@ -0,0 +1,39 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraphTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraphTypes_generated_h +#error "LyraReplicationGraphTypes.generated.h already included, missing '#pragma once' in LyraReplicationGraphTypes.h" +#endif +#define LYRAGAME_LyraReplicationGraphTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_26_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h + + +#define FOREACH_ENUM_ECLASSREPNODEMAPPING(op) \ + op(EClassRepNodeMapping::NotRouted) \ + op(EClassRepNodeMapping::RelevantAllConnections) \ + op(EClassRepNodeMapping::Spatialize_Static) \ + op(EClassRepNodeMapping::Spatialize_Dynamic) \ + op(EClassRepNodeMapping::Spatialize_Dormancy) + +enum class EClassRepNodeMapping : uint32; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp new file mode 100644 index 00000000..5244dc16 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp @@ -0,0 +1,343 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/LyraReticleWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReticleWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReticleWidgetBase Function ComputeMaxScreenspaceSpreadRadius +struct Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics +{ + struct LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current weapon's maximum spread radius in screenspace units (pixels) */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current weapon's maximum spread radius in screenspace units (pixels)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "ComputeMaxScreenspaceSpreadRadius", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execComputeMaxScreenspaceSpreadRadius) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->ComputeMaxScreenspaceSpreadRadius(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function ComputeMaxScreenspaceSpreadRadius + +// Begin Class ULyraReticleWidgetBase Function ComputeSpreadAngle +struct Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics +{ + struct LyraReticleWidgetBase_eventComputeSpreadAngle_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current weapon's diametrical spread angle, in degrees */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current weapon's diametrical spread angle, in degrees" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventComputeSpreadAngle_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "ComputeSpreadAngle", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::LyraReticleWidgetBase_eventComputeSpreadAngle_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::LyraReticleWidgetBase_eventComputeSpreadAngle_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execComputeSpreadAngle) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->ComputeSpreadAngle(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function ComputeSpreadAngle + +// Begin Class ULyraReticleWidgetBase Function HasFirstShotAccuracy +struct Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics +{ + struct LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Returns true if the current weapon is at 'first shot accuracy'\n\x09 * (the weapon allows it and it is at min spread)\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the current weapon is at 'first shot accuracy'\n(the weapon allows it and it is at min spread)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms), &Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "HasFirstShotAccuracy", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execHasFirstShotAccuracy) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasFirstShotAccuracy(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function HasFirstShotAccuracy + +// Begin Class ULyraReticleWidgetBase Function InitializeFromWeapon +struct Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics +{ + struct LyraReticleWidgetBase_eventInitializeFromWeapon_Parms + { + ULyraWeaponInstance* InWeapon; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWeapon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::NewProp_InWeapon = { "InWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventInitializeFromWeapon_Parms, InWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::NewProp_InWeapon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "InitializeFromWeapon", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::LyraReticleWidgetBase_eventInitializeFromWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::LyraReticleWidgetBase_eventInitializeFromWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execInitializeFromWeapon) +{ + P_GET_OBJECT(ULyraWeaponInstance,Z_Param_InWeapon); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InitializeFromWeapon(Z_Param_InWeapon); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function InitializeFromWeapon + +// Begin Class ULyraReticleWidgetBase Function OnWeaponInitialized +static const FName NAME_ULyraReticleWidgetBase_OnWeaponInitialized = FName(TEXT("OnWeaponInitialized")); +void ULyraReticleWidgetBase::OnWeaponInitialized() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraReticleWidgetBase_OnWeaponInitialized); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "OnWeaponInitialized", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraReticleWidgetBase Function OnWeaponInitialized + +// Begin Class ULyraReticleWidgetBase +void ULyraReticleWidgetBase::StaticRegisterNativesULyraReticleWidgetBase() +{ + UClass* Class = ULyraReticleWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ComputeMaxScreenspaceSpreadRadius", &ULyraReticleWidgetBase::execComputeMaxScreenspaceSpreadRadius }, + { "ComputeSpreadAngle", &ULyraReticleWidgetBase::execComputeSpreadAngle }, + { "HasFirstShotAccuracy", &ULyraReticleWidgetBase::execHasFirstShotAccuracy }, + { "InitializeFromWeapon", &ULyraReticleWidgetBase::execInitializeFromWeapon }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReticleWidgetBase); +UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister() +{ + return ULyraReticleWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraReticleWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponInstance_MetaData[] = { + { "Category", "LyraReticleWidgetBase" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryInstance_MetaData[] = { + { "Category", "LyraReticleWidgetBase" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponInstance; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius, "ComputeMaxScreenspaceSpreadRadius" }, // 3229409299 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle, "ComputeSpreadAngle" }, // 2632606799 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy, "HasFirstShotAccuracy" }, // 3872100874 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon, "InitializeFromWeapon" }, // 2278522829 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized, "OnWeaponInitialized" }, // 3399722346 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_WeaponInstance = { "WeaponInstance", nullptr, (EPropertyFlags)0x0124080000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReticleWidgetBase, WeaponInstance), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponInstance_MetaData), NewProp_WeaponInstance_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_InventoryInstance = { "InventoryInstance", nullptr, (EPropertyFlags)0x0124080000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReticleWidgetBase, InventoryInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryInstance_MetaData), NewProp_InventoryInstance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_WeaponInstance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_InventoryInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReticleWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::ClassParams = { + &ULyraReticleWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReticleWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReticleWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraReticleWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReticleWidgetBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReticleWidgetBase); +ULyraReticleWidgetBase::~ULyraReticleWidgetBase() {} +// End Class ULyraReticleWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReticleWidgetBase, ULyraReticleWidgetBase::StaticClass, TEXT("ULyraReticleWidgetBase"), &Z_Registration_Info_UClass_ULyraReticleWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReticleWidgetBase), 3998868750U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_4089807525(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h new file mode 100644 index 00000000..6ed76fc8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/LyraReticleWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraWeaponInstance; +#ifdef LYRAGAME_LyraReticleWidgetBase_generated_h +#error "LyraReticleWidgetBase.generated.h already included, missing '#pragma once' in LyraReticleWidgetBase.h" +#endif +#define LYRAGAME_LyraReticleWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHasFirstShotAccuracy); \ + DECLARE_FUNCTION(execComputeMaxScreenspaceSpreadRadius); \ + DECLARE_FUNCTION(execComputeSpreadAngle); \ + DECLARE_FUNCTION(execInitializeFromWeapon); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReticleWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraReticleWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraReticleWidgetBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReticleWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReticleWidgetBase(ULyraReticleWidgetBase&&); \ + ULyraReticleWidgetBase(const ULyraReticleWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReticleWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReticleWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReticleWidgetBase) \ + NO_API virtual ~ULyraReticleWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp new file mode 100644 index 00000000..be6fc4e0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraRuntimeOptions.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraRuntimeOptions() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_URuntimeOptionsBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRuntimeOptions(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRuntimeOptions_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraRuntimeOptions Function GetRuntimeOptions +struct Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics +{ + struct LyraRuntimeOptions_eventGetRuntimeOptions_Parms + { + ULyraRuntimeOptions* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Options" }, + { "ModuleRelativePath", "Hotfix/LyraRuntimeOptions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraRuntimeOptions_eventGetRuntimeOptions_Parms, ReturnValue), Z_Construct_UClass_ULyraRuntimeOptions_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraRuntimeOptions, nullptr, "GetRuntimeOptions", nullptr, nullptr, Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::LyraRuntimeOptions_eventGetRuntimeOptions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::LyraRuntimeOptions_eventGetRuntimeOptions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraRuntimeOptions::execGetRuntimeOptions) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraRuntimeOptions**)Z_Param__Result=ULyraRuntimeOptions::GetRuntimeOptions(); + P_NATIVE_END; +} +// End Class ULyraRuntimeOptions Function GetRuntimeOptions + +// Begin Class ULyraRuntimeOptions +void ULyraRuntimeOptions::StaticRegisterNativesULyraRuntimeOptions() +{ + UClass* Class = ULyraRuntimeOptions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetRuntimeOptions", &ULyraRuntimeOptions::execGetRuntimeOptions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraRuntimeOptions); +UClass* Z_Construct_UClass_ULyraRuntimeOptions_NoRegister() +{ + return ULyraRuntimeOptions::StaticClass(); +} +struct Z_Construct_UClass_ULyraRuntimeOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraRuntimeOptions: Supports checking at runtime whether features are enabled/disabled, changing\n * configuration parameters, console cheats, startup commands.\n *\n * Add a new Property that *defaults* (either naturally or in the constructor) to the desired\n * normal state. (e.g. bDisableSomething). If you ever need to suddenly disable that thing in the\n * live game, you'll be able to.\n *\n * For testing you can run with -ro.bDisableSomething=true to override the defaults. This is only\n * available in non-shipping builds.\n *\n * Variables are registered with the console under the 'ro' namespace. E.g. ro.bDisableSomething\n */" }, +#endif + { "IncludePath", "Hotfix/LyraRuntimeOptions.h" }, + { "ModuleRelativePath", "Hotfix/LyraRuntimeOptions.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraRuntimeOptions: Supports checking at runtime whether features are enabled/disabled, changing\nconfiguration parameters, console cheats, startup commands.\n\nAdd a new Property that *defaults* (either naturally or in the constructor) to the desired\nnormal state. (e.g. bDisableSomething). If you ever need to suddenly disable that thing in the\nlive game, you'll be able to.\n\nFor testing you can run with -ro.bDisableSomething=true to override the defaults. This is only\navailable in non-shipping builds.\n\nVariables are registered with the console under the 'ro' namespace. E.g. ro.bDisableSomething" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions, "GetRuntimeOptions" }, // 3649343604 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraRuntimeOptions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_URuntimeOptionsBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRuntimeOptions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraRuntimeOptions_Statics::ClassParams = { + &ULyraRuntimeOptions::StaticClass, + "RuntimeOptions", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRuntimeOptions_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraRuntimeOptions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraRuntimeOptions() +{ + if (!Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton, Z_Construct_UClass_ULyraRuntimeOptions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraRuntimeOptions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraRuntimeOptions); +ULyraRuntimeOptions::~ULyraRuntimeOptions() {} +// End Class ULyraRuntimeOptions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraRuntimeOptions, ULyraRuntimeOptions::StaticClass, TEXT("ULyraRuntimeOptions"), &Z_Registration_Info_UClass_ULyraRuntimeOptions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraRuntimeOptions), 1122341731U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_892027315(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h new file mode 100644 index 00000000..4bb1aa38 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraRuntimeOptions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraRuntimeOptions; +#ifdef LYRAGAME_LyraRuntimeOptions_generated_h +#error "LyraRuntimeOptions.generated.h already included, missing '#pragma once' in LyraRuntimeOptions.h" +#endif +#define LYRAGAME_LyraRuntimeOptions_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetRuntimeOptions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraRuntimeOptions(); \ + friend struct Z_Construct_UClass_ULyraRuntimeOptions_Statics; \ +public: \ + DECLARE_CLASS(ULyraRuntimeOptions, URuntimeOptionsBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraRuntimeOptions) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraRuntimeOptions(ULyraRuntimeOptions&&); \ + ULyraRuntimeOptions(const ULyraRuntimeOptions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraRuntimeOptions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraRuntimeOptions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraRuntimeOptions) \ + NO_API virtual ~ULyraRuntimeOptions(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp new file mode 100644 index 00000000..92dcadba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp @@ -0,0 +1,224 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Screens/LyraSafeZoneEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSafeZoneEditor() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSafeZoneEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSafeZoneEditor_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetSwitcher_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSafeZoneEditor Function HandleBackClicked +struct Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSafeZoneEditor, nullptr, "HandleBackClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSafeZoneEditor::execHandleBackClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleBackClicked(); + P_NATIVE_END; +} +// End Class ULyraSafeZoneEditor Function HandleBackClicked + +// Begin Class ULyraSafeZoneEditor Function HandleDoneClicked +struct Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSafeZoneEditor, nullptr, "HandleDoneClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSafeZoneEditor::execHandleDoneClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleDoneClicked(); + P_NATIVE_END; +} +// End Class ULyraSafeZoneEditor Function HandleDoneClicked + +// Begin Class ULyraSafeZoneEditor +void ULyraSafeZoneEditor::StaticRegisterNativesULyraSafeZoneEditor() +{ + UClass* Class = ULyraSafeZoneEditor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleBackClicked", &ULyraSafeZoneEditor::execHandleBackClicked }, + { "HandleDoneClicked", &ULyraSafeZoneEditor::execHandleDoneClicked }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSafeZoneEditor); +UClass* Z_Construct_UClass_ULyraSafeZoneEditor_NoRegister() +{ + return ULyraSafeZoneEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraSafeZoneEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCancel_MetaData[] = { + { "Category", "Restrictions" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Switcher_SafeZoneMessage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Default_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Back_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Done_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanCancel_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCancel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Switcher_SafeZoneMessage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Default; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Back; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Done; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked, "HandleBackClicked" }, // 2322836823 + { &Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked, "HandleDoneClicked" }, // 3861433268 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel_SetBit(void* Obj) +{ + ((ULyraSafeZoneEditor*)Obj)->bCanCancel = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel = { "bCanCancel", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSafeZoneEditor), &Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCancel_MetaData), NewProp_bCanCancel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Switcher_SafeZoneMessage = { "Switcher_SafeZoneMessage", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Switcher_SafeZoneMessage), Z_Construct_UClass_UWidgetSwitcher_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Switcher_SafeZoneMessage_MetaData), NewProp_Switcher_SafeZoneMessage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_RichText_Default = { "RichText_Default", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, RichText_Default), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Default_MetaData), NewProp_RichText_Default_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Back = { "Button_Back", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Button_Back), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Back_MetaData), NewProp_Button_Back_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Done = { "Button_Done", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Button_Done), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Done_MetaData), NewProp_Button_Done_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Switcher_SafeZoneMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_RichText_Default, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Back, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Done, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSafeZoneEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameSettingActionInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraSafeZoneEditor, IGameSettingActionInterface), false }, // 3882456604 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::ClassParams = { + &ULyraSafeZoneEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSafeZoneEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSafeZoneEditor() +{ + if (!Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton, Z_Construct_UClass_ULyraSafeZoneEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSafeZoneEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSafeZoneEditor); +ULyraSafeZoneEditor::~ULyraSafeZoneEditor() {} +// End Class ULyraSafeZoneEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSafeZoneEditor, ULyraSafeZoneEditor::StaticClass, TEXT("ULyraSafeZoneEditor"), &Z_Registration_Info_UClass_ULyraSafeZoneEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSafeZoneEditor), 2393110139U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_1572671753(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h new file mode 100644 index 00000000..85c74c96 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Screens/LyraSafeZoneEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSafeZoneEditor_generated_h +#error "LyraSafeZoneEditor.generated.h already included, missing '#pragma once' in LyraSafeZoneEditor.h" +#endif +#define LYRAGAME_LyraSafeZoneEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleDoneClicked); \ + DECLARE_FUNCTION(execHandleBackClicked); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSafeZoneEditor(); \ + friend struct Z_Construct_UClass_ULyraSafeZoneEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraSafeZoneEditor, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSafeZoneEditor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSafeZoneEditor(ULyraSafeZoneEditor&&); \ + ULyraSafeZoneEditor(const ULyraSafeZoneEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSafeZoneEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSafeZoneEditor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSafeZoneEditor) \ + NO_API virtual ~ULyraSafeZoneEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp new file mode 100644 index 00000000..b9c6819c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp @@ -0,0 +1,164 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingAction_SafeZoneEditor() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueScalarDynamic_SafeZoneValue +void ULyraSettingValueScalarDynamic_SafeZoneValue::StaticRegisterNativesULyraSettingValueScalarDynamic_SafeZoneValue() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueScalarDynamic_SafeZoneValue); +UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister() +{ + return ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueScalarDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::ClassParams = { + &ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton, Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass(); +} +ULyraSettingValueScalarDynamic_SafeZoneValue::ULyraSettingValueScalarDynamic_SafeZoneValue() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueScalarDynamic_SafeZoneValue); +ULyraSettingValueScalarDynamic_SafeZoneValue::~ULyraSettingValueScalarDynamic_SafeZoneValue() {} +// End Class ULyraSettingValueScalarDynamic_SafeZoneValue + +// Begin Class ULyraSettingAction_SafeZoneEditor +void ULyraSettingAction_SafeZoneEditor::StaticRegisterNativesULyraSettingAction_SafeZoneEditor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingAction_SafeZoneEditor); +UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_NoRegister() +{ + return ULyraSettingAction_SafeZoneEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SafeZoneValueSetting_MetaData[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SafeZoneValueSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::NewProp_SafeZoneValueSetting = { "SafeZoneValueSetting", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingAction_SafeZoneEditor, SafeZoneValueSetting), Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SafeZoneValueSetting_MetaData), NewProp_SafeZoneValueSetting_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::NewProp_SafeZoneValueSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::ClassParams = { + &ULyraSettingAction_SafeZoneEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor() +{ + if (!Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton, Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingAction_SafeZoneEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingAction_SafeZoneEditor); +ULyraSettingAction_SafeZoneEditor::~ULyraSettingAction_SafeZoneEditor() {} +// End Class ULyraSettingAction_SafeZoneEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue, ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass, TEXT("ULyraSettingValueScalarDynamic_SafeZoneValue"), &Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueScalarDynamic_SafeZoneValue), 1379380547U) }, + { Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor, ULyraSettingAction_SafeZoneEditor::StaticClass, TEXT("ULyraSettingAction_SafeZoneEditor"), &Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingAction_SafeZoneEditor), 2451770214U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_1284032265(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h new file mode 100644 index 00000000..b8cd3e76 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingAction_SafeZoneEditor_generated_h +#error "LyraSettingAction_SafeZoneEditor.generated.h already included, missing '#pragma once' in LyraSettingAction_SafeZoneEditor.h" +#endif +#define LYRAGAME_LyraSettingAction_SafeZoneEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueScalarDynamic_SafeZoneValue(); \ + friend struct Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueScalarDynamic_SafeZoneValue, UGameSettingValueScalarDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueScalarDynamic_SafeZoneValue) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingValueScalarDynamic_SafeZoneValue(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueScalarDynamic_SafeZoneValue(ULyraSettingValueScalarDynamic_SafeZoneValue&&); \ + ULyraSettingValueScalarDynamic_SafeZoneValue(const ULyraSettingValueScalarDynamic_SafeZoneValue&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueScalarDynamic_SafeZoneValue); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueScalarDynamic_SafeZoneValue); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueScalarDynamic_SafeZoneValue) \ + NO_API virtual ~ULyraSettingValueScalarDynamic_SafeZoneValue(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingAction_SafeZoneEditor(); \ + friend struct Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingAction_SafeZoneEditor, UGameSettingAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingAction_SafeZoneEditor) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingAction_SafeZoneEditor(ULyraSettingAction_SafeZoneEditor&&); \ + ULyraSettingAction_SafeZoneEditor(const ULyraSettingAction_SafeZoneEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingAction_SafeZoneEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingAction_SafeZoneEditor); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingAction_SafeZoneEditor) \ + NO_API virtual ~ULyraSettingAction_SafeZoneEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp new file mode 100644 index 00000000..ed667303 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingKeyboardInput.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingKeyboardInput() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingKeyboardInput +void ULyraSettingKeyboardInput::StaticRegisterNativesULyraSettingKeyboardInput() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingKeyboardInput); +UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister() +{ + return ULyraSettingKeyboardInput::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingKeyboardInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// ULyraSettingKeyboardInput\n//--------------------------------------\n" }, +#endif + { "IncludePath", "Settings/CustomSettings/LyraSettingKeyboardInput.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingKeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingKeyboardInput" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::ClassParams = { + &ULyraSettingKeyboardInput::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingKeyboardInput() +{ + if (!Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton, Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingKeyboardInput::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingKeyboardInput); +ULyraSettingKeyboardInput::~ULyraSettingKeyboardInput() {} +// End Class ULyraSettingKeyboardInput + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingKeyboardInput, ULyraSettingKeyboardInput::StaticClass, TEXT("ULyraSettingKeyboardInput"), &Z_Registration_Info_UClass_ULyraSettingKeyboardInput, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingKeyboardInput), 84127215U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_3552278565(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h new file mode 100644 index 00000000..450a2a65 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingKeyboardInput.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingKeyboardInput_generated_h +#error "LyraSettingKeyboardInput.generated.h already included, missing '#pragma once' in LyraSettingKeyboardInput.h" +#endif +#define LYRAGAME_LyraSettingKeyboardInput_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingKeyboardInput(); \ + friend struct Z_Construct_UClass_ULyraSettingKeyboardInput_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingKeyboardInput, UGameSettingValue, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingKeyboardInput) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingKeyboardInput(ULyraSettingKeyboardInput&&); \ + ULyraSettingKeyboardInput(const ULyraSettingKeyboardInput&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingKeyboardInput); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingKeyboardInput); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingKeyboardInput) \ + NO_API virtual ~ULyraSettingKeyboardInput(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp new file mode 100644 index 00000000..99bd70f4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp @@ -0,0 +1,132 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraSettingScreen.h" +#include "Runtime/Engine/Classes/Engine/DataTable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingScreen() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FDataTableRowHandle(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingScreen_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingScreen +void ULyraSettingScreen::StaticRegisterNativesULyraSettingScreen() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingScreen); +UClass* Z_Construct_UClass_ULyraSettingScreen_NoRegister() +{ + return ULyraSettingScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/LyraSettingScreen.h" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TopSettingsTabs_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "Input" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + { "OptionalWidget", "TRUE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplyInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelChangesInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TopSettingsTabs; + static const UECodeGen_Private::FStructPropertyParams NewProp_BackInputActionData; + static const UECodeGen_Private::FStructPropertyParams NewProp_ApplyInputActionData; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelChangesInputActionData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_TopSettingsTabs = { "TopSettingsTabs", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, TopSettingsTabs), Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TopSettingsTabs_MetaData), NewProp_TopSettingsTabs_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_BackInputActionData = { "BackInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, BackInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackInputActionData_MetaData), NewProp_BackInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_ApplyInputActionData = { "ApplyInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, ApplyInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplyInputActionData_MetaData), NewProp_ApplyInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_CancelChangesInputActionData = { "CancelChangesInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, CancelChangesInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelChangesInputActionData_MetaData), NewProp_CancelChangesInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_TopSettingsTabs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_BackInputActionData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_ApplyInputActionData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_CancelChangesInputActionData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingScreen, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingScreen_Statics::ClassParams = { + &ULyraSettingScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingScreen() +{ + if (!Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton, Z_Construct_UClass_ULyraSettingScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingScreen::StaticClass(); +} +ULyraSettingScreen::ULyraSettingScreen(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingScreen); +ULyraSettingScreen::~ULyraSettingScreen() {} +// End Class ULyraSettingScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingScreen, ULyraSettingScreen::StaticClass, TEXT("ULyraSettingScreen"), &Z_Registration_Info_UClass_ULyraSettingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingScreen), 1265158031U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_2311230665(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.generated.h new file mode 100644 index 00000000..1a0abaa8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingScreen.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraSettingScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingScreen_generated_h +#error "LyraSettingScreen.generated.h already included, missing '#pragma once' in LyraSettingScreen.h" +#endif +#define LYRAGAME_LyraSettingScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingScreen(); \ + friend struct Z_Construct_UClass_ULyraSettingScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingScreen, UGameSettingScreen, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingScreen(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingScreen(ULyraSettingScreen&&); \ + ULyraSettingScreen(const ULyraSettingScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingScreen) \ + NO_API virtual ~ULyraSettingScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp new file mode 100644 index 00000000..052dc11a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp @@ -0,0 +1,294 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#include "Runtime/AudioMixer/Public/AudioMixerBlueprintLibrary.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscreteDynamic_AudioOutputDevice() {} + +// Begin Cross Module References +AUDIOMIXER_API UEnum* Z_Construct_UEnum_AudioMixer_EAudioDeviceChangedRole(); +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FAudioOutputDeviceInfo(); +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FSwapAudioOutputResult(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DefaultDeviceChanged +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms + { + EAudioDeviceChangedRole InRole; + FString DeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InRole_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InRole; + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole = { "InRole", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms, InRole), Z_Construct_UEnum_AudioMixer_EAudioDeviceChangedRole, METADATA_PARAMS(0, nullptr) }; // 2393683699 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_DeviceId = { "DeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms, DeviceId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_DeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "DefaultDeviceChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDefaultDeviceChanged) +{ + P_GET_ENUM(EAudioDeviceChangedRole,Z_Param_InRole); + P_GET_PROPERTY(FStrProperty,Z_Param_DeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DefaultDeviceChanged(EAudioDeviceChangedRole(Z_Param_InRole),Z_Param_DeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DefaultDeviceChanged + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DeviceAddedOrRemoved +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms + { + FString DeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::NewProp_DeviceId = { "DeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms, DeviceId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::NewProp_DeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "DeviceAddedOrRemoved", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDeviceAddedOrRemoved) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_DeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DeviceAddedOrRemoved(Z_Param_DeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DeviceAddedOrRemoved + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnAudioOutputDevicesObtained +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms + { + TArray AvailableDevices; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AvailableDevices_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AvailableDevices_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AvailableDevices; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices_Inner = { "AvailableDevices", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FAudioOutputDeviceInfo, METADATA_PARAMS(0, nullptr) }; // 3924648275 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices = { "AvailableDevices", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms, AvailableDevices), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AvailableDevices_MetaData), NewProp_AvailableDevices_MetaData) }; // 3924648275 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "OnAudioOutputDevicesObtained", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnAudioOutputDevicesObtained) +{ + P_GET_TARRAY_REF(FAudioOutputDeviceInfo,Z_Param_Out_AvailableDevices); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnAudioOutputDevicesObtained(Z_Param_Out_AvailableDevices); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnAudioOutputDevicesObtained + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnCompletedDeviceSwap +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms + { + FSwapAudioOutputResult SwapResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SwapResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SwapResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::NewProp_SwapResult = { "SwapResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms, SwapResult), Z_Construct_UScriptStruct_FSwapAudioOutputResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SwapResult_MetaData), NewProp_SwapResult_MetaData) }; // 556524030 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::NewProp_SwapResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "OnCompletedDeviceSwap", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnCompletedDeviceSwap) +{ + P_GET_STRUCT_REF(FSwapAudioOutputResult,Z_Param_Out_SwapResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCompletedDeviceSwap(Z_Param_Out_SwapResult); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnCompletedDeviceSwap + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice +void ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticRegisterNativesULyraSettingValueDiscreteDynamic_AudioOutputDevice() +{ + UClass* Class = ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "DefaultDeviceChanged", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDefaultDeviceChanged }, + { "DeviceAddedOrRemoved", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDeviceAddedOrRemoved }, + { "OnAudioOutputDevicesObtained", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnAudioOutputDevicesObtained }, + { "OnCompletedDeviceSwap", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnCompletedDeviceSwap }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); +UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_NoRegister() +{ + return ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged, "DefaultDeviceChanged" }, // 1187932135 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved, "DeviceAddedOrRemoved" }, // 1809746616 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained, "OnAudioOutputDevicesObtained" }, // 3060293154 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap, "OnCompletedDeviceSwap" }, // 357884786 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::ClassParams = { + &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); +} +ULyraSettingValueDiscreteDynamic_AudioOutputDevice::ULyraSettingValueDiscreteDynamic_AudioOutputDevice() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass, TEXT("ULyraSettingValueDiscreteDynamic_AudioOutputDevice"), &Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscreteDynamic_AudioOutputDevice), 368472306U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_2486483873(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h new file mode 100644 index 00000000..100f4321 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class EAudioDeviceChangedRole : uint8; +struct FAudioOutputDeviceInfo; +struct FSwapAudioOutputResult; +#ifdef LYRAGAME_LyraSettingValueDiscreteDynamic_AudioOutputDevice_generated_h +#error "LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h already included, missing '#pragma once' in LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#endif +#define LYRAGAME_LyraSettingValueDiscreteDynamic_AudioOutputDevice_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execDefaultDeviceChanged); \ + DECLARE_FUNCTION(execDeviceAddedOrRemoved); \ + DECLARE_FUNCTION(execOnCompletedDeviceSwap); \ + DECLARE_FUNCTION(execOnAudioOutputDevicesObtained); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscreteDynamic_AudioOutputDevice(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscreteDynamic_AudioOutputDevice, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscreteDynamic_AudioOutputDevice) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingValueDiscreteDynamic_AudioOutputDevice(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscreteDynamic_AudioOutputDevice(ULyraSettingValueDiscreteDynamic_AudioOutputDevice&&); \ + ULyraSettingValueDiscreteDynamic_AudioOutputDevice(const ULyraSettingValueDiscreteDynamic_AudioOutputDevice&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscreteDynamic_AudioOutputDevice); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscreteDynamic_AudioOutputDevice) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp new file mode 100644 index 00000000..7cfa4007 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_Language() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_Language +void ULyraSettingValueDiscrete_Language::StaticRegisterNativesULyraSettingValueDiscrete_Language() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_Language); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language_NoRegister() +{ + return ULyraSettingValueDiscrete_Language::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::ClassParams = { + &ULyraSettingValueDiscrete_Language::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_Language::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_Language); +ULyraSettingValueDiscrete_Language::~ULyraSettingValueDiscrete_Language() {} +// End Class ULyraSettingValueDiscrete_Language + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_Language, ULyraSettingValueDiscrete_Language::StaticClass, TEXT("ULyraSettingValueDiscrete_Language"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_Language), 80251537U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_3509725333(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h new file mode 100644 index 00000000..8b8258bf --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_Language_generated_h +#error "LyraSettingValueDiscrete_Language.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_Language.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_Language_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_Language(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_Language, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_Language) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_Language(ULyraSettingValueDiscrete_Language&&); \ + ULyraSettingValueDiscrete_Language(const ULyraSettingValueDiscrete_Language&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_Language); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_Language); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_Language) \ + NO_API virtual ~ULyraSettingValueDiscrete_Language(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp new file mode 100644 index 00000000..808d71dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_MobileFPSType() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_MobileFPSType +void ULyraSettingValueDiscrete_MobileFPSType::StaticRegisterNativesULyraSettingValueDiscrete_MobileFPSType() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_MobileFPSType); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_NoRegister() +{ + return ULyraSettingValueDiscrete_MobileFPSType::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::ClassParams = { + &ULyraSettingValueDiscrete_MobileFPSType::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_MobileFPSType::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_MobileFPSType); +ULyraSettingValueDiscrete_MobileFPSType::~ULyraSettingValueDiscrete_MobileFPSType() {} +// End Class ULyraSettingValueDiscrete_MobileFPSType + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType, ULyraSettingValueDiscrete_MobileFPSType::StaticClass, TEXT("ULyraSettingValueDiscrete_MobileFPSType"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_MobileFPSType), 1336858111U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_1830024418(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h new file mode 100644 index 00000000..68defd3e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_MobileFPSType_generated_h +#error "LyraSettingValueDiscrete_MobileFPSType.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_MobileFPSType.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_MobileFPSType_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_MobileFPSType(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_MobileFPSType, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_MobileFPSType) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_MobileFPSType(ULyraSettingValueDiscrete_MobileFPSType&&); \ + ULyraSettingValueDiscrete_MobileFPSType(const ULyraSettingValueDiscrete_MobileFPSType&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_MobileFPSType); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_MobileFPSType); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_MobileFPSType) \ + NO_API virtual ~ULyraSettingValueDiscrete_MobileFPSType(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp new file mode 100644 index 00000000..ff308dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_OverallQuality() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_OverallQuality +void ULyraSettingValueDiscrete_OverallQuality::StaticRegisterNativesULyraSettingValueDiscrete_OverallQuality() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_OverallQuality); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_NoRegister() +{ + return ULyraSettingValueDiscrete_OverallQuality::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::ClassParams = { + &ULyraSettingValueDiscrete_OverallQuality::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_OverallQuality::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_OverallQuality); +ULyraSettingValueDiscrete_OverallQuality::~ULyraSettingValueDiscrete_OverallQuality() {} +// End Class ULyraSettingValueDiscrete_OverallQuality + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality, ULyraSettingValueDiscrete_OverallQuality::StaticClass, TEXT("ULyraSettingValueDiscrete_OverallQuality"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_OverallQuality), 2702593385U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_2558643524(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h new file mode 100644 index 00000000..f4db5abc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_OverallQuality_generated_h +#error "LyraSettingValueDiscrete_OverallQuality.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_OverallQuality.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_OverallQuality_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_OverallQuality(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_OverallQuality, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_OverallQuality) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_OverallQuality(ULyraSettingValueDiscrete_OverallQuality&&); \ + ULyraSettingValueDiscrete_OverallQuality(const ULyraSettingValueDiscrete_OverallQuality&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_OverallQuality); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_OverallQuality); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_OverallQuality) \ + NO_API virtual ~ULyraSettingValueDiscrete_OverallQuality(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp new file mode 100644 index 00000000..7fd2aad0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_PerfStat() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_PerfStat +void ULyraSettingValueDiscrete_PerfStat::StaticRegisterNativesULyraSettingValueDiscrete_PerfStat() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_PerfStat); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_NoRegister() +{ + return ULyraSettingValueDiscrete_PerfStat::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::ClassParams = { + &ULyraSettingValueDiscrete_PerfStat::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_PerfStat::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_PerfStat); +ULyraSettingValueDiscrete_PerfStat::~ULyraSettingValueDiscrete_PerfStat() {} +// End Class ULyraSettingValueDiscrete_PerfStat + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat, ULyraSettingValueDiscrete_PerfStat::StaticClass, TEXT("ULyraSettingValueDiscrete_PerfStat"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_PerfStat), 3988054496U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_270335341(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h new file mode 100644 index 00000000..4f8a39e9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_PerfStat_generated_h +#error "LyraSettingValueDiscrete_PerfStat.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_PerfStat.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_PerfStat_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_PerfStat(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_PerfStat, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_PerfStat) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_PerfStat(ULyraSettingValueDiscrete_PerfStat&&); \ + ULyraSettingValueDiscrete_PerfStat(const ULyraSettingValueDiscrete_PerfStat&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_PerfStat); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_PerfStat); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_PerfStat) \ + NO_API virtual ~ULyraSettingValueDiscrete_PerfStat(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp new file mode 100644 index 00000000..6656b80c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_Resolution() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_Resolution +void ULyraSettingValueDiscrete_Resolution::StaticRegisterNativesULyraSettingValueDiscrete_Resolution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_Resolution); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_NoRegister() +{ + return ULyraSettingValueDiscrete_Resolution::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::ClassParams = { + &ULyraSettingValueDiscrete_Resolution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_Resolution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_Resolution); +ULyraSettingValueDiscrete_Resolution::~ULyraSettingValueDiscrete_Resolution() {} +// End Class ULyraSettingValueDiscrete_Resolution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution, ULyraSettingValueDiscrete_Resolution::StaticClass, TEXT("ULyraSettingValueDiscrete_Resolution"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_Resolution), 1917978537U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_453710866(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h new file mode 100644 index 00000000..15fa196b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_Resolution_generated_h +#error "LyraSettingValueDiscrete_Resolution.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_Resolution.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_Resolution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_Resolution(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_Resolution, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_Resolution) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_Resolution(ULyraSettingValueDiscrete_Resolution&&); \ + ULyraSettingValueDiscrete_Resolution(const ULyraSettingValueDiscrete_Resolution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_Resolution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_Resolution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_Resolution) \ + NO_API virtual ~ULyraSettingValueDiscrete_Resolution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp new file mode 100644 index 00000000..a01a7273 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp @@ -0,0 +1,188 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsListEntrySetting_KeyboardInput() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingsListEntrySetting_KeyboardInput +void ULyraSettingsListEntrySetting_KeyboardInput::StaticRegisterNativesULyraSettingsListEntrySetting_KeyboardInput() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsListEntrySetting_KeyboardInput); +UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_NoRegister() +{ + return ULyraSettingsListEntrySetting_KeyboardInput::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// ULyraSettingsListEntrySetting_KeyboardInput\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsListEntrySetting_KeyboardInput" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OriginalKeyToBind_MetaData[] = { + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyboardInputSetting_MetaData[] = { + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PressAnyKeyPanelClass_MetaData[] = { + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyAlreadyBoundWarningPanelClass_MetaData[] = { + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_PrimaryKey_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_SecondaryKey_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Clear_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_ResetToDefault_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OriginalKeyToBind; + static const UECodeGen_Private::FObjectPropertyParams NewProp_KeyboardInputSetting; + static const UECodeGen_Private::FClassPropertyParams NewProp_PressAnyKeyPanelClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_KeyAlreadyBoundWarningPanelClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_PrimaryKey; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_SecondaryKey; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Clear; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_ResetToDefault; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_OriginalKeyToBind = { "OriginalKeyToBind", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, OriginalKeyToBind), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OriginalKeyToBind_MetaData), NewProp_OriginalKeyToBind_MetaData) }; // 658672854 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyboardInputSetting = { "KeyboardInputSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, KeyboardInputSetting), Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyboardInputSetting_MetaData), NewProp_KeyboardInputSetting_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_PressAnyKeyPanelClass = { "PressAnyKeyPanelClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, PressAnyKeyPanelClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PressAnyKeyPanelClass_MetaData), NewProp_PressAnyKeyPanelClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyAlreadyBoundWarningPanelClass = { "KeyAlreadyBoundWarningPanelClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, KeyAlreadyBoundWarningPanelClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyAlreadyBoundWarningPanelClass_MetaData), NewProp_KeyAlreadyBoundWarningPanelClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_PrimaryKey = { "Button_PrimaryKey", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_PrimaryKey), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_PrimaryKey_MetaData), NewProp_Button_PrimaryKey_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_SecondaryKey = { "Button_SecondaryKey", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_SecondaryKey), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_SecondaryKey_MetaData), NewProp_Button_SecondaryKey_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_Clear = { "Button_Clear", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_Clear), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Clear_MetaData), NewProp_Button_Clear_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_ResetToDefault = { "Button_ResetToDefault", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_ResetToDefault), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_ResetToDefault_MetaData), NewProp_Button_ResetToDefault_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_OriginalKeyToBind, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyboardInputSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_PressAnyKeyPanelClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyAlreadyBoundWarningPanelClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_PrimaryKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_SecondaryKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_Clear, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_ResetToDefault, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::ClassParams = { + &ULyraSettingsListEntrySetting_KeyboardInput::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton, Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsListEntrySetting_KeyboardInput::StaticClass(); +} +ULyraSettingsListEntrySetting_KeyboardInput::ULyraSettingsListEntrySetting_KeyboardInput(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsListEntrySetting_KeyboardInput); +ULyraSettingsListEntrySetting_KeyboardInput::~ULyraSettingsListEntrySetting_KeyboardInput() {} +// End Class ULyraSettingsListEntrySetting_KeyboardInput + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput, ULyraSettingsListEntrySetting_KeyboardInput::StaticClass, TEXT("ULyraSettingsListEntrySetting_KeyboardInput"), &Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsListEntrySetting_KeyboardInput), 1109608942U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_4085841296(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h new file mode 100644 index 00000000..6e3b37fe --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingsListEntrySetting_KeyboardInput_generated_h +#error "LyraSettingsListEntrySetting_KeyboardInput.generated.h already included, missing '#pragma once' in LyraSettingsListEntrySetting_KeyboardInput.h" +#endif +#define LYRAGAME_LyraSettingsListEntrySetting_KeyboardInput_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsListEntrySetting_KeyboardInput(); \ + friend struct Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsListEntrySetting_KeyboardInput, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsListEntrySetting_KeyboardInput) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingsListEntrySetting_KeyboardInput(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsListEntrySetting_KeyboardInput(ULyraSettingsListEntrySetting_KeyboardInput&&); \ + ULyraSettingsListEntrySetting_KeyboardInput(const ULyraSettingsListEntrySetting_KeyboardInput&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsListEntrySetting_KeyboardInput); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsListEntrySetting_KeyboardInput); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingsListEntrySetting_KeyboardInput) \ + NO_API virtual ~ULyraSettingsListEntrySetting_KeyboardInput(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp new file mode 100644 index 00000000..17f32c14 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp @@ -0,0 +1,2327 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraSettingsLocal.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsLocal() {} + +// Begin Cross Module References +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBus_NoRegister(); +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBusMix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameUserSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraScalabilitySnapshot(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraScalabilitySnapshot +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot; +class UScriptStruct* FLyraScalabilitySnapshot::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraScalabilitySnapshot, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraScalabilitySnapshot")); + } + return Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraScalabilitySnapshot::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraScalabilitySnapshot", + nullptr, + 0, + sizeof(FLyraScalabilitySnapshot), + alignof(FLyraScalabilitySnapshot), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraScalabilitySnapshot() +{ + if (!Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton, Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton; +} +// End ScriptStruct FLyraScalabilitySnapshot + +// Begin Class ULyraSettingsLocal Function CanModifyHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we can enable/disable headphone mode (i.e., if it's not forced on or off by the platform) */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we can enable/disable headphone mode (i.e., if it's not forced on or off by the platform)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "CanModifyHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execCanModifyHeadphoneModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanModifyHeadphoneModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function CanModifyHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function CanRunAutoBenchmark +struct Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics +{ + struct LyraSettingsLocal_eventCanRunAutoBenchmark_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this platform can run the auto benchmark */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this platform can run the auto benchmark" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventCanRunAutoBenchmark_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventCanRunAutoBenchmark_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "CanRunAutoBenchmark", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::LyraSettingsLocal_eventCanRunAutoBenchmark_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::LyraSettingsLocal_eventCanRunAutoBenchmark_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execCanRunAutoBenchmark) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanRunAutoBenchmark(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function CanRunAutoBenchmark + +// Begin Class ULyraSettingsLocal Function GetAudioOutputDeviceId +struct Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics +{ + struct LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user's audio device id */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user's audio device id" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetAudioOutputDeviceId", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetAudioOutputDeviceId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetAudioOutputDeviceId(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetAudioOutputDeviceId + +// Begin Class ULyraSettingsLocal Function GetControllerPlatform +struct Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics +{ + struct LyraSettingsLocal_eventGetControllerPlatform_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetControllerPlatform_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetControllerPlatform", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::LyraSettingsLocal_eventGetControllerPlatform_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::LyraSettingsLocal_eventGetControllerPlatform_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetControllerPlatform) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetControllerPlatform(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetControllerPlatform + +// Begin Class ULyraSettingsLocal Function GetDesiredDeviceProfileQualitySuffix +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics +{ + struct LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDesiredDeviceProfileQualitySuffix", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDesiredDeviceProfileQualitySuffix) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDesiredDeviceProfileQualitySuffix(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDesiredDeviceProfileQualitySuffix + +// Begin Class ULyraSettingsLocal Function GetDialogueVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics +{ + struct LyraSettingsLocal_eventGetDialogueVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDialogueVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDialogueVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::LyraSettingsLocal_eventGetDialogueVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::LyraSettingsLocal_eventGetDialogueVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDialogueVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetDialogueVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDialogueVolume + +// Begin Class ULyraSettingsLocal Function GetDisplayGamma +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics +{ + struct LyraSettingsLocal_eventGetDisplayGamma_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDisplayGamma_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDisplayGamma", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::LyraSettingsLocal_eventGetDisplayGamma_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::LyraSettingsLocal_eventGetDisplayGamma_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDisplayGamma) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetDisplayGamma(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDisplayGamma + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_Always +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_Always", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_Always) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_Always(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_Always + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_InMenu +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_InMenu", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_InMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_InMenu(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_InMenu + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_OnBattery +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_OnBattery", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_OnBattery) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_OnBattery(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_OnBattery + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_WhenBackgrounded +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_WhenBackgrounded", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_WhenBackgrounded) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_WhenBackgrounded(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_WhenBackgrounded + +// Begin Class ULyraSettingsLocal Function GetMusicVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics +{ + struct LyraSettingsLocal_eventGetMusicVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetMusicVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetMusicVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::LyraSettingsLocal_eventGetMusicVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::LyraSettingsLocal_eventGetMusicVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetMusicVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetMusicVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetMusicVolume + +// Begin Class ULyraSettingsLocal Function GetNumberOfReplaysToKeep +struct Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics +{ + struct LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetNumberOfReplaysToKeep", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetNumberOfReplaysToKeep) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumberOfReplaysToKeep(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetNumberOfReplaysToKeep + +// Begin Class ULyraSettingsLocal Function GetOverallVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics +{ + struct LyraSettingsLocal_eventGetOverallVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetOverallVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetOverallVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::LyraSettingsLocal_eventGetOverallVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::LyraSettingsLocal_eventGetOverallVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetOverallVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetOverallVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetOverallVolume + +// Begin Class ULyraSettingsLocal Function GetSafeZone +struct Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics +{ + struct LyraSettingsLocal_eventGetSafeZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetSafeZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetSafeZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::LyraSettingsLocal_eventGetSafeZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::LyraSettingsLocal_eventGetSafeZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetSafeZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetSafeZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetSafeZone + +// Begin Class ULyraSettingsLocal Function GetSoundFXVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics +{ + struct LyraSettingsLocal_eventGetSoundFXVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetSoundFXVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetSoundFXVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::LyraSettingsLocal_eventGetSoundFXVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::LyraSettingsLocal_eventGetSoundFXVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetSoundFXVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetSoundFXVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetSoundFXVolume + +// Begin Class ULyraSettingsLocal Function GetVoiceChatVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics +{ + struct LyraSettingsLocal_eventGetVoiceChatVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetVoiceChatVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetVoiceChatVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::LyraSettingsLocal_eventGetVoiceChatVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::LyraSettingsLocal_eventGetVoiceChatVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetVoiceChatVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetVoiceChatVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetVoiceChatVolume + +// Begin Class ULyraSettingsLocal Function IsHDRAudioModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics +{ + struct LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we're using High Dynamic Range Audio mode (HDR Audio) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we're using High Dynamic Range Audio mode (HDR Audio) *" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsHDRAudioModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsHDRAudioModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHDRAudioModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsHDRAudioModeEnabled + +// Begin Class ULyraSettingsLocal Function IsHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we're using headphone mode (HRTF) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we're using headphone mode (HRTF) *" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsHeadphoneModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHeadphoneModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function IsSafeZoneSet +struct Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics +{ + struct LyraSettingsLocal_eventIsSafeZoneSet_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsSafeZoneSet_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsSafeZoneSet_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsSafeZoneSet", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::LyraSettingsLocal_eventIsSafeZoneSet_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::LyraSettingsLocal_eventIsSafeZoneSet_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsSafeZoneSet) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsSafeZoneSet(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsSafeZoneSet + +// Begin Class ULyraSettingsLocal Function RunAutoBenchmark +struct Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics +{ + struct LyraSettingsLocal_eventRunAutoBenchmark_Parms + { + bool bSaveImmediately; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Run the auto benchmark, optionally saving right away */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run the auto benchmark, optionally saving right away" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bSaveImmediately_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSaveImmediately; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventRunAutoBenchmark_Parms*)Obj)->bSaveImmediately = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately = { "bSaveImmediately", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventRunAutoBenchmark_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "RunAutoBenchmark", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::LyraSettingsLocal_eventRunAutoBenchmark_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::LyraSettingsLocal_eventRunAutoBenchmark_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execRunAutoBenchmark) +{ + P_GET_UBOOL(Z_Param_bSaveImmediately); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RunAutoBenchmark(Z_Param_bSaveImmediately); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function RunAutoBenchmark + +// Begin Class ULyraSettingsLocal Function SetAudioOutputDeviceId +struct Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics +{ + struct LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms + { + FString InAudioOutputDeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the user's audio device by id */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the user's audio device by id" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InAudioOutputDeviceId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InAudioOutputDeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::NewProp_InAudioOutputDeviceId = { "InAudioOutputDeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms, InAudioOutputDeviceId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InAudioOutputDeviceId_MetaData), NewProp_InAudioOutputDeviceId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::NewProp_InAudioOutputDeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetAudioOutputDeviceId", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetAudioOutputDeviceId) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InAudioOutputDeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAudioOutputDeviceId(Z_Param_InAudioOutputDeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetAudioOutputDeviceId + +// Begin Class ULyraSettingsLocal Function SetControllerPlatform +struct Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics +{ + struct LyraSettingsLocal_eventSetControllerPlatform_Parms + { + FName InControllerPlatform; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the controller representation to use, a single platform might support multiple kinds of controllers. For\n// example, Win64 games could be played with both an XBox or Playstation controller.\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the controller representation to use, a single platform might support multiple kinds of controllers. For\nexample, Win64 games could be played with both an XBox or Playstation controller." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InControllerPlatform_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_InControllerPlatform; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::NewProp_InControllerPlatform = { "InControllerPlatform", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetControllerPlatform_Parms, InControllerPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InControllerPlatform_MetaData), NewProp_InControllerPlatform_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::NewProp_InControllerPlatform, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetControllerPlatform", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::LyraSettingsLocal_eventSetControllerPlatform_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::LyraSettingsLocal_eventSetControllerPlatform_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetControllerPlatform) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_InControllerPlatform); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetControllerPlatform(Z_Param_InControllerPlatform); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetControllerPlatform + +// Begin Class ULyraSettingsLocal Function SetDesiredDeviceProfileQualitySuffix +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics +{ + struct LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms + { + FString InDesiredSuffix; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InDesiredSuffix_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InDesiredSuffix; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::NewProp_InDesiredSuffix = { "InDesiredSuffix", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms, InDesiredSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InDesiredSuffix_MetaData), NewProp_InDesiredSuffix_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::NewProp_InDesiredSuffix, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDesiredDeviceProfileQualitySuffix", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDesiredDeviceProfileQualitySuffix) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InDesiredSuffix); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDesiredDeviceProfileQualitySuffix(Z_Param_InDesiredSuffix); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDesiredDeviceProfileQualitySuffix + +// Begin Class ULyraSettingsLocal Function SetDialogueVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics +{ + struct LyraSettingsLocal_eventSetDialogueVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDialogueVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDialogueVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::LyraSettingsLocal_eventSetDialogueVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::LyraSettingsLocal_eventSetDialogueVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDialogueVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDialogueVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDialogueVolume + +// Begin Class ULyraSettingsLocal Function SetDisplayGamma +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics +{ + struct LyraSettingsLocal_eventSetDisplayGamma_Parms + { + float InGamma; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InGamma; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::NewProp_InGamma = { "InGamma", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDisplayGamma_Parms, InGamma), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::NewProp_InGamma, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDisplayGamma", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::LyraSettingsLocal_eventSetDisplayGamma_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::LyraSettingsLocal_eventSetDisplayGamma_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDisplayGamma) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InGamma); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDisplayGamma(Z_Param_InGamma); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDisplayGamma + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_Always +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_Always", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_Always) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_Always(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_Always + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_InMenu +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_InMenu", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_InMenu) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_InMenu(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_InMenu + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_OnBattery +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_OnBattery", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_OnBattery) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_OnBattery(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_OnBattery + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_WhenBackgrounded +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_WhenBackgrounded", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_WhenBackgrounded) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_WhenBackgrounded(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_WhenBackgrounded + +// Begin Class ULyraSettingsLocal Function SetHDRAudioModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics +{ + struct LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables or disables High Dynamic Range Audio mode (HDR Audio) */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables or disables High Dynamic Range Audio mode (HDR Audio)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetHDRAudioModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetHDRAudioModeEnabled) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHDRAudioModeEnabled(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetHDRAudioModeEnabled + +// Begin Class ULyraSettingsLocal Function SetHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables or disables headphone mode (HRTF) - NOTE this setting will be overruled if au.DisableBinauralSpatialization is set */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables or disables headphone mode (HRTF) - NOTE this setting will be overruled if au.DisableBinauralSpatialization is set" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetHeadphoneModeEnabled) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHeadphoneModeEnabled(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function SetMusicVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics +{ + struct LyraSettingsLocal_eventSetMusicVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetMusicVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetMusicVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::LyraSettingsLocal_eventSetMusicVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::LyraSettingsLocal_eventSetMusicVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetMusicVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMusicVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetMusicVolume + +// Begin Class ULyraSettingsLocal Function SetNumberOfReplaysToKeep +struct Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics +{ + struct LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms + { + int32 InNumberOfReplays; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InNumberOfReplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::NewProp_InNumberOfReplays = { "InNumberOfReplays", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms, InNumberOfReplays), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::NewProp_InNumberOfReplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetNumberOfReplaysToKeep", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetNumberOfReplaysToKeep) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InNumberOfReplays); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetNumberOfReplaysToKeep(Z_Param_InNumberOfReplays); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetNumberOfReplaysToKeep + +// Begin Class ULyraSettingsLocal Function SetOverallVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics +{ + struct LyraSettingsLocal_eventSetOverallVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetOverallVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetOverallVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::LyraSettingsLocal_eventSetOverallVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::LyraSettingsLocal_eventSetOverallVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetOverallVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetOverallVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetOverallVolume + +// Begin Class ULyraSettingsLocal Function SetSafeZone +struct Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics +{ + struct LyraSettingsLocal_eventSetSafeZone_Parms + { + float Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetSafeZone_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetSafeZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::LyraSettingsLocal_eventSetSafeZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::LyraSettingsLocal_eventSetSafeZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetSafeZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSafeZone(Z_Param_Value); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetSafeZone + +// Begin Class ULyraSettingsLocal Function SetShouldAutoRecordReplays +struct Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics +{ + struct LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetShouldAutoRecordReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetShouldAutoRecordReplays) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShouldAutoRecordReplays(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetShouldAutoRecordReplays + +// Begin Class ULyraSettingsLocal Function SetSoundFXVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics +{ + struct LyraSettingsLocal_eventSetSoundFXVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetSoundFXVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetSoundFXVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::LyraSettingsLocal_eventSetSoundFXVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::LyraSettingsLocal_eventSetSoundFXVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetSoundFXVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSoundFXVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetSoundFXVolume + +// Begin Class ULyraSettingsLocal Function SetVoiceChatVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics +{ + struct LyraSettingsLocal_eventSetVoiceChatVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetVoiceChatVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetVoiceChatVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::LyraSettingsLocal_eventSetVoiceChatVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::LyraSettingsLocal_eventSetVoiceChatVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetVoiceChatVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetVoiceChatVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetVoiceChatVolume + +// Begin Class ULyraSettingsLocal Function ShouldAutoRecordReplays +struct Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics +{ + struct LyraSettingsLocal_eventShouldAutoRecordReplays_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventShouldAutoRecordReplays_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventShouldAutoRecordReplays_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "ShouldAutoRecordReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventShouldAutoRecordReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventShouldAutoRecordReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execShouldAutoRecordReplays) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldAutoRecordReplays(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function ShouldAutoRecordReplays + +// Begin Class ULyraSettingsLocal Function ShouldRunAutoBenchmarkAtStartup +struct Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics +{ + struct LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user should run the auto benchmark as it has never been run */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user should run the auto benchmark as it has never been run" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "ShouldRunAutoBenchmarkAtStartup", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execShouldRunAutoBenchmarkAtStartup) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldRunAutoBenchmarkAtStartup(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function ShouldRunAutoBenchmarkAtStartup + +// Begin Class ULyraSettingsLocal +void ULyraSettingsLocal::StaticRegisterNativesULyraSettingsLocal() +{ + UClass* Class = ULyraSettingsLocal::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanModifyHeadphoneModeEnabled", &ULyraSettingsLocal::execCanModifyHeadphoneModeEnabled }, + { "CanRunAutoBenchmark", &ULyraSettingsLocal::execCanRunAutoBenchmark }, + { "GetAudioOutputDeviceId", &ULyraSettingsLocal::execGetAudioOutputDeviceId }, + { "GetControllerPlatform", &ULyraSettingsLocal::execGetControllerPlatform }, + { "GetDesiredDeviceProfileQualitySuffix", &ULyraSettingsLocal::execGetDesiredDeviceProfileQualitySuffix }, + { "GetDialogueVolume", &ULyraSettingsLocal::execGetDialogueVolume }, + { "GetDisplayGamma", &ULyraSettingsLocal::execGetDisplayGamma }, + { "GetFrameRateLimit_Always", &ULyraSettingsLocal::execGetFrameRateLimit_Always }, + { "GetFrameRateLimit_InMenu", &ULyraSettingsLocal::execGetFrameRateLimit_InMenu }, + { "GetFrameRateLimit_OnBattery", &ULyraSettingsLocal::execGetFrameRateLimit_OnBattery }, + { "GetFrameRateLimit_WhenBackgrounded", &ULyraSettingsLocal::execGetFrameRateLimit_WhenBackgrounded }, + { "GetMusicVolume", &ULyraSettingsLocal::execGetMusicVolume }, + { "GetNumberOfReplaysToKeep", &ULyraSettingsLocal::execGetNumberOfReplaysToKeep }, + { "GetOverallVolume", &ULyraSettingsLocal::execGetOverallVolume }, + { "GetSafeZone", &ULyraSettingsLocal::execGetSafeZone }, + { "GetSoundFXVolume", &ULyraSettingsLocal::execGetSoundFXVolume }, + { "GetVoiceChatVolume", &ULyraSettingsLocal::execGetVoiceChatVolume }, + { "IsHDRAudioModeEnabled", &ULyraSettingsLocal::execIsHDRAudioModeEnabled }, + { "IsHeadphoneModeEnabled", &ULyraSettingsLocal::execIsHeadphoneModeEnabled }, + { "IsSafeZoneSet", &ULyraSettingsLocal::execIsSafeZoneSet }, + { "RunAutoBenchmark", &ULyraSettingsLocal::execRunAutoBenchmark }, + { "SetAudioOutputDeviceId", &ULyraSettingsLocal::execSetAudioOutputDeviceId }, + { "SetControllerPlatform", &ULyraSettingsLocal::execSetControllerPlatform }, + { "SetDesiredDeviceProfileQualitySuffix", &ULyraSettingsLocal::execSetDesiredDeviceProfileQualitySuffix }, + { "SetDialogueVolume", &ULyraSettingsLocal::execSetDialogueVolume }, + { "SetDisplayGamma", &ULyraSettingsLocal::execSetDisplayGamma }, + { "SetFrameRateLimit_Always", &ULyraSettingsLocal::execSetFrameRateLimit_Always }, + { "SetFrameRateLimit_InMenu", &ULyraSettingsLocal::execSetFrameRateLimit_InMenu }, + { "SetFrameRateLimit_OnBattery", &ULyraSettingsLocal::execSetFrameRateLimit_OnBattery }, + { "SetFrameRateLimit_WhenBackgrounded", &ULyraSettingsLocal::execSetFrameRateLimit_WhenBackgrounded }, + { "SetHDRAudioModeEnabled", &ULyraSettingsLocal::execSetHDRAudioModeEnabled }, + { "SetHeadphoneModeEnabled", &ULyraSettingsLocal::execSetHeadphoneModeEnabled }, + { "SetMusicVolume", &ULyraSettingsLocal::execSetMusicVolume }, + { "SetNumberOfReplaysToKeep", &ULyraSettingsLocal::execSetNumberOfReplaysToKeep }, + { "SetOverallVolume", &ULyraSettingsLocal::execSetOverallVolume }, + { "SetSafeZone", &ULyraSettingsLocal::execSetSafeZone }, + { "SetShouldAutoRecordReplays", &ULyraSettingsLocal::execSetShouldAutoRecordReplays }, + { "SetSoundFXVolume", &ULyraSettingsLocal::execSetSoundFXVolume }, + { "SetVoiceChatVolume", &ULyraSettingsLocal::execSetVoiceChatVolume }, + { "ShouldAutoRecordReplays", &ULyraSettingsLocal::execShouldAutoRecordReplays }, + { "ShouldRunAutoBenchmarkAtStartup", &ULyraSettingsLocal::execShouldRunAutoBenchmarkAtStartup }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsLocal); +UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister() +{ + return ULyraSettingsLocal::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsLocal_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraSettingsLocal\n */" }, +#endif + { "IncludePath", "Settings/LyraSettingsLocal.h" }, + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayStatList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of stats to display in the HUD\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of stats to display in the HUD" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayGamma_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_OnBattery_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_InMenu_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_WhenBackgrounded_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MobileFrameRateLimit_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserChosenDeviceProfileSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDesiredHeadphoneMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether we *want* to use headphone mode (HRTF); may or may not actually be applied **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether we *want* to use headphone mode (HRTF); may or may not actually be applied *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseHeadphoneMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether to use headphone mode (HRTF) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether to use headphone mode (HRTF) *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseHDRAudioMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether to use High Dynamic Range Audio mode (HDR Audio) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether to use High Dynamic Range Audio mode (HDR Audio) *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioOutputDeviceId_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlBusMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/*SoundClassName*/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SoundClassName" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlBusMix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSoundControlBusMixLoaded_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SafeZoneScale_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerPlatform_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The name of the controller the player is using. This is maps to the name of a UCommonInputBaseControllerData\n\x09 * that is available on this current platform. The gamepad data are registered per platform, you'll find them\n\x09 * in Game.ini files listed under +ControllerData=...\n\x09 */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The name of the controller the player is using. This is maps to the name of a UCommonInputBaseControllerData\nthat is available on this current platform. The gamepad data are registered per platform, you'll find them\nin Game.ini files listed under +ControllerData=..." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfigName_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The name of the current input config that the user has selected. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The name of the current input config that the user has selected." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShouldAutoRecordReplays_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberOfReplaysToKeep_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_DisplayStatList_ValueProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DisplayStatList_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_DisplayStatList_Key_KeyProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DisplayStatList_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_DisplayStatList; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayGamma; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_OnBattery; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_InMenu; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_WhenBackgrounded; + static const UECodeGen_Private::FIntPropertyParams NewProp_MobileFrameRateLimit; + static const UECodeGen_Private::FStrPropertyParams NewProp_DesiredUserChosenDeviceProfileSuffix; + static const UECodeGen_Private::FStrPropertyParams NewProp_CurrentAppliedDeviceProfileOverrideSuffix; + static const UECodeGen_Private::FStrPropertyParams NewProp_UserChosenDeviceProfileSuffix; + static void NewProp_bDesiredHeadphoneMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDesiredHeadphoneMode; + static void NewProp_bUseHeadphoneMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseHeadphoneMode; + static void NewProp_bUseHDRAudioMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseHDRAudioMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_AudioOutputDeviceId; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OverallVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MusicVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SoundFXVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DialogueVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_VoiceChatVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlBusMap_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControlBusMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ControlBusMap; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlBusMix; + static void NewProp_bSoundControlBusMixLoaded_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSoundControlBusMixLoaded; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SafeZoneScale; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControllerPlatform; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControllerPreset; + static const UECodeGen_Private::FNamePropertyParams NewProp_InputConfigName; + static void NewProp_bShouldAutoRecordReplays_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShouldAutoRecordReplays; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumberOfReplaysToKeep; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled, "CanModifyHeadphoneModeEnabled" }, // 3420631359 + { &Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark, "CanRunAutoBenchmark" }, // 3732596120 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId, "GetAudioOutputDeviceId" }, // 2053297354 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform, "GetControllerPlatform" }, // 3192584156 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix, "GetDesiredDeviceProfileQualitySuffix" }, // 2119648104 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume, "GetDialogueVolume" }, // 3318042902 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma, "GetDisplayGamma" }, // 1117484790 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always, "GetFrameRateLimit_Always" }, // 2426701224 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu, "GetFrameRateLimit_InMenu" }, // 1644183296 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery, "GetFrameRateLimit_OnBattery" }, // 3607677185 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded, "GetFrameRateLimit_WhenBackgrounded" }, // 1216475453 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume, "GetMusicVolume" }, // 1339901776 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep, "GetNumberOfReplaysToKeep" }, // 1027580513 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume, "GetOverallVolume" }, // 573752904 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone, "GetSafeZone" }, // 832394678 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume, "GetSoundFXVolume" }, // 1732289228 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume, "GetVoiceChatVolume" }, // 2320558529 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled, "IsHDRAudioModeEnabled" }, // 925320332 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled, "IsHeadphoneModeEnabled" }, // 1802831161 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet, "IsSafeZoneSet" }, // 3174079049 + { &Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark, "RunAutoBenchmark" }, // 3038396397 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId, "SetAudioOutputDeviceId" }, // 2254559159 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform, "SetControllerPlatform" }, // 1002647973 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix, "SetDesiredDeviceProfileQualitySuffix" }, // 769604952 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume, "SetDialogueVolume" }, // 278681766 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma, "SetDisplayGamma" }, // 1945765286 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always, "SetFrameRateLimit_Always" }, // 1232068044 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu, "SetFrameRateLimit_InMenu" }, // 1369593880 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery, "SetFrameRateLimit_OnBattery" }, // 1033284271 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded, "SetFrameRateLimit_WhenBackgrounded" }, // 4083522660 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled, "SetHDRAudioModeEnabled" }, // 1287462041 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled, "SetHeadphoneModeEnabled" }, // 1630952307 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume, "SetMusicVolume" }, // 4079358407 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep, "SetNumberOfReplaysToKeep" }, // 2836504419 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume, "SetOverallVolume" }, // 3430338600 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone, "SetSafeZone" }, // 2149410127 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays, "SetShouldAutoRecordReplays" }, // 2395177566 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume, "SetSoundFXVolume" }, // 820056846 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume, "SetVoiceChatVolume" }, // 4282149416 + { &Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays, "ShouldAutoRecordReplays" }, // 3853555275 + { &Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup, "ShouldRunAutoBenchmarkAtStartup" }, // 694773543 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp = { "DisplayStatList", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, METADATA_PARAMS(0, nullptr) }; // 3127134116 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp = { "DisplayStatList_Key", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList = { "DisplayStatList", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DisplayStatList), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayStatList_MetaData), NewProp_DisplayStatList_MetaData) }; // 3286822108 3127134116 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayGamma = { "DisplayGamma", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DisplayGamma), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayGamma_MetaData), NewProp_DisplayGamma_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_OnBattery = { "FrameRateLimit_OnBattery", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_OnBattery), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_OnBattery_MetaData), NewProp_FrameRateLimit_OnBattery_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_InMenu = { "FrameRateLimit_InMenu", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_InMenu), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_InMenu_MetaData), NewProp_FrameRateLimit_InMenu_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_WhenBackgrounded = { "FrameRateLimit_WhenBackgrounded", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_WhenBackgrounded), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_WhenBackgrounded_MetaData), NewProp_FrameRateLimit_WhenBackgrounded_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MobileFrameRateLimit = { "MobileFrameRateLimit", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, MobileFrameRateLimit), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MobileFrameRateLimit_MetaData), NewProp_MobileFrameRateLimit_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DesiredUserChosenDeviceProfileSuffix = { "DesiredUserChosenDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DesiredUserChosenDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData), NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_CurrentAppliedDeviceProfileOverrideSuffix = { "CurrentAppliedDeviceProfileOverrideSuffix", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, CurrentAppliedDeviceProfileOverrideSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData), NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_UserChosenDeviceProfileSuffix = { "UserChosenDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, UserChosenDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserChosenDeviceProfileSuffix_MetaData), NewProp_UserChosenDeviceProfileSuffix_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bDesiredHeadphoneMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode = { "bDesiredHeadphoneMode", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDesiredHeadphoneMode_MetaData), NewProp_bDesiredHeadphoneMode_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bUseHeadphoneMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode = { "bUseHeadphoneMode", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseHeadphoneMode_MetaData), NewProp_bUseHeadphoneMode_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bUseHDRAudioMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode = { "bUseHDRAudioMode", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseHDRAudioMode_MetaData), NewProp_bUseHDRAudioMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_AudioOutputDeviceId = { "AudioOutputDeviceId", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, AudioOutputDeviceId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioOutputDeviceId_MetaData), NewProp_AudioOutputDeviceId_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_OverallVolume = { "OverallVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, OverallVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallVolume_MetaData), NewProp_OverallVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MusicVolume = { "MusicVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, MusicVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicVolume_MetaData), NewProp_MusicVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SoundFXVolume = { "SoundFXVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, SoundFXVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXVolume_MetaData), NewProp_SoundFXVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DialogueVolume = { "DialogueVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DialogueVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueVolume_MetaData), NewProp_DialogueVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_VoiceChatVolume = { "VoiceChatVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, VoiceChatVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatVolume_MetaData), NewProp_VoiceChatVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_ValueProp = { "ControlBusMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_Key_KeyProp = { "ControlBusMap_Key", nullptr, (EPropertyFlags)0x0100000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap = { "ControlBusMap", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControlBusMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlBusMap_MetaData), NewProp_ControlBusMap_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMix = { "ControlBusMix", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControlBusMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlBusMix_MetaData), NewProp_ControlBusMix_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bSoundControlBusMixLoaded = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded = { "bSoundControlBusMixLoaded", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSoundControlBusMixLoaded_MetaData), NewProp_bSoundControlBusMixLoaded_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SafeZoneScale = { "SafeZoneScale", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, SafeZoneScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SafeZoneScale_MetaData), NewProp_SafeZoneScale_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPlatform = { "ControllerPlatform", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControllerPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerPlatform_MetaData), NewProp_ControllerPlatform_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPreset = { "ControllerPreset", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControllerPreset), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerPreset_MetaData), NewProp_ControllerPreset_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_InputConfigName = { "InputConfigName", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, InputConfigName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfigName_MetaData), NewProp_InputConfigName_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bShouldAutoRecordReplays = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays = { "bShouldAutoRecordReplays", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShouldAutoRecordReplays_MetaData), NewProp_bShouldAutoRecordReplays_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_NumberOfReplaysToKeep = { "NumberOfReplaysToKeep", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, NumberOfReplaysToKeep), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberOfReplaysToKeep_MetaData), NewProp_NumberOfReplaysToKeep_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayGamma, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_OnBattery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_InMenu, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_WhenBackgrounded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MobileFrameRateLimit, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DesiredUserChosenDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_CurrentAppliedDeviceProfileOverrideSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_UserChosenDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_AudioOutputDeviceId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_OverallVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MusicVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SoundFXVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DialogueVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_VoiceChatVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SafeZoneScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPlatform, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPreset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_InputConfigName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_NumberOfReplaysToKeep, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsLocal_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameUserSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsLocal_Statics::ClassParams = { + &ULyraSettingsLocal::StaticClass, + "GameUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers), + 0, + 0x408000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsLocal_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsLocal() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton, Z_Construct_UClass_ULyraSettingsLocal_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsLocal::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsLocal); +ULyraSettingsLocal::~ULyraSettingsLocal() {} +// End Class ULyraSettingsLocal + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraScalabilitySnapshot::StaticStruct, Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::NewStructOps, TEXT("LyraScalabilitySnapshot"), &Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraScalabilitySnapshot), 2126010832U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsLocal, ULyraSettingsLocal::StaticClass, TEXT("ULyraSettingsLocal"), &Z_Registration_Info_UClass_ULyraSettingsLocal, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsLocal), 1695691152U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_3732542961(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h new file mode 100644 index 00000000..037f545d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h @@ -0,0 +1,106 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraSettingsLocal.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingsLocal_generated_h +#error "LyraSettingsLocal.generated.h already included, missing '#pragma once' in LyraSettingsLocal.h" +#endif +#define LYRAGAME_LyraSettingsLocal_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetNumberOfReplaysToKeep); \ + DECLARE_FUNCTION(execGetNumberOfReplaysToKeep); \ + DECLARE_FUNCTION(execSetShouldAutoRecordReplays); \ + DECLARE_FUNCTION(execShouldAutoRecordReplays); \ + DECLARE_FUNCTION(execGetControllerPlatform); \ + DECLARE_FUNCTION(execSetControllerPlatform); \ + DECLARE_FUNCTION(execSetSafeZone); \ + DECLARE_FUNCTION(execGetSafeZone); \ + DECLARE_FUNCTION(execIsSafeZoneSet); \ + DECLARE_FUNCTION(execSetAudioOutputDeviceId); \ + DECLARE_FUNCTION(execGetAudioOutputDeviceId); \ + DECLARE_FUNCTION(execSetVoiceChatVolume); \ + DECLARE_FUNCTION(execGetVoiceChatVolume); \ + DECLARE_FUNCTION(execSetDialogueVolume); \ + DECLARE_FUNCTION(execGetDialogueVolume); \ + DECLARE_FUNCTION(execSetSoundFXVolume); \ + DECLARE_FUNCTION(execGetSoundFXVolume); \ + DECLARE_FUNCTION(execSetMusicVolume); \ + DECLARE_FUNCTION(execGetMusicVolume); \ + DECLARE_FUNCTION(execSetOverallVolume); \ + DECLARE_FUNCTION(execGetOverallVolume); \ + DECLARE_FUNCTION(execRunAutoBenchmark); \ + DECLARE_FUNCTION(execShouldRunAutoBenchmarkAtStartup); \ + DECLARE_FUNCTION(execCanRunAutoBenchmark); \ + DECLARE_FUNCTION(execSetHDRAudioModeEnabled); \ + DECLARE_FUNCTION(execIsHDRAudioModeEnabled); \ + DECLARE_FUNCTION(execCanModifyHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execSetHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execIsHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execSetDesiredDeviceProfileQualitySuffix); \ + DECLARE_FUNCTION(execGetDesiredDeviceProfileQualitySuffix); \ + DECLARE_FUNCTION(execSetFrameRateLimit_Always); \ + DECLARE_FUNCTION(execGetFrameRateLimit_Always); \ + DECLARE_FUNCTION(execSetFrameRateLimit_WhenBackgrounded); \ + DECLARE_FUNCTION(execGetFrameRateLimit_WhenBackgrounded); \ + DECLARE_FUNCTION(execSetFrameRateLimit_InMenu); \ + DECLARE_FUNCTION(execGetFrameRateLimit_InMenu); \ + DECLARE_FUNCTION(execSetFrameRateLimit_OnBattery); \ + DECLARE_FUNCTION(execGetFrameRateLimit_OnBattery); \ + DECLARE_FUNCTION(execSetDisplayGamma); \ + DECLARE_FUNCTION(execGetDisplayGamma); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsLocal(); \ + friend struct Z_Construct_UClass_ULyraSettingsLocal_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsLocal, UGameUserSettings, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsLocal) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsLocal(ULyraSettingsLocal&&); \ + ULyraSettingsLocal(const ULyraSettingsLocal&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsLocal); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsLocal); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingsLocal) \ + NO_API virtual ~ULyraSettingsLocal(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_35_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp new file mode 100644 index 00000000..b98fac25 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp @@ -0,0 +1,2663 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraSettingsShared.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsShared() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayerSaveGame(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EColorBlindMode(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EColorBlindMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EColorBlindMode; +static UEnum* EColorBlindMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EColorBlindMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EColorBlindMode")); + } + return Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EColorBlindMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Deuteranope.Comment", "// Deuteranope (green weak/blind)\n" }, + { "Deuteranope.Name", "EColorBlindMode::Deuteranope" }, + { "Deuteranope.ToolTip", "Deuteranope (green weak/blind)" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Off.Name", "EColorBlindMode::Off" }, + { "Protanope.Comment", "// Protanope (red weak/blind)\n" }, + { "Protanope.Name", "EColorBlindMode::Protanope" }, + { "Protanope.ToolTip", "Protanope (red weak/blind)" }, + { "Tritanope.Comment", "// Tritanope(blue weak / bind)\n" }, + { "Tritanope.Name", "EColorBlindMode::Tritanope" }, + { "Tritanope.ToolTip", "Tritanope(blue weak / bind)" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EColorBlindMode::Off", (int64)EColorBlindMode::Off }, + { "EColorBlindMode::Deuteranope", (int64)EColorBlindMode::Deuteranope }, + { "EColorBlindMode::Protanope", (int64)EColorBlindMode::Protanope }, + { "EColorBlindMode::Tritanope", (int64)EColorBlindMode::Tritanope }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EColorBlindMode", + "EColorBlindMode", + Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EColorBlindMode() +{ + if (!Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton; +} +// End Enum EColorBlindMode + +// Begin Enum ELyraAllowBackgroundAudioSetting +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting; +static UEnum* ELyraAllowBackgroundAudioSetting_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAllowBackgroundAudioSetting")); + } + return Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAllowBackgroundAudioSetting_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AllSounds.Name", "ELyraAllowBackgroundAudioSetting::AllSounds" }, + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Num.Hidden", "" }, + { "Num.Name", "ELyraAllowBackgroundAudioSetting::Num" }, + { "Off.Name", "ELyraAllowBackgroundAudioSetting::Off" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAllowBackgroundAudioSetting::Off", (int64)ELyraAllowBackgroundAudioSetting::Off }, + { "ELyraAllowBackgroundAudioSetting::AllSounds", (int64)ELyraAllowBackgroundAudioSetting::AllSounds }, + { "ELyraAllowBackgroundAudioSetting::Num", (int64)ELyraAllowBackgroundAudioSetting::Num }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAllowBackgroundAudioSetting", + "ELyraAllowBackgroundAudioSetting", + Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting() +{ + if (!Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton; +} +// End Enum ELyraAllowBackgroundAudioSetting + +// Begin Enum ELyraGamepadSensitivity +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraGamepadSensitivity; +static UEnum* ELyraGamepadSensitivity_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraGamepadSensitivity")); + } + return Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraGamepadSensitivity_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Fast.DisplayName", "07 - Fast" }, + { "Fast.Name", "ELyraGamepadSensitivity::Fast" }, + { "FastPlus.DisplayName", "08 - Fast+" }, + { "FastPlus.Name", "ELyraGamepadSensitivity::FastPlus" }, + { "FastPlusPlus.DisplayName", "09 - Fast++" }, + { "FastPlusPlus.Name", "ELyraGamepadSensitivity::FastPlusPlus" }, + { "Insane.DisplayName", "10 - Insane" }, + { "Insane.Name", "ELyraGamepadSensitivity::Insane" }, + { "Invalid.Hidden", "" }, + { "Invalid.Name", "ELyraGamepadSensitivity::Invalid" }, + { "MAX.Hidden", "" }, + { "MAX.Name", "ELyraGamepadSensitivity::MAX" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Normal.DisplayName", "04 - Normal" }, + { "Normal.Name", "ELyraGamepadSensitivity::Normal" }, + { "NormalPlus.DisplayName", "05 - Normal+" }, + { "NormalPlus.Name", "ELyraGamepadSensitivity::NormalPlus" }, + { "NormalPlusPlus.DisplayName", "06 - Normal++" }, + { "NormalPlusPlus.Name", "ELyraGamepadSensitivity::NormalPlusPlus" }, + { "Slow.DisplayName", "01 - Slow" }, + { "Slow.Name", "ELyraGamepadSensitivity::Slow" }, + { "SlowPlus.DisplayName", "02 - Slow+" }, + { "SlowPlus.Name", "ELyraGamepadSensitivity::SlowPlus" }, + { "SlowPlusPlus.DisplayName", "03 - Slow++" }, + { "SlowPlusPlus.Name", "ELyraGamepadSensitivity::SlowPlusPlus" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraGamepadSensitivity::Invalid", (int64)ELyraGamepadSensitivity::Invalid }, + { "ELyraGamepadSensitivity::Slow", (int64)ELyraGamepadSensitivity::Slow }, + { "ELyraGamepadSensitivity::SlowPlus", (int64)ELyraGamepadSensitivity::SlowPlus }, + { "ELyraGamepadSensitivity::SlowPlusPlus", (int64)ELyraGamepadSensitivity::SlowPlusPlus }, + { "ELyraGamepadSensitivity::Normal", (int64)ELyraGamepadSensitivity::Normal }, + { "ELyraGamepadSensitivity::NormalPlus", (int64)ELyraGamepadSensitivity::NormalPlus }, + { "ELyraGamepadSensitivity::NormalPlusPlus", (int64)ELyraGamepadSensitivity::NormalPlusPlus }, + { "ELyraGamepadSensitivity::Fast", (int64)ELyraGamepadSensitivity::Fast }, + { "ELyraGamepadSensitivity::FastPlus", (int64)ELyraGamepadSensitivity::FastPlus }, + { "ELyraGamepadSensitivity::FastPlusPlus", (int64)ELyraGamepadSensitivity::FastPlusPlus }, + { "ELyraGamepadSensitivity::Insane", (int64)ELyraGamepadSensitivity::Insane }, + { "ELyraGamepadSensitivity::MAX", (int64)ELyraGamepadSensitivity::MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraGamepadSensitivity", + "ELyraGamepadSensitivity", + Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity() +{ + if (!Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton; +} +// End Enum ELyraGamepadSensitivity + +// Begin Class ULyraSettingsShared Function GetAllowAudioInBackgroundSetting +struct Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics +{ + struct LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms + { + ELyraAllowBackgroundAudioSetting ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(0, nullptr) }; // 2007560343 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetAllowAudioInBackgroundSetting", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetAllowAudioInBackgroundSetting) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraAllowBackgroundAudioSetting*)Z_Param__Result=P_THIS->GetAllowAudioInBackgroundSetting(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetAllowAudioInBackgroundSetting + +// Begin Class ULyraSettingsShared Function GetColorBlindMode +struct Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics +{ + struct LyraSettingsShared_eventGetColorBlindMode_Parms + { + EColorBlindMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "////////////////////////////////////////////////////////\n// Color Blind Options\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Color Blind Options" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetColorBlindMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(0, nullptr) }; // 651048152 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetColorBlindMode", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::LyraSettingsShared_eventGetColorBlindMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::LyraSettingsShared_eventGetColorBlindMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetColorBlindMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(EColorBlindMode*)Z_Param__Result=P_THIS->GetColorBlindMode(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetColorBlindMode + +// Begin Class ULyraSettingsShared Function GetColorBlindStrength +struct Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics +{ + struct LyraSettingsShared_eventGetColorBlindStrength_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetColorBlindStrength_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetColorBlindStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::LyraSettingsShared_eventGetColorBlindStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::LyraSettingsShared_eventGetColorBlindStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetColorBlindStrength) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetColorBlindStrength(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetColorBlindStrength + +// Begin Class ULyraSettingsShared Function GetForceFeedbackEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics +{ + struct LyraSettingsShared_eventGetForceFeedbackEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetForceFeedbackEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetForceFeedbackEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetForceFeedbackEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::LyraSettingsShared_eventGetForceFeedbackEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::LyraSettingsShared_eventGetForceFeedbackEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetForceFeedbackEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetForceFeedbackEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetForceFeedbackEnabled + +// Begin Class ULyraSettingsShared Function GetGamepadLookSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms + { + ELyraGamepadSensitivity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadLookSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadLookSensitivityPreset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraGamepadSensitivity*)Z_Param__Result=P_THIS->GetGamepadLookSensitivityPreset(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadLookSensitivityPreset + +// Begin Class ULyraSettingsShared Function GetGamepadLookStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics +{ + struct LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Getter for gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Getter for gamepad look stick dead zone value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadLookStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadLookStickDeadZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetGamepadLookStickDeadZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadLookStickDeadZone + +// Begin Class ULyraSettingsShared Function GetGamepadMoveStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics +{ + struct LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Getter for gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Getter for gamepad move stick dead zone value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadMoveStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadMoveStickDeadZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetGamepadMoveStickDeadZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadMoveStickDeadZone + +// Begin Class ULyraSettingsShared Function GetGamepadTargetingSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms + { + ELyraGamepadSensitivity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadTargetingSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadTargetingSensitivityPreset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraGamepadSensitivity*)Z_Param__Result=P_THIS->GetGamepadTargetingSensitivityPreset(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadTargetingSensitivityPreset + +// Begin Class ULyraSettingsShared Function GetInvertHorizontalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics +{ + struct LyraSettingsShared_eventGetInvertHorizontalAxis_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetInvertHorizontalAxis_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetInvertHorizontalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetInvertHorizontalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::LyraSettingsShared_eventGetInvertHorizontalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::LyraSettingsShared_eventGetInvertHorizontalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetInvertHorizontalAxis) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetInvertHorizontalAxis(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetInvertHorizontalAxis + +// Begin Class ULyraSettingsShared Function GetInvertVerticalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics +{ + struct LyraSettingsShared_eventGetInvertVerticalAxis_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetInvertVerticalAxis_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetInvertVerticalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetInvertVerticalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::LyraSettingsShared_eventGetInvertVerticalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::LyraSettingsShared_eventGetInvertVerticalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetInvertVerticalAxis) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetInvertVerticalAxis(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetInvertVerticalAxis + +// Begin Class ULyraSettingsShared Function GetMouseSensitivityX +struct Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics +{ + struct LyraSettingsShared_eventGetMouseSensitivityX_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetMouseSensitivityX_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetMouseSensitivityX", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::LyraSettingsShared_eventGetMouseSensitivityX_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::LyraSettingsShared_eventGetMouseSensitivityX_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetMouseSensitivityX) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetMouseSensitivityX(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetMouseSensitivityX + +// Begin Class ULyraSettingsShared Function GetMouseSensitivityY +struct Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics +{ + struct LyraSettingsShared_eventGetMouseSensitivityY_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetMouseSensitivityY_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetMouseSensitivityY", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::LyraSettingsShared_eventGetMouseSensitivityY_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::LyraSettingsShared_eventGetMouseSensitivityY_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetMouseSensitivityY) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetMouseSensitivityY(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetMouseSensitivityY + +// Begin Class ULyraSettingsShared Function GetSubtitlesBackgroundOpacity +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms + { + ESubtitleDisplayBackgroundOpacity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(0, nullptr) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesBackgroundOpacity", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesBackgroundOpacity) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayBackgroundOpacity*)Z_Param__Result=P_THIS->GetSubtitlesBackgroundOpacity(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesBackgroundOpacity + +// Begin Class ULyraSettingsShared Function GetSubtitlesEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetSubtitlesEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetSubtitlesEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::LyraSettingsShared_eventGetSubtitlesEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::LyraSettingsShared_eventGetSubtitlesEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetSubtitlesEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesEnabled + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextBorder +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextBorder_Parms + { + ESubtitleDisplayTextBorder ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextBorder_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(0, nullptr) }; // 4054656008 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextBorder", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::LyraSettingsShared_eventGetSubtitlesTextBorder_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::LyraSettingsShared_eventGetSubtitlesTextBorder_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextBorder) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextBorder*)Z_Param__Result=P_THIS->GetSubtitlesTextBorder(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextBorder + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextColor +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextColor_Parms + { + ESubtitleDisplayTextColor ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextColor_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(0, nullptr) }; // 3844635282 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextColor", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::LyraSettingsShared_eventGetSubtitlesTextColor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::LyraSettingsShared_eventGetSubtitlesTextColor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextColor) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextColor*)Z_Param__Result=P_THIS->GetSubtitlesTextColor(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextColor + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextSize +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextSize_Parms + { + ESubtitleDisplayTextSize ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextSize_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(0, nullptr) }; // 4054621106 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextSize", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::LyraSettingsShared_eventGetSubtitlesTextSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::LyraSettingsShared_eventGetSubtitlesTextSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextSize) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextSize*)Z_Param__Result=P_THIS->GetSubtitlesTextSize(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextSize + +// Begin Class ULyraSettingsShared Function GetTargetingMultiplier +struct Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics +{ + struct LyraSettingsShared_eventGetTargetingMultiplier_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTargetingMultiplier_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTargetingMultiplier", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::LyraSettingsShared_eventGetTargetingMultiplier_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::LyraSettingsShared_eventGetTargetingMultiplier_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTargetingMultiplier) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetTargetingMultiplier(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTargetingMultiplier + +// Begin Class ULyraSettingsShared Function GetTriggerHapticsEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticsEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticsEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetTriggerHapticsEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticsEnabled + +// Begin Class ULyraSettingsShared Function GetTriggerHapticStartPosition +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms + { + uint8 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms, ReturnValue), nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticStartPosition", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticStartPosition) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(uint8*)Z_Param__Result=P_THIS->GetTriggerHapticStartPosition(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticStartPosition + +// Begin Class ULyraSettingsShared Function GetTriggerHapticStrength +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticStrength_Parms + { + uint8 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTriggerHapticStrength_Parms, ReturnValue), nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::LyraSettingsShared_eventGetTriggerHapticStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::LyraSettingsShared_eventGetTriggerHapticStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticStrength) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(uint8*)Z_Param__Result=P_THIS->GetTriggerHapticStrength(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticStrength + +// Begin Class ULyraSettingsShared Function GetTriggerPullUsesHapticThreshold +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics +{ + struct LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerPullUsesHapticThreshold", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerPullUsesHapticThreshold) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetTriggerPullUsesHapticThreshold(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerPullUsesHapticThreshold + +// Begin Class ULyraSettingsShared Function SetAllowAudioInBackgroundSetting +struct Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics +{ + struct LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms + { + ELyraAllowBackgroundAudioSetting NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(0, nullptr) }; // 2007560343 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetAllowAudioInBackgroundSetting", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetAllowAudioInBackgroundSetting) +{ + P_GET_ENUM(ELyraAllowBackgroundAudioSetting,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAllowAudioInBackgroundSetting(ELyraAllowBackgroundAudioSetting(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetAllowAudioInBackgroundSetting + +// Begin Class ULyraSettingsShared Function SetColorBlindMode +struct Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics +{ + struct LyraSettingsShared_eventSetColorBlindMode_Parms + { + EColorBlindMode InMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode = { "InMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetColorBlindMode_Parms, InMode), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(0, nullptr) }; // 651048152 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetColorBlindMode", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::LyraSettingsShared_eventSetColorBlindMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::LyraSettingsShared_eventSetColorBlindMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetColorBlindMode) +{ + P_GET_ENUM(EColorBlindMode,Z_Param_InMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBlindMode(EColorBlindMode(Z_Param_InMode)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetColorBlindMode + +// Begin Class ULyraSettingsShared Function SetColorBlindStrength +struct Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics +{ + struct LyraSettingsShared_eventSetColorBlindStrength_Parms + { + int32 InColorBlindStrength; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InColorBlindStrength; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::NewProp_InColorBlindStrength = { "InColorBlindStrength", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetColorBlindStrength_Parms, InColorBlindStrength), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::NewProp_InColorBlindStrength, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetColorBlindStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::LyraSettingsShared_eventSetColorBlindStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::LyraSettingsShared_eventSetColorBlindStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetColorBlindStrength) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InColorBlindStrength); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBlindStrength(Z_Param_InColorBlindStrength); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetColorBlindStrength + +// Begin Class ULyraSettingsShared Function SetForceFeedbackEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics +{ + struct LyraSettingsShared_eventSetForceFeedbackEnabled_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetForceFeedbackEnabled_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetForceFeedbackEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetForceFeedbackEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::LyraSettingsShared_eventSetForceFeedbackEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::LyraSettingsShared_eventSetForceFeedbackEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetForceFeedbackEnabled) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForceFeedbackEnabled(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetForceFeedbackEnabled + +// Begin Class ULyraSettingsShared Function SetGamepadLookStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics +{ + struct LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setter for gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setter for gamepad look stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadLookStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadLookStickDeadZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadLookStickDeadZone(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadLookStickDeadZone + +// Begin Class ULyraSettingsShared Function SetGamepadMoveStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics +{ + struct LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setter for gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setter for gamepad move stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadMoveStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadMoveStickDeadZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadMoveStickDeadZone(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadMoveStickDeadZone + +// Begin Class ULyraSettingsShared Function SetGamepadTargetingSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms + { + ELyraGamepadSensitivity NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadTargetingSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadTargetingSensitivityPreset) +{ + P_GET_ENUM(ELyraGamepadSensitivity,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadTargetingSensitivityPreset(ELyraGamepadSensitivity(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadTargetingSensitivityPreset + +// Begin Class ULyraSettingsShared Function SetInvertHorizontalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics +{ + struct LyraSettingsShared_eventSetInvertHorizontalAxis_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetInvertHorizontalAxis_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetInvertHorizontalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetInvertHorizontalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::LyraSettingsShared_eventSetInvertHorizontalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::LyraSettingsShared_eventSetInvertHorizontalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetInvertHorizontalAxis) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetInvertHorizontalAxis(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetInvertHorizontalAxis + +// Begin Class ULyraSettingsShared Function SetInvertVerticalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics +{ + struct LyraSettingsShared_eventSetInvertVerticalAxis_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetInvertVerticalAxis_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetInvertVerticalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetInvertVerticalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::LyraSettingsShared_eventSetInvertVerticalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::LyraSettingsShared_eventSetInvertVerticalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetInvertVerticalAxis) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetInvertVerticalAxis(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetInvertVerticalAxis + +// Begin Class ULyraSettingsShared Function SetLookSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventSetLookSensitivityPreset_Parms + { + ELyraGamepadSensitivity NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetLookSensitivityPreset_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetLookSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::LyraSettingsShared_eventSetLookSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::LyraSettingsShared_eventSetLookSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetLookSensitivityPreset) +{ + P_GET_ENUM(ELyraGamepadSensitivity,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetLookSensitivityPreset(ELyraGamepadSensitivity(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetLookSensitivityPreset + +// Begin Class ULyraSettingsShared Function SetMouseSensitivityX +struct Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics +{ + struct LyraSettingsShared_eventSetMouseSensitivityX_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetMouseSensitivityX_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetMouseSensitivityX", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::LyraSettingsShared_eventSetMouseSensitivityX_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::LyraSettingsShared_eventSetMouseSensitivityX_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetMouseSensitivityX) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMouseSensitivityX(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetMouseSensitivityX + +// Begin Class ULyraSettingsShared Function SetMouseSensitivityY +struct Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics +{ + struct LyraSettingsShared_eventSetMouseSensitivityY_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetMouseSensitivityY_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetMouseSensitivityY", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::LyraSettingsShared_eventSetMouseSensitivityY_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::LyraSettingsShared_eventSetMouseSensitivityY_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetMouseSensitivityY) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMouseSensitivityY(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetMouseSensitivityY + +// Begin Class ULyraSettingsShared Function SetSubtitlesBackgroundOpacity +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms + { + ESubtitleDisplayBackgroundOpacity Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(0, nullptr) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesBackgroundOpacity", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesBackgroundOpacity) +{ + P_GET_ENUM(ESubtitleDisplayBackgroundOpacity,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesBackgroundOpacity(ESubtitleDisplayBackgroundOpacity(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesBackgroundOpacity + +// Begin Class ULyraSettingsShared Function SetSubtitlesEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesEnabled_Parms + { + bool Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_Value_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetSubtitlesEnabled_Parms*)Obj)->Value = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetSubtitlesEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::LyraSettingsShared_eventSetSubtitlesEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::LyraSettingsShared_eventSetSubtitlesEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesEnabled) +{ + P_GET_UBOOL(Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesEnabled(Z_Param_Value); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesEnabled + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextBorder +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextBorder_Parms + { + ESubtitleDisplayTextBorder Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextBorder_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(0, nullptr) }; // 4054656008 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextBorder", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::LyraSettingsShared_eventSetSubtitlesTextBorder_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::LyraSettingsShared_eventSetSubtitlesTextBorder_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextBorder) +{ + P_GET_ENUM(ESubtitleDisplayTextBorder,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextBorder(ESubtitleDisplayTextBorder(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextBorder + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextColor +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextColor_Parms + { + ESubtitleDisplayTextColor Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextColor_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(0, nullptr) }; // 3844635282 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextColor", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::LyraSettingsShared_eventSetSubtitlesTextColor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::LyraSettingsShared_eventSetSubtitlesTextColor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextColor) +{ + P_GET_ENUM(ESubtitleDisplayTextColor,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextColor(ESubtitleDisplayTextColor(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextColor + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextSize +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextSize_Parms + { + ESubtitleDisplayTextSize Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextSize_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(0, nullptr) }; // 4054621106 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextSize", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::LyraSettingsShared_eventSetSubtitlesTextSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::LyraSettingsShared_eventSetSubtitlesTextSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextSize) +{ + P_GET_ENUM(ESubtitleDisplayTextSize,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextSize(ESubtitleDisplayTextSize(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextSize + +// Begin Class ULyraSettingsShared Function SetTargetingMultiplier +struct Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics +{ + struct LyraSettingsShared_eventSetTargetingMultiplier_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTargetingMultiplier_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTargetingMultiplier", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::LyraSettingsShared_eventSetTargetingMultiplier_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::LyraSettingsShared_eventSetTargetingMultiplier_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTargetingMultiplier) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTargetingMultiplier(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTargetingMultiplier + +// Begin Class ULyraSettingsShared Function SetTriggerHapticsEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticsEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticsEnabled) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticsEnabled(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticsEnabled + +// Begin Class ULyraSettingsShared Function SetTriggerHapticStartPosition +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms + { + uint8 NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms, NewValue), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticStartPosition", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticStartPosition) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticStartPosition(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticStartPosition + +// Begin Class ULyraSettingsShared Function SetTriggerHapticStrength +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticStrength_Parms + { + uint8 NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTriggerHapticStrength_Parms, NewValue), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::LyraSettingsShared_eventSetTriggerHapticStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::LyraSettingsShared_eventSetTriggerHapticStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticStrength) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticStrength(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticStrength + +// Begin Class ULyraSettingsShared Function SetTriggerPullUsesHapticThreshold +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics +{ + struct LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerPullUsesHapticThreshold", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerPullUsesHapticThreshold) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerPullUsesHapticThreshold(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerPullUsesHapticThreshold + +// Begin Class ULyraSettingsShared +void ULyraSettingsShared::StaticRegisterNativesULyraSettingsShared() +{ + UClass* Class = ULyraSettingsShared::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAllowAudioInBackgroundSetting", &ULyraSettingsShared::execGetAllowAudioInBackgroundSetting }, + { "GetColorBlindMode", &ULyraSettingsShared::execGetColorBlindMode }, + { "GetColorBlindStrength", &ULyraSettingsShared::execGetColorBlindStrength }, + { "GetForceFeedbackEnabled", &ULyraSettingsShared::execGetForceFeedbackEnabled }, + { "GetGamepadLookSensitivityPreset", &ULyraSettingsShared::execGetGamepadLookSensitivityPreset }, + { "GetGamepadLookStickDeadZone", &ULyraSettingsShared::execGetGamepadLookStickDeadZone }, + { "GetGamepadMoveStickDeadZone", &ULyraSettingsShared::execGetGamepadMoveStickDeadZone }, + { "GetGamepadTargetingSensitivityPreset", &ULyraSettingsShared::execGetGamepadTargetingSensitivityPreset }, + { "GetInvertHorizontalAxis", &ULyraSettingsShared::execGetInvertHorizontalAxis }, + { "GetInvertVerticalAxis", &ULyraSettingsShared::execGetInvertVerticalAxis }, + { "GetMouseSensitivityX", &ULyraSettingsShared::execGetMouseSensitivityX }, + { "GetMouseSensitivityY", &ULyraSettingsShared::execGetMouseSensitivityY }, + { "GetSubtitlesBackgroundOpacity", &ULyraSettingsShared::execGetSubtitlesBackgroundOpacity }, + { "GetSubtitlesEnabled", &ULyraSettingsShared::execGetSubtitlesEnabled }, + { "GetSubtitlesTextBorder", &ULyraSettingsShared::execGetSubtitlesTextBorder }, + { "GetSubtitlesTextColor", &ULyraSettingsShared::execGetSubtitlesTextColor }, + { "GetSubtitlesTextSize", &ULyraSettingsShared::execGetSubtitlesTextSize }, + { "GetTargetingMultiplier", &ULyraSettingsShared::execGetTargetingMultiplier }, + { "GetTriggerHapticsEnabled", &ULyraSettingsShared::execGetTriggerHapticsEnabled }, + { "GetTriggerHapticStartPosition", &ULyraSettingsShared::execGetTriggerHapticStartPosition }, + { "GetTriggerHapticStrength", &ULyraSettingsShared::execGetTriggerHapticStrength }, + { "GetTriggerPullUsesHapticThreshold", &ULyraSettingsShared::execGetTriggerPullUsesHapticThreshold }, + { "SetAllowAudioInBackgroundSetting", &ULyraSettingsShared::execSetAllowAudioInBackgroundSetting }, + { "SetColorBlindMode", &ULyraSettingsShared::execSetColorBlindMode }, + { "SetColorBlindStrength", &ULyraSettingsShared::execSetColorBlindStrength }, + { "SetForceFeedbackEnabled", &ULyraSettingsShared::execSetForceFeedbackEnabled }, + { "SetGamepadLookStickDeadZone", &ULyraSettingsShared::execSetGamepadLookStickDeadZone }, + { "SetGamepadMoveStickDeadZone", &ULyraSettingsShared::execSetGamepadMoveStickDeadZone }, + { "SetGamepadTargetingSensitivityPreset", &ULyraSettingsShared::execSetGamepadTargetingSensitivityPreset }, + { "SetInvertHorizontalAxis", &ULyraSettingsShared::execSetInvertHorizontalAxis }, + { "SetInvertVerticalAxis", &ULyraSettingsShared::execSetInvertVerticalAxis }, + { "SetLookSensitivityPreset", &ULyraSettingsShared::execSetLookSensitivityPreset }, + { "SetMouseSensitivityX", &ULyraSettingsShared::execSetMouseSensitivityX }, + { "SetMouseSensitivityY", &ULyraSettingsShared::execSetMouseSensitivityY }, + { "SetSubtitlesBackgroundOpacity", &ULyraSettingsShared::execSetSubtitlesBackgroundOpacity }, + { "SetSubtitlesEnabled", &ULyraSettingsShared::execSetSubtitlesEnabled }, + { "SetSubtitlesTextBorder", &ULyraSettingsShared::execSetSubtitlesTextBorder }, + { "SetSubtitlesTextColor", &ULyraSettingsShared::execSetSubtitlesTextColor }, + { "SetSubtitlesTextSize", &ULyraSettingsShared::execSetSubtitlesTextSize }, + { "SetTargetingMultiplier", &ULyraSettingsShared::execSetTargetingMultiplier }, + { "SetTriggerHapticsEnabled", &ULyraSettingsShared::execSetTriggerHapticsEnabled }, + { "SetTriggerHapticStartPosition", &ULyraSettingsShared::execSetTriggerHapticStartPosition }, + { "SetTriggerHapticStrength", &ULyraSettingsShared::execSetTriggerHapticStrength }, + { "SetTriggerPullUsesHapticThreshold", &ULyraSettingsShared::execSetTriggerPullUsesHapticThreshold }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsShared); +UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister() +{ + return ULyraSettingsShared::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsShared_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraSettingsShared - The \"Shared\" settings are stored as part of the USaveGame system, these settings are not machine\n * specific like the local settings, and are safe to store in the cloud - and 'share' them. Using the save game system\n * we can also store settings per player, so things like controller keybind preferences should go here, because if those\n * are stored in the local settings all users would get them.\n *\n */" }, +#endif + { "IncludePath", "Settings/LyraSettingsShared.h" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsShared - The \"Shared\" settings are stored as part of the USaveGame system, these settings are not machine\nspecific like the local settings, and are safe to store in the cloud - and 'share' them. Using the save game system\nwe can also store settings per player, so things like controller keybind preferences should go here, because if those\nare stored in the local settings all users would get them." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorBlindMode_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorBlindStrength_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bForceFeedbackEnabled_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Is force feedback enabled when a controller is being used? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Is force feedback enabled when a controller is being used?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadMoveStickDeadZone_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the gamepad move stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadLookStickDeadZone_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the gamepad look stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTriggerHapticsEnabled_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Are trigger haptics enabled? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Are trigger haptics enabled?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTriggerPullUsesHapticThreshold_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Does the game use the haptic feedback as its threshold for judging button presses? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the game use the haptic feedback as its threshold for judging button presses?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TriggerHapticStrength_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The strength of the trigger haptic effects. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The strength of the trigger haptic effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TriggerHapticStartPosition_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The start position of the trigger haptic effects */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The start position of the trigger haptic effects" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableSubtitles_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextSize_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextColor_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextBorder_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleBackgroundOpacity_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowAudioInBackground_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingCulture_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The pending culture to apply */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pending culture to apply" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseSensitivityX_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the mouse horizontal sensitivity */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the mouse horizontal sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseSensitivityY_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the mouse vertical sensitivity */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the mouse vertical sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingMultiplier_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Multiplier applied while Aiming down sights. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier applied while Aiming down sights." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bInvertVerticalAxis_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true then the vertical look axis should be inverted */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true then the vertical look axis should be inverted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bInvertHorizontalAxis_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true then the horizontal look axis should be inverted */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true then the horizontal look axis should be inverted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadLookSensitivityPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadTargetingSensitivityPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ColorBlindMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ColorBlindMode; + static const UECodeGen_Private::FIntPropertyParams NewProp_ColorBlindStrength; + static void NewProp_bForceFeedbackEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bForceFeedbackEnabled; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GamepadMoveStickDeadZone; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GamepadLookStickDeadZone; + static void NewProp_bTriggerHapticsEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTriggerHapticsEnabled; + static void NewProp_bTriggerPullUsesHapticThreshold_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTriggerPullUsesHapticThreshold; + static const UECodeGen_Private::FBytePropertyParams NewProp_TriggerHapticStrength; + static const UECodeGen_Private::FBytePropertyParams NewProp_TriggerHapticStartPosition; + static void NewProp_bEnableSubtitles_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableSubtitles; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextSize_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextSize; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextColor_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextColor; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextBorder_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextBorder; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleBackgroundOpacity_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleBackgroundOpacity; + static const UECodeGen_Private::FBytePropertyParams NewProp_AllowAudioInBackground_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_AllowAudioInBackground; + static const UECodeGen_Private::FStrPropertyParams NewProp_PendingCulture; + static const UECodeGen_Private::FDoublePropertyParams NewProp_MouseSensitivityX; + static const UECodeGen_Private::FDoublePropertyParams NewProp_MouseSensitivityY; + static const UECodeGen_Private::FDoublePropertyParams NewProp_TargetingMultiplier; + static void NewProp_bInvertVerticalAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bInvertVerticalAxis; + static void NewProp_bInvertHorizontalAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bInvertHorizontalAxis; + static const UECodeGen_Private::FBytePropertyParams NewProp_GamepadLookSensitivityPreset_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GamepadLookSensitivityPreset; + static const UECodeGen_Private::FBytePropertyParams NewProp_GamepadTargetingSensitivityPreset_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GamepadTargetingSensitivityPreset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting, "GetAllowAudioInBackgroundSetting" }, // 3225280458 + { &Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode, "GetColorBlindMode" }, // 1572107721 + { &Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength, "GetColorBlindStrength" }, // 4112635604 + { &Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled, "GetForceFeedbackEnabled" }, // 535918361 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset, "GetGamepadLookSensitivityPreset" }, // 858797814 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone, "GetGamepadLookStickDeadZone" }, // 4235017447 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone, "GetGamepadMoveStickDeadZone" }, // 1249502549 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset, "GetGamepadTargetingSensitivityPreset" }, // 3203572878 + { &Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis, "GetInvertHorizontalAxis" }, // 2396955491 + { &Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis, "GetInvertVerticalAxis" }, // 294143857 + { &Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX, "GetMouseSensitivityX" }, // 1561454442 + { &Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY, "GetMouseSensitivityY" }, // 5681093 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity, "GetSubtitlesBackgroundOpacity" }, // 1044132358 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled, "GetSubtitlesEnabled" }, // 755499391 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder, "GetSubtitlesTextBorder" }, // 2320481361 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor, "GetSubtitlesTextColor" }, // 2665808546 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize, "GetSubtitlesTextSize" }, // 1886224070 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier, "GetTargetingMultiplier" }, // 2643776537 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled, "GetTriggerHapticsEnabled" }, // 3028491183 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition, "GetTriggerHapticStartPosition" }, // 71959617 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength, "GetTriggerHapticStrength" }, // 1489767379 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold, "GetTriggerPullUsesHapticThreshold" }, // 337728852 + { &Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting, "SetAllowAudioInBackgroundSetting" }, // 3538814134 + { &Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode, "SetColorBlindMode" }, // 3973780014 + { &Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength, "SetColorBlindStrength" }, // 3007008632 + { &Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled, "SetForceFeedbackEnabled" }, // 288356983 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone, "SetGamepadLookStickDeadZone" }, // 3755572504 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone, "SetGamepadMoveStickDeadZone" }, // 1228243062 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset, "SetGamepadTargetingSensitivityPreset" }, // 1594129908 + { &Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis, "SetInvertHorizontalAxis" }, // 2127369391 + { &Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis, "SetInvertVerticalAxis" }, // 3653237345 + { &Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset, "SetLookSensitivityPreset" }, // 2235375033 + { &Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX, "SetMouseSensitivityX" }, // 1035738593 + { &Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY, "SetMouseSensitivityY" }, // 63555230 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity, "SetSubtitlesBackgroundOpacity" }, // 3142074255 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled, "SetSubtitlesEnabled" }, // 3470772753 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder, "SetSubtitlesTextBorder" }, // 3674504155 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor, "SetSubtitlesTextColor" }, // 1760877953 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize, "SetSubtitlesTextSize" }, // 432592285 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier, "SetTargetingMultiplier" }, // 3593949278 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled, "SetTriggerHapticsEnabled" }, // 3181429218 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition, "SetTriggerHapticStartPosition" }, // 467071736 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength, "SetTriggerHapticStrength" }, // 4169127111 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold, "SetTriggerPullUsesHapticThreshold" }, // 3474456121 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode = { "ColorBlindMode", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, ColorBlindMode), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorBlindMode_MetaData), NewProp_ColorBlindMode_MetaData) }; // 651048152 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindStrength = { "ColorBlindStrength", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, ColorBlindStrength), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorBlindStrength_MetaData), NewProp_ColorBlindStrength_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bForceFeedbackEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled = { "bForceFeedbackEnabled", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bForceFeedbackEnabled_MetaData), NewProp_bForceFeedbackEnabled_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadMoveStickDeadZone = { "GamepadMoveStickDeadZone", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadMoveStickDeadZone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadMoveStickDeadZone_MetaData), NewProp_GamepadMoveStickDeadZone_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookStickDeadZone = { "GamepadLookStickDeadZone", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadLookStickDeadZone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadLookStickDeadZone_MetaData), NewProp_GamepadLookStickDeadZone_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bTriggerHapticsEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled = { "bTriggerHapticsEnabled", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTriggerHapticsEnabled_MetaData), NewProp_bTriggerHapticsEnabled_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bTriggerPullUsesHapticThreshold = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold = { "bTriggerPullUsesHapticThreshold", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTriggerPullUsesHapticThreshold_MetaData), NewProp_bTriggerPullUsesHapticThreshold_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStrength = { "TriggerHapticStrength", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TriggerHapticStrength), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TriggerHapticStrength_MetaData), NewProp_TriggerHapticStrength_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStartPosition = { "TriggerHapticStartPosition", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TriggerHapticStartPosition), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TriggerHapticStartPosition_MetaData), NewProp_TriggerHapticStartPosition_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bEnableSubtitles = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles = { "bEnableSubtitles", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableSubtitles_MetaData), NewProp_bEnableSubtitles_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize = { "SubtitleTextSize", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextSize), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextSize_MetaData), NewProp_SubtitleTextSize_MetaData) }; // 4054621106 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor = { "SubtitleTextColor", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextColor), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextColor_MetaData), NewProp_SubtitleTextColor_MetaData) }; // 3844635282 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder = { "SubtitleTextBorder", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextBorder), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextBorder_MetaData), NewProp_SubtitleTextBorder_MetaData) }; // 4054656008 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity = { "SubtitleBackgroundOpacity", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleBackgroundOpacity), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleBackgroundOpacity_MetaData), NewProp_SubtitleBackgroundOpacity_MetaData) }; // 587908002 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground = { "AllowAudioInBackground", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, AllowAudioInBackground), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowAudioInBackground_MetaData), NewProp_AllowAudioInBackground_MetaData) }; // 2007560343 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_PendingCulture = { "PendingCulture", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, PendingCulture), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingCulture_MetaData), NewProp_PendingCulture_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityX = { "MouseSensitivityX", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, MouseSensitivityX), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseSensitivityX_MetaData), NewProp_MouseSensitivityX_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityY = { "MouseSensitivityY", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, MouseSensitivityY), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseSensitivityY_MetaData), NewProp_MouseSensitivityY_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TargetingMultiplier = { "TargetingMultiplier", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TargetingMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingMultiplier_MetaData), NewProp_TargetingMultiplier_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bInvertVerticalAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis = { "bInvertVerticalAxis", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bInvertVerticalAxis_MetaData), NewProp_bInvertVerticalAxis_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bInvertHorizontalAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis = { "bInvertHorizontalAxis", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bInvertHorizontalAxis_MetaData), NewProp_bInvertHorizontalAxis_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset = { "GamepadLookSensitivityPreset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadLookSensitivityPreset), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadLookSensitivityPreset_MetaData), NewProp_GamepadLookSensitivityPreset_MetaData) }; // 4214474486 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset = { "GamepadTargetingSensitivityPreset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadTargetingSensitivityPreset), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadTargetingSensitivityPreset_MetaData), NewProp_GamepadTargetingSensitivityPreset_MetaData) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindStrength, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadMoveStickDeadZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookStickDeadZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStrength, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStartPosition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_PendingCulture, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TargetingMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsShared_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayerSaveGame, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsShared_Statics::ClassParams = { + &ULyraSettingsShared::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsShared_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsShared() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton, Z_Construct_UClass_ULyraSettingsShared_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsShared::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsShared); +ULyraSettingsShared::~ULyraSettingsShared() {} +// End Class ULyraSettingsShared + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EColorBlindMode_StaticEnum, TEXT("EColorBlindMode"), &Z_Registration_Info_UEnum_EColorBlindMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 651048152U) }, + { ELyraAllowBackgroundAudioSetting_StaticEnum, TEXT("ELyraAllowBackgroundAudioSetting"), &Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2007560343U) }, + { ELyraGamepadSensitivity_StaticEnum, TEXT("ELyraGamepadSensitivity"), &Z_Registration_Info_UEnum_ELyraGamepadSensitivity, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4214474486U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsShared, ULyraSettingsShared::StaticClass, TEXT("ULyraSettingsShared"), &Z_Registration_Info_UClass_ULyraSettingsShared, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsShared), 1816384728U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_2403577367(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.generated.h new file mode 100644 index 00000000..f51fb943 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSettingsShared.generated.h @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraSettingsShared.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class EColorBlindMode : uint8; +enum class ELyraAllowBackgroundAudioSetting : uint8; +enum class ELyraGamepadSensitivity : uint8; +enum class ESubtitleDisplayBackgroundOpacity : uint8; +enum class ESubtitleDisplayTextBorder : uint8; +enum class ESubtitleDisplayTextColor : uint8; +enum class ESubtitleDisplayTextSize : uint8; +#ifdef LYRAGAME_LyraSettingsShared_generated_h +#error "LyraSettingsShared.generated.h already included, missing '#pragma once' in LyraSettingsShared.h" +#endif +#define LYRAGAME_LyraSettingsShared_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetGamepadTargetingSensitivityPreset); \ + DECLARE_FUNCTION(execGetGamepadTargetingSensitivityPreset); \ + DECLARE_FUNCTION(execSetLookSensitivityPreset); \ + DECLARE_FUNCTION(execGetGamepadLookSensitivityPreset); \ + DECLARE_FUNCTION(execSetInvertHorizontalAxis); \ + DECLARE_FUNCTION(execGetInvertHorizontalAxis); \ + DECLARE_FUNCTION(execSetInvertVerticalAxis); \ + DECLARE_FUNCTION(execGetInvertVerticalAxis); \ + DECLARE_FUNCTION(execSetTargetingMultiplier); \ + DECLARE_FUNCTION(execGetTargetingMultiplier); \ + DECLARE_FUNCTION(execSetMouseSensitivityY); \ + DECLARE_FUNCTION(execGetMouseSensitivityY); \ + DECLARE_FUNCTION(execSetMouseSensitivityX); \ + DECLARE_FUNCTION(execGetMouseSensitivityX); \ + DECLARE_FUNCTION(execSetAllowAudioInBackgroundSetting); \ + DECLARE_FUNCTION(execGetAllowAudioInBackgroundSetting); \ + DECLARE_FUNCTION(execSetSubtitlesBackgroundOpacity); \ + DECLARE_FUNCTION(execGetSubtitlesBackgroundOpacity); \ + DECLARE_FUNCTION(execSetSubtitlesTextBorder); \ + DECLARE_FUNCTION(execGetSubtitlesTextBorder); \ + DECLARE_FUNCTION(execSetSubtitlesTextColor); \ + DECLARE_FUNCTION(execGetSubtitlesTextColor); \ + DECLARE_FUNCTION(execSetSubtitlesTextSize); \ + DECLARE_FUNCTION(execGetSubtitlesTextSize); \ + DECLARE_FUNCTION(execSetSubtitlesEnabled); \ + DECLARE_FUNCTION(execGetSubtitlesEnabled); \ + DECLARE_FUNCTION(execSetTriggerHapticStartPosition); \ + DECLARE_FUNCTION(execGetTriggerHapticStartPosition); \ + DECLARE_FUNCTION(execSetTriggerHapticStrength); \ + DECLARE_FUNCTION(execGetTriggerHapticStrength); \ + DECLARE_FUNCTION(execSetTriggerPullUsesHapticThreshold); \ + DECLARE_FUNCTION(execGetTriggerPullUsesHapticThreshold); \ + DECLARE_FUNCTION(execSetTriggerHapticsEnabled); \ + DECLARE_FUNCTION(execGetTriggerHapticsEnabled); \ + DECLARE_FUNCTION(execSetGamepadLookStickDeadZone); \ + DECLARE_FUNCTION(execGetGamepadLookStickDeadZone); \ + DECLARE_FUNCTION(execSetGamepadMoveStickDeadZone); \ + DECLARE_FUNCTION(execGetGamepadMoveStickDeadZone); \ + DECLARE_FUNCTION(execSetForceFeedbackEnabled); \ + DECLARE_FUNCTION(execGetForceFeedbackEnabled); \ + DECLARE_FUNCTION(execSetColorBlindStrength); \ + DECLARE_FUNCTION(execGetColorBlindStrength); \ + DECLARE_FUNCTION(execSetColorBlindMode); \ + DECLARE_FUNCTION(execGetColorBlindMode); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsShared(); \ + friend struct Z_Construct_UClass_ULyraSettingsShared_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsShared, ULocalPlayerSaveGame, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsShared) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsShared(ULyraSettingsShared&&); \ + ULyraSettingsShared(const ULyraSettingsShared&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsShared); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsShared); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingsShared) \ + NO_API virtual ~ULyraSettingsShared(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_63_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h + + +#define FOREACH_ENUM_ECOLORBLINDMODE(op) \ + op(EColorBlindMode::Off) \ + op(EColorBlindMode::Deuteranope) \ + op(EColorBlindMode::Protanope) \ + op(EColorBlindMode::Tritanope) + +enum class EColorBlindMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAALLOWBACKGROUNDAUDIOSETTING(op) \ + op(ELyraAllowBackgroundAudioSetting::Off) \ + op(ELyraAllowBackgroundAudioSetting::AllSounds) \ + op(ELyraAllowBackgroundAudioSetting::Num) + +enum class ELyraAllowBackgroundAudioSetting : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAGAMEPADSENSITIVITY(op) \ + op(ELyraGamepadSensitivity::Invalid) \ + op(ELyraGamepadSensitivity::Slow) \ + op(ELyraGamepadSensitivity::SlowPlus) \ + op(ELyraGamepadSensitivity::SlowPlusPlus) \ + op(ELyraGamepadSensitivity::Normal) \ + op(ELyraGamepadSensitivity::NormalPlus) \ + op(ELyraGamepadSensitivity::NormalPlusPlus) \ + op(ELyraGamepadSensitivity::Fast) \ + op(ELyraGamepadSensitivity::FastPlus) \ + op(ELyraGamepadSensitivity::FastPlusPlus) \ + op(ELyraGamepadSensitivity::Insane) + +enum class ELyraGamepadSensitivity : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp new file mode 100644 index 00000000..f9806952 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraSignificanceManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSignificanceManager() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSignificanceManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSignificanceManager_NoRegister(); +SIGNIFICANCEMANAGER_API UClass* Z_Construct_UClass_USignificanceManager(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSignificanceManager +void ULyraSignificanceManager::StaticRegisterNativesULyraSignificanceManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSignificanceManager); +UClass* Z_Construct_UClass_ULyraSignificanceManager_NoRegister() +{ + return ULyraSignificanceManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraSignificanceManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraSignificanceManager.h" }, + { "ModuleRelativePath", "System/LyraSignificanceManager.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSignificanceManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_USignificanceManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSignificanceManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSignificanceManager_Statics::ClassParams = { + &ULyraSignificanceManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSignificanceManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSignificanceManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSignificanceManager() +{ + if (!Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton, Z_Construct_UClass_ULyraSignificanceManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSignificanceManager::StaticClass(); +} +ULyraSignificanceManager::ULyraSignificanceManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSignificanceManager); +ULyraSignificanceManager::~ULyraSignificanceManager() {} +// End Class ULyraSignificanceManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSignificanceManager, ULyraSignificanceManager::StaticClass, TEXT("ULyraSignificanceManager"), &Z_Registration_Info_UClass_ULyraSignificanceManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSignificanceManager), 4040095829U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_1883940489(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h new file mode 100644 index 00000000..e753c4ce --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraSignificanceManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSignificanceManager_generated_h +#error "LyraSignificanceManager.generated.h already included, missing '#pragma once' in LyraSignificanceManager.h" +#endif +#define LYRAGAME_LyraSignificanceManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSignificanceManager(); \ + friend struct Z_Construct_UClass_ULyraSignificanceManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraSignificanceManager, USignificanceManager, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSignificanceManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSignificanceManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSignificanceManager(ULyraSignificanceManager&&); \ + ULyraSignificanceManager(const ULyraSignificanceManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSignificanceManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSignificanceManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSignificanceManager) \ + NO_API virtual ~ULyraSignificanceManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp new file mode 100644 index 00000000..2eec82ba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp @@ -0,0 +1,479 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraSimulatedInputWidget.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSimulatedInputWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonHardwareVisibilityBorder_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputLocalPlayerSubsystem_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSimulatedInputWidget Function FlushSimulatedInput +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "FlushSimulatedInput", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execFlushSimulatedInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FlushSimulatedInput(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function FlushSimulatedInput + +// Begin Class ULyraSimulatedInputWidget Function GetAssociatedAction +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics +{ + struct LyraSimulatedInputWidget_eventGetAssociatedAction_Parms + { + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetAssociatedAction_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetAssociatedAction", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::LyraSimulatedInputWidget_eventGetAssociatedAction_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::LyraSimulatedInputWidget_eventGetAssociatedAction_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetAssociatedAction) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->GetAssociatedAction(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetAssociatedAction + +// Begin Class ULyraSimulatedInputWidget Function GetEnhancedInputSubsystem +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics +{ + struct LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms + { + UEnhancedInputLocalPlayerSubsystem* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Get the enhanced input subsystem based on the owning local player of this widget. Will return null if there is no owning player */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get the enhanced input subsystem based on the owning local player of this widget. Will return null if there is no owning player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms, ReturnValue), Z_Construct_UClass_UEnhancedInputLocalPlayerSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetEnhancedInputSubsystem", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetEnhancedInputSubsystem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UEnhancedInputLocalPlayerSubsystem**)Z_Param__Result=P_THIS->GetEnhancedInputSubsystem(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetEnhancedInputSubsystem + +// Begin Class ULyraSimulatedInputWidget Function GetSimulatedKey +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics +{ + struct LyraSimulatedInputWidget_eventGetSimulatedKey_Parms + { + FKey ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current key that will be used to input any values. */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current key that will be used to input any values." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetSimulatedKey_Parms, ReturnValue), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetSimulatedKey", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::LyraSimulatedInputWidget_eventGetSimulatedKey_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::LyraSimulatedInputWidget_eventGetSimulatedKey_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetSimulatedKey) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FKey*)Z_Param__Result=P_THIS->GetSimulatedKey(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetSimulatedKey + +// Begin Class ULyraSimulatedInputWidget Function InputKeyValue +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics +{ + struct LyraSimulatedInputWidget_eventInputKeyValue_Parms + { + FVector Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Injects the given vector as an input to the current simulated key.\n\x09 * This calls \"InputKey\" on the current player.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Injects the given vector as an input to the current simulated key.\nThis calls \"InputKey\" on the current player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Value_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventInputKeyValue_Parms, Value), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Value_MetaData), NewProp_Value_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "InputKeyValue", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::LyraSimulatedInputWidget_eventInputKeyValue_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::LyraSimulatedInputWidget_eventInputKeyValue_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execInputKeyValue) +{ + P_GET_STRUCT_REF(FVector,Z_Param_Out_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InputKeyValue(Z_Param_Out_Value); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function InputKeyValue + +// Begin Class ULyraSimulatedInputWidget Function InputKeyValue2D +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics +{ + struct LyraSimulatedInputWidget_eventInputKeyValue2D_Parms + { + FVector2D Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Injects the given vector as an input to the current simulated key.\n\x09 * This calls \"InputKey\" on the current player.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Injects the given vector as an input to the current simulated key.\nThis calls \"InputKey\" on the current player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Value_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventInputKeyValue2D_Parms, Value), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Value_MetaData), NewProp_Value_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "InputKeyValue2D", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::LyraSimulatedInputWidget_eventInputKeyValue2D_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::LyraSimulatedInputWidget_eventInputKeyValue2D_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execInputKeyValue2D) +{ + P_GET_STRUCT_REF(FVector2D,Z_Param_Out_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InputKeyValue2D(Z_Param_Out_Value); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function InputKeyValue2D + +// Begin Class ULyraSimulatedInputWidget Function OnControlMappingsRebuilt +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called whenever control mappings change, so we have a chance to adapt our own keys */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called whenever control mappings change, so we have a chance to adapt our own keys" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "OnControlMappingsRebuilt", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execOnControlMappingsRebuilt) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControlMappingsRebuilt(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function OnControlMappingsRebuilt + +// Begin Class ULyraSimulatedInputWidget +void ULyraSimulatedInputWidget::StaticRegisterNativesULyraSimulatedInputWidget() +{ + UClass* Class = ULyraSimulatedInputWidget::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FlushSimulatedInput", &ULyraSimulatedInputWidget::execFlushSimulatedInput }, + { "GetAssociatedAction", &ULyraSimulatedInputWidget::execGetAssociatedAction }, + { "GetEnhancedInputSubsystem", &ULyraSimulatedInputWidget::execGetEnhancedInputSubsystem }, + { "GetSimulatedKey", &ULyraSimulatedInputWidget::execGetSimulatedKey }, + { "InputKeyValue", &ULyraSimulatedInputWidget::execInputKeyValue }, + { "InputKeyValue2D", &ULyraSimulatedInputWidget::execInputKeyValue2D }, + { "OnControlMappingsRebuilt", &ULyraSimulatedInputWidget::execOnControlMappingsRebuilt }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSimulatedInputWidget); +UClass* Z_Construct_UClass_ULyraSimulatedInputWidget_NoRegister() +{ + return ULyraSimulatedInputWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraSimulatedInputWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A UMG widget with base functionality to inject input (keys or input actions)\n * to the enhanced input subsystem.\n */" }, +#endif + { "DisplayName", "Lyra Simulated Input Widget" }, + { "IncludePath", "UI/LyraSimulatedInputWidget.h" }, + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A UMG widget with base functionality to inject input (keys or input actions)\nto the enhanced input subsystem." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CommonVisibilityBorder_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The common visibility border will allow you to specify UI for only specific platforms if desired */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The common visibility border will allow you to specify UI for only specific platforms if desired" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedAction_MetaData[] = { + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The associated input action that we should simulate input for */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The associated input action that we should simulate input for" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FallbackBindingKey_MetaData[] = { + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Key to simulate input for in the case where none are currently bound to the associated action */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Key to simulate input for in the case where none are currently bound to the associated action" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CommonVisibilityBorder; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AssociatedAction; + static const UECodeGen_Private::FStructPropertyParams NewProp_FallbackBindingKey; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput, "FlushSimulatedInput" }, // 745470216 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction, "GetAssociatedAction" }, // 1224732831 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem, "GetEnhancedInputSubsystem" }, // 1990826529 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey, "GetSimulatedKey" }, // 3602096030 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue, "InputKeyValue" }, // 3749652842 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D, "InputKeyValue2D" }, // 3478275248 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt, "OnControlMappingsRebuilt" }, // 1241237992 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_CommonVisibilityBorder = { "CommonVisibilityBorder", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, CommonVisibilityBorder), Z_Construct_UClass_UCommonHardwareVisibilityBorder_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CommonVisibilityBorder_MetaData), NewProp_CommonVisibilityBorder_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_AssociatedAction = { "AssociatedAction", nullptr, (EPropertyFlags)0x0124080000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, AssociatedAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedAction_MetaData), NewProp_AssociatedAction_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_FallbackBindingKey = { "FallbackBindingKey", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, FallbackBindingKey), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FallbackBindingKey_MetaData), NewProp_FallbackBindingKey_MetaData) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_CommonVisibilityBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_AssociatedAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_FallbackBindingKey, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::ClassParams = { + &ULyraSimulatedInputWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers), + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSimulatedInputWidget() +{ + if (!Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton, Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSimulatedInputWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSimulatedInputWidget); +ULyraSimulatedInputWidget::~ULyraSimulatedInputWidget() {} +// End Class ULyraSimulatedInputWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSimulatedInputWidget, ULyraSimulatedInputWidget::StaticClass, TEXT("ULyraSimulatedInputWidget"), &Z_Registration_Info_UClass_ULyraSimulatedInputWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSimulatedInputWidget), 2637002244U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_1223442633(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h new file mode 100644 index 00000000..da6f1933 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraSimulatedInputWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UEnhancedInputLocalPlayerSubsystem; +class UInputAction; +struct FKey; +#ifdef LYRAGAME_LyraSimulatedInputWidget_generated_h +#error "LyraSimulatedInputWidget.generated.h already included, missing '#pragma once' in LyraSimulatedInputWidget.h" +#endif +#define LYRAGAME_LyraSimulatedInputWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnControlMappingsRebuilt); \ + DECLARE_FUNCTION(execFlushSimulatedInput); \ + DECLARE_FUNCTION(execInputKeyValue2D); \ + DECLARE_FUNCTION(execInputKeyValue); \ + DECLARE_FUNCTION(execGetSimulatedKey); \ + DECLARE_FUNCTION(execGetAssociatedAction); \ + DECLARE_FUNCTION(execGetEnhancedInputSubsystem); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSimulatedInputWidget(); \ + friend struct Z_Construct_UClass_ULyraSimulatedInputWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraSimulatedInputWidget, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSimulatedInputWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSimulatedInputWidget(ULyraSimulatedInputWidget&&); \ + ULyraSimulatedInputWidget(const ULyraSimulatedInputWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSimulatedInputWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSimulatedInputWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSimulatedInputWidget) \ + NO_API virtual ~ULyraSimulatedInputWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp new file mode 100644 index 00000000..a5787101 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp @@ -0,0 +1,583 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraSystemStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSystemStatics() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSystemStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSystemStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSystemStatics Function FindComponentsByClass +struct Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics +{ + struct LyraSystemStatics_eventFindComponentsByClass_Parms + { + AActor* TargetActor; + TSubclassOf ComponentClass; + bool bIncludeChildActors; + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Actor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets all the components that inherit from the given class\n" }, +#endif + { "ComponentClass", "/Script/Engine.ActorComponent" }, + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "DeterminesOutputType", "ComponentClass" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets all the components that inherit from the given class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FClassPropertyParams NewProp_ComponentClass; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ComponentClass = { "ComponentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, ComponentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventFindComponentsByClass_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventFindComponentsByClass_Parms), &Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000080008, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008000000588, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ComponentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "FindComponentsByClass", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::LyraSystemStatics_eventFindComponentsByClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::LyraSystemStatics_eventFindComponentsByClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execFindComponentsByClass) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_OBJECT(UClass,Z_Param_ComponentClass); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=ULyraSystemStatics::FindComponentsByClass(Z_Param_TargetActor,Z_Param_ComponentClass,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function FindComponentsByClass + +// Begin Class ULyraSystemStatics Function GetPrimaryAssetIdFromUserFacingExperienceName +struct Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics +{ + struct LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms + { + FString AdvertisedExperienceID; + FPrimaryAssetId ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdvertisedExperienceID_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AdvertisedExperienceID; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_AdvertisedExperienceID = { "AdvertisedExperienceID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms, AdvertisedExperienceID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdvertisedExperienceID_MetaData), NewProp_AdvertisedExperienceID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms, ReturnValue), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_AdvertisedExperienceID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "GetPrimaryAssetIdFromUserFacingExperienceName", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execGetPrimaryAssetIdFromUserFacingExperienceName) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AdvertisedExperienceID); + P_FINISH; + P_NATIVE_BEGIN; + *(FPrimaryAssetId*)Z_Param__Result=ULyraSystemStatics::GetPrimaryAssetIdFromUserFacingExperienceName(Z_Param_AdvertisedExperienceID); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function GetPrimaryAssetIdFromUserFacingExperienceName + +// Begin Class ULyraSystemStatics Function GetTypedSoftObjectReferenceFromPrimaryAssetId +struct Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics +{ + struct LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms + { + FPrimaryAssetId PrimaryAssetId; + TSubclassOf ExpectedAssetType; + TSoftObjectPtr ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "AssetManager" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the soft object reference associated with a Primary Asset Id, this works even if the asset is not loaded */" }, +#endif + { "DeterminesOutputType", "ExpectedAssetType" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the soft object reference associated with a Primary Asset Id, this works even if the asset is not loaded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryAssetId; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExpectedAssetType; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_PrimaryAssetId = { "PrimaryAssetId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, PrimaryAssetId), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ExpectedAssetType = { "ExpectedAssetType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, ExpectedAssetType), Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_PrimaryAssetId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ExpectedAssetType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "GetTypedSoftObjectReferenceFromPrimaryAssetId", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execGetTypedSoftObjectReferenceFromPrimaryAssetId) +{ + P_GET_STRUCT(FPrimaryAssetId,Z_Param_PrimaryAssetId); + P_GET_OBJECT(UClass,Z_Param_ExpectedAssetType); + P_FINISH; + P_NATIVE_BEGIN; + *(TSoftObjectPtr*)Z_Param__Result=ULyraSystemStatics::GetTypedSoftObjectReferenceFromPrimaryAssetId(Z_Param_PrimaryAssetId,Z_Param_ExpectedAssetType); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function GetTypedSoftObjectReferenceFromPrimaryAssetId + +// Begin Class ULyraSystemStatics Function PlayNextGame +struct Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics +{ + struct LyraSystemStatics_eventPlayNextGame_Parms + { + const UObject* WorldContextObject; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventPlayNextGame_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::NewProp_WorldContextObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "PlayNextGame", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::LyraSystemStatics_eventPlayNextGame_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::LyraSystemStatics_eventPlayNextGame_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execPlayNextGame) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::PlayNextGame(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function PlayNextGame + +// Begin Class ULyraSystemStatics Function SetColorParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + FLinearColor ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, ParameterValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetColorParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetColorParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FLinearColor,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetColorParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetColorParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics Function SetScalarParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + float ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, ParameterValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetScalarParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetScalarParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_PROPERTY(FFloatProperty,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetScalarParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetScalarParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics Function SetVectorParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + FVector ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, ParameterValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetVectorParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetVectorParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FVector,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetVectorParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetVectorParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics +void ULyraSystemStatics::StaticRegisterNativesULyraSystemStatics() +{ + UClass* Class = ULyraSystemStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindComponentsByClass", &ULyraSystemStatics::execFindComponentsByClass }, + { "GetPrimaryAssetIdFromUserFacingExperienceName", &ULyraSystemStatics::execGetPrimaryAssetIdFromUserFacingExperienceName }, + { "GetTypedSoftObjectReferenceFromPrimaryAssetId", &ULyraSystemStatics::execGetTypedSoftObjectReferenceFromPrimaryAssetId }, + { "PlayNextGame", &ULyraSystemStatics::execPlayNextGame }, + { "SetColorParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetColorParameterValueOnAllMeshComponents }, + { "SetScalarParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetScalarParameterValueOnAllMeshComponents }, + { "SetVectorParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetVectorParameterValueOnAllMeshComponents }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSystemStatics); +UClass* Z_Construct_UClass_ULyraSystemStatics_NoRegister() +{ + return ULyraSystemStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraSystemStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraSystemStatics.h" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass, "FindComponentsByClass" }, // 3749694633 + { &Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName, "GetPrimaryAssetIdFromUserFacingExperienceName" }, // 2357365358 + { &Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId, "GetTypedSoftObjectReferenceFromPrimaryAssetId" }, // 930576314 + { &Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame, "PlayNextGame" }, // 4172086504 + { &Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents, "SetColorParameterValueOnAllMeshComponents" }, // 3516398521 + { &Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents, "SetScalarParameterValueOnAllMeshComponents" }, // 1428024019 + { &Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents, "SetVectorParameterValueOnAllMeshComponents" }, // 2805647681 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSystemStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSystemStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSystemStatics_Statics::ClassParams = { + &ULyraSystemStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSystemStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSystemStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSystemStatics() +{ + if (!Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton, Z_Construct_UClass_ULyraSystemStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSystemStatics::StaticClass(); +} +ULyraSystemStatics::ULyraSystemStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSystemStatics); +ULyraSystemStatics::~ULyraSystemStatics() {} +// End Class ULyraSystemStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSystemStatics, ULyraSystemStatics::StaticClass, TEXT("ULyraSystemStatics"), &Z_Registration_Info_UClass_ULyraSystemStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSystemStatics), 367473893U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_549352794(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.generated.h new file mode 100644 index 00000000..9319006c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraSystemStatics.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraSystemStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UActorComponent; +class UObject; +struct FLinearColor; +struct FPrimaryAssetId; +#ifdef LYRAGAME_LyraSystemStatics_generated_h +#error "LyraSystemStatics.generated.h already included, missing '#pragma once' in LyraSystemStatics.h" +#endif +#define LYRAGAME_LyraSystemStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindComponentsByClass); \ + DECLARE_FUNCTION(execSetColorParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execSetVectorParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execSetScalarParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execPlayNextGame); \ + DECLARE_FUNCTION(execGetPrimaryAssetIdFromUserFacingExperienceName); \ + DECLARE_FUNCTION(execGetTypedSoftObjectReferenceFromPrimaryAssetId); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSystemStatics(); \ + friend struct Z_Construct_UClass_ULyraSystemStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraSystemStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSystemStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSystemStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSystemStatics(ULyraSystemStatics&&); \ + ULyraSystemStatics(const ULyraSystemStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSystemStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSystemStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSystemStatics) \ + NO_API virtual ~ULyraSystemStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp new file mode 100644 index 00000000..ed17a184 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp @@ -0,0 +1,168 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraTabButtonBase.h" +#include "LyraGame/UI/Common/LyraTabListWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTabButtonBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonLazyImage_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTabButtonBase Function SetTabLabelInfo_Implementation +struct Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics +{ + struct LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms + { + FLyraTabDescriptor TabLabelInfo; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabLabelInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabLabelInfo; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::NewProp_TabLabelInfo = { "TabLabelInfo", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms, TabLabelInfo), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabLabelInfo_MetaData), NewProp_TabLabelInfo_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::NewProp_TabLabelInfo, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabButtonBase, nullptr, "SetTabLabelInfo_Implementation", nullptr, nullptr, Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabButtonBase::execSetTabLabelInfo_Implementation) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabLabelInfo); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabLabelInfo_Implementation(Z_Param_Out_TabLabelInfo); + P_NATIVE_END; +} +// End Class ULyraTabButtonBase Function SetTabLabelInfo_Implementation + +// Begin Class ULyraTabButtonBase +void ULyraTabButtonBase::StaticRegisterNativesULyraTabButtonBase() +{ + UClass* Class = ULyraTabButtonBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetTabLabelInfo_Implementation", &ULyraTabButtonBase::execSetTabLabelInfo_Implementation }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabButtonBase); +UClass* Z_Construct_UClass_ULyraTabButtonBase_NoRegister() +{ + return ULyraTabButtonBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabButtonBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraTabButtonBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LazyImage_Icon_MetaData[] = { + { "BindWidgetOptional", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LazyImage_Icon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation, "SetTabLabelInfo_Implementation" }, // 849520292 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTabButtonBase_Statics::NewProp_LazyImage_Icon = { "LazyImage_Icon", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabButtonBase, LazyImage_Icon), Z_Construct_UClass_UCommonLazyImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LazyImage_Icon_MetaData), NewProp_LazyImage_Icon_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabButtonBase_Statics::NewProp_LazyImage_Icon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTabButtonBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraButtonBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraTabButtonBase_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTabButtonInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraTabButtonBase, ILyraTabButtonInterface), false }, // 2008894476 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabButtonBase_Statics::ClassParams = { + &ULyraTabButtonBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabButtonBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabButtonBase() +{ + if (!Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton, Z_Construct_UClass_ULyraTabButtonBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabButtonBase::StaticClass(); +} +ULyraTabButtonBase::ULyraTabButtonBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabButtonBase); +ULyraTabButtonBase::~ULyraTabButtonBase() {} +// End Class ULyraTabButtonBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTabButtonBase, ULyraTabButtonBase::StaticClass, TEXT("ULyraTabButtonBase"), &Z_Registration_Info_UClass_ULyraTabButtonBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabButtonBase), 1228371471U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_610681008(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h new file mode 100644 index 00000000..70becf82 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraTabButtonBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraTabDescriptor; +#ifdef LYRAGAME_LyraTabButtonBase_generated_h +#error "LyraTabButtonBase.generated.h already included, missing '#pragma once' in LyraTabButtonBase.h" +#endif +#define LYRAGAME_LyraTabButtonBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetTabLabelInfo_Implementation); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTabButtonBase(); \ + friend struct Z_Construct_UClass_ULyraTabButtonBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabButtonBase, ULyraButtonBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabButtonBase) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabButtonBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabButtonBase(ULyraTabButtonBase&&); \ + ULyraTabButtonBase(const ULyraTabButtonBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabButtonBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabButtonBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabButtonBase) \ + NO_API virtual ~ULyraTabButtonBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp new file mode 100644 index 00000000..b103a7dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp @@ -0,0 +1,849 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraTabListWidgetBase.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTabListWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTabListWidgetBase(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraTabDescriptor +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraTabDescriptor; +class UScriptStruct* FLyraTabDescriptor::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraTabDescriptor, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraTabDescriptor")); + } + return Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraTabDescriptor::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabId_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabText_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IconBrush_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHidden_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabButtonType_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabContentType_MetaData[] = { + { "Category", "LyraTabDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//TODO NDarnell - This should become a TSoftClassPtr<>, the underlying common tab list needs to be able to handle lazy tab content construction.\n" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "TODO NDarnell - This should become a TSoftClassPtr<>, the underlying common tab list needs to be able to handle lazy tab content construction." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CreatedTabContentWidget_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static const UECodeGen_Private::FTextPropertyParams NewProp_TabText; + static const UECodeGen_Private::FStructPropertyParams NewProp_IconBrush; + static void NewProp_bHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHidden; + static const UECodeGen_Private::FClassPropertyParams NewProp_TabButtonType; + static const UECodeGen_Private::FClassPropertyParams NewProp_TabContentType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CreatedTabContentWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabId_MetaData), NewProp_TabId_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabText = { "TabText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabText_MetaData), NewProp_TabText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_IconBrush = { "IconBrush", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, IconBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IconBrush_MetaData), NewProp_IconBrush_MetaData) }; // 4269649686 +void Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden_SetBit(void* Obj) +{ + ((FLyraTabDescriptor*)Obj)->bHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden = { "bHidden", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraTabDescriptor), &Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHidden_MetaData), NewProp_bHidden_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabButtonType = { "TabButtonType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabButtonType), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabButtonType_MetaData), NewProp_TabButtonType_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabContentType = { "TabContentType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabContentType), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabContentType_MetaData), NewProp_TabContentType_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_CreatedTabContentWidget = { "CreatedTabContentWidget", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, CreatedTabContentWidget), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CreatedTabContentWidget_MetaData), NewProp_CreatedTabContentWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_IconBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabButtonType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabContentType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_CreatedTabContentWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraTabDescriptor", + Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers), + sizeof(FLyraTabDescriptor), + alignof(FLyraTabDescriptor), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton, Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton; +} +// End ScriptStruct FLyraTabDescriptor + +// Begin Interface ULyraTabButtonInterface Function SetTabLabelInfo +struct LyraTabButtonInterface_eventSetTabLabelInfo_Parms +{ + FLyraTabDescriptor TabDescriptor; +}; +void ILyraTabButtonInterface::SetTabLabelInfo(FLyraTabDescriptor const& TabDescriptor) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_SetTabLabelInfo instead."); +} +static FName NAME_ULyraTabButtonInterface_SetTabLabelInfo = FName(TEXT("SetTabLabelInfo")); +void ILyraTabButtonInterface::Execute_SetTabLabelInfo(UObject* O, FLyraTabDescriptor const& TabDescriptor) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(ULyraTabButtonInterface::StaticClass())); + LyraTabButtonInterface_eventSetTabLabelInfo_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_ULyraTabButtonInterface_SetTabLabelInfo); + if (Func) + { + Parms.TabDescriptor=TabDescriptor; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (ILyraTabButtonInterface*)(O->GetNativeInterfaceAddress(ULyraTabButtonInterface::StaticClass()))) + { + I->SetTabLabelInfo_Implementation(TabDescriptor); + } +} +struct Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab Button" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabDescriptor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::NewProp_TabDescriptor = { "TabDescriptor", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabButtonInterface_eventSetTabLabelInfo_Parms, TabDescriptor), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabDescriptor_MetaData), NewProp_TabDescriptor_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::NewProp_TabDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabButtonInterface, nullptr, "SetTabLabelInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers), sizeof(LyraTabButtonInterface_eventSetTabLabelInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08420C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraTabButtonInterface_eventSetTabLabelInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ILyraTabButtonInterface::execSetTabLabelInfo) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabLabelInfo_Implementation(Z_Param_Out_TabDescriptor); + P_NATIVE_END; +} +// End Interface ULyraTabButtonInterface Function SetTabLabelInfo + +// Begin Interface ULyraTabButtonInterface +void ULyraTabButtonInterface::StaticRegisterNativesULyraTabButtonInterface() +{ + UClass* Class = ULyraTabButtonInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetTabLabelInfo", &ILyraTabButtonInterface::execSetTabLabelInfo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabButtonInterface); +UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister() +{ + return ULyraTabButtonInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabButtonInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo, "SetTabLabelInfo" }, // 1636539394 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTabButtonInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabButtonInterface_Statics::ClassParams = { + &ULyraTabButtonInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabButtonInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabButtonInterface() +{ + if (!Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton, Z_Construct_UClass_ULyraTabButtonInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabButtonInterface::StaticClass(); +} +ULyraTabButtonInterface::ULyraTabButtonInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabButtonInterface); +ULyraTabButtonInterface::~ULyraTabButtonInterface() {} +// End Interface ULyraTabButtonInterface + +// Begin Delegate FOnTabContentCreated +struct Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics +{ + struct LyraTabListWidgetBase_eventOnTabContentCreated_Parms + { + FName TabId; + UCommonUserWidget* TabWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate broadcast when a new tab is created. Allows hook ups after creation. */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate broadcast when a new tab is created. Allows hook ups after creation." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TabWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventOnTabContentCreated_Parms, TabId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabWidget = { "TabWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventOnTabContentCreated_Parms, TabWidget), Z_Construct_UClass_UCommonUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabWidget_MetaData), NewProp_TabWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "OnTabContentCreated__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::LyraTabListWidgetBase_eventOnTabContentCreated_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::LyraTabListWidgetBase_eventOnTabContentCreated_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void ULyraTabListWidgetBase::FOnTabContentCreated_DelegateWrapper(const FMulticastScriptDelegate& OnTabContentCreated, FName TabId, UCommonUserWidget* TabWidget) +{ + struct LyraTabListWidgetBase_eventOnTabContentCreated_Parms + { + FName TabId; + UCommonUserWidget* TabWidget; + }; + LyraTabListWidgetBase_eventOnTabContentCreated_Parms Parms; + Parms.TabId=TabId; + Parms.TabWidget=TabWidget; + OnTabContentCreated.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnTabContentCreated + +// Begin Class ULyraTabListWidgetBase Function GetPreregisteredTabInfo +struct Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics +{ + struct LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms + { + FName TabNameId; + FLyraTabDescriptor OutTabInfo; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabNameId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabNameId; + static const UECodeGen_Private::FStructPropertyParams NewProp_OutTabInfo; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_TabNameId = { "TabNameId", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms, TabNameId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabNameId_MetaData), NewProp_TabNameId_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_OutTabInfo = { "OutTabInfo", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms, OutTabInfo), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +void Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_TabNameId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_OutTabInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "GetPreregisteredTabInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execGetPreregisteredTabInfo) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabNameId); + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_OutTabInfo); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetPreregisteredTabInfo(Z_Param_TabNameId,Z_Param_Out_OutTabInfo); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function GetPreregisteredTabInfo + +// Begin Class ULyraTabListWidgetBase Function GetVisibleTabCount +struct Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics +{ + struct LyraTabListWidgetBase_eventGetVisibleTabCount_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetVisibleTabCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "GetVisibleTabCount", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::LyraTabListWidgetBase_eventGetVisibleTabCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::LyraTabListWidgetBase_eventGetVisibleTabCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execGetVisibleTabCount) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetVisibleTabCount(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function GetVisibleTabCount + +// Begin Class ULyraTabListWidgetBase Function IsFirstTabActive +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics +{ + struct LyraTabListWidgetBase_eventIsFirstTabActive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsFirstTabActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsFirstTabActive_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsFirstTabActive", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::LyraTabListWidgetBase_eventIsFirstTabActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::LyraTabListWidgetBase_eventIsFirstTabActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsFirstTabActive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsFirstTabActive(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsFirstTabActive + +// Begin Class ULyraTabListWidgetBase Function IsLastTabActive +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics +{ + struct LyraTabListWidgetBase_eventIsLastTabActive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsLastTabActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsLastTabActive_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsLastTabActive", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::LyraTabListWidgetBase_eventIsLastTabActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::LyraTabListWidgetBase_eventIsLastTabActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsLastTabActive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsLastTabActive(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsLastTabActive + +// Begin Class ULyraTabListWidgetBase Function IsTabVisible +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics +{ + struct LyraTabListWidgetBase_eventIsTabVisible_Parms + { + FName TabId; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventIsTabVisible_Parms, TabId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsTabVisible_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsTabVisible_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsTabVisible", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::LyraTabListWidgetBase_eventIsTabVisible_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::LyraTabListWidgetBase_eventIsTabVisible_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsTabVisible) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabId); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsTabVisible(Z_Param_TabId); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsTabVisible + +// Begin Class ULyraTabListWidgetBase Function RegisterDynamicTab +struct Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics +{ + struct LyraTabListWidgetBase_eventRegisterDynamicTab_Parms + { + FLyraTabDescriptor TabDescriptor; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabDescriptor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabDescriptor; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_TabDescriptor = { "TabDescriptor", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventRegisterDynamicTab_Parms, TabDescriptor), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabDescriptor_MetaData), NewProp_TabDescriptor_MetaData) }; // 2910668241 +void Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventRegisterDynamicTab_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventRegisterDynamicTab_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_TabDescriptor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "RegisterDynamicTab", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::LyraTabListWidgetBase_eventRegisterDynamicTab_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::LyraTabListWidgetBase_eventRegisterDynamicTab_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execRegisterDynamicTab) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->RegisterDynamicTab(Z_Param_Out_TabDescriptor); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function RegisterDynamicTab + +// Begin Class ULyraTabListWidgetBase Function SetTabHiddenState +struct Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics +{ + struct LyraTabListWidgetBase_eventSetTabHiddenState_Parms + { + FName TabNameId; + bool bHidden; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Toggles whether or not a specified tab is hidden, can only be called before the switcher is associated\n" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Toggles whether or not a specified tab is hidden, can only be called before the switcher is associated" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabNameId; + static void NewProp_bHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHidden; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_TabNameId = { "TabNameId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventSetTabHiddenState_Parms, TabNameId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventSetTabHiddenState_Parms*)Obj)->bHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden = { "bHidden", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventSetTabHiddenState_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_TabNameId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "SetTabHiddenState", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::LyraTabListWidgetBase_eventSetTabHiddenState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::LyraTabListWidgetBase_eventSetTabHiddenState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execSetTabHiddenState) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabNameId); + P_GET_UBOOL(Z_Param_bHidden); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabHiddenState(Z_Param_TabNameId,Z_Param_bHidden); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function SetTabHiddenState + +// Begin Class ULyraTabListWidgetBase +void ULyraTabListWidgetBase::StaticRegisterNativesULyraTabListWidgetBase() +{ + UClass* Class = ULyraTabListWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPreregisteredTabInfo", &ULyraTabListWidgetBase::execGetPreregisteredTabInfo }, + { "GetVisibleTabCount", &ULyraTabListWidgetBase::execGetVisibleTabCount }, + { "IsFirstTabActive", &ULyraTabListWidgetBase::execIsFirstTabActive }, + { "IsLastTabActive", &ULyraTabListWidgetBase::execIsLastTabActive }, + { "IsTabVisible", &ULyraTabListWidgetBase::execIsTabVisible }, + { "RegisterDynamicTab", &ULyraTabListWidgetBase::execRegisterDynamicTab }, + { "SetTabHiddenState", &ULyraTabListWidgetBase::execSetTabHiddenState }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabListWidgetBase); +UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister() +{ + return ULyraTabListWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabListWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraTabListWidgetBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTabContentCreated_MetaData[] = { + { "Category", "Tab List" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Broadcasts when a new tab is created. */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Broadcasts when a new tab is created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreregisteredTabInfoArray_MetaData[] = { + { "Category", "LyraTabListWidgetBase" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + { "TitleProperty", "TabId" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingTabLabelInfoMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Stores label info for tabs that have been registered at runtime but not yet created. \n\x09 * Elements are removed once they are created.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stores label info for tabs that have been registered at runtime but not yet created.\nElements are removed once they are created." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTabContentCreated; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreregisteredTabInfoArray_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PreregisteredTabInfoArray; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingTabLabelInfoMap_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_PendingTabLabelInfoMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PendingTabLabelInfoMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo, "GetPreregisteredTabInfo" }, // 2563616738 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount, "GetVisibleTabCount" }, // 998224344 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive, "IsFirstTabActive" }, // 525976309 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive, "IsLastTabActive" }, // 2556575969 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible, "IsTabVisible" }, // 2793334616 + { &Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, "OnTabContentCreated__DelegateSignature" }, // 3561477854 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab, "RegisterDynamicTab" }, // 4103581184 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState, "SetTabHiddenState" }, // 2031000455 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_OnTabContentCreated = { "OnTabContentCreated", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, OnTabContentCreated), Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTabContentCreated_MetaData), NewProp_OnTabContentCreated_MetaData) }; // 3561477854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray_Inner = { "PreregisteredTabInfoArray", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray = { "PreregisteredTabInfoArray", nullptr, (EPropertyFlags)0x0040008000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, PreregisteredTabInfoArray), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreregisteredTabInfoArray_MetaData), NewProp_PreregisteredTabInfoArray_MetaData) }; // 2910668241 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_ValueProp = { "PendingTabLabelInfoMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_Key_KeyProp = { "PendingTabLabelInfoMap_Key", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap = { "PendingTabLabelInfoMap", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, PendingTabLabelInfoMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingTabLabelInfoMap_MetaData), NewProp_PendingTabLabelInfoMap_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_OnTabContentCreated, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTabListWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonTabListWidgetBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::ClassParams = { + &ULyraTabListWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabListWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabListWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraTabListWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabListWidgetBase::StaticClass(); +} +ULyraTabListWidgetBase::ULyraTabListWidgetBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabListWidgetBase); +ULyraTabListWidgetBase::~ULyraTabListWidgetBase() {} +// End Class ULyraTabListWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraTabDescriptor::StaticStruct, Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewStructOps, TEXT("LyraTabDescriptor"), &Z_Registration_Info_UScriptStruct_LyraTabDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraTabDescriptor), 2910668241U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTabButtonInterface, ULyraTabButtonInterface::StaticClass, TEXT("ULyraTabButtonInterface"), &Z_Registration_Info_UClass_ULyraTabButtonInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabButtonInterface), 2008894476U) }, + { Z_Construct_UClass_ULyraTabListWidgetBase, ULyraTabListWidgetBase::StaticClass, TEXT("ULyraTabListWidgetBase"), &Z_Registration_Info_UClass_ULyraTabListWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabListWidgetBase), 3287188622U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_960902156(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h new file mode 100644 index 00000000..d98f44c5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h @@ -0,0 +1,140 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraTabListWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserWidget; +struct FLyraTabDescriptor; +#ifdef LYRAGAME_LyraTabListWidgetBase_generated_h +#error "LyraTabListWidgetBase.generated.h already included, missing '#pragma once' in LyraTabListWidgetBase.h" +#endif +#define LYRAGAME_LyraTabListWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void SetTabLabelInfo_Implementation(FLyraTabDescriptor const& TabDescriptor) {}; \ + DECLARE_FUNCTION(execSetTabLabelInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabButtonInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabButtonInterface(ULyraTabButtonInterface&&); \ + ULyraTabButtonInterface(const ULyraTabButtonInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabButtonInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabButtonInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabButtonInterface) \ + NO_API virtual ~ULyraTabButtonInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraTabButtonInterface(); \ + friend struct Z_Construct_UClass_ULyraTabButtonInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabButtonInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabButtonInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraTabButtonInterface() {} \ +public: \ + typedef ULyraTabButtonInterface UClassType; \ + typedef ILyraTabButtonInterface ThisClass; \ + static void Execute_SetTabLabelInfo(UObject* O, FLyraTabDescriptor const& TabDescriptor); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_57_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_96_DELEGATE \ +static void FOnTabContentCreated_DelegateWrapper(const FMulticastScriptDelegate& OnTabContentCreated, FName TabId, UCommonUserWidget* TabWidget); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetVisibleTabCount); \ + DECLARE_FUNCTION(execIsTabVisible); \ + DECLARE_FUNCTION(execIsLastTabActive); \ + DECLARE_FUNCTION(execIsFirstTabActive); \ + DECLARE_FUNCTION(execRegisterDynamicTab); \ + DECLARE_FUNCTION(execSetTabHiddenState); \ + DECLARE_FUNCTION(execGetPreregisteredTabInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTabListWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraTabListWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabListWidgetBase, UCommonTabListWidgetBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabListWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabListWidgetBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabListWidgetBase(ULyraTabListWidgetBase&&); \ + ULyraTabListWidgetBase(const ULyraTabListWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabListWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabListWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabListWidgetBase) \ + NO_API virtual ~ULyraTabListWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_64_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp new file mode 100644 index 00000000..8efa6638 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp @@ -0,0 +1,121 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraTaggedActor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTaggedActor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor(); +GAMEPLAYTAGS_API UClass* Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTaggedActor(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTaggedActor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTaggedActor +void ALyraTaggedActor::StaticRegisterNativesALyraTaggedActor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTaggedActor); +UClass* Z_Construct_UClass_ALyraTaggedActor_NoRegister() +{ + return ALyraTaggedActor::StaticClass(); +} +struct Z_Construct_UClass_ALyraTaggedActor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// An actor that implements the gameplay tag asset interface\n" }, +#endif + { "IncludePath", "AbilitySystem/LyraTaggedActor.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraTaggedActor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An actor that implements the gameplay tag asset interface" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticGameplayTags_MetaData[] = { + { "Category", "Actor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay-related tags associated with this actor\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraTaggedActor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay-related tags associated with this actor" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_StaticGameplayTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraTaggedActor_Statics::NewProp_StaticGameplayTags = { "StaticGameplayTags", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTaggedActor, StaticGameplayTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticGameplayTags_MetaData), NewProp_StaticGameplayTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTaggedActor_Statics::NewProp_StaticGameplayTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTaggedActor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraTaggedActor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraTaggedActor, IGameplayTagAssetInterface), false }, // 2592985258 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTaggedActor_Statics::ClassParams = { + &ALyraTaggedActor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTaggedActor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTaggedActor() +{ + if (!Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton, Z_Construct_UClass_ALyraTaggedActor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTaggedActor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTaggedActor); +ALyraTaggedActor::~ALyraTaggedActor() {} +// End Class ALyraTaggedActor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTaggedActor, ALyraTaggedActor::StaticClass, TEXT("ALyraTaggedActor"), &Z_Registration_Info_UClass_ALyraTaggedActor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTaggedActor), 131971491U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_3110171262(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.generated.h new file mode 100644 index 00000000..25ec04a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedActor.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraTaggedActor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTaggedActor_generated_h +#error "LyraTaggedActor.generated.h already included, missing '#pragma once' in LyraTaggedActor.h" +#endif +#define LYRAGAME_LyraTaggedActor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTaggedActor(); \ + friend struct Z_Construct_UClass_ALyraTaggedActor_Statics; \ +public: \ + DECLARE_CLASS(ALyraTaggedActor, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTaggedActor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTaggedActor(ALyraTaggedActor&&); \ + ALyraTaggedActor(const ALyraTaggedActor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTaggedActor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTaggedActor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTaggedActor) \ + NO_API virtual ~ALyraTaggedActor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp new file mode 100644 index 00000000..f6d1dc9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp @@ -0,0 +1,151 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraTaggedWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTaggedWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTaggedWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTaggedWidget_NoRegister(); +UMG_API UEnum* Z_Construct_UEnum_UMG_ESlateVisibility(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTaggedWidget +void ULyraTaggedWidget::StaticRegisterNativesULyraTaggedWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTaggedWidget); +UClass* Z_Construct_UClass_ULyraTaggedWidget_NoRegister() +{ + return ULyraTaggedWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraTaggedWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An widget in a layout that has been tagged (can be hidden or shown via tags on the owning player)\n */" }, +#endif + { "IncludePath", "UI/LyraTaggedWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An widget in a layout that has been tagged (can be hidden or shown via tags on the owning player)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HiddenByTags_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If the owning player has any of these tags, this widget will be hidden (using HiddenVisibility) */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If the owning player has any of these tags, this widget will be hidden (using HiddenVisibility)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShownVisibility_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The visibility to use when this widget is shown (not hidden by gameplay tags). */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The visibility to use when this widget is shown (not hidden by gameplay tags)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HiddenVisibility_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The visibility to use when this widget is hidden by gameplay tags. */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The visibility to use when this widget is hidden by gameplay tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_HiddenByTags; + static const UECodeGen_Private::FBytePropertyParams NewProp_ShownVisibility_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ShownVisibility; + static const UECodeGen_Private::FBytePropertyParams NewProp_HiddenVisibility_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_HiddenVisibility; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenByTags = { "HiddenByTags", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, HiddenByTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HiddenByTags_MetaData), NewProp_HiddenByTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility = { "ShownVisibility", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, ShownVisibility), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShownVisibility_MetaData), NewProp_ShownVisibility_MetaData) }; // 2974316103 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility = { "HiddenVisibility", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, HiddenVisibility), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HiddenVisibility_MetaData), NewProp_HiddenVisibility_MetaData) }; // 2974316103 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenByTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTaggedWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTaggedWidget_Statics::ClassParams = { + &ULyraTaggedWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTaggedWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTaggedWidget() +{ + if (!Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton, Z_Construct_UClass_ULyraTaggedWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTaggedWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTaggedWidget); +ULyraTaggedWidget::~ULyraTaggedWidget() {} +// End Class ULyraTaggedWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTaggedWidget, ULyraTaggedWidget::StaticClass, TEXT("ULyraTaggedWidget"), &Z_Registration_Info_UClass_ULyraTaggedWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTaggedWidget), 4161988894U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_2506952908(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h new file mode 100644 index 00000000..77435e2c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraTaggedWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTaggedWidget_generated_h +#error "LyraTaggedWidget.generated.h already included, missing '#pragma once' in LyraTaggedWidget.h" +#endif +#define LYRAGAME_LyraTaggedWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTaggedWidget(); \ + friend struct Z_Construct_UClass_ULyraTaggedWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraTaggedWidget, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTaggedWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTaggedWidget(ULyraTaggedWidget&&); \ + ULyraTaggedWidget(const ULyraTaggedWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTaggedWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTaggedWidget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTaggedWidget) \ + NO_API virtual ~ULyraTaggedWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp new file mode 100644 index 00000000..a824658d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamAgentInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamAgentInterface() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_UGenericTeamAgentInterface(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnLyraTeamIndexChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms + { + UObject* ObjectChangingTeam; + int32 OldTeamID; + int32 NewTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamAgentInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ObjectChangingTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_ObjectChangingTeam = { "ObjectChangingTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, ObjectChangingTeam), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, OldTeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_NewTeamID = { "NewTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, NewTeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_ObjectChangingTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_OldTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_NewTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "OnLyraTeamIndexChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FOnLyraTeamIndexChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamIndexChangedDelegate, UObject* ObjectChangingTeam, int32 OldTeamID, int32 NewTeamID) +{ + struct _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms + { + UObject* ObjectChangingTeam; + int32 OldTeamID; + int32 NewTeamID; + }; + _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms Parms; + Parms.ObjectChangingTeam=ObjectChangingTeam; + Parms.OldTeamID=OldTeamID; + Parms.NewTeamID=NewTeamID; + OnLyraTeamIndexChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnLyraTeamIndexChangedDelegate + +// Begin Interface ULyraTeamAgentInterface +void ULyraTeamAgentInterface::StaticRegisterNativesULyraTeamAgentInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamAgentInterface); +UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister() +{ + return ULyraTeamAgentInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamAgentInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Teams/LyraTeamAgentInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamAgentInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGenericTeamAgentInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamAgentInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamAgentInterface_Statics::ClassParams = { + &ULyraTeamAgentInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamAgentInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamAgentInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamAgentInterface() +{ + if (!Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton, Z_Construct_UClass_ULyraTeamAgentInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamAgentInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamAgentInterface); +ULyraTeamAgentInterface::~ULyraTeamAgentInterface() {} +// End Interface ULyraTeamAgentInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface, ULyraTeamAgentInterface::StaticClass, TEXT("ULyraTeamAgentInterface"), &Z_Registration_Info_UClass_ULyraTeamAgentInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamAgentInterface), 361203859U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_819502528(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h new file mode 100644 index 00000000..8c4383d4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h @@ -0,0 +1,76 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamAgentInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +#ifdef LYRAGAME_LyraTeamAgentInterface_generated_h +#error "LyraTeamAgentInterface.generated.h already included, missing '#pragma once' in LyraTeamAgentInterface.h" +#endif +#define LYRAGAME_LyraTeamAgentInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_13_DELEGATE \ +LYRAGAME_API void FOnLyraTeamIndexChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamIndexChangedDelegate, UObject* ObjectChangingTeam, int32 OldTeamID, int32 NewTeamID); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamAgentInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamAgentInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamAgentInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamAgentInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamAgentInterface(ULyraTeamAgentInterface&&); \ + ULyraTeamAgentInterface(const ULyraTeamAgentInterface&); \ +public: \ + NO_API virtual ~ULyraTeamAgentInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraTeamAgentInterface(); \ + friend struct Z_Construct_UClass_ULyraTeamAgentInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamAgentInterface, UGenericTeamAgentInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamAgentInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_INCLASS_IINTERFACE \ +protected: \ + virtual ~ILyraTeamAgentInterface() {} \ +public: \ + typedef ULyraTeamAgentInterface UClassType; \ + typedef ILyraTeamAgentInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_26_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_34_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_INCLASS_IINTERFACE \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp new file mode 100644 index 00000000..e5c27172 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamCheats Function CycleTeam +struct Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Moves this player to the next available team, wrapping around to the\n// first team if at the end of the list of teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Moves this player to the next available team, wrapping around to the\nfirst team if at the end of the list of teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "CycleTeam", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraTeamCheats_CycleTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execCycleTeam) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleTeam(); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function CycleTeam + +// Begin Class ULyraTeamCheats Function ListTeams +struct Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Prints a list of all of the teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Prints a list of all of the teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "ListTeams", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraTeamCheats_ListTeams() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execListTeams) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ListTeams(); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function ListTeams + +// Begin Class ULyraTeamCheats Function SetTeam +struct Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics +{ + struct LyraTeamCheats_eventSetTeam_Parms + { + int32 TeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Moves this player to the specified team\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Moves this player to the specified team" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::NewProp_TeamID = { "TeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamCheats_eventSetTeam_Parms, TeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::NewProp_TeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "SetTeam", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::LyraTeamCheats_eventSetTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::LyraTeamCheats_eventSetTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamCheats_SetTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execSetTeam) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTeam(Z_Param_TeamID); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function SetTeam + +// Begin Class ULyraTeamCheats +void ULyraTeamCheats::StaticRegisterNativesULyraTeamCheats() +{ + UClass* Class = ULyraTeamCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CycleTeam", &ULyraTeamCheats::execCycleTeam }, + { "ListTeams", &ULyraTeamCheats::execListTeams }, + { "SetTeam", &ULyraTeamCheats::execSetTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamCheats); +UClass* Z_Construct_UClass_ULyraTeamCheats_NoRegister() +{ + return ULyraTeamCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to teams */" }, +#endif + { "IncludePath", "Teams/LyraTeamCheats.h" }, + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to teams" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamCheats_CycleTeam, "CycleTeam" }, // 4054398703 + { &Z_Construct_UFunction_ULyraTeamCheats_ListTeams, "ListTeams" }, // 2746897867 + { &Z_Construct_UFunction_ULyraTeamCheats_SetTeam, "SetTeam" }, // 1213663495 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamCheats_Statics::ClassParams = { + &ULyraTeamCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamCheats() +{ + if (!Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton, Z_Construct_UClass_ULyraTeamCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamCheats::StaticClass(); +} +ULyraTeamCheats::ULyraTeamCheats(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamCheats); +ULyraTeamCheats::~ULyraTeamCheats() {} +// End Class ULyraTeamCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamCheats, ULyraTeamCheats::StaticClass, TEXT("ULyraTeamCheats"), &Z_Registration_Info_UClass_ULyraTeamCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamCheats), 4258689395U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_2043156129(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.generated.h new file mode 100644 index 00000000..f01d7412 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCheats.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamCheats_generated_h +#error "LyraTeamCheats.generated.h already included, missing '#pragma once' in LyraTeamCheats.h" +#endif +#define LYRAGAME_LyraTeamCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execListTeams); \ + DECLARE_FUNCTION(execSetTeam); \ + DECLARE_FUNCTION(execCycleTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamCheats(); \ + friend struct Z_Construct_UClass_ULyraTeamCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamCheats(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamCheats(ULyraTeamCheats&&); \ + ULyraTeamCheats(const ULyraTeamCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamCheats); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamCheats) \ + NO_API virtual ~ULyraTeamCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp new file mode 100644 index 00000000..4e5325f8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp @@ -0,0 +1,135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamCreationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamCreationComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCreationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCreationComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamCreationComponent +void ULyraTeamCreationComponent::StaticRegisterNativesULyraTeamCreationComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamCreationComponent); +UClass* Z_Construct_UClass_ULyraTeamCreationComponent_NoRegister() +{ + return ULyraTeamCreationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamCreationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Teams/LyraTeamCreationComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamsToCreate_MetaData[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of teams to create (id to display asset mapping, the display asset can be left unset if desired)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of teams to create (id to display asset mapping, the display asset can be left unset if desired)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PublicTeamInfoClass_MetaData[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateTeamInfoClass_MetaData[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamsToCreate_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_TeamsToCreate_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TeamsToCreate; + static const UECodeGen_Private::FClassPropertyParams NewProp_PublicTeamInfoClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_PrivateTeamInfoClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_ValueProp = { "TeamsToCreate", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_Key_KeyProp = { "TeamsToCreate_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate = { "TeamsToCreate", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, TeamsToCreate), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamsToCreate_MetaData), NewProp_TeamsToCreate_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PublicTeamInfoClass = { "PublicTeamInfoClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, PublicTeamInfoClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PublicTeamInfoClass_MetaData), NewProp_PublicTeamInfoClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PrivateTeamInfoClass = { "PrivateTeamInfoClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, PrivateTeamInfoClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateTeamInfoClass_MetaData), NewProp_PrivateTeamInfoClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PublicTeamInfoClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PrivateTeamInfoClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamCreationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::ClassParams = { + &ULyraTeamCreationComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamCreationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamCreationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton, Z_Construct_UClass_ULyraTeamCreationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamCreationComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamCreationComponent); +ULyraTeamCreationComponent::~ULyraTeamCreationComponent() {} +// End Class ULyraTeamCreationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamCreationComponent, ULyraTeamCreationComponent::StaticClass, TEXT("ULyraTeamCreationComponent"), &Z_Registration_Info_UClass_ULyraTeamCreationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamCreationComponent), 3255109266U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_3748714875(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h new file mode 100644 index 00000000..b0d37798 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamCreationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamCreationComponent_generated_h +#error "LyraTeamCreationComponent.generated.h already included, missing '#pragma once' in LyraTeamCreationComponent.h" +#endif +#define LYRAGAME_LyraTeamCreationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamCreationComponent(); \ + friend struct Z_Construct_UClass_ULyraTeamCreationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamCreationComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamCreationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamCreationComponent(ULyraTeamCreationComponent&&); \ + ULyraTeamCreationComponent(const ULyraTeamCreationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamCreationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamCreationComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamCreationComponent) \ + NO_API virtual ~ULyraTeamCreationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp new file mode 100644 index 00000000..40fb0444 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp @@ -0,0 +1,359 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamDisplayAsset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamDisplayAsset() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMeshComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTexture_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamDisplayAsset Function ApplyToActor +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToActor_Parms + { + AActor* TargetActor; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToActor_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraTeamDisplayAsset_eventApplyToActor_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamDisplayAsset_eventApplyToActor_Parms), &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToActor", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::LyraTeamDisplayAsset_eventApplyToActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::LyraTeamDisplayAsset_eventApplyToActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToActor) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToActor(Z_Param_TargetActor,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToActor + +// Begin Class ULyraTeamDisplayAsset Function ApplyToMaterial +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToMaterial_Parms + { + UMaterialInstanceDynamic* Material; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Material; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::NewProp_Material = { "Material", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToMaterial_Parms, Material), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::NewProp_Material, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToMaterial", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::LyraTeamDisplayAsset_eventApplyToMaterial_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::LyraTeamDisplayAsset_eventApplyToMaterial_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToMaterial) +{ + P_GET_OBJECT(UMaterialInstanceDynamic,Z_Param_Material); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToMaterial(Z_Param_Material); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToMaterial + +// Begin Class ULyraTeamDisplayAsset Function ApplyToMeshComponent +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms + { + UMeshComponent* MeshComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_MeshComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::NewProp_MeshComponent = { "MeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms, MeshComponent), Z_Construct_UClass_UMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MeshComponent_MetaData), NewProp_MeshComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::NewProp_MeshComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToMeshComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToMeshComponent) +{ + P_GET_OBJECT(UMeshComponent,Z_Param_MeshComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToMeshComponent(Z_Param_MeshComponent); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToMeshComponent + +// Begin Class ULyraTeamDisplayAsset Function ApplyToNiagaraComponent +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms + { + UNiagaraComponent* NiagaraComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::NewProp_NiagaraComponent = { "NiagaraComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms, NiagaraComponent), Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraComponent_MetaData), NewProp_NiagaraComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::NewProp_NiagaraComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToNiagaraComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToNiagaraComponent) +{ + P_GET_OBJECT(UNiagaraComponent,Z_Param_NiagaraComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToNiagaraComponent(Z_Param_NiagaraComponent); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToNiagaraComponent + +// Begin Class ULyraTeamDisplayAsset +void ULyraTeamDisplayAsset::StaticRegisterNativesULyraTeamDisplayAsset() +{ + UClass* Class = ULyraTeamDisplayAsset::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyToActor", &ULyraTeamDisplayAsset::execApplyToActor }, + { "ApplyToMaterial", &ULyraTeamDisplayAsset::execApplyToMaterial }, + { "ApplyToMeshComponent", &ULyraTeamDisplayAsset::execApplyToMeshComponent }, + { "ApplyToNiagaraComponent", &ULyraTeamDisplayAsset::execApplyToNiagaraComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamDisplayAsset); +UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister() +{ + return ULyraTeamDisplayAsset::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamDisplayAsset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents the display information for team definitions (e.g., colors, display names, textures, etc...)\n" }, +#endif + { "IncludePath", "Teams/LyraTeamDisplayAsset.h" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents the display information for team definitions (e.g., colors, display names, textures, etc...)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScalarParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextureParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamShortName_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ScalarParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ScalarParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ScalarParameters; + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ColorParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ColorParameters; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextureParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_TextureParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TextureParameters; + static const UECodeGen_Private::FTextPropertyParams NewProp_TeamShortName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor, "ApplyToActor" }, // 4093605114 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial, "ApplyToMaterial" }, // 866330542 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent, "ApplyToMeshComponent" }, // 1036481922 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent, "ApplyToNiagaraComponent" }, // 3936041491 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_ValueProp = { "ScalarParameters", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_Key_KeyProp = { "ScalarParameters_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters = { "ScalarParameters", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, ScalarParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScalarParameters_MetaData), NewProp_ScalarParameters_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_ValueProp = { "ColorParameters", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_Key_KeyProp = { "ColorParameters_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters = { "ColorParameters", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, ColorParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorParameters_MetaData), NewProp_ColorParameters_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_ValueProp = { "TextureParameters", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_Key_KeyProp = { "TextureParameters_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters = { "TextureParameters", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, TextureParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextureParameters_MetaData), NewProp_TextureParameters_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TeamShortName = { "TeamShortName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, TeamShortName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamShortName_MetaData), NewProp_TeamShortName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TeamShortName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::ClassParams = { + &ULyraTeamDisplayAsset::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamDisplayAsset() +{ + if (!Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton, Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamDisplayAsset::StaticClass(); +} +ULyraTeamDisplayAsset::ULyraTeamDisplayAsset(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamDisplayAsset); +ULyraTeamDisplayAsset::~ULyraTeamDisplayAsset() {} +// End Class ULyraTeamDisplayAsset + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamDisplayAsset, ULyraTeamDisplayAsset::StaticClass, TEXT("ULyraTeamDisplayAsset"), &Z_Registration_Info_UClass_ULyraTeamDisplayAsset, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamDisplayAsset), 3647309666U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_2747451805(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h new file mode 100644 index 00000000..e2b1a168 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamDisplayAsset.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UMaterialInstanceDynamic; +class UMeshComponent; +class UNiagaraComponent; +#ifdef LYRAGAME_LyraTeamDisplayAsset_generated_h +#error "LyraTeamDisplayAsset.generated.h already included, missing '#pragma once' in LyraTeamDisplayAsset.h" +#endif +#define LYRAGAME_LyraTeamDisplayAsset_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execApplyToActor); \ + DECLARE_FUNCTION(execApplyToNiagaraComponent); \ + DECLARE_FUNCTION(execApplyToMeshComponent); \ + DECLARE_FUNCTION(execApplyToMaterial); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamDisplayAsset(); \ + friend struct Z_Construct_UClass_ULyraTeamDisplayAsset_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamDisplayAsset, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamDisplayAsset) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamDisplayAsset(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamDisplayAsset(ULyraTeamDisplayAsset&&); \ + ULyraTeamDisplayAsset(const ULyraTeamDisplayAsset&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamDisplayAsset); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamDisplayAsset); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamDisplayAsset) \ + NO_API virtual ~ULyraTeamDisplayAsset(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp new file mode 100644 index 00000000..0d1abc48 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamInfoBase.h" +#include "LyraGame/System/GameplayTagStack.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamInfoBase() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamInfoBase Function OnRep_TeamId +struct Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraTeamInfoBase, nullptr, "OnRep_TeamId", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraTeamInfoBase::execOnRep_TeamId) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_TeamId(); + P_NATIVE_END; +} +// End Class ALyraTeamInfoBase Function OnRep_TeamId + +// Begin Class ALyraTeamInfoBase +void ALyraTeamInfoBase::StaticRegisterNativesALyraTeamInfoBase() +{ + UClass* Class = ALyraTeamInfoBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_TeamId", &ALyraTeamInfoBase::execOnRep_TeamId }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamInfoBase); +UClass* Z_Construct_UClass_ALyraTeamInfoBase_NoRegister() +{ + return ALyraTeamInfoBase::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamInfoBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamInfoBase.h" }, + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamTags_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamId_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TeamTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId, "OnRep_TeamId" }, // 2200568674 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamTags = { "TeamTags", nullptr, (EPropertyFlags)0x0010000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamInfoBase, TeamTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamTags_MetaData), NewProp_TeamTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamId = { "TeamId", "OnRep_TeamId", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamInfoBase, TeamId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamId_MetaData), NewProp_TeamId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTeamInfoBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AInfo, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::ClassParams = { + &ALyraTeamInfoBase::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers), + 0, + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamInfoBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamInfoBase() +{ + if (!Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton, Z_Construct_UClass_ALyraTeamInfoBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamInfoBase::StaticClass(); +} +void ALyraTeamInfoBase::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_TeamTags(TEXT("TeamTags")); + static const FName Name_TeamId(TEXT("TeamId")); + const bool bIsValid = true + && Name_TeamTags == ClassReps[(int32)ENetFields_Private::TeamTags].Property->GetFName() + && Name_TeamId == ClassReps[(int32)ENetFields_Private::TeamId].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraTeamInfoBase")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamInfoBase); +ALyraTeamInfoBase::~ALyraTeamInfoBase() {} +// End Class ALyraTeamInfoBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamInfoBase, ALyraTeamInfoBase::StaticClass, TEXT("ALyraTeamInfoBase"), &Z_Registration_Info_UClass_ALyraTeamInfoBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamInfoBase), 2598226480U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_2441621528(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h new file mode 100644 index 00000000..262ccb91 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamInfoBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamInfoBase_generated_h +#error "LyraTeamInfoBase.generated.h already included, missing '#pragma once' in LyraTeamInfoBase.h" +#endif +#define LYRAGAME_LyraTeamInfoBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_TeamId); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamInfoBase(); \ + friend struct Z_Construct_UClass_ALyraTeamInfoBase_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamInfoBase, AInfo, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamInfoBase) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + TeamTags=NETFIELD_REP_START, \ + TeamId, \ + NETFIELD_REP_END=TeamId }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamInfoBase(ALyraTeamInfoBase&&); \ + ALyraTeamInfoBase(const ALyraTeamInfoBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamInfoBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamInfoBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamInfoBase) \ + NO_API virtual ~ALyraTeamInfoBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp new file mode 100644 index 00000000..9894c9b7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamPrivateInfo.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamPrivateInfo() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamPrivateInfo +void ALyraTeamPrivateInfo::StaticRegisterNativesALyraTeamPrivateInfo() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamPrivateInfo); +UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister() +{ + return ALyraTeamPrivateInfo::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamPrivateInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamPrivateInfo.h" }, + { "ModuleRelativePath", "Teams/LyraTeamPrivateInfo.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraTeamInfoBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::ClassParams = { + &ALyraTeamPrivateInfo::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamPrivateInfo() +{ + if (!Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton, Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamPrivateInfo::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamPrivateInfo); +ALyraTeamPrivateInfo::~ALyraTeamPrivateInfo() {} +// End Class ALyraTeamPrivateInfo + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamPrivateInfo, ALyraTeamPrivateInfo::StaticClass, TEXT("ALyraTeamPrivateInfo"), &Z_Registration_Info_UClass_ALyraTeamPrivateInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamPrivateInfo), 2285644601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_4151068517(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h new file mode 100644 index 00000000..e9509c11 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamPrivateInfo.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamPrivateInfo_generated_h +#error "LyraTeamPrivateInfo.generated.h already included, missing '#pragma once' in LyraTeamPrivateInfo.h" +#endif +#define LYRAGAME_LyraTeamPrivateInfo_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamPrivateInfo(); \ + friend struct Z_Construct_UClass_ALyraTeamPrivateInfo_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamPrivateInfo, ALyraTeamInfoBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamPrivateInfo) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamPrivateInfo(ALyraTeamPrivateInfo&&); \ + ALyraTeamPrivateInfo(const ALyraTeamPrivateInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamPrivateInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamPrivateInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamPrivateInfo) \ + NO_API virtual ~ALyraTeamPrivateInfo(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp new file mode 100644 index 00000000..59136b65 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamPublicInfo.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamPublicInfo() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamPublicInfo Function OnRep_TeamDisplayAsset +struct Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraTeamPublicInfo, nullptr, "OnRep_TeamDisplayAsset", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraTeamPublicInfo::execOnRep_TeamDisplayAsset) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_TeamDisplayAsset(); + P_NATIVE_END; +} +// End Class ALyraTeamPublicInfo Function OnRep_TeamDisplayAsset + +// Begin Class ALyraTeamPublicInfo +void ALyraTeamPublicInfo::StaticRegisterNativesALyraTeamPublicInfo() +{ + UClass* Class = ALyraTeamPublicInfo::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_TeamDisplayAsset", &ALyraTeamPublicInfo::execOnRep_TeamDisplayAsset }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamPublicInfo); +UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister() +{ + return ALyraTeamPublicInfo::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamPublicInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamPublicInfo.h" }, + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamDisplayAsset_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamDisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset, "OnRep_TeamDisplayAsset" }, // 3476173635 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraTeamPublicInfo_Statics::NewProp_TeamDisplayAsset = { "TeamDisplayAsset", "OnRep_TeamDisplayAsset", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamPublicInfo, TeamDisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamDisplayAsset_MetaData), NewProp_TeamDisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamPublicInfo_Statics::NewProp_TeamDisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTeamPublicInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraTeamInfoBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamPublicInfo_Statics::ClassParams = { + &ALyraTeamPublicInfo::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamPublicInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamPublicInfo() +{ + if (!Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton, Z_Construct_UClass_ALyraTeamPublicInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamPublicInfo::StaticClass(); +} +void ALyraTeamPublicInfo::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_TeamDisplayAsset(TEXT("TeamDisplayAsset")); + const bool bIsValid = true + && Name_TeamDisplayAsset == ClassReps[(int32)ENetFields_Private::TeamDisplayAsset].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraTeamPublicInfo")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamPublicInfo); +ALyraTeamPublicInfo::~ALyraTeamPublicInfo() {} +// End Class ALyraTeamPublicInfo + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamPublicInfo, ALyraTeamPublicInfo::StaticClass, TEXT("ALyraTeamPublicInfo"), &Z_Registration_Info_UClass_ALyraTeamPublicInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamPublicInfo), 1832338457U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_853372008(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h new file mode 100644 index 00000000..7a334b69 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamPublicInfo.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamPublicInfo_generated_h +#error "LyraTeamPublicInfo.generated.h already included, missing '#pragma once' in LyraTeamPublicInfo.h" +#endif +#define LYRAGAME_LyraTeamPublicInfo_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_TeamDisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamPublicInfo(); \ + friend struct Z_Construct_UClass_ALyraTeamPublicInfo_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamPublicInfo, ALyraTeamInfoBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamPublicInfo) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + TeamDisplayAsset=NETFIELD_REP_START, \ + NETFIELD_REP_END=TeamDisplayAsset }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamPublicInfo(ALyraTeamPublicInfo&&); \ + ALyraTeamPublicInfo(const ALyraTeamPublicInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamPublicInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamPublicInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamPublicInfo) \ + NO_API virtual ~ALyraTeamPublicInfo(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp new file mode 100644 index 00000000..a3538ced --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp @@ -0,0 +1,432 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamStatics.h" +#include "LyraGame/Teams/LyraTeamDisplayAsset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamStatics() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_UTexture_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamStatics Function FindTeamFromObject +struct Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics +{ + struct LyraTeamStatics_eventFindTeamFromObject_Parms + { + const UObject* Agent; + bool bIsPartOfTeam; + int32 TeamId; + ULyraTeamDisplayAsset* DisplayAsset; + bool bLogIfNotSet; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AdvancedDisplay", "bLogIfNotSet" }, + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the team this object belongs to, or INDEX_NONE if it is not part of a team\n" }, +#endif + { "CPP_Default_bLogIfNotSet", "false" }, + { "DefaultToSelf", "Agent" }, + { "Keywords", "GetTeamFromObject" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the team this object belongs to, or INDEX_NONE if it is not part of a team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Agent_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Agent; + static void NewProp_bIsPartOfTeam_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsPartOfTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static void NewProp_bLogIfNotSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogIfNotSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_Agent = { "Agent", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, Agent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Agent_MetaData), NewProp_Agent_MetaData) }; +void Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam_SetBit(void* Obj) +{ + ((LyraTeamStatics_eventFindTeamFromObject_Parms*)Obj)->bIsPartOfTeam = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam = { "bIsPartOfTeam", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamStatics_eventFindTeamFromObject_Parms), &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet_SetBit(void* Obj) +{ + ((LyraTeamStatics_eventFindTeamFromObject_Parms*)Obj)->bLogIfNotSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet = { "bLogIfNotSet", nullptr, (EPropertyFlags)0x0010040000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamStatics_eventFindTeamFromObject_Parms), &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_Agent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "FindTeamFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::LyraTeamStatics_eventFindTeamFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::LyraTeamStatics_eventFindTeamFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execFindTeamFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Agent); + P_GET_UBOOL_REF(Z_Param_Out_bIsPartOfTeam); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamId); + P_GET_OBJECT_REF(ULyraTeamDisplayAsset,Z_Param_Out_DisplayAsset); + P_GET_UBOOL(Z_Param_bLogIfNotSet); + P_FINISH; + P_NATIVE_BEGIN; + ULyraTeamStatics::FindTeamFromObject(Z_Param_Agent,Z_Param_Out_bIsPartOfTeam,Z_Param_Out_TeamId,P_ARG_GC_BARRIER(Z_Param_Out_DisplayAsset),Z_Param_bLogIfNotSet); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function FindTeamFromObject + +// Begin Class ULyraTeamStatics Function GetTeamColorWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamColorWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + FLinearColor DefaultValue; + FLinearColor ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, DefaultValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, ReturnValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamColorWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::LyraTeamStatics_eventGetTeamColorWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::LyraTeamStatics_eventGetTeamColorWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamColorWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FLinearColor,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(FLinearColor*)Z_Param__Result=ULyraTeamStatics::GetTeamColorWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamColorWithFallback + +// Begin Class ULyraTeamStatics Function GetTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics +{ + struct LyraTeamStatics_eventGetTeamDisplayAsset_Parms + { + const UObject* WorldContextObject; + int32 TeamId; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::LyraTeamStatics_eventGetTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::LyraTeamStatics_eventGetTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamDisplayAsset) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=ULyraTeamStatics::GetTeamDisplayAsset(Z_Param_WorldContextObject,Z_Param_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamDisplayAsset + +// Begin Class ULyraTeamStatics Function GetTeamScalarWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamScalarWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + float DefaultValue; + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, DefaultValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamScalarWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::LyraTeamStatics_eventGetTeamScalarWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::LyraTeamStatics_eventGetTeamScalarWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamScalarWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_PROPERTY(FFloatProperty,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=ULyraTeamStatics::GetTeamScalarWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamScalarWithFallback + +// Begin Class ULyraTeamStatics Function GetTeamTextureWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamTextureWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + UTexture* DefaultValue; + UTexture* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, DefaultValue), Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, ReturnValue), Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamTextureWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::LyraTeamStatics_eventGetTeamTextureWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::LyraTeamStatics_eventGetTeamTextureWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamTextureWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_OBJECT(UTexture,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(UTexture**)Z_Param__Result=ULyraTeamStatics::GetTeamTextureWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamTextureWithFallback + +// Begin Class ULyraTeamStatics +void ULyraTeamStatics::StaticRegisterNativesULyraTeamStatics() +{ + UClass* Class = ULyraTeamStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindTeamFromObject", &ULyraTeamStatics::execFindTeamFromObject }, + { "GetTeamColorWithFallback", &ULyraTeamStatics::execGetTeamColorWithFallback }, + { "GetTeamDisplayAsset", &ULyraTeamStatics::execGetTeamDisplayAsset }, + { "GetTeamScalarWithFallback", &ULyraTeamStatics::execGetTeamScalarWithFallback }, + { "GetTeamTextureWithFallback", &ULyraTeamStatics::execGetTeamTextureWithFallback }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamStatics); +UClass* Z_Construct_UClass_ULyraTeamStatics_NoRegister() +{ + return ULyraTeamStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** A subsystem for easy access to team information for team-based actors (e.g., pawns or player states) */" }, +#endif + { "IncludePath", "Teams/LyraTeamStatics.h" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A subsystem for easy access to team information for team-based actors (e.g., pawns or player states)" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject, "FindTeamFromObject" }, // 373758693 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback, "GetTeamColorWithFallback" }, // 1202593038 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset, "GetTeamDisplayAsset" }, // 578242240 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback, "GetTeamScalarWithFallback" }, // 1829534683 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback, "GetTeamTextureWithFallback" }, // 3979421538 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamStatics_Statics::ClassParams = { + &ULyraTeamStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamStatics() +{ + if (!Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton, Z_Construct_UClass_ULyraTeamStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamStatics::StaticClass(); +} +ULyraTeamStatics::ULyraTeamStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamStatics); +ULyraTeamStatics::~ULyraTeamStatics() {} +// End Class ULyraTeamStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamStatics, ULyraTeamStatics::StaticClass, TEXT("ULyraTeamStatics"), &Z_Registration_Info_UClass_ULyraTeamStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamStatics), 255268015U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_3140578065(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.generated.h new file mode 100644 index 00000000..207c6ad7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamStatics.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraTeamDisplayAsset; +class UObject; +class UTexture; +struct FLinearColor; +#ifdef LYRAGAME_LyraTeamStatics_generated_h +#error "LyraTeamStatics.generated.h already included, missing '#pragma once' in LyraTeamStatics.h" +#endif +#define LYRAGAME_LyraTeamStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetTeamTextureWithFallback); \ + DECLARE_FUNCTION(execGetTeamColorWithFallback); \ + DECLARE_FUNCTION(execGetTeamScalarWithFallback); \ + DECLARE_FUNCTION(execGetTeamDisplayAsset); \ + DECLARE_FUNCTION(execFindTeamFromObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamStatics(); \ + friend struct Z_Construct_UClass_ULyraTeamStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamStatics(ULyraTeamStatics&&); \ + ULyraTeamStatics(const ULyraTeamStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamStatics) \ + NO_API virtual ~ULyraTeamStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp new file mode 100644 index 00000000..32bd5f36 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp @@ -0,0 +1,955 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTeamComparison(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTeamTrackingInfo(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnLyraTeamDisplayAssetChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FOnLyraTeamDisplayAssetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamDisplayAssetChangedDelegate, const ULyraTeamDisplayAsset* DisplayAsset) +{ + struct _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; + _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms Parms; + Parms.DisplayAsset=DisplayAsset; + OnLyraTeamDisplayAssetChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnLyraTeamDisplayAssetChangedDelegate + +// Begin ScriptStruct FLyraTeamTrackingInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo; +class UScriptStruct* FLyraTeamTrackingInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraTeamTrackingInfo")); + } + return Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraTeamTrackingInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PublicInfo_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateInfo_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamDisplayAssetChanged_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PublicInfo; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PrivateInfo; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamDisplayAssetChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PublicInfo = { "PublicInfo", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, PublicInfo), Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PublicInfo_MetaData), NewProp_PublicInfo_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PrivateInfo = { "PrivateInfo", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, PrivateInfo), Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateInfo_MetaData), NewProp_PrivateInfo_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_OnTeamDisplayAssetChanged = { "OnTeamDisplayAssetChanged", nullptr, (EPropertyFlags)0x0010000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, OnTeamDisplayAssetChanged), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamDisplayAssetChanged_MetaData), NewProp_OnTeamDisplayAssetChanged_MetaData) }; // 1888540490 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PublicInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PrivateInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_OnTeamDisplayAssetChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraTeamTrackingInfo", + Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers), + sizeof(FLyraTeamTrackingInfo), + alignof(FLyraTeamTrackingInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraTeamTrackingInfo() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton; +} +// End ScriptStruct FLyraTeamTrackingInfo + +// Begin Enum ELyraTeamComparison +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraTeamComparison; +static UEnum* ELyraTeamComparison_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraTeamComparison, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraTeamComparison")); + } + return Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraTeamComparison_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Result of comparing the team affiliation for two actors\n" }, +#endif + { "DifferentTeams.Comment", "// The actors are members of opposing teams\n" }, + { "DifferentTeams.Name", "ELyraTeamComparison::DifferentTeams" }, + { "DifferentTeams.ToolTip", "The actors are members of opposing teams" }, + { "InvalidArgument.Comment", "// One (or both) of the actors was invalid or not part of any team\n" }, + { "InvalidArgument.Name", "ELyraTeamComparison::InvalidArgument" }, + { "InvalidArgument.ToolTip", "One (or both) of the actors was invalid or not part of any team" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + { "OnSameTeam.Comment", "// Both actors are members of the same team\n" }, + { "OnSameTeam.Name", "ELyraTeamComparison::OnSameTeam" }, + { "OnSameTeam.ToolTip", "Both actors are members of the same team" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Result of comparing the team affiliation for two actors" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraTeamComparison::OnSameTeam", (int64)ELyraTeamComparison::OnSameTeam }, + { "ELyraTeamComparison::DifferentTeams", (int64)ELyraTeamComparison::DifferentTeams }, + { "ELyraTeamComparison::InvalidArgument", (int64)ELyraTeamComparison::InvalidArgument }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraTeamComparison", + "ELyraTeamComparison", + Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraTeamComparison() +{ + if (!Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton; +} +// End Enum ELyraTeamComparison + +// Begin Class ULyraTeamSubsystem Function AddTeamTagStack +struct Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics +{ + struct LyraTeamSubsystem_eventAddTeamTagStack_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "AddTeamTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::LyraTeamSubsystem_eventAddTeamTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::LyraTeamSubsystem_eventAddTeamTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execAddTeamTagStack) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddTeamTagStack(Z_Param_TeamId,Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function AddTeamTagStack + +// Begin Class ULyraTeamSubsystem Function CompareTeams +struct Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics +{ + struct LyraTeamSubsystem_eventCompareTeams_Parms + { + const UObject* A; + const UObject* B; + int32 TeamIdA; + int32 TeamIdB; + ELyraTeamComparison ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Compare the teams of two actors and returns a value indicating if they are on same teams, different teams, or one/both are invalid\n" }, +#endif + { "ExpandEnumAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Compare the teams of two actors and returns a value indicating if they are on same teams, different teams, or one/both are invalid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_A_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_B_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_A; + static const UECodeGen_Private::FObjectPropertyParams NewProp_B; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamIdA; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamIdB; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_A = { "A", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, A), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_A_MetaData), NewProp_A_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_B = { "B", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, B), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_B_MetaData), NewProp_B_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdA = { "TeamIdA", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, TeamIdA), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdB = { "TeamIdB", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, TeamIdB), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraTeamComparison, METADATA_PARAMS(0, nullptr) }; // 164494161 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_A, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_B, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "CompareTeams", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::LyraTeamSubsystem_eventCompareTeams_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::LyraTeamSubsystem_eventCompareTeams_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execCompareTeams) +{ + P_GET_OBJECT(UObject,Z_Param_A); + P_GET_OBJECT(UObject,Z_Param_B); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamIdA); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamIdB); + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraTeamComparison*)Z_Param__Result=P_THIS->CompareTeams(Z_Param_A,Z_Param_B,Z_Param_Out_TeamIdA,Z_Param_Out_TeamIdB); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function CompareTeams + +// Begin Class ULyraTeamSubsystem Function DoesTeamExist +struct Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics +{ + struct LyraTeamSubsystem_eventDoesTeamExist_Parms + { + int32 TeamId; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if the specified team exists\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the specified team exists" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventDoesTeamExist_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventDoesTeamExist_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventDoesTeamExist_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "DoesTeamExist", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::LyraTeamSubsystem_eventDoesTeamExist_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::LyraTeamSubsystem_eventDoesTeamExist_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execDoesTeamExist) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->DoesTeamExist(Z_Param_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function DoesTeamExist + +// Begin Class ULyraTeamSubsystem Function FindTeamFromActor +struct Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics +{ + struct LyraTeamSubsystem_eventFindTeamFromActor_Parms + { + const UObject* TestActor; + bool bIsPartOfTeam; + int32 TeamId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the team this object belongs to, or INDEX_NONE if it is not part of a team\n" }, +#endif + { "Keywords", "Get" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the team this object belongs to, or INDEX_NONE if it is not part of a team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TestActor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TestActor; + static void NewProp_bIsPartOfTeam_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsPartOfTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TestActor = { "TestActor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventFindTeamFromActor_Parms, TestActor), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TestActor_MetaData), NewProp_TestActor_MetaData) }; +void Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventFindTeamFromActor_Parms*)Obj)->bIsPartOfTeam = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam = { "bIsPartOfTeam", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventFindTeamFromActor_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventFindTeamFromActor_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TestActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "FindTeamFromActor", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::LyraTeamSubsystem_eventFindTeamFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::LyraTeamSubsystem_eventFindTeamFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execFindTeamFromActor) +{ + P_GET_OBJECT(UObject,Z_Param_TestActor); + P_GET_UBOOL_REF(Z_Param_Out_bIsPartOfTeam); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FindTeamFromActor(Z_Param_TestActor,Z_Param_Out_bIsPartOfTeam,Z_Param_Out_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function FindTeamFromActor + +// Begin Class ULyraTeamSubsystem Function GetEffectiveTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics +{ + struct LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms + { + int32 TeamId; + UObject* ViewerTeamAgent; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the team display asset for the specified team, from the perspective of the specified team\n// (You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the team display asset for the specified team, from the perspective of the specified team\n(You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ViewerTeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ViewerTeamAgent = { "ViewerTeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, ViewerTeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ViewerTeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetEffectiveTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetEffectiveTeamDisplayAsset) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_OBJECT(UObject,Z_Param_ViewerTeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=P_THIS->GetEffectiveTeamDisplayAsset(Z_Param_TeamId,Z_Param_ViewerTeamAgent); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetEffectiveTeamDisplayAsset + +// Begin Class ULyraTeamSubsystem Function GetTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics +{ + struct LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms + { + int32 TeamId; + int32 ViewerTeamId; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the team display asset for the specified team, from the perspective of the specified team\n// (You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the team display asset for the specified team, from the perspective of the specified team\n(You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FIntPropertyParams NewProp_ViewerTeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ViewerTeamId = { "ViewerTeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, ViewerTeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ViewerTeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamDisplayAsset) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_PROPERTY(FIntProperty,Z_Param_ViewerTeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=P_THIS->GetTeamDisplayAsset(Z_Param_TeamId,Z_Param_ViewerTeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamDisplayAsset + +// Begin Class ULyraTeamSubsystem Function GetTeamIDs +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics +{ + struct LyraTeamSubsystem_eventGetTeamIDs_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the list of teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the list of teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamIDs_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamIDs", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::LyraTeamSubsystem_eventGetTeamIDs_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::LyraTeamSubsystem_eventGetTeamIDs_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamIDs) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetTeamIDs(); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamIDs + +// Begin Class ULyraTeamSubsystem Function GetTeamTagStackCount +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics +{ + struct LyraTeamSubsystem_eventGetTeamTagStackCount_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::LyraTeamSubsystem_eventGetTeamTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::LyraTeamSubsystem_eventGetTeamTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamTagStackCount) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetTeamTagStackCount(Z_Param_TeamId,Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamTagStackCount + +// Begin Class ULyraTeamSubsystem Function RemoveTeamTagStack +struct Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics +{ + struct LyraTeamSubsystem_eventRemoveTeamTagStack_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "RemoveTeamTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::LyraTeamSubsystem_eventRemoveTeamTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::LyraTeamSubsystem_eventRemoveTeamTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execRemoveTeamTagStack) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveTeamTagStack(Z_Param_TeamId,Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function RemoveTeamTagStack + +// Begin Class ULyraTeamSubsystem Function TeamHasTag +struct Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics +{ + struct LyraTeamSubsystem_eventTeamHasTag_Parms + { + int32 TeamId; + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventTeamHasTag_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventTeamHasTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventTeamHasTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventTeamHasTag_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "TeamHasTag", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::LyraTeamSubsystem_eventTeamHasTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::LyraTeamSubsystem_eventTeamHasTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execTeamHasTag) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TeamHasTag(Z_Param_TeamId,Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function TeamHasTag + +// Begin Class ULyraTeamSubsystem +void ULyraTeamSubsystem::StaticRegisterNativesULyraTeamSubsystem() +{ + UClass* Class = ULyraTeamSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddTeamTagStack", &ULyraTeamSubsystem::execAddTeamTagStack }, + { "CompareTeams", &ULyraTeamSubsystem::execCompareTeams }, + { "DoesTeamExist", &ULyraTeamSubsystem::execDoesTeamExist }, + { "FindTeamFromActor", &ULyraTeamSubsystem::execFindTeamFromActor }, + { "GetEffectiveTeamDisplayAsset", &ULyraTeamSubsystem::execGetEffectiveTeamDisplayAsset }, + { "GetTeamDisplayAsset", &ULyraTeamSubsystem::execGetTeamDisplayAsset }, + { "GetTeamIDs", &ULyraTeamSubsystem::execGetTeamIDs }, + { "GetTeamTagStackCount", &ULyraTeamSubsystem::execGetTeamTagStackCount }, + { "RemoveTeamTagStack", &ULyraTeamSubsystem::execRemoveTeamTagStack }, + { "TeamHasTag", &ULyraTeamSubsystem::execTeamHasTag }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamSubsystem); +UClass* Z_Construct_UClass_ULyraTeamSubsystem_NoRegister() +{ + return ULyraTeamSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** A subsystem for easy access to team information for team-based actors (e.g., pawns or player states) */" }, +#endif + { "IncludePath", "Teams/LyraTeamSubsystem.h" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A subsystem for easy access to team information for team-based actors (e.g., pawns or player states)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamMap_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TeamMap_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TeamMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack, "AddTeamTagStack" }, // 2135061078 + { &Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams, "CompareTeams" }, // 1561160394 + { &Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist, "DoesTeamExist" }, // 1768869352 + { &Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor, "FindTeamFromActor" }, // 3632167237 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset, "GetEffectiveTeamDisplayAsset" }, // 3780757005 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset, "GetTeamDisplayAsset" }, // 3143325647 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs, "GetTeamIDs" }, // 1603745379 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount, "GetTeamTagStackCount" }, // 3725301193 + { &Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack, "RemoveTeamTagStack" }, // 4253938779 + { &Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag, "TeamHasTag" }, // 3246271955 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_ValueProp = { "TeamMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo, METADATA_PARAMS(0, nullptr) }; // 509123080 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_Key_KeyProp = { "TeamMap_Key", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap = { "TeamMap", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamSubsystem, TeamMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamMap_MetaData), NewProp_TeamMap_MetaData) }; // 509123080 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::ClassParams = { + &ULyraTeamSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton, Z_Construct_UClass_ULyraTeamSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamSubsystem); +ULyraTeamSubsystem::~ULyraTeamSubsystem() {} +// End Class ULyraTeamSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraTeamComparison_StaticEnum, TEXT("ELyraTeamComparison"), &Z_Registration_Info_UEnum_ELyraTeamComparison, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 164494161U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraTeamTrackingInfo::StaticStruct, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewStructOps, TEXT("LyraTeamTrackingInfo"), &Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraTeamTrackingInfo), 509123080U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamSubsystem, ULyraTeamSubsystem::StaticClass, TEXT("ULyraTeamSubsystem"), &Z_Registration_Info_UClass_ULyraTeamSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamSubsystem), 799536212U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_490059094(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h new file mode 100644 index 00000000..f537854b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraTeamDisplayAsset; +class UObject; +enum class ELyraTeamComparison : uint8; +struct FGameplayTag; +#ifdef LYRAGAME_LyraTeamSubsystem_generated_h +#error "LyraTeamSubsystem.generated.h already included, missing '#pragma once' in LyraTeamSubsystem.h" +#endif +#define LYRAGAME_LyraTeamSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_19_DELEGATE \ +LYRAGAME_API void FOnLyraTeamDisplayAssetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamDisplayAssetChangedDelegate, const ULyraTeamDisplayAsset* DisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_24_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetTeamIDs); \ + DECLARE_FUNCTION(execGetEffectiveTeamDisplayAsset); \ + DECLARE_FUNCTION(execGetTeamDisplayAsset); \ + DECLARE_FUNCTION(execDoesTeamExist); \ + DECLARE_FUNCTION(execTeamHasTag); \ + DECLARE_FUNCTION(execGetTeamTagStackCount); \ + DECLARE_FUNCTION(execRemoveTeamTagStack); \ + DECLARE_FUNCTION(execAddTeamTagStack); \ + DECLARE_FUNCTION(execCompareTeams); \ + DECLARE_FUNCTION(execFindTeamFromActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamSubsystem(); \ + friend struct Z_Construct_UClass_ULyraTeamSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamSubsystem(ULyraTeamSubsystem&&); \ + ULyraTeamSubsystem(const ULyraTeamSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraTeamSubsystem) \ + NO_API virtual ~ULyraTeamSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_59_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h + + +#define FOREACH_ENUM_ELYRATEAMCOMPARISON(op) \ + op(ELyraTeamComparison::OnSameTeam) \ + op(ELyraTeamComparison::DifferentTeams) \ + op(ELyraTeamComparison::InvalidArgument) + +enum class ELyraTeamComparison : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp new file mode 100644 index 00000000..5af1d1d7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Tests/LyraTestControllerBootTest.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTestControllerBootTest() {} + +// Begin Cross Module References +GAUNTLET_API UClass* Z_Construct_UClass_UGauntletTestControllerBootTest(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTestControllerBootTest(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTestControllerBootTest_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTestControllerBootTest +void ULyraTestControllerBootTest::StaticRegisterNativesULyraTestControllerBootTest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTestControllerBootTest); +UClass* Z_Construct_UClass_ULyraTestControllerBootTest_NoRegister() +{ + return ULyraTestControllerBootTest::StaticClass(); +} +struct Z_Construct_UClass_ULyraTestControllerBootTest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Tests/LyraTestControllerBootTest.h" }, + { "ModuleRelativePath", "Tests/LyraTestControllerBootTest.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTestControllerBootTest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGauntletTestControllerBootTest, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTestControllerBootTest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTestControllerBootTest_Statics::ClassParams = { + &ULyraTestControllerBootTest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTestControllerBootTest_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTestControllerBootTest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTestControllerBootTest() +{ + if (!Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton, Z_Construct_UClass_ULyraTestControllerBootTest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTestControllerBootTest::StaticClass(); +} +ULyraTestControllerBootTest::ULyraTestControllerBootTest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTestControllerBootTest); +ULyraTestControllerBootTest::~ULyraTestControllerBootTest() {} +// End Class ULyraTestControllerBootTest + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTestControllerBootTest, ULyraTestControllerBootTest::StaticClass, TEXT("ULyraTestControllerBootTest"), &Z_Registration_Info_UClass_ULyraTestControllerBootTest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTestControllerBootTest), 1144228925U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_2192472729(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h new file mode 100644 index 00000000..bd4891ed --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Tests/LyraTestControllerBootTest.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTestControllerBootTest_generated_h +#error "LyraTestControllerBootTest.generated.h already included, missing '#pragma once' in LyraTestControllerBootTest.h" +#endif +#define LYRAGAME_LyraTestControllerBootTest_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTestControllerBootTest(); \ + friend struct Z_Construct_UClass_ULyraTestControllerBootTest_Statics; \ +public: \ + DECLARE_CLASS(ULyraTestControllerBootTest, UGauntletTestControllerBootTest, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTestControllerBootTest) + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTestControllerBootTest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTestControllerBootTest(ULyraTestControllerBootTest&&); \ + ULyraTestControllerBootTest(const ULyraTestControllerBootTest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTestControllerBootTest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTestControllerBootTest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTestControllerBootTest) \ + NO_API virtual ~ULyraTestControllerBootTest(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp new file mode 100644 index 00000000..27f6945e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraTextHotfixConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTextHotfixConfig() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPolyglotTextData(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTextHotfixConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTextHotfixConfig_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTextHotfixConfig +void ULyraTextHotfixConfig::StaticRegisterNativesULyraTextHotfixConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTextHotfixConfig); +UClass* Z_Construct_UClass_ULyraTextHotfixConfig_NoRegister() +{ + return ULyraTextHotfixConfig::StaticClass(); +} +struct Z_Construct_UClass_ULyraTextHotfixConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This class allows hotfixing individual FText values anywhere\n */" }, +#endif + { "IncludePath", "Hotfix/LyraTextHotfixConfig.h" }, + { "ModuleRelativePath", "Hotfix/LyraTextHotfixConfig.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This class allows hotfixing individual FText values anywhere" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextReplacements_MetaData[] = { + { "Category", "LyraTextHotfixConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of FText values to hotfix\n" }, +#endif + { "ModuleRelativePath", "Hotfix/LyraTextHotfixConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of FText values to hotfix" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TextReplacements_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TextReplacements; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements_Inner = { "TextReplacements", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPolyglotTextData, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements = { "TextReplacements", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTextHotfixConfig, TextReplacements), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextReplacements_MetaData), NewProp_TextReplacements_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTextHotfixConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::ClassParams = { + &ULyraTextHotfixConfig::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTextHotfixConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTextHotfixConfig() +{ + if (!Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton, Z_Construct_UClass_ULyraTextHotfixConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTextHotfixConfig::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTextHotfixConfig); +ULyraTextHotfixConfig::~ULyraTextHotfixConfig() {} +// End Class ULyraTextHotfixConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTextHotfixConfig, ULyraTextHotfixConfig::StaticClass, TEXT("ULyraTextHotfixConfig"), &Z_Registration_Info_UClass_ULyraTextHotfixConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTextHotfixConfig), 2094281449U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_385615995(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h new file mode 100644 index 00000000..695d82d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraTextHotfixConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTextHotfixConfig_generated_h +#error "LyraTextHotfixConfig.generated.h already included, missing '#pragma once' in LyraTextHotfixConfig.h" +#endif +#define LYRAGAME_LyraTextHotfixConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTextHotfixConfig(); \ + friend struct Z_Construct_UClass_ULyraTextHotfixConfig_Statics; \ +public: \ + DECLARE_CLASS(ULyraTextHotfixConfig, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTextHotfixConfig) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTextHotfixConfig(ULyraTextHotfixConfig&&); \ + ULyraTextHotfixConfig(const ULyraTextHotfixConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTextHotfixConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTextHotfixConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTextHotfixConfig) \ + NO_API virtual ~ULyraTextHotfixConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp new file mode 100644 index 00000000..4e1c488d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp @@ -0,0 +1,156 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraTouchRegion.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTouchRegion() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTouchRegion(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTouchRegion_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTouchRegion Function ShouldSimulateInput +struct Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics +{ + struct LyraTouchRegion_eventShouldSimulateInput_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~ End UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "UI/LyraTouchRegion.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTouchRegion_eventShouldSimulateInput_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTouchRegion_eventShouldSimulateInput_Parms), &Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTouchRegion, nullptr, "ShouldSimulateInput", nullptr, nullptr, Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::LyraTouchRegion_eventShouldSimulateInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::LyraTouchRegion_eventShouldSimulateInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTouchRegion::execShouldSimulateInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldSimulateInput(); + P_NATIVE_END; +} +// End Class ULyraTouchRegion Function ShouldSimulateInput + +// Begin Class ULyraTouchRegion +void ULyraTouchRegion::StaticRegisterNativesULyraTouchRegion() +{ + UClass* Class = ULyraTouchRegion::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ShouldSimulateInput", &ULyraTouchRegion::execShouldSimulateInput }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTouchRegion); +UClass* Z_Construct_UClass_ULyraTouchRegion_NoRegister() +{ + return ULyraTouchRegion::StaticClass(); +} +struct Z_Construct_UClass_ULyraTouchRegion_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A \"Touch Region\" is used to define an area on the screen that should trigger some\n * input when the user presses a finger on it\n */" }, +#endif + { "DisplayName", "Lyra Touch Region" }, + { "IncludePath", "UI/LyraTouchRegion.h" }, + { "ModuleRelativePath", "UI/LyraTouchRegion.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A \"Touch Region\" is used to define an area on the screen that should trigger some\ninput when the user presses a finger on it" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput, "ShouldSimulateInput" }, // 3700276652 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTouchRegion_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraSimulatedInputWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTouchRegion_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTouchRegion_Statics::ClassParams = { + &ULyraTouchRegion::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTouchRegion_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTouchRegion_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTouchRegion() +{ + if (!Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton, Z_Construct_UClass_ULyraTouchRegion_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTouchRegion::StaticClass(); +} +ULyraTouchRegion::ULyraTouchRegion(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTouchRegion); +ULyraTouchRegion::~ULyraTouchRegion() {} +// End Class ULyraTouchRegion + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTouchRegion, ULyraTouchRegion::StaticClass, TEXT("ULyraTouchRegion"), &Z_Registration_Info_UClass_ULyraTouchRegion, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTouchRegion), 676625438U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_4128548656(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.generated.h new file mode 100644 index 00000000..b260667a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraTouchRegion.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraTouchRegion.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTouchRegion_generated_h +#error "LyraTouchRegion.generated.h already included, missing '#pragma once' in LyraTouchRegion.h" +#endif +#define LYRAGAME_LyraTouchRegion_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execShouldSimulateInput); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTouchRegion(); \ + friend struct Z_Construct_UClass_ULyraTouchRegion_Statics; \ +public: \ + DECLARE_CLASS(ULyraTouchRegion, ULyraSimulatedInputWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTouchRegion) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTouchRegion(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTouchRegion(ULyraTouchRegion&&); \ + ULyraTouchRegion(const ULyraTouchRegion&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTouchRegion); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTouchRegion); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTouchRegion) \ + NO_API virtual ~ULyraTouchRegion(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp new file mode 100644 index 00000000..c23e7351 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp @@ -0,0 +1,113 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraUICameraManagerComponent.h" +#include "LyraGame/Camera/LyraPlayerCameraManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUICameraManagerComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUICameraManagerComponent +void ULyraUICameraManagerComponent::StaticRegisterNativesULyraUICameraManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUICameraManagerComponent); +UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister() +{ + return ULyraUICameraManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraUICameraManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Camera/LyraUICameraManagerComponent.h" }, + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewTarget_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUpdatingViewTarget_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ViewTarget; + static void NewProp_bUpdatingViewTarget_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUpdatingViewTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_ViewTarget = { "ViewTarget", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUICameraManagerComponent, ViewTarget), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewTarget_MetaData), NewProp_ViewTarget_MetaData) }; +void Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget_SetBit(void* Obj) +{ + ((ULyraUICameraManagerComponent*)Obj)->bUpdatingViewTarget = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget = { "bUpdatingViewTarget", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUICameraManagerComponent), &Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUpdatingViewTarget_MetaData), NewProp_bUpdatingViewTarget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_ViewTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::ClassParams = { + &ULyraUICameraManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers), + 0, + 0x00A000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUICameraManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUICameraManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUICameraManagerComponent); +ULyraUICameraManagerComponent::~ULyraUICameraManagerComponent() {} +// End Class ULyraUICameraManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUICameraManagerComponent, ULyraUICameraManagerComponent::StaticClass, TEXT("ULyraUICameraManagerComponent"), &Z_Registration_Info_UClass_ULyraUICameraManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUICameraManagerComponent), 4140123009U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_1420536436(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h new file mode 100644 index 00000000..7d52b53a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraUICameraManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUICameraManagerComponent_generated_h +#error "LyraUICameraManagerComponent.generated.h already included, missing '#pragma once' in LyraUICameraManagerComponent.h" +#endif +#define LYRAGAME_LyraUICameraManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUICameraManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraUICameraManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraUICameraManagerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUICameraManagerComponent) \ + DECLARE_WITHIN(ALyraPlayerCameraManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUICameraManagerComponent(ULyraUICameraManagerComponent&&); \ + ULyraUICameraManagerComponent(const ULyraUICameraManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUICameraManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUICameraManagerComponent); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUICameraManagerComponent) \ + NO_API virtual ~ULyraUICameraManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp new file mode 100644 index 00000000..41b165dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Subsystem/LyraUIManagerSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUIManagerSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIManagerSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIManagerSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUIManagerSubsystem +void ULyraUIManagerSubsystem::StaticRegisterNativesULyraUIManagerSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUIManagerSubsystem); +UClass* Z_Construct_UClass_ULyraUIManagerSubsystem_NoRegister() +{ + return ULyraUIManagerSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraUIManagerSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Subsystem/LyraUIManagerSubsystem.h" }, + { "ModuleRelativePath", "UI/Subsystem/LyraUIManagerSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameUIManagerSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::ClassParams = { + &ULyraUIManagerSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUIManagerSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton, Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUIManagerSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUIManagerSubsystem); +ULyraUIManagerSubsystem::~ULyraUIManagerSubsystem() {} +// End Class ULyraUIManagerSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUIManagerSubsystem, ULyraUIManagerSubsystem::StaticClass, TEXT("ULyraUIManagerSubsystem"), &Z_Registration_Info_UClass_ULyraUIManagerSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUIManagerSubsystem), 4251025026U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_3479094709(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h new file mode 100644 index 00000000..d37ac556 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Subsystem/LyraUIManagerSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUIManagerSubsystem_generated_h +#error "LyraUIManagerSubsystem.generated.h already included, missing '#pragma once' in LyraUIManagerSubsystem.h" +#endif +#define LYRAGAME_LyraUIManagerSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUIManagerSubsystem(); \ + friend struct Z_Construct_UClass_ULyraUIManagerSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraUIManagerSubsystem, UGameUIManagerSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUIManagerSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUIManagerSubsystem(ULyraUIManagerSubsystem&&); \ + ULyraUIManagerSubsystem(const ULyraUIManagerSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUIManagerSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUIManagerSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUIManagerSubsystem) \ + NO_API virtual ~ULyraUIManagerSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp new file mode 100644 index 00000000..299c85e9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Subsystem/LyraUIMessaging.h" +#include "Runtime/Engine/Classes/Engine/LocalPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUIMessaging() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIMessaging(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIMessaging_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUIMessaging +void ULyraUIMessaging::StaticRegisterNativesULyraUIMessaging() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUIMessaging); +UClass* Z_Construct_UClass_ULyraUIMessaging_NoRegister() +{ + return ULyraUIMessaging::StaticClass(); +} +struct Z_Construct_UClass_ULyraUIMessaging_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "UI/Subsystem/LyraUIMessaging.h" }, + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfirmationDialogClassPtr_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorDialogClassPtr_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfirmationDialogClass_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorDialogClass_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ConfirmationDialogClassPtr; + static const UECodeGen_Private::FClassPropertyParams NewProp_ErrorDialogClassPtr; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ConfirmationDialogClass; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ErrorDialogClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClassPtr = { "ConfirmationDialogClassPtr", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ConfirmationDialogClassPtr), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfirmationDialogClassPtr_MetaData), NewProp_ConfirmationDialogClassPtr_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClassPtr = { "ErrorDialogClassPtr", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ErrorDialogClassPtr), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorDialogClassPtr_MetaData), NewProp_ErrorDialogClassPtr_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClass = { "ConfirmationDialogClass", nullptr, (EPropertyFlags)0x0044000000004000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ConfirmationDialogClass), Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfirmationDialogClass_MetaData), NewProp_ConfirmationDialogClass_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClass = { "ErrorDialogClass", nullptr, (EPropertyFlags)0x0044000000004000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ErrorDialogClass), Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorDialogClass_MetaData), NewProp_ErrorDialogClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClassPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClassPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUIMessaging_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonMessagingSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUIMessaging_Statics::ClassParams = { + &ULyraUIMessaging::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers), + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUIMessaging_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUIMessaging() +{ + if (!Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton, Z_Construct_UClass_ULyraUIMessaging_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUIMessaging::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUIMessaging); +ULyraUIMessaging::~ULyraUIMessaging() {} +// End Class ULyraUIMessaging + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUIMessaging, ULyraUIMessaging::StaticClass, TEXT("ULyraUIMessaging"), &Z_Registration_Info_UClass_ULyraUIMessaging, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUIMessaging), 4114452427U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_2866203306(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.generated.h new file mode 100644 index 00000000..1d4ee6e6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUIMessaging.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Subsystem/LyraUIMessaging.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUIMessaging_generated_h +#error "LyraUIMessaging.generated.h already included, missing '#pragma once' in LyraUIMessaging.h" +#endif +#define LYRAGAME_LyraUIMessaging_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUIMessaging(); \ + friend struct Z_Construct_UClass_ULyraUIMessaging_Statics; \ +public: \ + DECLARE_CLASS(ULyraUIMessaging, UCommonMessagingSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUIMessaging) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUIMessaging(ULyraUIMessaging&&); \ + ULyraUIMessaging(const ULyraUIMessaging&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUIMessaging); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUIMessaging); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUIMessaging) \ + NO_API virtual ~ULyraUIMessaging(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp new file mode 100644 index 00000000..8b6c470e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp @@ -0,0 +1,351 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraUserFacingExperienceDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUserFacingExperienceDefinition() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UTexture2D_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUserFacingExperienceDefinition Function CreateHostingRequest +struct Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics +{ + struct LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms + { + const UObject* WorldContextObject; + UCommonSession_HostSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Create a request object that is used to actually start a session with these settings */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Create a request object that is used to actually start a session with these settings" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraUserFacingExperienceDefinition, nullptr, "CreateHostingRequest", nullptr, nullptr, Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraUserFacingExperienceDefinition::execCreateHostingRequest) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_HostSessionRequest**)Z_Param__Result=P_THIS->CreateHostingRequest(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraUserFacingExperienceDefinition Function CreateHostingRequest + +// Begin Class ULyraUserFacingExperienceDefinition +void ULyraUserFacingExperienceDefinition::StaticRegisterNativesULyraUserFacingExperienceDefinition() +{ + UClass* Class = ULyraUserFacingExperienceDefinition::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateHostingRequest", &ULyraUserFacingExperienceDefinition::execCreateHostingRequest }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUserFacingExperienceDefinition); +UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition_NoRegister() +{ + return ULyraUserFacingExperienceDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Description of settings used to display experiences in the UI and start a new session */" }, +#endif + { "IncludePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Description of settings used to display experiences in the UI and start a new session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapID_MetaData[] = { + { "AllowedTypes", "Map" }, + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The specific map to load */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The specific map to load" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceID_MetaData[] = { + { "AllowedTypes", "LyraExperienceDefinition" }, + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The gameplay experience to load */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The gameplay experience to load" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtraArgs_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Extra arguments passed as URL options to the game */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra arguments passed as URL options to the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileTitle_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary title in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary title in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileSubTitle_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Secondary title */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Secondary title" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileDescription_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Full description */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Full description" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileIcon_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Icon used in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Icon used in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidget_MetaData[] = { + { "Category", "LoadingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The loading screen widget to show when loading into (or back out of) a given experience */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The loading screen widget to show when loading into (or back out of) a given experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsDefaultExperience_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this is a default experience that should be used for quick play and given priority in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this is a default experience that should be used for quick play and given priority in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowInFrontEnd_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this will show up in the experiences list in the front-end */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this will show up in the experiences list in the front-end" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRecordReplay_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, a replay will be recorded of the game */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, a replay will be recorded of the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxPlayerCount_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Max number of players for this session */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Max number of players for this session" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MapID; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExperienceID; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_ValueProp; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtraArgs; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileTitle; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileSubTitle; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileDescription; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TileIcon; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LoadingScreenWidget; + static void NewProp_bIsDefaultExperience_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsDefaultExperience; + static void NewProp_bShowInFrontEnd_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowInFrontEnd; + static void NewProp_bRecordReplay_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRecordReplay; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxPlayerCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest, "CreateHostingRequest" }, // 2531558413 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MapID = { "MapID", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, MapID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapID_MetaData), NewProp_MapID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExperienceID = { "ExperienceID", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, ExperienceID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceID_MetaData), NewProp_ExperienceID_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_ValueProp = { "ExtraArgs", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_Key_KeyProp = { "ExtraArgs_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs = { "ExtraArgs", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, ExtraArgs), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtraArgs_MetaData), NewProp_ExtraArgs_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileTitle = { "TileTitle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileTitle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileTitle_MetaData), NewProp_TileTitle_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileSubTitle = { "TileSubTitle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileSubTitle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileSubTitle_MetaData), NewProp_TileSubTitle_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileDescription = { "TileDescription", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileDescription), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileDescription_MetaData), NewProp_TileDescription_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileIcon = { "TileIcon", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileIcon), Z_Construct_UClass_UTexture2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileIcon_MetaData), NewProp_TileIcon_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_LoadingScreenWidget = { "LoadingScreenWidget", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, LoadingScreenWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidget_MetaData), NewProp_LoadingScreenWidget_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bIsDefaultExperience = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience = { "bIsDefaultExperience", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsDefaultExperience_MetaData), NewProp_bIsDefaultExperience_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bShowInFrontEnd = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd = { "bShowInFrontEnd", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowInFrontEnd_MetaData), NewProp_bShowInFrontEnd_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bRecordReplay = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay = { "bRecordReplay", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRecordReplay_MetaData), NewProp_bRecordReplay_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MaxPlayerCount = { "MaxPlayerCount", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, MaxPlayerCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxPlayerCount_MetaData), NewProp_MaxPlayerCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MapID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExperienceID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileTitle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileSubTitle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileDescription, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileIcon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_LoadingScreenWidget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MaxPlayerCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::ClassParams = { + &ULyraUserFacingExperienceDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton, Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUserFacingExperienceDefinition::StaticClass(); +} +ULyraUserFacingExperienceDefinition::ULyraUserFacingExperienceDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUserFacingExperienceDefinition); +ULyraUserFacingExperienceDefinition::~ULyraUserFacingExperienceDefinition() {} +// End Class ULyraUserFacingExperienceDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUserFacingExperienceDefinition, ULyraUserFacingExperienceDefinition::StaticClass, TEXT("ULyraUserFacingExperienceDefinition"), &Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUserFacingExperienceDefinition), 3553289749U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_3757103411(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h new file mode 100644 index 00000000..375eb279 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraUserFacingExperienceDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonSession_HostSessionRequest; +class UObject; +#ifdef LYRAGAME_LyraUserFacingExperienceDefinition_generated_h +#error "LyraUserFacingExperienceDefinition.generated.h already included, missing '#pragma once' in LyraUserFacingExperienceDefinition.h" +#endif +#define LYRAGAME_LyraUserFacingExperienceDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCreateHostingRequest); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUserFacingExperienceDefinition(); \ + friend struct Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraUserFacingExperienceDefinition, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUserFacingExperienceDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraUserFacingExperienceDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUserFacingExperienceDefinition(ULyraUserFacingExperienceDefinition&&); \ + ULyraUserFacingExperienceDefinition(const ULyraUserFacingExperienceDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUserFacingExperienceDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUserFacingExperienceDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraUserFacingExperienceDefinition) \ + NO_API virtual ~ULyraUserFacingExperienceDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp new file mode 100644 index 00000000..1e7ddfea --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraVerbMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessage; +class UScriptStruct* FLyraVerbMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraVerbMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents a generic message of the form Instigator Verb Target (in Context, with Magnitude)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a generic message of the form Instigator Verb Target (in Context, with Magnitude)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Verb_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Target_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstigatorTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Magnitude_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Verb; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FStructPropertyParams NewProp_InstigatorTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ContextTags; + static const UECodeGen_Private::FDoublePropertyParams NewProp_Magnitude; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Verb = { "Verb", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Verb), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Verb_MetaData), NewProp_Verb_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Instigator), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Target), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Target_MetaData), NewProp_Target_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_InstigatorTags = { "InstigatorTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, InstigatorTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstigatorTags_MetaData), NewProp_InstigatorTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_TargetTags = { "TargetTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, TargetTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetTags_MetaData), NewProp_TargetTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_ContextTags = { "ContextTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, ContextTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextTags_MetaData), NewProp_ContextTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Magnitude = { "Magnitude", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Magnitude), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Magnitude_MetaData), NewProp_Magnitude_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Verb, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_InstigatorTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_TargetTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_ContextTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Magnitude, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraVerbMessage", + Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers), + sizeof(FLyraVerbMessage), + alignof(FLyraVerbMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraVerbMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewStructOps, TEXT("LyraVerbMessage"), &Z_Registration_Info_UScriptStruct_LyraVerbMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessage), 172997159U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_1771683393(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.generated.h new file mode 100644 index 00000000..c9cdf163 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraVerbMessage_generated_h +#error "LyraVerbMessage.generated.h already included, missing '#pragma once' in LyraVerbMessage.h" +#endif +#define LYRAGAME_LyraVerbMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_14_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp new file mode 100644 index 00000000..ddd43f2b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp @@ -0,0 +1,307 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessageHelpers.h" +#include "GameplayAbilities/Public/GameplayEffectTypes.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessageHelpers() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayCueParameters(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraVerbMessageHelpers(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraVerbMessageHelpers_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraVerbMessageHelpers Function CueParametersToVerbMessage +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics +{ + struct LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms + { + FGameplayCueParameters Params; + FLyraVerbMessage ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Params_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms, Params), Z_Construct_UScriptStruct_FGameplayCueParameters, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Params_MetaData), NewProp_Params_MetaData) }; // 98506619 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(0, nullptr) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_Params, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "CueParametersToVerbMessage", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execCueParametersToVerbMessage) +{ + P_GET_STRUCT_REF(FGameplayCueParameters,Z_Param_Out_Params); + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraVerbMessage*)Z_Param__Result=ULyraVerbMessageHelpers::CueParametersToVerbMessage(Z_Param_Out_Params); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function CueParametersToVerbMessage + +// Begin Class ULyraVerbMessageHelpers Function GetPlayerControllerFromObject +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics +{ + struct LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms + { + UObject* Object; + APlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Object; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_Object = { "Object", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms, Object), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms, ReturnValue), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_Object, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "GetPlayerControllerFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execGetPlayerControllerFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Object); + P_FINISH; + P_NATIVE_BEGIN; + *(APlayerController**)Z_Param__Result=ULyraVerbMessageHelpers::GetPlayerControllerFromObject(Z_Param_Object); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function GetPlayerControllerFromObject + +// Begin Class ULyraVerbMessageHelpers Function GetPlayerStateFromObject +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics +{ + struct LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms + { + UObject* Object; + APlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Object; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_Object = { "Object", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms, Object), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms, ReturnValue), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_Object, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "GetPlayerStateFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execGetPlayerStateFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Object); + P_FINISH; + P_NATIVE_BEGIN; + *(APlayerState**)Z_Param__Result=ULyraVerbMessageHelpers::GetPlayerStateFromObject(Z_Param_Object); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function GetPlayerStateFromObject + +// Begin Class ULyraVerbMessageHelpers Function VerbMessageToCueParameters +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics +{ + struct LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms + { + FLyraVerbMessage Message; + FGameplayCueParameters ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayCueParameters, METADATA_PARAMS(0, nullptr) }; // 98506619 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "VerbMessageToCueParameters", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execVerbMessageToCueParameters) +{ + P_GET_STRUCT_REF(FLyraVerbMessage,Z_Param_Out_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayCueParameters*)Z_Param__Result=ULyraVerbMessageHelpers::VerbMessageToCueParameters(Z_Param_Out_Message); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function VerbMessageToCueParameters + +// Begin Class ULyraVerbMessageHelpers +void ULyraVerbMessageHelpers::StaticRegisterNativesULyraVerbMessageHelpers() +{ + UClass* Class = ULyraVerbMessageHelpers::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CueParametersToVerbMessage", &ULyraVerbMessageHelpers::execCueParametersToVerbMessage }, + { "GetPlayerControllerFromObject", &ULyraVerbMessageHelpers::execGetPlayerControllerFromObject }, + { "GetPlayerStateFromObject", &ULyraVerbMessageHelpers::execGetPlayerStateFromObject }, + { "VerbMessageToCueParameters", &ULyraVerbMessageHelpers::execVerbMessageToCueParameters }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraVerbMessageHelpers); +UClass* Z_Construct_UClass_ULyraVerbMessageHelpers_NoRegister() +{ + return ULyraVerbMessageHelpers::StaticClass(); +} +struct Z_Construct_UClass_ULyraVerbMessageHelpers_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messages/LyraVerbMessageHelpers.h" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage, "CueParametersToVerbMessage" }, // 1260056895 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject, "GetPlayerControllerFromObject" }, // 3911725184 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject, "GetPlayerStateFromObject" }, // 1673013030 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters, "VerbMessageToCueParameters" }, // 639287762 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::ClassParams = { + &ULyraVerbMessageHelpers::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraVerbMessageHelpers() +{ + if (!Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton, Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraVerbMessageHelpers::StaticClass(); +} +ULyraVerbMessageHelpers::ULyraVerbMessageHelpers(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraVerbMessageHelpers); +ULyraVerbMessageHelpers::~ULyraVerbMessageHelpers() {} +// End Class ULyraVerbMessageHelpers + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraVerbMessageHelpers, ULyraVerbMessageHelpers::StaticClass, TEXT("ULyraVerbMessageHelpers"), &Z_Registration_Info_UClass_ULyraVerbMessageHelpers, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraVerbMessageHelpers), 2522009314U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_3722705989(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h new file mode 100644 index 00000000..e3becc8f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessageHelpers.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class APlayerState; +class UObject; +struct FGameplayCueParameters; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraVerbMessageHelpers_generated_h +#error "LyraVerbMessageHelpers.generated.h already included, missing '#pragma once' in LyraVerbMessageHelpers.h" +#endif +#define LYRAGAME_LyraVerbMessageHelpers_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCueParametersToVerbMessage); \ + DECLARE_FUNCTION(execVerbMessageToCueParameters); \ + DECLARE_FUNCTION(execGetPlayerControllerFromObject); \ + DECLARE_FUNCTION(execGetPlayerStateFromObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraVerbMessageHelpers(); \ + friend struct Z_Construct_UClass_ULyraVerbMessageHelpers_Statics; \ +public: \ + DECLARE_CLASS(ULyraVerbMessageHelpers, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraVerbMessageHelpers) + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraVerbMessageHelpers(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraVerbMessageHelpers(ULyraVerbMessageHelpers&&); \ + ULyraVerbMessageHelpers(const ULyraVerbMessageHelpers&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraVerbMessageHelpers); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraVerbMessageHelpers); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraVerbMessageHelpers) \ + NO_API virtual ~ULyraVerbMessageHelpers(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp new file mode 100644 index 00000000..a36d0e64 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp @@ -0,0 +1,199 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessageReplication.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessageReplication() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplication(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraVerbMessageReplicationEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraVerbMessageReplicationEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry; +class UScriptStruct* FLyraVerbMessageReplicationEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessageReplicationEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessageReplicationEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents one verb message\n */" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents one verb message" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplicationEntry, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraVerbMessageReplicationEntry", + Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers), + sizeof(FLyraVerbMessageReplicationEntry), + alignof(FLyraVerbMessageReplicationEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessageReplicationEntry + +// Begin ScriptStruct FLyraVerbMessageReplication +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraVerbMessageReplication cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication; +class UScriptStruct* FLyraVerbMessageReplication::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessageReplication, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessageReplication")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessageReplication::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraVerbMessageReplication); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraVerbMessageReplication); +#endif +struct Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Container of verb messages to replicate */" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Container of verb messages to replicate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentMessages_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of gameplay tag stacks\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of gameplay tag stacks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Owner (for a route to a world)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Owner (for a route to a world)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentMessages_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CurrentMessages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages_Inner = { "CurrentMessages", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry, METADATA_PARAMS(0, nullptr) }; // 3782107568 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages = { "CurrentMessages", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplication, CurrentMessages), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentMessages_MetaData), NewProp_CurrentMessages_MetaData) }; // 3782107568 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplication, Owner), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_Owner, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraVerbMessageReplication", + Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers), + sizeof(FLyraVerbMessageReplication), + alignof(FLyraVerbMessageReplication), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplication() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessageReplication + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraVerbMessageReplicationEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewStructOps, TEXT("LyraVerbMessageReplicationEntry"), &Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessageReplicationEntry), 3782107568U) }, + { FLyraVerbMessageReplication::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewStructOps, TEXT("LyraVerbMessageReplication"), &Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessageReplication), 3186912120U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_3577634902(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h new file mode 100644 index 00000000..d6bd1088 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h @@ -0,0 +1,38 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessageReplication.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraVerbMessageReplication_generated_h +#error "LyraVerbMessageReplication.generated.h already included, missing '#pragma once' in LyraVerbMessageReplication.h" +#endif +#define LYRAGAME_LyraVerbMessageReplication_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_44_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraVerbMessageReplication, CurrentMessages, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp new file mode 100644 index 00000000..07d80f4b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponDebugSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponDebugSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponDebugSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponDebugSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponDebugSettings +void ULyraWeaponDebugSettings::StaticRegisterNativesULyraWeaponDebugSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponDebugSettings); +UClass* Z_Construct_UClass_ULyraWeaponDebugSettings_NoRegister() +{ + return ULyraWeaponDebugSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponDebugSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer debugging settings for weapons\n */" }, +#endif + { "IncludePath", "Weapons/LyraWeaponDebugSettings.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer debugging settings for weapons" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletTraceDuration_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we do debug drawing for bullet traces (if above zero, sets how long (in seconds)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletTraceDuration" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we do debug drawing for bullet traces (if above zero, sets how long (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletHitDuration_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we do debug drawing for bullet impacts (if above zero, sets how long (in seconds)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletHitDuration" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we do debug drawing for bullet impacts (if above zero, sets how long (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletHitRadius_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When bullet hit debug drawing is enabled (see DrawBulletHitDuration), how big should the hit radius be? (in cm)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletHitRadius" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When bullet hit debug drawing is enabled (see DrawBulletHitDuration), how big should the hit radius be? (in cm)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletTraceDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletHitDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletHitRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletTraceDuration = { "DrawBulletTraceDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletTraceDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletTraceDuration_MetaData), NewProp_DrawBulletTraceDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitDuration = { "DrawBulletHitDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletHitDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletHitDuration_MetaData), NewProp_DrawBulletHitDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitRadius = { "DrawBulletHitRadius", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletHitRadius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletHitRadius_MetaData), NewProp_DrawBulletHitRadius_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletTraceDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::ClassParams = { + &ULyraWeaponDebugSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers), + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponDebugSettings() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton, Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponDebugSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponDebugSettings); +ULyraWeaponDebugSettings::~ULyraWeaponDebugSettings() {} +// End Class ULyraWeaponDebugSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponDebugSettings, ULyraWeaponDebugSettings::StaticClass, TEXT("ULyraWeaponDebugSettings"), &Z_Registration_Info_UClass_ULyraWeaponDebugSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponDebugSettings), 181903601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_991744976(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h new file mode 100644 index 00000000..3e6d0988 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponDebugSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWeaponDebugSettings_generated_h +#error "LyraWeaponDebugSettings.generated.h already included, missing '#pragma once' in LyraWeaponDebugSettings.h" +#endif +#define LYRAGAME_LyraWeaponDebugSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponDebugSettings(); \ + friend struct Z_Construct_UClass_ULyraWeaponDebugSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponDebugSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponDebugSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponDebugSettings(ULyraWeaponDebugSettings&&); \ + ULyraWeaponDebugSettings(const ULyraWeaponDebugSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponDebugSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponDebugSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraWeaponDebugSettings) \ + NO_API virtual ~ULyraWeaponDebugSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp new file mode 100644 index 00000000..8af908b0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp @@ -0,0 +1,435 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponInstance.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Runtime/Engine/Classes/GameFramework/InputDevicePropertyHandle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UInputDeviceProperty_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FInputDevicePropertyHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponInstance Function GetOwningUserId +struct Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct LyraWeaponInstance_eventGetOwningUserId_Parms + { + FPlatformUserId ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the owning Pawn's Platform User ID */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the owning Pawn's Platform User ID" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventGetOwningUserId_Parms, ReturnValue), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "GetOwningUserId", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::LyraWeaponInstance_eventGetOwningUserId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::LyraWeaponInstance_eventGetOwningUserId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execGetOwningUserId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FPlatformUserId*)Z_Param__Result=P_THIS->GetOwningUserId(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function GetOwningUserId + +// Begin Class ULyraWeaponInstance Function GetTimeSinceLastInteractedWith +struct Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics +{ + struct LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns how long it's been since the weapon was interacted with (fired or equipped)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns how long it's been since the weapon was interacted with (fired or equipped)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "GetTimeSinceLastInteractedWith", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execGetTimeSinceLastInteractedWith) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetTimeSinceLastInteractedWith(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function GetTimeSinceLastInteractedWith + +// Begin Class ULyraWeaponInstance Function OnDeathStarted +struct Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics +{ + struct LyraWeaponInstance_eventOnDeathStarted_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Callback for when the owning pawn of this weapon dies. Removes all spawned device properties. */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Callback for when the owning pawn of this weapon dies. Removes all spawned device properties." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventOnDeathStarted_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "OnDeathStarted", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::LyraWeaponInstance_eventOnDeathStarted_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::LyraWeaponInstance_eventOnDeathStarted_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execOnDeathStarted) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathStarted(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function OnDeathStarted + +// Begin Class ULyraWeaponInstance Function PickBestAnimLayer +struct Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics +{ + struct LyraWeaponInstance_eventPickBestAnimLayer_Parms + { + bool bEquipped; + FGameplayTagContainer CosmeticTags; + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Animation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Choose the best layer from EquippedAnimSet or UneuippedAnimSet based on the specified gameplay tags\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Choose the best layer from EquippedAnimSet or UneuippedAnimSet based on the specified gameplay tags" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CosmeticTags_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bEquipped_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEquipped; + static const UECodeGen_Private::FStructPropertyParams NewProp_CosmeticTags; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped_SetBit(void* Obj) +{ + ((LyraWeaponInstance_eventPickBestAnimLayer_Parms*)Obj)->bEquipped = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped = { "bEquipped", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponInstance_eventPickBestAnimLayer_Parms), &Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_CosmeticTags = { "CosmeticTags", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventPickBestAnimLayer_Parms, CosmeticTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CosmeticTags_MetaData), NewProp_CosmeticTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventPickBestAnimLayer_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_CosmeticTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "PickBestAnimLayer", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::LyraWeaponInstance_eventPickBestAnimLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::LyraWeaponInstance_eventPickBestAnimLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execPickBestAnimLayer) +{ + P_GET_UBOOL(Z_Param_bEquipped); + P_GET_STRUCT_REF(FGameplayTagContainer,Z_Param_Out_CosmeticTags); + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->PickBestAnimLayer(Z_Param_bEquipped,Z_Param_Out_CosmeticTags); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function PickBestAnimLayer + +// Begin Class ULyraWeaponInstance Function UpdateFiringTime +struct Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of ULyraEquipmentInstance interface\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "UpdateFiringTime", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execUpdateFiringTime) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateFiringTime(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function UpdateFiringTime + +// Begin Class ULyraWeaponInstance +void ULyraWeaponInstance::StaticRegisterNativesULyraWeaponInstance() +{ + UClass* Class = ULyraWeaponInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetOwningUserId", &ULyraWeaponInstance::execGetOwningUserId }, + { "GetTimeSinceLastInteractedWith", &ULyraWeaponInstance::execGetTimeSinceLastInteractedWith }, + { "OnDeathStarted", &ULyraWeaponInstance::execOnDeathStarted }, + { "PickBestAnimLayer", &ULyraWeaponInstance::execPickBestAnimLayer }, + { "UpdateFiringTime", &ULyraWeaponInstance::execUpdateFiringTime }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponInstance); +UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister() +{ + return ULyraWeaponInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraWeaponInstance\n *\n * A piece of equipment representing a weapon spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Weapons/LyraWeaponInstance.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraWeaponInstance\n\nA piece of equipment representing a weapon spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquippedAnimSet_MetaData[] = { + { "Category", "Animation" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UneuippedAnimSet_MetaData[] = { + { "Category", "Animation" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplicableDeviceProperties_Inner_MetaData[] = { + { "Category", "Input Devices" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Device properties that should be applied while this weapon is equipped.\n\x09 * These properties will be played in with the \"Looping\" flag enabled, so they will\n\x09 * play continuously until this weapon is unequipped! \n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties that should be applied while this weapon is equipped.\nThese properties will be played in with the \"Looping\" flag enabled, so they will\nplay continuously until this weapon is unequipped!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplicableDeviceProperties_MetaData[] = { + { "Category", "Input Devices" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Device properties that should be applied while this weapon is equipped.\n\x09 * These properties will be played in with the \"Looping\" flag enabled, so they will\n\x09 * play continuously until this weapon is unequipped! \n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties that should be applied while this weapon is equipped.\nThese properties will be played in with the \"Looping\" flag enabled, so they will\nplay continuously until this weapon is unequipped!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DevicePropertyHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set of device properties activated by this weapon. Populated by ApplyDeviceProperties */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set of device properties activated by this weapon. Populated by ApplyDeviceProperties" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EquippedAnimSet; + static const UECodeGen_Private::FStructPropertyParams NewProp_UneuippedAnimSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ApplicableDeviceProperties_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ApplicableDeviceProperties; + static const UECodeGen_Private::FStructPropertyParams NewProp_DevicePropertyHandles_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_DevicePropertyHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId, "GetOwningUserId" }, // 2862764855 + { &Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith, "GetTimeSinceLastInteractedWith" }, // 125533642 + { &Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted, "OnDeathStarted" }, // 742946087 + { &Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer, "PickBestAnimLayer" }, // 2168549608 + { &Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime, "UpdateFiringTime" }, // 2303443168 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_EquippedAnimSet = { "EquippedAnimSet", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, EquippedAnimSet), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquippedAnimSet_MetaData), NewProp_EquippedAnimSet_MetaData) }; // 3591606580 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_UneuippedAnimSet = { "UneuippedAnimSet", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, UneuippedAnimSet), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UneuippedAnimSet_MetaData), NewProp_UneuippedAnimSet_MetaData) }; // 3591606580 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties_Inner = { "ApplicableDeviceProperties", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UInputDeviceProperty_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplicableDeviceProperties_Inner_MetaData), NewProp_ApplicableDeviceProperties_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties = { "ApplicableDeviceProperties", nullptr, (EPropertyFlags)0x012408800001001d, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, ApplicableDeviceProperties), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplicableDeviceProperties_MetaData), NewProp_ApplicableDeviceProperties_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles_ElementProp = { "DevicePropertyHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputDevicePropertyHandle, METADATA_PARAMS(0, nullptr) }; // 158936348 +static_assert(TModels_V, "The structure 'FInputDevicePropertyHandle' is used in a TSet but does not have a GetValueTypeHash defined"); +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles = { "DevicePropertyHandles", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, DevicePropertyHandles), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DevicePropertyHandles_MetaData), NewProp_DevicePropertyHandles_MetaData) }; // 158936348 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_EquippedAnimSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_UneuippedAnimSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraEquipmentInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponInstance_Statics::ClassParams = { + &ULyraWeaponInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponInstance() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton, Z_Construct_UClass_ULyraWeaponInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponInstance); +ULyraWeaponInstance::~ULyraWeaponInstance() {} +// End Class ULyraWeaponInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponInstance, ULyraWeaponInstance::StaticClass, TEXT("ULyraWeaponInstance"), &Z_Registration_Info_UClass_ULyraWeaponInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponInstance), 702170783U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_3434543129(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h new file mode 100644 index 00000000..a57a8ff9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UAnimInstance; +struct FGameplayTagContainer; +struct FPlatformUserId; +#ifdef LYRAGAME_LyraWeaponInstance_generated_h +#error "LyraWeaponInstance.generated.h already included, missing '#pragma once' in LyraWeaponInstance.h" +#endif +#define LYRAGAME_LyraWeaponInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnDeathStarted); \ + DECLARE_FUNCTION(execGetOwningUserId); \ + DECLARE_FUNCTION(execPickBestAnimLayer); \ + DECLARE_FUNCTION(execGetTimeSinceLastInteractedWith); \ + DECLARE_FUNCTION(execUpdateFiringTime); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponInstance(); \ + friend struct Z_Construct_UClass_ULyraWeaponInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponInstance, ULyraEquipmentInstance, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponInstance) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponInstance(ULyraWeaponInstance&&); \ + ULyraWeaponInstance(const ULyraWeaponInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponInstance) \ + NO_API virtual ~ULyraWeaponInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp new file mode 100644 index 00000000..b56f4e58 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp @@ -0,0 +1,671 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponSpawner.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponSpawner() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimitiveComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWeaponSpawner(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWeaponSpawner_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraWeaponSpawner Function AttemptPickUpWeapon +struct LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms +{ + APawn* Pawn; +}; +static const FName NAME_ALyraWeaponSpawner_AttemptPickUpWeapon = FName(TEXT("AttemptPickUpWeapon")); +void ALyraWeaponSpawner::AttemptPickUpWeapon(APawn* Pawn) +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_AttemptPickUpWeapon); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms Parms; + Parms.Pawn=Pawn; + ProcessEvent(Func,&Parms); + } + else + { + AttemptPickUpWeapon_Implementation(Pawn); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Pawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::NewProp_Pawn = { "Pawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms, Pawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::NewProp_Pawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "AttemptPickUpWeapon", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers), sizeof(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execAttemptPickUpWeapon) +{ + P_GET_OBJECT(APawn,Z_Param_Pawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AttemptPickUpWeapon_Implementation(Z_Param_Pawn); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function AttemptPickUpWeapon + +// Begin Class ALyraWeaponSpawner Function GetDefaultStatFromItemDef +struct Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics +{ + struct LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms + { + const TSubclassOf WeaponItemClass; + FGameplayTag StatTag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Searches an item definition type for a matching stat and returns the value, or 0 if not found */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Searches an item definition type for a matching stat and returns the value, or 0 if not found" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponItemClass_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_WeaponItemClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_WeaponItemClass = { "WeaponItemClass", nullptr, (EPropertyFlags)0x0014000000000082, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, WeaponItemClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponItemClass_MetaData), NewProp_WeaponItemClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_StatTag = { "StatTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, StatTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_WeaponItemClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_StatTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "GetDefaultStatFromItemDef", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execGetDefaultStatFromItemDef) +{ + P_GET_OBJECT(UClass,Z_Param_WeaponItemClass); + P_GET_STRUCT(FGameplayTag,Z_Param_StatTag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=ALyraWeaponSpawner::GetDefaultStatFromItemDef(Z_Param_WeaponItemClass,Z_Param_StatTag); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function GetDefaultStatFromItemDef + +// Begin Class ALyraWeaponSpawner Function GiveWeapon +struct LyraWeaponSpawner_eventGiveWeapon_Parms +{ + TSubclassOf WeaponItemClass; + APawn* ReceivingPawn; + bool ReturnValue; + + /** Constructor, initializes return property only **/ + LyraWeaponSpawner_eventGiveWeapon_Parms() + : ReturnValue(false) + { + } +}; +static const FName NAME_ALyraWeaponSpawner_GiveWeapon = FName(TEXT("GiveWeapon")); +bool ALyraWeaponSpawner::GiveWeapon(TSubclassOf WeaponItemClass, APawn* ReceivingPawn) +{ + LyraWeaponSpawner_eventGiveWeapon_Parms Parms; + Parms.WeaponItemClass=WeaponItemClass; + Parms.ReceivingPawn=ReceivingPawn; + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_GiveWeapon); + ProcessEvent(Func,&Parms); + return !!Parms.ReturnValue; +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_WeaponItemClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReceivingPawn; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_WeaponItemClass = { "WeaponItemClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGiveWeapon_Parms, WeaponItemClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReceivingPawn = { "ReceivingPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGiveWeapon_Parms, ReceivingPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraWeaponSpawner_eventGiveWeapon_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms), &Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_WeaponItemClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReceivingPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "GiveWeapon", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers), sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraWeaponSpawner Function GiveWeapon + +// Begin Class ALyraWeaponSpawner Function OnCoolDownTimerComplete +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnCoolDownTimerComplete", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnCoolDownTimerComplete) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCoolDownTimerComplete(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnCoolDownTimerComplete + +// Begin Class ALyraWeaponSpawner Function OnOverlapBegin +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics +{ + struct LyraWeaponSpawner_eventOnOverlapBegin_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + bool bFromSweep; + FHitResult SweepHitResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SweepHitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static void NewProp_bFromSweep_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFromSweep; + static const UECodeGen_Private::FStructPropertyParams NewProp_SweepHitResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit(void* Obj) +{ + ((LyraWeaponSpawner_eventOnOverlapBegin_Parms*)Obj)->bFromSweep = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep = { "bFromSweep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponSpawner_eventOnOverlapBegin_Parms), &Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_SweepHitResult = { "SweepHitResult", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, SweepHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SweepHitResult_MetaData), NewProp_SweepHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherBodyIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_SweepHitResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnOverlapBegin", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::LyraWeaponSpawner_eventOnOverlapBegin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::LyraWeaponSpawner_eventOnOverlapBegin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnOverlapBegin) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_GET_UBOOL(Z_Param_bFromSweep); + P_GET_STRUCT_REF(FHitResult,Z_Param_Out_SweepHitResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnOverlapBegin(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex,Z_Param_bFromSweep,Z_Param_Out_SweepHitResult); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnOverlapBegin + +// Begin Class ALyraWeaponSpawner Function OnRep_WeaponAvailability +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnRep_WeaponAvailability", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnRep_WeaponAvailability) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_WeaponAvailability(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnRep_WeaponAvailability + +// Begin Class ALyraWeaponSpawner Function PlayPickupEffects +static const FName NAME_ALyraWeaponSpawner_PlayPickupEffects = FName(TEXT("PlayPickupEffects")); +void ALyraWeaponSpawner::PlayPickupEffects() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_PlayPickupEffects); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + PlayPickupEffects_Implementation(); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "PlayPickupEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execPlayPickupEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayPickupEffects_Implementation(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function PlayPickupEffects + +// Begin Class ALyraWeaponSpawner Function PlayRespawnEffects +static const FName NAME_ALyraWeaponSpawner_PlayRespawnEffects = FName(TEXT("PlayRespawnEffects")); +void ALyraWeaponSpawner::PlayRespawnEffects() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_PlayRespawnEffects); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + PlayRespawnEffects_Implementation(); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "PlayRespawnEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execPlayRespawnEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayRespawnEffects_Implementation(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function PlayRespawnEffects + +// Begin Class ALyraWeaponSpawner Function ResetCoolDown +struct Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "ResetCoolDown", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execResetCoolDown) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ResetCoolDown(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function ResetCoolDown + +// Begin Class ALyraWeaponSpawner +void ALyraWeaponSpawner::StaticRegisterNativesALyraWeaponSpawner() +{ + UClass* Class = ALyraWeaponSpawner::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AttemptPickUpWeapon", &ALyraWeaponSpawner::execAttemptPickUpWeapon }, + { "GetDefaultStatFromItemDef", &ALyraWeaponSpawner::execGetDefaultStatFromItemDef }, + { "OnCoolDownTimerComplete", &ALyraWeaponSpawner::execOnCoolDownTimerComplete }, + { "OnOverlapBegin", &ALyraWeaponSpawner::execOnOverlapBegin }, + { "OnRep_WeaponAvailability", &ALyraWeaponSpawner::execOnRep_WeaponAvailability }, + { "PlayPickupEffects", &ALyraWeaponSpawner::execPlayPickupEffects }, + { "PlayRespawnEffects", &ALyraWeaponSpawner::execPlayRespawnEffects }, + { "ResetCoolDown", &ALyraWeaponSpawner::execResetCoolDown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWeaponSpawner); +UClass* Z_Construct_UClass_ALyraWeaponSpawner_NoRegister() +{ + return ALyraWeaponSpawner::StaticClass(); +} +struct Z_Construct_UClass_ALyraWeaponSpawner_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "Weapons/LyraWeaponSpawner.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponDefinition_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Data asset used to configure a Weapon Spawner\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Data asset used to configure a Weapon Spawner" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsWeaponAvailable_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CoolDownTime_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//The amount of time between weapon pickup and weapon spawning in seconds\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The amount of time between weapon pickup and weapon spawning in seconds" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheckExistingOverlapDelay_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Delay between when the weapon is made available and when we check for a pawn standing in the spawner. Used to give the bIsWeaponAvailable OnRep time to fire and play FX. \n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delay between when the weapon is made available and when we check for a pawn standing in the spawner. Used to give the bIsWeaponAvailable OnRep time to fire and play FX." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CoolDownPercentage_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Used to drive weapon respawn time indicators 0-1\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Used to drive weapon respawn time indicators 0-1" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionVolume_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PadMesh_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMesh_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshRotationSpeed_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponDefinition; + static void NewProp_bIsWeaponAvailable_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsWeaponAvailable; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CoolDownTime; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CheckExistingOverlapDelay; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CoolDownPercentage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollisionVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PadMesh; + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponMesh; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WeaponMeshRotationSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon, "AttemptPickUpWeapon" }, // 2359446182 + { &Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef, "GetDefaultStatFromItemDef" }, // 518185808 + { &Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon, "GiveWeapon" }, // 2559832093 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete, "OnCoolDownTimerComplete" }, // 4206705392 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin, "OnOverlapBegin" }, // 2620689077 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability, "OnRep_WeaponAvailability" }, // 3677606627 + { &Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects, "PlayPickupEffects" }, // 1878133186 + { &Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects, "PlayRespawnEffects" }, // 3373422927 + { &Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown, "ResetCoolDown" }, // 3899216340 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponDefinition = { "WeaponDefinition", nullptr, (EPropertyFlags)0x0124080000000815, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponDefinition), Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponDefinition_MetaData), NewProp_WeaponDefinition_MetaData) }; +void Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable_SetBit(void* Obj) +{ + ((ALyraWeaponSpawner*)Obj)->bIsWeaponAvailable = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable = { "bIsWeaponAvailable", "OnRep_WeaponAvailability", (EPropertyFlags)0x0020080100010025, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ALyraWeaponSpawner), &Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsWeaponAvailable_MetaData), NewProp_bIsWeaponAvailable_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownTime = { "CoolDownTime", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CoolDownTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CoolDownTime_MetaData), NewProp_CoolDownTime_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CheckExistingOverlapDelay = { "CheckExistingOverlapDelay", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CheckExistingOverlapDelay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheckExistingOverlapDelay_MetaData), NewProp_CheckExistingOverlapDelay_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownPercentage = { "CoolDownPercentage", nullptr, (EPropertyFlags)0x0020080000002014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CoolDownPercentage), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CoolDownPercentage_MetaData), NewProp_CoolDownPercentage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CollisionVolume = { "CollisionVolume", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CollisionVolume), Z_Construct_UClass_UCapsuleComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionVolume_MetaData), NewProp_CollisionVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_PadMesh = { "PadMesh", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, PadMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PadMesh_MetaData), NewProp_PadMesh_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMesh = { "WeaponMesh", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMesh_MetaData), NewProp_WeaponMesh_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMeshRotationSpeed = { "WeaponMeshRotationSpeed", nullptr, (EPropertyFlags)0x0010000000010005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponMeshRotationSpeed), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshRotationSpeed_MetaData), NewProp_WeaponMeshRotationSpeed_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CheckExistingOverlapDelay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownPercentage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CollisionVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_PadMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMeshRotationSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWeaponSpawner_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::ClassParams = { + &ALyraWeaponSpawner::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWeaponSpawner_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWeaponSpawner() +{ + if (!Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton, Z_Construct_UClass_ALyraWeaponSpawner_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraWeaponSpawner::StaticClass(); +} +void ALyraWeaponSpawner::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_bIsWeaponAvailable(TEXT("bIsWeaponAvailable")); + const bool bIsValid = true + && Name_bIsWeaponAvailable == ClassReps[(int32)ENetFields_Private::bIsWeaponAvailable].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraWeaponSpawner")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWeaponSpawner); +ALyraWeaponSpawner::~ALyraWeaponSpawner() {} +// End Class ALyraWeaponSpawner + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWeaponSpawner, ALyraWeaponSpawner::StaticClass, TEXT("ALyraWeaponSpawner"), &Z_Registration_Info_UClass_ALyraWeaponSpawner, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWeaponSpawner), 4065313447U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_3517526768(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h new file mode 100644 index 00000000..1970bc13 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h @@ -0,0 +1,84 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponSpawner.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class APawn; +class ULyraInventoryItemDefinition; +class UPrimitiveComponent; +struct FGameplayTag; +struct FHitResult; +#ifdef LYRAGAME_LyraWeaponSpawner_generated_h +#error "LyraWeaponSpawner.generated.h already included, missing '#pragma once' in LyraWeaponSpawner.h" +#endif +#define LYRAGAME_LyraWeaponSpawner_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void PlayRespawnEffects_Implementation(); \ + virtual void PlayPickupEffects_Implementation(); \ + virtual void AttemptPickUpWeapon_Implementation(APawn* Pawn); \ + DECLARE_FUNCTION(execGetDefaultStatFromItemDef); \ + DECLARE_FUNCTION(execOnRep_WeaponAvailability); \ + DECLARE_FUNCTION(execPlayRespawnEffects); \ + DECLARE_FUNCTION(execPlayPickupEffects); \ + DECLARE_FUNCTION(execOnCoolDownTimerComplete); \ + DECLARE_FUNCTION(execResetCoolDown); \ + DECLARE_FUNCTION(execAttemptPickUpWeapon); \ + DECLARE_FUNCTION(execOnOverlapBegin); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWeaponSpawner(); \ + friend struct Z_Construct_UClass_ALyraWeaponSpawner_Statics; \ +public: \ + DECLARE_CLASS(ALyraWeaponSpawner, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraWeaponSpawner) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + bIsWeaponAvailable=NETFIELD_REP_START, \ + NETFIELD_REP_END=bIsWeaponAvailable }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWeaponSpawner(ALyraWeaponSpawner&&); \ + ALyraWeaponSpawner(const ALyraWeaponSpawner&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWeaponSpawner); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWeaponSpawner); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ALyraWeaponSpawner) \ + NO_API virtual ~ALyraWeaponSpawner(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp new file mode 100644 index 00000000..a1448562 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp @@ -0,0 +1,180 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponStateComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponStateComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponStateComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponStateComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponStateComponent Function ClientConfirmTargetData +struct LyraWeaponStateComponent_eventClientConfirmTargetData_Parms +{ + uint16 UniqueId; + bool bSuccess; + TArray HitReplaces; +}; +static const FName NAME_ULyraWeaponStateComponent_ClientConfirmTargetData = FName(TEXT("ClientConfirmTargetData")); +void ULyraWeaponStateComponent::ClientConfirmTargetData(uint16 UniqueId, bool bSuccess, TArray const& HitReplaces) +{ + LyraWeaponStateComponent_eventClientConfirmTargetData_Parms Parms; + Parms.UniqueId=UniqueId; + Parms.bSuccess=bSuccess ? true : false; + Parms.HitReplaces=HitReplaces; + UFunction* Func = FindFunctionChecked(NAME_ULyraWeaponStateComponent_ClientConfirmTargetData); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitReplaces_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FUInt16PropertyParams NewProp_UniqueId; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FBytePropertyParams NewProp_HitReplaces_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HitReplaces; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FUInt16PropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_UniqueId = { "UniqueId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::UInt16, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms, UniqueId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraWeaponStateComponent_eventClientConfirmTargetData_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms), &Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces_Inner = { "HitReplaces", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces = { "HitReplaces", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms, HitReplaces), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitReplaces_MetaData), NewProp_HitReplaces_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_UniqueId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponStateComponent, nullptr, "ClientConfirmTargetData", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers), sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x01020CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponStateComponent::execClientConfirmTargetData) +{ + P_GET_PROPERTY(FUInt16Property,Z_Param_UniqueId); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_TARRAY(uint8,Z_Param_HitReplaces); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientConfirmTargetData_Implementation(Z_Param_UniqueId,Z_Param_bSuccess,Z_Param_HitReplaces); + P_NATIVE_END; +} +// End Class ULyraWeaponStateComponent Function ClientConfirmTargetData + +// Begin Class ULyraWeaponStateComponent +void ULyraWeaponStateComponent::StaticRegisterNativesULyraWeaponStateComponent() +{ + UClass* Class = ULyraWeaponStateComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ClientConfirmTargetData", &ULyraWeaponStateComponent::execClientConfirmTargetData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponStateComponent); +UClass* Z_Construct_UClass_ULyraWeaponStateComponent_NoRegister() +{ + return ULyraWeaponStateComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponStateComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks weapon state and recent confirmed hit markers to display on screen\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Weapons/LyraWeaponStateComponent.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponStateComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks weapon state and recent confirmed hit markers to display on screen" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData, "ClientConfirmTargetData" }, // 3615133866 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraWeaponStateComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponStateComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponStateComponent_Statics::ClassParams = { + &ULyraWeaponStateComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponStateComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponStateComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponStateComponent() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton, Z_Construct_UClass_ULyraWeaponStateComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponStateComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponStateComponent); +ULyraWeaponStateComponent::~ULyraWeaponStateComponent() {} +// End Class ULyraWeaponStateComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponStateComponent, ULyraWeaponStateComponent::StaticClass, TEXT("ULyraWeaponStateComponent"), &Z_Registration_Info_UClass_ULyraWeaponStateComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponStateComponent), 2417141837U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_2183981549(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h new file mode 100644 index 00000000..562f6c9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponStateComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWeaponStateComponent_generated_h +#error "LyraWeaponStateComponent.generated.h already included, missing '#pragma once' in LyraWeaponStateComponent.h" +#endif +#define LYRAGAME_LyraWeaponStateComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientConfirmTargetData_Implementation(uint16 UniqueId, bool bSuccess, TArray const& HitReplaces); \ + DECLARE_FUNCTION(execClientConfirmTargetData); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponStateComponent(); \ + friend struct Z_Construct_UClass_ULyraWeaponStateComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponStateComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponStateComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponStateComponent(ULyraWeaponStateComponent&&); \ + ULyraWeaponStateComponent(const ULyraWeaponStateComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponStateComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponStateComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponStateComponent) \ + NO_API virtual ~ULyraWeaponStateComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_40_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp new file mode 100644 index 00000000..e35e44e6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp @@ -0,0 +1,153 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/LyraWeaponUserInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponUserInterface() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponUserInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponUserInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponUserInterface Function OnWeaponChanged +struct LyraWeaponUserInterface_eventOnWeaponChanged_Parms +{ + ULyraWeaponInstance* OldWeapon; + ULyraWeaponInstance* NewWeapon; +}; +static const FName NAME_ULyraWeaponUserInterface_OnWeaponChanged = FName(TEXT("OnWeaponChanged")); +void ULyraWeaponUserInterface::OnWeaponChanged(ULyraWeaponInstance* OldWeapon, ULyraWeaponInstance* NewWeapon) +{ + LyraWeaponUserInterface_eventOnWeaponChanged_Parms Parms; + Parms.OldWeapon=OldWeapon; + Parms.NewWeapon=NewWeapon; + UFunction* Func = FindFunctionChecked(NAME_ULyraWeaponUserInterface_OnWeaponChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldWeapon; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewWeapon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_OldWeapon = { "OldWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponUserInterface_eventOnWeaponChanged_Parms, OldWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_NewWeapon = { "NewWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponUserInterface_eventOnWeaponChanged_Parms, NewWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_OldWeapon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_NewWeapon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponUserInterface, nullptr, "OnWeaponChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers), sizeof(LyraWeaponUserInterface_eventOnWeaponChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponUserInterface_eventOnWeaponChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraWeaponUserInterface Function OnWeaponChanged + +// Begin Class ULyraWeaponUserInterface +void ULyraWeaponUserInterface::StaticRegisterNativesULyraWeaponUserInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponUserInterface); +UClass* Z_Construct_UClass_ULyraWeaponUserInterface_NoRegister() +{ + return ULyraWeaponUserInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponUserInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentInstance_MetaData[] = { + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged, "OnWeaponChanged" }, // 350170919 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraWeaponUserInterface_Statics::NewProp_CurrentInstance = { "CurrentInstance", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponUserInterface, CurrentInstance), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentInstance_MetaData), NewProp_CurrentInstance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponUserInterface_Statics::NewProp_CurrentInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponUserInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponUserInterface_Statics::ClassParams = { + &ULyraWeaponUserInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers), + 0, + 0x00A010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponUserInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponUserInterface() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton, Z_Construct_UClass_ULyraWeaponUserInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponUserInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponUserInterface); +ULyraWeaponUserInterface::~ULyraWeaponUserInterface() {} +// End Class ULyraWeaponUserInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponUserInterface, ULyraWeaponUserInterface::StaticClass, TEXT("ULyraWeaponUserInterface"), &Z_Registration_Info_UClass_ULyraWeaponUserInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponUserInterface), 844095426U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_3272319580(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h new file mode 100644 index 00000000..ead7081b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/LyraWeaponUserInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraWeaponInstance; +#ifdef LYRAGAME_LyraWeaponUserInterface_generated_h +#error "LyraWeaponUserInterface.generated.h already included, missing '#pragma once' in LyraWeaponUserInterface.h" +#endif +#define LYRAGAME_LyraWeaponUserInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponUserInterface(); \ + friend struct Z_Construct_UClass_ULyraWeaponUserInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponUserInterface, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponUserInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponUserInterface(ULyraWeaponUserInterface&&); \ + ULyraWeaponUserInterface(const ULyraWeaponUserInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponUserInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponUserInterface); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponUserInterface) \ + NO_API virtual ~ULyraWeaponUserInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp new file mode 100644 index 00000000..48ec821e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraWidgetFactory.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWidgetFactory() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWidgetFactory Function FindWidgetClassForData +struct LyraWidgetFactory_eventFindWidgetClassForData_Parms +{ + const UObject* Data; + TSubclassOf ReturnValue; + + /** Constructor, initializes return property only **/ + LyraWidgetFactory_eventFindWidgetClassForData_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_ULyraWidgetFactory_FindWidgetClassForData = FName(TEXT("FindWidgetClassForData")); +TSubclassOf ULyraWidgetFactory::FindWidgetClassForData(const UObject* Data) const +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraWidgetFactory_FindWidgetClassForData); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + LyraWidgetFactory_eventFindWidgetClassForData_Parms Parms; + Parms.Data=Data; + const_cast(this)->ProcessEvent(Func,&Parms); + return Parms.ReturnValue; + } + else + { + return const_cast(this)->FindWidgetClassForData_Implementation(Data); + } +} +struct Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Data_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWidgetFactory_eventFindWidgetClassForData_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Data_MetaData), NewProp_Data_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWidgetFactory_eventFindWidgetClassForData_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWidgetFactory, nullptr, "FindWidgetClassForData", nullptr, nullptr, Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers), sizeof(LyraWidgetFactory_eventFindWidgetClassForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x48020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWidgetFactory_eventFindWidgetClassForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWidgetFactory::execFindWidgetClassForData) +{ + P_GET_OBJECT(UObject,Z_Param_Data); + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->FindWidgetClassForData_Implementation(Z_Param_Data); + P_NATIVE_END; +} +// End Class ULyraWidgetFactory Function FindWidgetClassForData + +// Begin Class ULyraWidgetFactory +void ULyraWidgetFactory::StaticRegisterNativesULyraWidgetFactory() +{ + UClass* Class = ULyraWidgetFactory::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindWidgetClassForData", &ULyraWidgetFactory::execFindWidgetClassForData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWidgetFactory); +UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister() +{ + return ULyraWidgetFactory::StaticClass(); +} +struct Z_Construct_UClass_ULyraWidgetFactory_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/Common/LyraWidgetFactory.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData, "FindWidgetClassForData" }, // 1197078718 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraWidgetFactory_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWidgetFactory_Statics::ClassParams = { + &ULyraWidgetFactory::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWidgetFactory_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWidgetFactory() +{ + if (!Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton, Z_Construct_UClass_ULyraWidgetFactory_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWidgetFactory::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWidgetFactory); +ULyraWidgetFactory::~ULyraWidgetFactory() {} +// End Class ULyraWidgetFactory + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWidgetFactory, ULyraWidgetFactory::StaticClass, TEXT("ULyraWidgetFactory"), &Z_Registration_Info_UClass_ULyraWidgetFactory, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWidgetFactory), 1537051138U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_2625560229(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h new file mode 100644 index 00000000..697bed88 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraWidgetFactory.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +#ifdef LYRAGAME_LyraWidgetFactory_generated_h +#error "LyraWidgetFactory.generated.h already included, missing '#pragma once' in LyraWidgetFactory.h" +#endif +#define LYRAGAME_LyraWidgetFactory_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual TSubclassOf FindWidgetClassForData_Implementation(const UObject* Data) const; \ + DECLARE_FUNCTION(execFindWidgetClassForData); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWidgetFactory(); \ + friend struct Z_Construct_UClass_ULyraWidgetFactory_Statics; \ +public: \ + DECLARE_CLASS(ULyraWidgetFactory, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWidgetFactory) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWidgetFactory(ULyraWidgetFactory&&); \ + ULyraWidgetFactory(const ULyraWidgetFactory&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWidgetFactory); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWidgetFactory); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraWidgetFactory) \ + NO_API virtual ~ULyraWidgetFactory(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp new file mode 100644 index 00000000..8b1e33ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp @@ -0,0 +1,111 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraWidgetFactory_Class.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWidgetFactory_Class() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_Class(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_Class_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWidgetFactory_Class +void ULyraWidgetFactory_Class::StaticRegisterNativesULyraWidgetFactory_Class() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWidgetFactory_Class); +UClass* Z_Construct_UClass_ULyraWidgetFactory_Class_NoRegister() +{ + return ULyraWidgetFactory_Class::StaticClass(); +} +struct Z_Construct_UClass_ULyraWidgetFactory_Class_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Common/LyraWidgetFactory_Class.h" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory_Class.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForClass_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory_Class.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_ValueProp; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_EntryWidgetForClass_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_ValueProp = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_Key_KeyProp = { "EntryWidgetForClass_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0024080000000001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWidgetFactory_Class, EntryWidgetForClass), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForClass_MetaData), NewProp_EntryWidgetForClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraWidgetFactory, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::ClassParams = { + &ULyraWidgetFactory_Class::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers), + 0, + 0x001010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWidgetFactory_Class() +{ + if (!Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton, Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWidgetFactory_Class::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWidgetFactory_Class); +ULyraWidgetFactory_Class::~ULyraWidgetFactory_Class() {} +// End Class ULyraWidgetFactory_Class + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWidgetFactory_Class, ULyraWidgetFactory_Class::StaticClass, TEXT("ULyraWidgetFactory_Class"), &Z_Registration_Info_UClass_ULyraWidgetFactory_Class, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWidgetFactory_Class), 108606085U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_3809490253(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h new file mode 100644 index 00000000..d6600133 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraWidgetFactory_Class.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWidgetFactory_Class_generated_h +#error "LyraWidgetFactory_Class.generated.h already included, missing '#pragma once' in LyraWidgetFactory_Class.h" +#endif +#define LYRAGAME_LyraWidgetFactory_Class_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWidgetFactory_Class(); \ + friend struct Z_Construct_UClass_ULyraWidgetFactory_Class_Statics; \ +public: \ + DECLARE_CLASS(ULyraWidgetFactory_Class, ULyraWidgetFactory, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWidgetFactory_Class) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWidgetFactory_Class(ULyraWidgetFactory_Class&&); \ + ULyraWidgetFactory_Class(const ULyraWidgetFactory_Class&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWidgetFactory_Class); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWidgetFactory_Class); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraWidgetFactory_Class) \ + NO_API virtual ~ULyraWidgetFactory_Class(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp new file mode 100644 index 00000000..2c204b21 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraWorldSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWorldSettings() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AWorldSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWorldSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWorldSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraWorldSettings +void ALyraWorldSettings::StaticRegisterNativesALyraWorldSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWorldSettings); +UClass* Z_Construct_UClass_ALyraWorldSettings_NoRegister() +{ + return ALyraWorldSettings::StaticClass(); +} +struct Z_Construct_UClass_ALyraWorldSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The default world settings object, used primarily to set the default gameplay experience to use when playing on this map\n */" }, +#endif + { "HideCategories", "Actor Advanced Display Events Object Attachment Info Input Blueprint Layers Tags Replication LevelInstance Input Movement Collision Transformation HLOD DataLayers" }, + { "IncludePath", "GameModes/LyraWorldSettings.h" }, + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default world settings object, used primarily to set the default gameplay experience to use when playing on this map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultGameplayExperience_MetaData[] = { + { "Category", "GameMode" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The default experience to use when a server opens this map if it is not overridden by the user-facing experience\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default experience to use when a server opens this map if it is not overridden by the user-facing experience" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceStandaloneNetMode_MetaData[] = { + { "Category", "PIE" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Is this level part of a front-end or other standalone experience?\n// When set, the net mode will be forced to Standalone when you hit Play in the editor\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Is this level part of a front-end or other standalone experience?\nWhen set, the net mode will be forced to Standalone when you hit Play in the editor" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultGameplayExperience; +#if WITH_EDITORONLY_DATA + static void NewProp_ForceStandaloneNetMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceStandaloneNetMode; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_DefaultGameplayExperience = { "DefaultGameplayExperience", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldSettings, DefaultGameplayExperience), Z_Construct_UClass_ULyraExperienceDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultGameplayExperience_MetaData), NewProp_DefaultGameplayExperience_MetaData) }; +#if WITH_EDITORONLY_DATA +void Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode_SetBit(void* Obj) +{ + ((ALyraWorldSettings*)Obj)->ForceStandaloneNetMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode = { "ForceStandaloneNetMode", nullptr, (EPropertyFlags)0x0010000800010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ALyraWorldSettings), &Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceStandaloneNetMode_MetaData), NewProp_ForceStandaloneNetMode_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_DefaultGameplayExperience, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWorldSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AWorldSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWorldSettings_Statics::ClassParams = { + &ALyraWorldSettings::StaticClass, + "game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers), + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWorldSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWorldSettings() +{ + if (!Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton, Z_Construct_UClass_ALyraWorldSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraWorldSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWorldSettings); +ALyraWorldSettings::~ALyraWorldSettings() {} +// End Class ALyraWorldSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWorldSettings, ALyraWorldSettings::StaticClass, TEXT("ALyraWorldSettings"), &Z_Registration_Info_UClass_ALyraWorldSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWorldSettings), 3884905038U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_2262437023(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.generated.h new file mode 100644 index 00000000..6acedf5d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraWorldSettings.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraWorldSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWorldSettings_generated_h +#error "LyraWorldSettings.generated.h already included, missing '#pragma once' in LyraWorldSettings.h" +#endif +#define LYRAGAME_LyraWorldSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWorldSettings(); \ + friend struct Z_Construct_UClass_ALyraWorldSettings_Statics; \ +public: \ + DECLARE_CLASS(ALyraWorldSettings, AWorldSettings, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraWorldSettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWorldSettings(ALyraWorldSettings&&); \ + ALyraWorldSettings(const ALyraWorldSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWorldSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWorldSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraWorldSettings) \ + NO_API virtual ~ALyraWorldSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp new file mode 100644 index 00000000..9d2e302f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp @@ -0,0 +1,726 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Basic/MaterialProgressBar.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeMaterialProgressBar() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UMaterialProgressBar(); +LYRAGAME_API UClass* Z_Construct_UClass_UMaterialProgressBar_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature(); +UMG_API UClass* Z_Construct_UClass_UImage_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetAnimation_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnFillAnimationFinished +struct Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "OnFillAnimationFinished__DelegateSignature", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UMaterialProgressBar::FOnFillAnimationFinished_DelegateWrapper(const FMulticastScriptDelegate& OnFillAnimationFinished) +{ + OnFillAnimationFinished.ProcessMulticastDelegate(NULL); +} +// End Delegate FOnFillAnimationFinished + +// Begin Class UMaterialProgressBar Function AnimateProgressFromCurrent +struct Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics +{ + struct MaterialProgressBar_eventAnimateProgressFromCurrent_Parms + { + float End; + float AnimSpeed; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "CPP_Default_AnimSpeed", "1.000000" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_End; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AnimSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_End = { "End", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromCurrent_Parms, End), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_AnimSpeed = { "AnimSpeed", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromCurrent_Parms, AnimSpeed), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_End, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_AnimSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "AnimateProgressFromCurrent", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::MaterialProgressBar_eventAnimateProgressFromCurrent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::MaterialProgressBar_eventAnimateProgressFromCurrent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execAnimateProgressFromCurrent) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_End); + P_GET_PROPERTY(FFloatProperty,Z_Param_AnimSpeed); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimateProgressFromCurrent(Z_Param_End,Z_Param_AnimSpeed); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function AnimateProgressFromCurrent + +// Begin Class UMaterialProgressBar Function AnimateProgressFromStart +struct Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics +{ + struct MaterialProgressBar_eventAnimateProgressFromStart_Parms + { + float Start; + float End; + float AnimSpeed; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "CPP_Default_AnimSpeed", "1.000000" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Start; + static const UECodeGen_Private::FFloatPropertyParams NewProp_End; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AnimSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_Start = { "Start", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, Start), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_End = { "End", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, End), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_AnimSpeed = { "AnimSpeed", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, AnimSpeed), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_Start, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_End, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_AnimSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "AnimateProgressFromStart", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::MaterialProgressBar_eventAnimateProgressFromStart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::MaterialProgressBar_eventAnimateProgressFromStart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execAnimateProgressFromStart) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Start); + P_GET_PROPERTY(FFloatProperty,Z_Param_End); + P_GET_PROPERTY(FFloatProperty,Z_Param_AnimSpeed); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimateProgressFromStart(Z_Param_Start,Z_Param_End,Z_Param_AnimSpeed); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function AnimateProgressFromStart + +// Begin Class UMaterialProgressBar Function SetColorA +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics +{ + struct MaterialProgressBar_eventSetColorA_Parms + { + FLinearColor ColorA; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorA; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::NewProp_ColorA = { "ColorA", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorA_Parms, ColorA), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::NewProp_ColorA, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorA", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::MaterialProgressBar_eventSetColorA_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::MaterialProgressBar_eventSetColorA_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorA() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorA) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorA); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorA(Z_Param_ColorA); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorA + +// Begin Class UMaterialProgressBar Function SetColorB +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics +{ + struct MaterialProgressBar_eventSetColorB_Parms + { + FLinearColor ColorB; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorB; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::NewProp_ColorB = { "ColorB", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorB_Parms, ColorB), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::NewProp_ColorB, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorB", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::MaterialProgressBar_eventSetColorB_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::MaterialProgressBar_eventSetColorB_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorB() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorB) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorB); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorB(Z_Param_ColorB); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorB + +// Begin Class UMaterialProgressBar Function SetColorBackground +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics +{ + struct MaterialProgressBar_eventSetColorBackground_Parms + { + FLinearColor ColorBackground; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorBackground; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::NewProp_ColorBackground = { "ColorBackground", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorBackground_Parms, ColorBackground), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::NewProp_ColorBackground, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorBackground", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::MaterialProgressBar_eventSetColorBackground_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::MaterialProgressBar_eventSetColorBackground_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorBackground) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorBackground); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBackground(Z_Param_ColorBackground); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorBackground + +// Begin Class UMaterialProgressBar Function SetProgress +struct Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics +{ + struct MaterialProgressBar_eventSetProgress_Parms + { + float Progress; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Progress; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::NewProp_Progress = { "Progress", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetProgress_Parms, Progress), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::NewProp_Progress, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetProgress", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::MaterialProgressBar_eventSetProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::MaterialProgressBar_eventSetProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetProgress) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Progress); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetProgress(Z_Param_Progress); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetProgress + +// Begin Class UMaterialProgressBar Function SetStartProgress +struct Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics +{ + struct MaterialProgressBar_eventSetStartProgress_Parms + { + float StartProgress; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_StartProgress; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::NewProp_StartProgress = { "StartProgress", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetStartProgress_Parms, StartProgress), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::NewProp_StartProgress, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetStartProgress", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::MaterialProgressBar_eventSetStartProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::MaterialProgressBar_eventSetStartProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetStartProgress) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_StartProgress); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetStartProgress(Z_Param_StartProgress); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetStartProgress + +// Begin Class UMaterialProgressBar +void UMaterialProgressBar::StaticRegisterNativesUMaterialProgressBar() +{ + UClass* Class = UMaterialProgressBar::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimateProgressFromCurrent", &UMaterialProgressBar::execAnimateProgressFromCurrent }, + { "AnimateProgressFromStart", &UMaterialProgressBar::execAnimateProgressFromStart }, + { "SetColorA", &UMaterialProgressBar::execSetColorA }, + { "SetColorB", &UMaterialProgressBar::execSetColorB }, + { "SetColorBackground", &UMaterialProgressBar::execSetColorBackground }, + { "SetProgress", &UMaterialProgressBar::execSetProgress }, + { "SetStartProgress", &UMaterialProgressBar::execSetStartProgress }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UMaterialProgressBar); +UClass* Z_Construct_UClass_UMaterialProgressBar_NoRegister() +{ + return UMaterialProgressBar::StaticClass(); +} +struct Z_Construct_UClass_UMaterialProgressBar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Basic/MaterialProgressBar.h" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnFillAnimationFinished_MetaData[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorA_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorA" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorA_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color A" }, + { "EditCondition", "bOverrideDefaultColorA" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorB_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorB" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorB_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color B" }, + { "EditCondition", "bOverrideDefaultColorB" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorBackground_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorBackground" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorBackground_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color Background" }, + { "EditCondition", "bOverrideDefaultColorBackground" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultSegments_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "Segments" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Segments_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultSegments" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultSegmentEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "SegmentEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SegmentEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultSegmentEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultFillEdgeSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "FillEdgeSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FillEdgeSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultFillEdgeSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultGlowEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "GlowEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GlowEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultGlowEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultGlowSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "GlowSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GlowSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultGlowSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultOutlineScale_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "OutlineScale" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OutlineScale_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultOutlineScale" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseStroke_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StrokeMaterial_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NoStrokeMaterial_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesignTime_Progress_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Design Time Progress" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Image_Bar_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "BindWidget", "" }, + { "Category", "MaterialProgressBar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundAnim_FillBar_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "BindWidgetAnim", "" }, + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedMID_MetaData[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnFillAnimationFinished; + static void NewProp_bOverrideDefaultColorA_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorA; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorA; + static void NewProp_bOverrideDefaultColorB_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorB; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorB; + static void NewProp_bOverrideDefaultColorBackground_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorBackground; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorBackground; + static void NewProp_bOverrideDefaultSegments_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultSegments; + static const UECodeGen_Private::FIntPropertyParams NewProp_Segments; + static void NewProp_bOverrideDefaultSegmentEdge_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultSegmentEdge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SegmentEdge; + static void NewProp_bOverrideDefaultFillEdgeSoftness_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultFillEdgeSoftness; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FillEdgeSoftness; + static void NewProp_bOverrideDefaultGlowEdge_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultGlowEdge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GlowEdge; + static void NewProp_bOverrideDefaultGlowSoftness_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultGlowSoftness; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GlowSoftness; + static void NewProp_bOverrideDefaultOutlineScale_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultOutlineScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OutlineScale; + static void NewProp_bUseStroke_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseStroke; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StrokeMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NoStrokeMaterial; +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DesignTime_Progress; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Image_Bar; + static const UECodeGen_Private::FObjectPropertyParams NewProp_BoundAnim_FillBar; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CachedMID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent, "AnimateProgressFromCurrent" }, // 1553828117 + { &Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart, "AnimateProgressFromStart" }, // 4187224471 + { &Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, "OnFillAnimationFinished__DelegateSignature" }, // 3055943253 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorA, "SetColorA" }, // 1785433109 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorB, "SetColorB" }, // 694941076 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground, "SetColorBackground" }, // 1992410816 + { &Z_Construct_UFunction_UMaterialProgressBar_SetProgress, "SetProgress" }, // 2876077076 + { &Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress, "SetStartProgress" }, // 1774450658 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OnFillAnimationFinished = { "OnFillAnimationFinished", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, OnFillAnimationFinished), Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnFillAnimationFinished_MetaData), NewProp_OnFillAnimationFinished_MetaData) }; // 3055943253 +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorA = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA = { "bOverrideDefaultColorA", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorA_MetaData), NewProp_bOverrideDefaultColorA_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorA = { "CachedColorA", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorA), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorA_MetaData), NewProp_CachedColorA_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorB = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB = { "bOverrideDefaultColorB", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorB_MetaData), NewProp_bOverrideDefaultColorB_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorB = { "CachedColorB", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorB), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorB_MetaData), NewProp_CachedColorB_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorBackground = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground = { "bOverrideDefaultColorBackground", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorBackground_MetaData), NewProp_bOverrideDefaultColorBackground_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorBackground = { "CachedColorBackground", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorBackground), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorBackground_MetaData), NewProp_CachedColorBackground_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultSegments = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments = { "bOverrideDefaultSegments", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultSegments_MetaData), NewProp_bOverrideDefaultSegments_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Segments = { "Segments", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, Segments), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Segments_MetaData), NewProp_Segments_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultSegmentEdge = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge = { "bOverrideDefaultSegmentEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultSegmentEdge_MetaData), NewProp_bOverrideDefaultSegmentEdge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_SegmentEdge = { "SegmentEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, SegmentEdge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SegmentEdge_MetaData), NewProp_SegmentEdge_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultFillEdgeSoftness = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness = { "bOverrideDefaultFillEdgeSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultFillEdgeSoftness_MetaData), NewProp_bOverrideDefaultFillEdgeSoftness_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_FillEdgeSoftness = { "FillEdgeSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, FillEdgeSoftness), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FillEdgeSoftness_MetaData), NewProp_FillEdgeSoftness_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultGlowEdge = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge = { "bOverrideDefaultGlowEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultGlowEdge_MetaData), NewProp_bOverrideDefaultGlowEdge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowEdge = { "GlowEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, GlowEdge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GlowEdge_MetaData), NewProp_GlowEdge_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultGlowSoftness = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness = { "bOverrideDefaultGlowSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultGlowSoftness_MetaData), NewProp_bOverrideDefaultGlowSoftness_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowSoftness = { "GlowSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, GlowSoftness), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GlowSoftness_MetaData), NewProp_GlowSoftness_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultOutlineScale = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale = { "bOverrideDefaultOutlineScale", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultOutlineScale_MetaData), NewProp_bOverrideDefaultOutlineScale_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OutlineScale = { "OutlineScale", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, OutlineScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OutlineScale_MetaData), NewProp_OutlineScale_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bUseStroke = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke = { "bUseStroke", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseStroke_MetaData), NewProp_bUseStroke_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_StrokeMaterial = { "StrokeMaterial", nullptr, (EPropertyFlags)0x0144000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, StrokeMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StrokeMaterial_MetaData), NewProp_StrokeMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_NoStrokeMaterial = { "NoStrokeMaterial", nullptr, (EPropertyFlags)0x0144000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, NoStrokeMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NoStrokeMaterial_MetaData), NewProp_NoStrokeMaterial_MetaData) }; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_DesignTime_Progress = { "DesignTime_Progress", nullptr, (EPropertyFlags)0x0040000800000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, DesignTime_Progress), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesignTime_Progress_MetaData), NewProp_DesignTime_Progress_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Image_Bar = { "Image_Bar", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, Image_Bar), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Image_Bar_MetaData), NewProp_Image_Bar_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_BoundAnim_FillBar = { "BoundAnim_FillBar", nullptr, (EPropertyFlags)0x0144000000002014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, BoundAnim_FillBar), Z_Construct_UClass_UWidgetAnimation_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundAnim_FillBar_MetaData), NewProp_BoundAnim_FillBar_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedMID = { "CachedMID", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedMID), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedMID_MetaData), NewProp_CachedMID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OnFillAnimationFinished, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Segments, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_SegmentEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_FillEdgeSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OutlineScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_StrokeMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_NoStrokeMaterial, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_DesignTime_Progress, +#endif // WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Image_Bar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_BoundAnim_FillBar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedMID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UMaterialProgressBar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UMaterialProgressBar_Statics::ClassParams = { + &UMaterialProgressBar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::Class_MetaDataParams), Z_Construct_UClass_UMaterialProgressBar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UMaterialProgressBar() +{ + if (!Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton, Z_Construct_UClass_UMaterialProgressBar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UMaterialProgressBar::StaticClass(); +} +UMaterialProgressBar::UMaterialProgressBar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UMaterialProgressBar); +UMaterialProgressBar::~UMaterialProgressBar() {} +// End Class UMaterialProgressBar + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UMaterialProgressBar, UMaterialProgressBar::StaticClass, TEXT("UMaterialProgressBar"), &Z_Registration_Info_UClass_UMaterialProgressBar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UMaterialProgressBar), 2059522219U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_654435084(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.generated.h new file mode 100644 index 00000000..82f0fe84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/MaterialProgressBar.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Basic/MaterialProgressBar.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLinearColor; +#ifdef LYRAGAME_MaterialProgressBar_generated_h +#error "MaterialProgressBar.generated.h already included, missing '#pragma once' in MaterialProgressBar.h" +#endif +#define LYRAGAME_MaterialProgressBar_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_52_DELEGATE \ +static LYRAGAME_API void FOnFillAnimationFinished_DelegateWrapper(const FMulticastScriptDelegate& OnFillAnimationFinished); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAnimateProgressFromCurrent); \ + DECLARE_FUNCTION(execAnimateProgressFromStart); \ + DECLARE_FUNCTION(execSetColorBackground); \ + DECLARE_FUNCTION(execSetColorB); \ + DECLARE_FUNCTION(execSetColorA); \ + DECLARE_FUNCTION(execSetStartProgress); \ + DECLARE_FUNCTION(execSetProgress); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUMaterialProgressBar(); \ + friend struct Z_Construct_UClass_UMaterialProgressBar_Statics; \ +public: \ + DECLARE_CLASS(UMaterialProgressBar, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UMaterialProgressBar) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UMaterialProgressBar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UMaterialProgressBar(UMaterialProgressBar&&); \ + UMaterialProgressBar(const UMaterialProgressBar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UMaterialProgressBar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UMaterialProgressBar); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UMaterialProgressBar) \ + NO_API virtual ~UMaterialProgressBar(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp new file mode 100644 index 00000000..3778af20 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Physics/PhysicalMaterialWithTags.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePhysicalMaterialWithTags() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_UPhysicalMaterialWithTags(); +LYRAGAME_API UClass* Z_Construct_UClass_UPhysicalMaterialWithTags_NoRegister(); +PHYSICSCORE_API UClass* Z_Construct_UClass_UPhysicalMaterial(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UPhysicalMaterialWithTags +void UPhysicalMaterialWithTags::StaticRegisterNativesUPhysicalMaterialWithTags() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPhysicalMaterialWithTags); +UClass* Z_Construct_UClass_UPhysicalMaterialWithTags_NoRegister() +{ + return UPhysicalMaterialWithTags::StaticClass(); +} +struct Z_Construct_UClass_UPhysicalMaterialWithTags_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraWeaponInstance\n *\n * A piece of equipment representing a weapon spawned and applied to a pawn\n */" }, +#endif + { "HideCategories", "Object" }, + { "IncludePath", "Physics/PhysicalMaterialWithTags.h" }, + { "ModuleRelativePath", "Physics/PhysicalMaterialWithTags.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraWeaponInstance\n\nA piece of equipment representing a weapon spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tags_MetaData[] = { + { "Category", "PhysicalProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A container of gameplay tags that game code can use to reason about this physical material\n" }, +#endif + { "ModuleRelativePath", "Physics/PhysicalMaterialWithTags.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A container of gameplay tags that game code can use to reason about this physical material" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::NewProp_Tags = { "Tags", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPhysicalMaterialWithTags, Tags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tags_MetaData), NewProp_Tags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::NewProp_Tags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPhysicalMaterial, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::ClassParams = { + &UPhysicalMaterialWithTags::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers), + 0, + 0x000020A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::Class_MetaDataParams), Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPhysicalMaterialWithTags() +{ + if (!Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton, Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPhysicalMaterialWithTags::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPhysicalMaterialWithTags); +UPhysicalMaterialWithTags::~UPhysicalMaterialWithTags() {} +// End Class UPhysicalMaterialWithTags + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPhysicalMaterialWithTags, UPhysicalMaterialWithTags::StaticClass, TEXT("UPhysicalMaterialWithTags"), &Z_Registration_Info_UClass_UPhysicalMaterialWithTags, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPhysicalMaterialWithTags), 2613712870U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_3324888955(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h new file mode 100644 index 00000000..deebd112 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Physics/PhysicalMaterialWithTags.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_PhysicalMaterialWithTags_generated_h +#error "PhysicalMaterialWithTags.generated.h already included, missing '#pragma once' in PhysicalMaterialWithTags.h" +#endif +#define LYRAGAME_PhysicalMaterialWithTags_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPhysicalMaterialWithTags(); \ + friend struct Z_Construct_UClass_UPhysicalMaterialWithTags_Statics; \ +public: \ + DECLARE_CLASS(UPhysicalMaterialWithTags, UPhysicalMaterial, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UPhysicalMaterialWithTags) + + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPhysicalMaterialWithTags(UPhysicalMaterialWithTags&&); \ + UPhysicalMaterialWithTags(const UPhysicalMaterialWithTags&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPhysicalMaterialWithTags); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPhysicalMaterialWithTags); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPhysicalMaterialWithTags) \ + NO_API virtual ~UPhysicalMaterialWithTags(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp new file mode 100644 index 00000000..80ce7174 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp @@ -0,0 +1,112 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/SCircumferenceMarkerWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSCircumferenceMarkerWidget() {} + +// Begin Cross Module References +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FCircumferenceMarkerEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry; +class UScriptStruct* FCircumferenceMarkerEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("CircumferenceMarkerEntry")); + } + return Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FCircumferenceMarkerEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PositionAngle_MetaData[] = { + { "Category", "CircumferenceMarkerEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The angle to place this marker around the circle (in degrees)\n" }, +#endif + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The angle to place this marker around the circle (in degrees)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ImageRotationAngle_MetaData[] = { + { "Category", "CircumferenceMarkerEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The angle to rotate the marker image (in degrees)\n" }, +#endif + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The angle to rotate the marker image (in degrees)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_PositionAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ImageRotationAngle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_PositionAngle = { "PositionAngle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCircumferenceMarkerEntry, PositionAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PositionAngle_MetaData), NewProp_PositionAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_ImageRotationAngle = { "ImageRotationAngle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCircumferenceMarkerEntry, ImageRotationAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ImageRotationAngle_MetaData), NewProp_ImageRotationAngle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_PositionAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_ImageRotationAngle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "CircumferenceMarkerEntry", + Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers), + sizeof(FCircumferenceMarkerEntry), + alignof(FCircumferenceMarkerEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry() +{ + if (!Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton; +} +// End ScriptStruct FCircumferenceMarkerEntry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FCircumferenceMarkerEntry::StaticStruct, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewStructOps, TEXT("CircumferenceMarkerEntry"), &Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FCircumferenceMarkerEntry), 3476315904U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_3083010810(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h new file mode 100644 index 00000000..027fc20c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/SCircumferenceMarkerWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_SCircumferenceMarkerWidget_generated_h +#error "SCircumferenceMarkerWidget.generated.h already included, missing '#pragma once' in SCircumferenceMarkerWidget.h" +#endif +#define LYRAGAME_SCircumferenceMarkerWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_22_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/Timestamp b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/Timestamp new file mode 100644 index 00000000..343415d3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/Timestamp @@ -0,0 +1,220 @@ +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySourceInterface.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySystemGlobals.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySystemComponent.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilityTagRelationshipMapping.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayAbilityTargetData_SingleTargetHit.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayCueManager.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayEffectContext.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGlobalAbilitySystem.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraTaggedActor.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_InventoryItem.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_ItemTagStack.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_PlayerTagStack.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilitySimpleFailureMessage.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Jump.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Death.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Reset.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraCombatSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraAttributeSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraHealthSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Executions\LyraDamageExecution.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Executions\LyraHealExecution.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Phases\LyraGamePhaseAbility.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Phases\LyraGamePhaseSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Animation\LyraAnimInstance.h +E:\Projects\cross_platform\Source\LyraGame\Audio\LyraAudioMixEffectsSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Audio\LyraAudioSettings.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraAssistInterface.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraComponent.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraMode.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraMode_ThirdPerson.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraPlayerCameraManager.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraUICameraManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraPenetrationAvoidanceFeeler.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacterWithAbilities.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacterMovementComponent.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacter.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraHealthComponent.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawn.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraHeroComponent.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCharacterPartTypes.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawnData.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawnExtensionComponent.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraControllerComponent_CharacterParts.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticAnimationTypes.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticCheats.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraBotCheats.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticDeveloperSettings.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraPlatformEmulationSettings.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraGameplayAbility_FromEquipment.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentInstance.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraPickupDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraPawnComponent_CharacterParts.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsLibrary.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsInterface.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectComponent.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraDamagePopStyle.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\AnimNotify_LyraContextEffects.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent_NiagaraText.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraQuickBarComponent.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraDeveloperSettings.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddInputBinding.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddAbilities.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraDamagePopStyleNiagara.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddInputContextMapping.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\LyraGameFeaturePolicy.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddGameplayCuePath.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent_MeshText.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\AsyncAction_ExperienceReady.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraBotCreationComponent.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddWidget.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceActionSet.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraUserFacingExperienceDefinition.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraGameState.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraGameMode.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraRuntimeOptions.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceManager.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_SplitscreenConfig.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_WorldActionBase.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraWorldSettings.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionQuery.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputConfig.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionOption.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputModifiers.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\IInteractionInstigator.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_GrantNearbyInteraction.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraHotfixManager.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\IInteractableTarget.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Abilities\LyraGameplayAbility_Interact.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_SetStats.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraAimSensitivityData.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_WaitForInteractableTargets_SingleLineTrace.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_EquippableItem.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_QuickBarIcon.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_PickupIcon.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\LyraInteractionDurationMessage.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Abilities\GameplayAbilityTargetActor_Interact.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionStatics.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\IPickupable.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_WaitForInteractableTargets.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessage.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessageHelpers.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputUserSettings.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryItemDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraPlayerMappableKeyProfile.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraNotificationMessage.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceStatSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessageReplication.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraDebugCameraController.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputComponent.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceStatTypes.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryItemInstance.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerStart.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraLocalPlayer.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerSpawningManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingAction_SafeZoneEditor.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerState.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingKeyboardInput.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraCheatManager.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerController.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceSettings.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_PerfStat.h +E:\Projects\cross_platform\Source\LyraGame\Physics\PhysicalMaterialWithTags.h +E:\Projects\cross_platform\Source\LyraGame\Replays\LyraReplaySubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Messages\GameplayMessageProcessor.h +E:\Projects\cross_platform\Source\LyraGame\Replays\AsyncAction_QueryReplays.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_Resolution.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_Language.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Screens\LyraSafeZoneEditor.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_OverallQuality.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraGameSettingRegistry.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Screens\LyraBrightnessEditor.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerBotController.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameEngine.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraActorUtilities.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraTextHotfixConfig.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscreteDynamic_AudioOutputDevice.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameData.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraSettingsLocal.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameInstance.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraDevelopmentStatics.h +E:\Projects\cross_platform\Source\LyraGame\System\GameplayTagStack.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameSession.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraSettingsShared.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraphSettings.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraSignificanceManager.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraAssetManager.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamCheats.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraph.h +E:\Projects\cross_platform\Source\LyraGame\Tests\LyraGameplayRpcRegistrationComponent.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamPublicInfo.h +E:\Projects\cross_platform\Source\LyraGame\Teams\AsyncAction_ObserveTeam.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Widgets\LyraSettingsListEntrySetting_KeyboardInput.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamDisplayAsset.h +E:\Projects\cross_platform\Source\LyraGame\Tests\LyraTestControllerBootTest.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraSettingScreen.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraHUD.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraSystemStatics.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraphTypes.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraTaggedWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraJoystickWidget.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamAgentInterface.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraSimulatedInputWidget.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamPrivateInfo.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraBoundActionButton.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamCreationComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraHUDLayout.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraTabButtonBase.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_MobileFPSType.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamInfoBase.h +E:\Projects\cross_platform\Source\LyraGame\Teams\AsyncAction_ObserveTeamColors.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraWidgetFactory.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraTouchRegion.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraGameViewportClient.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraWidgetFactory_Class.h +E:\Projects\cross_platform\Source\LyraGame\UI\Basic\MaterialProgressBar.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraListView.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraLoadingScreenSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraControllerDisconnectedScreen.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraConfirmationScreen.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\ApplyFrontendPerfSettingsAction.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\LyraFrontendStateComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraTabListWidgetBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraActionWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraActivatableWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorLayer.h +E:\Projects\cross_platform\Source\LyraGame\UI\PerformanceStats\LyraPerfStatContainerBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Subsystem\LyraUIManagerSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\UI\Subsystem\LyraUIMessaging.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorDescriptor.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\InventoryFragment_ReticleConfig.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\LyraIndicatorManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamStatics.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\LyraWeaponUserInterface.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IActorIndicatorWidget.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraDamageLogDebuggerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponDebugSettings.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorLibrary.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponStateComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\PerformanceStats\LyraPerfStatWidgetBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\LyraLobbyBackground.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraRangedWeaponInstance.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponInstance.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponSpawner.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\HitMarkerConfirmationWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraButtonBase.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceDefinition.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\SCircumferenceMarkerWidget.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraGameplayAbility_RangedWeapon.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\CircumferenceMarkerWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\LyraReticleWidgetBase.h diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp new file mode 100644 index 00000000..ce5af538 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.gen.cpp @@ -0,0 +1,166 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_GrantNearbyInteraction() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors +struct Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics +{ + struct AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms + { + UGameplayAbility* OwningAbility; + float InteractionScanRange; + float InteractionScanRate; + UAbilityTask_GrantNearbyInteraction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "TRUE" }, + { "Category", "Ability|Tasks" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements */" }, +#endif + { "DefaultToSelf", "OwningAbility" }, + { "HidePin", "OwningAbility" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wait until an overlap occurs. This will need to be better fleshed out so we can specify game specific collision requirements" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_OwningAbility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, nullptr, "GrantAbilitiesForNearbyInteractors", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::AbilityTask_GrantNearbyInteraction_eventGrantAbilitiesForNearbyInteractors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate); + P_FINISH; + P_NATIVE_BEGIN; + *(UAbilityTask_GrantNearbyInteraction**)Z_Param__Result=UAbilityTask_GrantNearbyInteraction::GrantAbilitiesForNearbyInteractors(Z_Param_OwningAbility,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate); + P_NATIVE_END; +} +// End Class UAbilityTask_GrantNearbyInteraction Function GrantAbilitiesForNearbyInteractors + +// Begin Class UAbilityTask_GrantNearbyInteraction +void UAbilityTask_GrantNearbyInteraction::StaticRegisterNativesUAbilityTask_GrantNearbyInteraction() +{ + UClass* Class = UAbilityTask_GrantNearbyInteraction::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GrantAbilitiesForNearbyInteractors", &UAbilityTask_GrantNearbyInteraction::execGrantAbilitiesForNearbyInteractors }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_GrantNearbyInteraction); +UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_NoRegister() +{ + return UAbilityTask_GrantNearbyInteraction::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAbilityTask_GrantNearbyInteraction_GrantAbilitiesForNearbyInteractors, "GrantAbilitiesForNearbyInteractors" }, // 3457003903 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams = { + &UAbilityTask_GrantNearbyInteraction::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton, Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_GrantNearbyInteraction::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_GrantNearbyInteraction); +UAbilityTask_GrantNearbyInteraction::~UAbilityTask_GrantNearbyInteraction() {} +// End Class UAbilityTask_GrantNearbyInteraction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction, UAbilityTask_GrantNearbyInteraction::StaticClass, TEXT("UAbilityTask_GrantNearbyInteraction"), &Z_Registration_Info_UClass_UAbilityTask_GrantNearbyInteraction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_GrantNearbyInteraction), 3415391662U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_2736015225(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h new file mode 100644 index 00000000..4d3224b7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_GrantNearbyInteraction.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_GrantNearbyInteraction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAbilityTask_GrantNearbyInteraction; +class UGameplayAbility; +#ifdef LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h +#error "AbilityTask_GrantNearbyInteraction.generated.h already included, missing '#pragma once' in AbilityTask_GrantNearbyInteraction.h" +#endif +#define LYRAGAME_AbilityTask_GrantNearbyInteraction_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \ + DECLARE_FUNCTION(execGrantAbilitiesForNearbyInteractors); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_GrantNearbyInteraction(); \ + friend struct Z_Construct_UClass_UAbilityTask_GrantNearbyInteraction_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_GrantNearbyInteraction, UAbilityTask, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_GrantNearbyInteraction) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_GrantNearbyInteraction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_GrantNearbyInteraction) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_GrantNearbyInteraction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_GrantNearbyInteraction); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_GrantNearbyInteraction(UAbilityTask_GrantNearbyInteraction&&); \ + UAbilityTask_GrantNearbyInteraction(const UAbilityTask_GrantNearbyInteraction&); \ +public: \ + NO_API virtual ~UAbilityTask_GrantNearbyInteraction(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h_17_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_GrantNearbyInteraction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp new file mode 100644 index 00000000..9ca802c1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.gen.cpp @@ -0,0 +1,153 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" +#include "LyraGame/Interaction/InteractionOption.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilityTask(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FInteractableObjectsChangedEvent +struct Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms + { + TArray InteractableOptions; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableOptions_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractableOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InteractableOptions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner = { "InteractableOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions = { "InteractableOptions", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms, InteractableOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableOptions_MetaData), NewProp_InteractableOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::NewProp_InteractableOptions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "InteractableObjectsChangedEvent__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::_Script_LyraGame_eventInteractableObjectsChangedEvent_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray const& InteractableOptions) +{ + struct _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms + { + TArray InteractableOptions; + }; + _Script_LyraGame_eventInteractableObjectsChangedEvent_Parms Parms; + Parms.InteractableOptions=InteractableOptions; + InteractableObjectsChangedEvent.ProcessMulticastDelegate(&Parms); +} +// End Delegate FInteractableObjectsChangedEvent + +// Begin Class UAbilityTask_WaitForInteractableTargets +void UAbilityTask_WaitForInteractableTargets::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets); +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_NoRegister() +{ + return UAbilityTask_WaitForInteractableTargets::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableObjectsChanged_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_InteractableObjectsChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged = { "InteractableObjectsChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets, InteractableObjectsChanged), Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableObjectsChanged_MetaData), NewProp_InteractableObjectsChanged_MetaData) }; // 1804386273 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::NewProp_InteractableObjectsChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams = { + &UAbilityTask_WaitForInteractableTargets::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::PropPointers), + 0, + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_WaitForInteractableTargets::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets); +UAbilityTask_WaitForInteractableTargets::~UAbilityTask_WaitForInteractableTargets() {} +// End Class UAbilityTask_WaitForInteractableTargets + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets, UAbilityTask_WaitForInteractableTargets::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets), 3643238578U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_444856477(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h new file mode 100644 index 00000000..dd9343ae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FInteractionOption; +#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h +#error "AbilityTask_WaitForInteractableTargets.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets.h" +#endif +#define LYRAGAME_AbilityTask_WaitForInteractableTargets_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_19_DELEGATE \ +LYRAGAME_API void FInteractableObjectsChangedEvent_DelegateWrapper(const FMulticastScriptDelegate& InteractableObjectsChangedEvent, TArray const& InteractableOptions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets(); \ + friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets, UAbilityTask, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_WaitForInteractableTargets(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_WaitForInteractableTargets(UAbilityTask_WaitForInteractableTargets&&); \ + UAbilityTask_WaitForInteractableTargets(const UAbilityTask_WaitForInteractableTargets&); \ +public: \ + NO_API virtual ~UAbilityTask_WaitForInteractableTargets(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h_24_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp new file mode 100644 index 00000000..e1020b6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.gen.cpp @@ -0,0 +1,216 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#include "GameplayAbilities/Public/Abilities/GameplayAbilityTargetTypes.h" +#include "LyraGame/Interaction/InteractionQuery.h" +#include "Runtime/Engine/Classes/Engine/CollisionProfile.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAbilityTask_WaitForInteractableTargets_SingleLineTrace() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FCollisionProfileName(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace(); +LYRAGAME_API UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace +struct Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics +{ + struct AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms + { + UGameplayAbility* OwningAbility; + FInteractionQuery InteractionQuery; + FCollisionProfileName TraceProfile; + FGameplayAbilityTargetingLocationInfo StartLocation; + float InteractionScanRange; + float InteractionScanRate; + bool bShowDebug; + UAbilityTask_WaitForInteractableTargets_SingleLineTrace* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "TRUE" }, + { "Category", "Ability|Tasks" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wait until we trace new set of interactables. This task automatically loops. */" }, +#endif + { "CPP_Default_bShowDebug", "false" }, + { "CPP_Default_InteractionScanRange", "100.000000" }, + { "CPP_Default_InteractionScanRate", "0.100000" }, + { "DefaultToSelf", "OwningAbility" }, + { "HidePin", "OwningAbility" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wait until we trace new set of interactables. This task automatically loops." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningAbility; + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery; + static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProfile; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static void NewProp_bShowDebug_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowDebug; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility = { "OwningAbility", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, OwningAbility), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(0, nullptr) }; // 2707672158 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile = { "TraceProfile", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, TraceProfile), Z_Construct_UScriptStruct_FCollisionProfileName, METADATA_PARAMS(0, nullptr) }; // 3816324900 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(0, nullptr) }; // 1311887580 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRange), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, InteractionScanRate), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit(void* Obj) +{ + ((AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms*)Obj)->bShowDebug = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug = { "bShowDebug", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms, ReturnValue), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_OwningAbility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_TraceProfile, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_bShowDebug, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, nullptr, "WaitForInteractableTargets_SingleLineTrace", nullptr, nullptr, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::AbilityTask_WaitForInteractableTargets_SingleLineTrace_eventWaitForInteractableTargets_SingleLineTrace_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_OwningAbility); + P_GET_STRUCT(FInteractionQuery,Z_Param_InteractionQuery); + P_GET_STRUCT(FCollisionProfileName,Z_Param_TraceProfile); + P_GET_STRUCT(FGameplayAbilityTargetingLocationInfo,Z_Param_StartLocation); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRange); + P_GET_PROPERTY(FFloatProperty,Z_Param_InteractionScanRate); + P_GET_UBOOL(Z_Param_bShowDebug); + P_FINISH; + P_NATIVE_BEGIN; + *(UAbilityTask_WaitForInteractableTargets_SingleLineTrace**)Z_Param__Result=UAbilityTask_WaitForInteractableTargets_SingleLineTrace::WaitForInteractableTargets_SingleLineTrace(Z_Param_OwningAbility,Z_Param_InteractionQuery,Z_Param_TraceProfile,Z_Param_StartLocation,Z_Param_InteractionScanRange,Z_Param_InteractionScanRate,Z_Param_bShowDebug); + P_NATIVE_END; +} +// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace Function WaitForInteractableTargets_SingleLineTrace + +// Begin Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace +void UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace() +{ + UClass* Class = UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "WaitForInteractableTargets_SingleLineTrace", &UAbilityTask_WaitForInteractableTargets_SingleLineTrace::execWaitForInteractableTargets_SingleLineTrace }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_NoRegister() +{ + return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); +} +struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionQuery_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartLocation_MetaData[] = { + { "ModuleRelativePath", "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractionQuery; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartLocation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_WaitForInteractableTargets_SingleLineTrace, "WaitForInteractableTargets_SingleLineTrace" }, // 509663215 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery = { "InteractionQuery", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, InteractionQuery), Z_Construct_UScriptStruct_FInteractionQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionQuery_MetaData), NewProp_InteractionQuery_MetaData) }; // 2707672158 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation = { "StartLocation", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, StartLocation), Z_Construct_UScriptStruct_FGameplayAbilityTargetingLocationInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartLocation_MetaData), NewProp_StartLocation_MetaData) }; // 1311887580 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_InteractionQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::NewProp_StartLocation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams = { + &UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams), Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace() +{ + if (!Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton, Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); +UAbilityTask_WaitForInteractableTargets_SingleLineTrace::~UAbilityTask_WaitForInteractableTargets_SingleLineTrace() {} +// End Class UAbilityTask_WaitForInteractableTargets_SingleLineTrace + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets_SingleLineTrace::StaticClass, TEXT("UAbilityTask_WaitForInteractableTargets_SingleLineTrace"), &Z_Registration_Info_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAbilityTask_WaitForInteractableTargets_SingleLineTrace), 2541355024U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_1827922283(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h new file mode 100644 index 00000000..e6a46e1b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAbilityTask_WaitForInteractableTargets_SingleLineTrace; +class UGameplayAbility; +struct FCollisionProfileName; +struct FGameplayAbilityTargetingLocationInfo; +struct FInteractionQuery; +#ifdef LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h +#error "AbilityTask_WaitForInteractableTargets_SingleLineTrace.generated.h already included, missing '#pragma once' in AbilityTask_WaitForInteractableTargets_SingleLineTrace.h" +#endif +#define LYRAGAME_AbilityTask_WaitForInteractableTargets_SingleLineTrace_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \ + DECLARE_FUNCTION(execWaitForInteractableTargets_SingleLineTrace); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \ +private: \ + static void StaticRegisterNativesUAbilityTask_WaitForInteractableTargets_SingleLineTrace(); \ + friend struct Z_Construct_UClass_UAbilityTask_WaitForInteractableTargets_SingleLineTrace_Statics; \ +public: \ + DECLARE_CLASS(UAbilityTask_WaitForInteractableTargets_SingleLineTrace, UAbilityTask_WaitForInteractableTargets, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAbilityTask_WaitForInteractableTargets_SingleLineTrace) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAbilityTask_WaitForInteractableTargets_SingleLineTrace); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAbilityTask_WaitForInteractableTargets_SingleLineTrace(UAbilityTask_WaitForInteractableTargets_SingleLineTrace&&); \ + UAbilityTask_WaitForInteractableTargets_SingleLineTrace(const UAbilityTask_WaitForInteractableTargets_SingleLineTrace&); \ +public: \ + NO_API virtual ~UAbilityTask_WaitForInteractableTargets_SingleLineTrace(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h_18_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Tasks_AbilityTask_WaitForInteractableTargets_SingleLineTrace_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp new file mode 100644 index 00000000..b3110b57 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.gen.cpp @@ -0,0 +1,767 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAnimNotify_LyraContextEffects() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UAnimNotify(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_ECollisionChannel(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects(); +LYRAGAME_API UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings(); +PHYSICSCORE_API UEnum* Z_Construct_UEnum_PhysicsCore_EPhysicalSurface(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraContextEffectAnimNotifyVFXSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyVFXSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyVFXSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyVFXSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Scale_MetaData[] = { + { "Category", "FX" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Scale; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale = { "Scale", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyVFXSettings, Scale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Scale_MetaData), NewProp_Scale_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewProp_Scale, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyVFXSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyVFXSettings), + alignof(FLyraContextEffectAnimNotifyVFXSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyVFXSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyAudioSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyAudioSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyAudioSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyAudioSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VolumeMultiplier_MetaData[] = { + { "Category", "Sound" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Volume Multiplier\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Volume Multiplier" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PitchMultiplier_MetaData[] = { + { "Category", "Sound" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Pitch Multiplier\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pitch Multiplier" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_VolumeMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PitchMultiplier; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier = { "VolumeMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, VolumeMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VolumeMultiplier_MetaData), NewProp_VolumeMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier = { "PitchMultiplier", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyAudioSettings, PitchMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PitchMultiplier_MetaData), NewProp_PitchMultiplier_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_VolumeMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewProp_PitchMultiplier, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyAudioSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyAudioSettings), + alignof(FLyraContextEffectAnimNotifyAudioSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyAudioSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyTraceSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyTraceSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyTraceSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyTraceSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceChannel_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Trace Channel\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Trace Channel" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EndTraceLocationOffset_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Vector offset from Effect Location\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Vector offset from Effect Location" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIgnoreActor_MetaData[] = { + { "Category", "Trace" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ignore this Actor when getting trace result\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ignore this Actor when getting trace result" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_TraceChannel; + static const UECodeGen_Private::FStructPropertyParams NewProp_EndTraceLocationOffset; + static void NewProp_bIgnoreActor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIgnoreActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel = { "TraceChannel", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, TraceChannel), Z_Construct_UEnum_Engine_ECollisionChannel, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceChannel_MetaData), NewProp_TraceChannel_MetaData) }; // 756624936 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset = { "EndTraceLocationOffset", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyTraceSettings, EndTraceLocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EndTraceLocationOffset_MetaData), NewProp_EndTraceLocationOffset_MetaData) }; +void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit(void* Obj) +{ + ((FLyraContextEffectAnimNotifyTraceSettings*)Obj)->bIgnoreActor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor = { "bIgnoreActor", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyTraceSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIgnoreActor_MetaData), NewProp_bIgnoreActor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_TraceChannel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_EndTraceLocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewProp_bIgnoreActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyTraceSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyTraceSettings), + alignof(FLyraContextEffectAnimNotifyTraceSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyTraceSettings + +// Begin ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings; +class UScriptStruct* FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffectAnimNotifyPreviewSettings")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewPhysicalSurfaceAsContext_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If true, will attempt to match selected Surface Type to Context Tag via Project Settings\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, will attempt to match selected Surface Type to Context Tag via Project Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewPhysicalSurface_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Surface Type\n" }, +#endif + { "EditCondition", "bPreviewPhysicalSurfaceAsContext" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Surface Type" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContextEffectsLibrary_MetaData[] = { + { "AllowedClasses", "/Script/LyraGame.LyraContextEffectsLibrary" }, + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Preview Library\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview Library" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewContexts_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Preview Context\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview Context" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewPhysicalSurfaceAsContext; + static const UECodeGen_Private::FBytePropertyParams NewProp_PreviewPhysicalSurface; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContextEffectsLibrary; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewContexts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit(void* Obj) +{ + ((FLyraContextEffectAnimNotifyPreviewSettings*)Obj)->bPreviewPhysicalSurfaceAsContext = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext = { "bPreviewPhysicalSurfaceAsContext", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraContextEffectAnimNotifyPreviewSettings), &Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewPhysicalSurfaceAsContext_MetaData), NewProp_bPreviewPhysicalSurfaceAsContext_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface = { "PreviewPhysicalSurface", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewPhysicalSurface), Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewPhysicalSurface_MetaData), NewProp_PreviewPhysicalSurface_MetaData) }; // 161619406 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary = { "PreviewContextEffectsLibrary", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContextEffectsLibrary), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContextEffectsLibrary_MetaData), NewProp_PreviewContextEffectsLibrary_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts = { "PreviewContexts", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffectAnimNotifyPreviewSettings, PreviewContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewContexts_MetaData), NewProp_PreviewContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_bPreviewPhysicalSurfaceAsContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewPhysicalSurface, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContextEffectsLibrary, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewProp_PreviewContexts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffectAnimNotifyPreviewSettings", + Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::PropPointers), + sizeof(FLyraContextEffectAnimNotifyPreviewSettings), + alignof(FLyraContextEffectAnimNotifyPreviewSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings.InnerSingleton; +} +// End ScriptStruct FLyraContextEffectAnimNotifyPreviewSettings + +// Begin Class UAnimNotify_LyraContextEffects Function SetParameters +#if WITH_EDITOR +struct Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics +{ + struct AnimNotify_LyraContextEffects_eventSetParameters_Parms + { + FGameplayTag EffectIn; + FVector LocationOffsetIn; + FRotator RotationOffsetIn; + FLyraContextEffectAnimNotifyVFXSettings VFXPropertiesIn; + FLyraContextEffectAnimNotifyAudioSettings AudioPropertiesIn; + bool bAttachedIn; + FName SocketNameIn; + bool bPerformTraceIn; + FLyraContextEffectAnimNotifyTraceSettings TracePropertiesIn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffsetIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffsetIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXPropertiesIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_AudioPropertiesIn; + static void NewProp_bAttachedIn_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttachedIn; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketNameIn; + static void NewProp_bPerformTraceIn_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTraceIn; + static const UECodeGen_Private::FStructPropertyParams NewProp_TracePropertiesIn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn = { "EffectIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, EffectIn), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn = { "LocationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, LocationOffsetIn), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn = { "RotationOffsetIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, RotationOffsetIn), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn = { "VFXPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, VFXPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(0, nullptr) }; // 817972917 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn = { "AudioPropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, AudioPropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(0, nullptr) }; // 2521679084 +void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit(void* Obj) +{ + ((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bAttachedIn = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn = { "bAttachedIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn = { "SocketNameIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, SocketNameIn), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit(void* Obj) +{ + ((AnimNotify_LyraContextEffects_eventSetParameters_Parms*)Obj)->bPerformTraceIn = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn = { "bPerformTraceIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AnimNotify_LyraContextEffects_eventSetParameters_Parms), &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn = { "TracePropertiesIn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AnimNotify_LyraContextEffects_eventSetParameters_Parms, TracePropertiesIn), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(0, nullptr) }; // 2936355306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_EffectIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_LocationOffsetIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_RotationOffsetIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_VFXPropertiesIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_AudioPropertiesIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bAttachedIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_SocketNameIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_bPerformTraceIn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::NewProp_TracePropertiesIn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAnimNotify_LyraContextEffects, nullptr, "SetParameters", nullptr, nullptr, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x64820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::AnimNotify_LyraContextEffects_eventSetParameters_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters_Statics::FuncParams); + } + return ReturnFunction; +} +#endif // WITH_EDITOR +#if WITH_EDITOR +DEFINE_FUNCTION(UAnimNotify_LyraContextEffects::execSetParameters) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_EffectIn); + P_GET_STRUCT(FVector,Z_Param_LocationOffsetIn); + P_GET_STRUCT(FRotator,Z_Param_RotationOffsetIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyVFXSettings,Z_Param_VFXPropertiesIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyAudioSettings,Z_Param_AudioPropertiesIn); + P_GET_UBOOL(Z_Param_bAttachedIn); + P_GET_PROPERTY(FNameProperty,Z_Param_SocketNameIn); + P_GET_UBOOL(Z_Param_bPerformTraceIn); + P_GET_STRUCT(FLyraContextEffectAnimNotifyTraceSettings,Z_Param_TracePropertiesIn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetParameters(Z_Param_EffectIn,Z_Param_LocationOffsetIn,Z_Param_RotationOffsetIn,Z_Param_VFXPropertiesIn,Z_Param_AudioPropertiesIn,Z_Param_bAttachedIn,Z_Param_SocketNameIn,Z_Param_bPerformTraceIn,Z_Param_TracePropertiesIn); + P_NATIVE_END; +} +#endif // WITH_EDITOR +// End Class UAnimNotify_LyraContextEffects Function SetParameters + +// Begin Class UAnimNotify_LyraContextEffects +void UAnimNotify_LyraContextEffects::StaticRegisterNativesUAnimNotify_LyraContextEffects() +{ +#if WITH_EDITOR + UClass* Class = UAnimNotify_LyraContextEffects::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetParameters", &UAnimNotify_LyraContextEffects::execSetParameters }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +#endif // WITH_EDITOR +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAnimNotify_LyraContextEffects); +UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects_NoRegister() +{ + return UAnimNotify_LyraContextEffects::StaticClass(); +} +struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "Play Context Effects" }, + { "HideCategories", "Object Object" }, + { "IncludePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effect_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Effect to Play\n" }, +#endif + { "DisplayName", "Effect" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Effect to Play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Location offset from the socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Location offset from the socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation offset from socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation offset from socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VFXProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAttached_MetaData[] = { + { "Category", "AttachmentProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should attach to the bone/socket\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should attach to the bone/socket" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SocketName_MetaData[] = { + { "Category", "AttachmentProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// SocketName to attach to\n" }, +#endif + { "EditCondition", "bAttached" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SocketName to attach to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPerformTrace_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Will perform a trace, required for SurfaceType to Context Conversion\n" }, +#endif + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Will perform a trace, required for SurfaceType to Context Conversion" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceProperties_MetaData[] = { + { "Category", "AnimNotify" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Scale to spawn the particle system at\n" }, +#endif + { "EditCondition", "bPerformTrace" }, + { "ExposeOnSpawn", "TRUE" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to spawn the particle system at" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewInEditor_MetaData[] = { + { "Category", "PreviewProperties" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewProperties_MetaData[] = { + { "Category", "PreviewProperties" }, + { "EditCondition", "bPreviewInEditor" }, + { "ModuleRelativePath", "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" }, + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXProperties; + static const UECodeGen_Private::FStructPropertyParams NewProp_AudioProperties; + static void NewProp_bAttached_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAttached; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static void NewProp_bPerformTrace_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPerformTrace; + static const UECodeGen_Private::FStructPropertyParams NewProp_TraceProperties; +#if WITH_EDITORONLY_DATA + static void NewProp_bPreviewInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewInEditor; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreviewProperties; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); +#if WITH_EDITOR + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAnimNotify_LyraContextEffects_SetParameters, "SetParameters" }, // 1208848875 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); +#endif // WITH_EDITOR + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effect_MetaData), NewProp_Effect_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties = { "VFXProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, VFXProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VFXProperties_MetaData), NewProp_VFXProperties_MetaData) }; // 817972917 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties = { "AudioProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, AudioProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioProperties_MetaData), NewProp_AudioProperties_MetaData) }; // 2521679084 +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bAttached = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached = { "bAttached", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAttached_MetaData), NewProp_bAttached_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, SocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SocketName_MetaData), NewProp_SocketName_MetaData) }; +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bPerformTrace = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace = { "bPerformTrace", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPerformTrace_MetaData), NewProp_bPerformTrace_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties = { "TraceProperties", nullptr, (EPropertyFlags)0x0011000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, TraceProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceProperties_MetaData), NewProp_TraceProperties_MetaData) }; // 2936355306 +#if WITH_EDITORONLY_DATA +void Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit(void* Obj) +{ + ((UAnimNotify_LyraContextEffects*)Obj)->bPreviewInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor = { "bPreviewInEditor", nullptr, (EPropertyFlags)0x0010000800004011, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UAnimNotify_LyraContextEffects), &Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewInEditor_MetaData), NewProp_bPreviewInEditor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties = { "PreviewProperties", nullptr, (EPropertyFlags)0x0010000800000011, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAnimNotify_LyraContextEffects, PreviewProperties), Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewProperties_MetaData), NewProp_PreviewProperties_MetaData) }; // 1783893619 +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_VFXProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_AudioProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bAttached, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_SocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPerformTrace, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_TraceProperties, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_bPreviewInEditor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::NewProp_PreviewProperties, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAnimNotify, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams = { + &UAnimNotify_LyraContextEffects::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + IF_WITH_EDITOR(FuncInfo, nullptr), + Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + IF_WITH_EDITOR(UE_ARRAY_COUNT(FuncInfo), 0), + UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::PropPointers), + 0, + 0x001120A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams), Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAnimNotify_LyraContextEffects() +{ + if (!Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton, Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAnimNotify_LyraContextEffects::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAnimNotify_LyraContextEffects); +UAnimNotify_LyraContextEffects::~UAnimNotify_LyraContextEffects() {} +// End Class UAnimNotify_LyraContextEffects + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraContextEffectAnimNotifyVFXSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyVFXSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyVFXSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyVFXSettings), 817972917U) }, + { FLyraContextEffectAnimNotifyAudioSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyAudioSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyAudioSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyAudioSettings), 2521679084U) }, + { FLyraContextEffectAnimNotifyTraceSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyTraceSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyTraceSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyTraceSettings), 2936355306U) }, + { FLyraContextEffectAnimNotifyPreviewSettings::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics::NewStructOps, TEXT("LyraContextEffectAnimNotifyPreviewSettings"), &Z_Registration_Info_UScriptStruct_LyraContextEffectAnimNotifyPreviewSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffectAnimNotifyPreviewSettings), 1783893619U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAnimNotify_LyraContextEffects, UAnimNotify_LyraContextEffects::StaticClass, TEXT("UAnimNotify_LyraContextEffects"), &Z_Registration_Info_UClass_UAnimNotify_LyraContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAnimNotify_LyraContextEffects), 2277929134U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_535087911(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h new file mode 100644 index 00000000..750fce68 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AnimNotify_LyraContextEffects.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/AnimNotify_LyraContextEffects.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayTag; +struct FLyraContextEffectAnimNotifyAudioSettings; +struct FLyraContextEffectAnimNotifyTraceSettings; +struct FLyraContextEffectAnimNotifyVFXSettings; +#ifdef LYRAGAME_AnimNotify_LyraContextEffects_generated_h +#error "AnimNotify_LyraContextEffects.generated.h already included, missing '#pragma once' in AnimNotify_LyraContextEffects.h" +#endif +#define LYRAGAME_AnimNotify_LyraContextEffects_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyVFXSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_31_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyAudioSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_49_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyTraceSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_70_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffectAnimNotifyPreviewSettings_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#if WITH_EDITOR +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \ + DECLARE_FUNCTION(execSetParameters); +#else // WITH_EDITOR +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD +#endif // WITH_EDITOR + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAnimNotify_LyraContextEffects(); \ + friend struct Z_Construct_UClass_UAnimNotify_LyraContextEffects_Statics; \ +public: \ + DECLARE_CLASS(UAnimNotify_LyraContextEffects, UAnimNotify, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAnimNotify_LyraContextEffects) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAnimNotify_LyraContextEffects(UAnimNotify_LyraContextEffects&&); \ + UAnimNotify_LyraContextEffects(const UAnimNotify_LyraContextEffects&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAnimNotify_LyraContextEffects); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAnimNotify_LyraContextEffects); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UAnimNotify_LyraContextEffects) \ + NO_API virtual ~UAnimNotify_LyraContextEffects(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_93_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_RPC_WRAPPERS_NO_PURE_DECLS_EOD \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h_96_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_AnimNotify_LyraContextEffects_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp new file mode 100644 index 00000000..5dcf3a9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/ApplyFrontendPerfSettingsAction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeApplyFrontendPerfSettingsAction() {} + +// Begin Cross Module References +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UApplyFrontendPerfSettingsAction +void UApplyFrontendPerfSettingsAction::StaticRegisterNativesUApplyFrontendPerfSettingsAction() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UApplyFrontendPerfSettingsAction); +UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction_NoRegister() +{ + return UApplyFrontendPerfSettingsAction::StaticClass(); +} +struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings\n */" }, +#endif + { "DisplayName", "Use Frontend Perf Settings" }, + { "IncludePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" }, + { "ModuleRelativePath", "UI/Frontend/ApplyFrontendPerfSettingsAction.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for telling the user settings to apply frontend/menu specific performance settings" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams = { + &UApplyFrontendPerfSettingsAction::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams), Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UApplyFrontendPerfSettingsAction() +{ + if (!Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton, Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UApplyFrontendPerfSettingsAction::StaticClass(); +} +UApplyFrontendPerfSettingsAction::UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UApplyFrontendPerfSettingsAction); +UApplyFrontendPerfSettingsAction::~UApplyFrontendPerfSettingsAction() {} +// End Class UApplyFrontendPerfSettingsAction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UApplyFrontendPerfSettingsAction, UApplyFrontendPerfSettingsAction::StaticClass, TEXT("UApplyFrontendPerfSettingsAction"), &Z_Registration_Info_UClass_UApplyFrontendPerfSettingsAction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UApplyFrontendPerfSettingsAction), 3626913931U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_3821545779(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h new file mode 100644 index 00000000..fd76ffdc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/ApplyFrontendPerfSettingsAction.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/ApplyFrontendPerfSettingsAction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h +#error "ApplyFrontendPerfSettingsAction.generated.h already included, missing '#pragma once' in ApplyFrontendPerfSettingsAction.h" +#endif +#define LYRAGAME_ApplyFrontendPerfSettingsAction_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUApplyFrontendPerfSettingsAction(); \ + friend struct Z_Construct_UClass_UApplyFrontendPerfSettingsAction_Statics; \ +public: \ + DECLARE_CLASS(UApplyFrontendPerfSettingsAction, UGameFeatureAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UApplyFrontendPerfSettingsAction) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UApplyFrontendPerfSettingsAction(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UApplyFrontendPerfSettingsAction(UApplyFrontendPerfSettingsAction&&); \ + UApplyFrontendPerfSettingsAction(const UApplyFrontendPerfSettingsAction&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UApplyFrontendPerfSettingsAction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UApplyFrontendPerfSettingsAction); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UApplyFrontendPerfSettingsAction) \ + LYRAGAME_API virtual ~UApplyFrontendPerfSettingsAction(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_ApplyFrontendPerfSettingsAction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp new file mode 100644 index 00000000..5180fc03 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.gen.cpp @@ -0,0 +1,203 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/AsyncAction_ExperienceReady.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ExperienceReady() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FExperienceReadyAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "ExperienceReadyAsyncDelegate__DelegateSignature", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate) +{ + ExperienceReadyAsyncDelegate.ProcessMulticastDelegate(NULL); +} +// End Delegate FExperienceReadyAsyncDelegate + +// Begin Class UAsyncAction_ExperienceReady Function WaitForExperienceReady +struct Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics +{ + struct AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms + { + UObject* WorldContextObject; + UAsyncAction_ExperienceReady* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Waits for the experience to be determined and loaded\n" }, +#endif + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Waits for the experience to be determined and loaded" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ExperienceReady, nullptr, "WaitForExperienceReady", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::AsyncAction_ExperienceReady_eventWaitForExperienceReady_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ExperienceReady::execWaitForExperienceReady) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ExperienceReady**)Z_Param__Result=UAsyncAction_ExperienceReady::WaitForExperienceReady(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class UAsyncAction_ExperienceReady Function WaitForExperienceReady + +// Begin Class UAsyncAction_ExperienceReady +void UAsyncAction_ExperienceReady::StaticRegisterNativesUAsyncAction_ExperienceReady() +{ + UClass* Class = UAsyncAction_ExperienceReady::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "WaitForExperienceReady", &UAsyncAction_ExperienceReady::execWaitForExperienceReady }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ExperienceReady); +UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady_NoRegister() +{ + return UAsyncAction_ExperienceReady::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\n * immediately if the game state is valid already.\n */" }, +#endif + { "IncludePath", "GameModes/AsyncAction_ExperienceReady.h" }, + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asynchronously waits for the game state to be ready and valid and then calls the OnReady event. Will call OnReady\nimmediately if the game state is valid already." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnReady_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the experience has been determined and is ready/loaded\n" }, +#endif + { "ModuleRelativePath", "GameModes/AsyncAction_ExperienceReady.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the experience has been determined and is ready/loaded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnReady; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ExperienceReady_WaitForExperienceReady, "WaitForExperienceReady" }, // 2633865634 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady = { "OnReady", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ExperienceReady, OnReady), Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnReady_MetaData), NewProp_OnReady_MetaData) }; // 1589972845 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::NewProp_OnReady, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams = { + &UAsyncAction_ExperienceReady::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ExperienceReady() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton, Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ExperienceReady.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ExperienceReady::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ExperienceReady); +UAsyncAction_ExperienceReady::~UAsyncAction_ExperienceReady() {} +// End Class UAsyncAction_ExperienceReady + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ExperienceReady, UAsyncAction_ExperienceReady::StaticClass, TEXT("UAsyncAction_ExperienceReady"), &Z_Registration_Info_UClass_UAsyncAction_ExperienceReady, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ExperienceReady), 70995253U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_3656380995(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h new file mode 100644 index 00000000..d5954921 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ExperienceReady.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/AsyncAction_ExperienceReady.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ExperienceReady; +class UObject; +#ifdef LYRAGAME_AsyncAction_ExperienceReady_generated_h +#error "AsyncAction_ExperienceReady.generated.h already included, missing '#pragma once' in AsyncAction_ExperienceReady.h" +#endif +#define LYRAGAME_AsyncAction_ExperienceReady_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_14_DELEGATE \ +LYRAGAME_API void FExperienceReadyAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& ExperienceReadyAsyncDelegate); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \ + DECLARE_FUNCTION(execWaitForExperienceReady); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ExperienceReady(); \ + friend struct Z_Construct_UClass_UAsyncAction_ExperienceReady_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ExperienceReady, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ExperienceReady) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ExperienceReady(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ExperienceReady) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ExperienceReady); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ExperienceReady); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ExperienceReady(UAsyncAction_ExperienceReady&&); \ + UAsyncAction_ExperienceReady(const UAsyncAction_ExperienceReady&); \ +public: \ + NO_API virtual ~UAsyncAction_ExperienceReady(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h_23_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_AsyncAction_ExperienceReady_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp new file mode 100644 index 00000000..bca65136 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.gen.cpp @@ -0,0 +1,286 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/AsyncAction_ObserveTeam.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ObserveTeam() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FTeamObservedAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bTeamSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTeamSet; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit(void* Obj) +{ + ((_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms*)Obj)->bTeamSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet = { "bTeamSet", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms), &Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "TeamObservedAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamObservedAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FTeamObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamObservedAsyncDelegate, bool bTeamSet, int32 TeamId) +{ + struct _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + }; + _Script_LyraGame_eventTeamObservedAsyncDelegate_Parms Parms; + Parms.bTeamSet=bTeamSet ? true : false; + Parms.TeamId=TeamId; + TeamObservedAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FTeamObservedAsyncDelegate + +// Begin Class UAsyncAction_ObserveTeam Function ObserveTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics +{ + struct AsyncAction_ObserveTeam_eventObserveTeam_Parms + { + UObject* TeamAgent; + UAsyncAction_ObserveTeam* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes on the specified team agent\n// - It will will fire once immediately to give the current team assignment\n// - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n// it will also listen for team assignment changes in the future\n" }, +#endif + { "Keywords", "Watch" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes on the specified team agent\n - It will will fire once immediately to give the current team assignment\n - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n it will also listen for team assignment changes in the future" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventObserveTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventObserveTeam_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeam, nullptr, "ObserveTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::AsyncAction_ObserveTeam_eventObserveTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::AsyncAction_ObserveTeam_eventObserveTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeam::execObserveTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ObserveTeam**)Z_Param__Result=UAsyncAction_ObserveTeam::ObserveTeam(Z_Param_TeamAgent); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeam Function ObserveTeam + +// Begin Class UAsyncAction_ObserveTeam Function OnWatchedAgentChangedTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics +{ + struct AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeam, nullptr, "OnWatchedAgentChangedTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeam_eventOnWatchedAgentChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeam::execOnWatchedAgentChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnWatchedAgentChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeam Function OnWatchedAgentChangedTeam + +// Begin Class UAsyncAction_ObserveTeam +void UAsyncAction_ObserveTeam::StaticRegisterNativesUAsyncAction_ObserveTeam() +{ + UClass* Class = UAsyncAction_ObserveTeam::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ObserveTeam", &UAsyncAction_ObserveTeam::execObserveTeam }, + { "OnWatchedAgentChangedTeam", &UAsyncAction_ObserveTeam::execOnWatchedAgentChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ObserveTeam); +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam_NoRegister() +{ + return UAsyncAction_ObserveTeam::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team changes in the specified object\n */" }, +#endif + { "IncludePath", "Teams/AsyncAction_ObserveTeam.h" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified object" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the team is set or changed\n" }, +#endif + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeam.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the team is set or changed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ObserveTeam_ObserveTeam, "ObserveTeam" }, // 3434540837 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeam_OnWatchedAgentChangedTeam, "OnWatchedAgentChangedTeam" }, // 3319083712 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::NewProp_OnTeamChanged = { "OnTeamChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ObserveTeam, OnTeamChanged), Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChanged_MetaData), NewProp_OnTeamChanged_MetaData) }; // 1906233519 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::NewProp_OnTeamChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::ClassParams = { + &UAsyncAction_ObserveTeam::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeam() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton, Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ObserveTeam.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ObserveTeam::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ObserveTeam); +UAsyncAction_ObserveTeam::~UAsyncAction_ObserveTeam() {} +// End Class UAsyncAction_ObserveTeam + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ObserveTeam, UAsyncAction_ObserveTeam::StaticClass, TEXT("UAsyncAction_ObserveTeam"), &Z_Registration_Info_UClass_UAsyncAction_ObserveTeam, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ObserveTeam), 2466180019U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_4079579659(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h new file mode 100644 index 00000000..99944bdc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeam.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/AsyncAction_ObserveTeam.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ObserveTeam; +class UObject; +#ifdef LYRAGAME_AsyncAction_ObserveTeam_generated_h +#error "AsyncAction_ObserveTeam.generated.h already included, missing '#pragma once' in AsyncAction_ObserveTeam.h" +#endif +#define LYRAGAME_AsyncAction_ObserveTeam_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_14_DELEGATE \ +LYRAGAME_API void FTeamObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamObservedAsyncDelegate, bool bTeamSet, int32 TeamId); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_RPC_WRAPPERS \ + DECLARE_FUNCTION(execOnWatchedAgentChangedTeam); \ + DECLARE_FUNCTION(execObserveTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ObserveTeam(); \ + friend struct Z_Construct_UClass_UAsyncAction_ObserveTeam_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ObserveTeam, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ObserveTeam) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ObserveTeam(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ObserveTeam) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ObserveTeam); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ObserveTeam); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ObserveTeam(UAsyncAction_ObserveTeam&&); \ + UAsyncAction_ObserveTeam(const UAsyncAction_ObserveTeam&); \ +public: \ + NO_API virtual ~UAsyncAction_ObserveTeam(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h_22_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeam_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp new file mode 100644 index 00000000..51725e0d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.gen.cpp @@ -0,0 +1,343 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/AsyncAction_ObserveTeamColors.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ObserveTeamColors() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FTeamColorObservedAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bTeamSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTeamSet; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit(void* Obj) +{ + ((_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms*)Obj)->bTeamSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet = { "bTeamSet", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms), &Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_bTeamSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "TeamColorObservedAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FTeamColorObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamColorObservedAsyncDelegate, bool bTeamSet, int32 TeamId, const ULyraTeamDisplayAsset* DisplayAsset) +{ + struct _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms + { + bool bTeamSet; + int32 TeamId; + const ULyraTeamDisplayAsset* DisplayAsset; + }; + _Script_LyraGame_eventTeamColorObservedAsyncDelegate_Parms Parms; + Parms.bTeamSet=bTeamSet ? true : false; + Parms.TeamId=TeamId; + Parms.DisplayAsset=DisplayAsset; + TeamColorObservedAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FTeamColorObservedAsyncDelegate + +// Begin Class UAsyncAction_ObserveTeamColors Function ObserveTeamColors +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics +{ + struct AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms + { + UObject* TeamAgent; + UAsyncAction_ObserveTeamColors* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes on the specified team agent\n// - It will will fire once immediately to give the current team assignment\n// - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n// it will also listen for team assignment changes in the future\n" }, +#endif + { "Keywords", "Watch" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes on the specified team agent\n - It will will fire once immediately to give the current team assignment\n - For anything that can ever belong to a team (implements ILyraTeamAgentInterface),\n it will also listen for team assignment changes in the future" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "ObserveTeamColors", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::AsyncAction_ObserveTeamColors_eventObserveTeamColors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execObserveTeamColors) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ObserveTeamColors**)Z_Param__Result=UAsyncAction_ObserveTeamColors::ObserveTeamColors(Z_Param_TeamAgent); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function ObserveTeamColors + +// Begin Class UAsyncAction_ObserveTeamColors Function OnDisplayAssetChanged +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics +{ + struct AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "OnDisplayAssetChanged", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::AsyncAction_ObserveTeamColors_eventOnDisplayAssetChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execOnDisplayAssetChanged) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDisplayAssetChanged(Z_Param_DisplayAsset); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function OnDisplayAssetChanged + +// Begin Class UAsyncAction_ObserveTeamColors Function OnWatchedAgentChangedTeam +struct Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics +{ + struct AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ObserveTeamColors, nullptr, "OnWatchedAgentChangedTeam", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::AsyncAction_ObserveTeamColors_eventOnWatchedAgentChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ObserveTeamColors::execOnWatchedAgentChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnWatchedAgentChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class UAsyncAction_ObserveTeamColors Function OnWatchedAgentChangedTeam + +// Begin Class UAsyncAction_ObserveTeamColors +void UAsyncAction_ObserveTeamColors::StaticRegisterNativesUAsyncAction_ObserveTeamColors() +{ + UClass* Class = UAsyncAction_ObserveTeamColors::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ObserveTeamColors", &UAsyncAction_ObserveTeamColors::execObserveTeamColors }, + { "OnDisplayAssetChanged", &UAsyncAction_ObserveTeamColors::execOnDisplayAssetChanged }, + { "OnWatchedAgentChangedTeam", &UAsyncAction_ObserveTeamColors::execOnWatchedAgentChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ObserveTeamColors); +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors_NoRegister() +{ + return UAsyncAction_ObserveTeamColors::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team color changes in the specified object\n */" }, +#endif + { "IncludePath", "Teams/AsyncAction_ObserveTeamColors.h" }, + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team color changes in the specified object" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the team is set or changed\n" }, +#endif + { "ModuleRelativePath", "Teams/AsyncAction_ObserveTeamColors.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the team is set or changed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_ObserveTeamColors, "ObserveTeamColors" }, // 2199349967 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnDisplayAssetChanged, "OnDisplayAssetChanged" }, // 2635215523 + { &Z_Construct_UFunction_UAsyncAction_ObserveTeamColors_OnWatchedAgentChangedTeam, "OnWatchedAgentChangedTeam" }, // 995044120 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::NewProp_OnTeamChanged = { "OnTeamChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ObserveTeamColors, OnTeamChanged), Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChanged_MetaData), NewProp_OnTeamChanged_MetaData) }; // 715123841 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::NewProp_OnTeamChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::ClassParams = { + &UAsyncAction_ObserveTeamColors::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ObserveTeamColors() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton, Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_ObserveTeamColors::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ObserveTeamColors); +UAsyncAction_ObserveTeamColors::~UAsyncAction_ObserveTeamColors() {} +// End Class UAsyncAction_ObserveTeamColors + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ObserveTeamColors, UAsyncAction_ObserveTeamColors::StaticClass, TEXT("UAsyncAction_ObserveTeamColors"), &Z_Registration_Info_UClass_UAsyncAction_ObserveTeamColors, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ObserveTeamColors), 487872272U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_2295996095(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h new file mode 100644 index 00000000..3c2e04fd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_ObserveTeamColors.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/AsyncAction_ObserveTeamColors.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ObserveTeamColors; +class ULyraTeamDisplayAsset; +class UObject; +#ifdef LYRAGAME_AsyncAction_ObserveTeamColors_generated_h +#error "AsyncAction_ObserveTeamColors.generated.h already included, missing '#pragma once' in AsyncAction_ObserveTeamColors.h" +#endif +#define LYRAGAME_AsyncAction_ObserveTeamColors_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_14_DELEGATE \ +LYRAGAME_API void FTeamColorObservedAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& TeamColorObservedAsyncDelegate, bool bTeamSet, int32 TeamId, const ULyraTeamDisplayAsset* DisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_RPC_WRAPPERS \ + DECLARE_FUNCTION(execOnDisplayAssetChanged); \ + DECLARE_FUNCTION(execOnWatchedAgentChangedTeam); \ + DECLARE_FUNCTION(execObserveTeamColors); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ObserveTeamColors(); \ + friend struct Z_Construct_UClass_UAsyncAction_ObserveTeamColors_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ObserveTeamColors, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ObserveTeamColors) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ObserveTeamColors(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ObserveTeamColors) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ObserveTeamColors); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ObserveTeamColors); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ObserveTeamColors(UAsyncAction_ObserveTeamColors&&); \ + UAsyncAction_ObserveTeamColors(const UAsyncAction_ObserveTeamColors&); \ +public: \ + NO_API virtual ~UAsyncAction_ObserveTeamColors(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_RPC_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h_22_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_AsyncAction_ObserveTeamColors_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp new file mode 100644 index 00000000..737037bb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.gen.cpp @@ -0,0 +1,228 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Replays/AsyncAction_QueryReplays.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_QueryReplays() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_QueryReplays(); +LYRAGAME_API UClass* Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FQueryReplayAsyncDelegate +struct Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms + { + ULyraReplayList* Results; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms, Results), Z_Construct_UClass_ULyraReplayList_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::NewProp_Results, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "QueryReplayAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::_Script_LyraGame_eventQueryReplayAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FQueryReplayAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& QueryReplayAsyncDelegate, ULyraReplayList* Results) +{ + struct _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms + { + ULyraReplayList* Results; + }; + _Script_LyraGame_eventQueryReplayAsyncDelegate_Parms Parms; + Parms.Results=Results; + QueryReplayAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FQueryReplayAsyncDelegate + +// Begin Class UAsyncAction_QueryReplays Function QueryReplays +struct Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics +{ + struct AsyncAction_QueryReplays_eventQueryReplays_Parms + { + APlayerController* PlayerController; + UAsyncAction_QueryReplays* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Watches for team changes in the specified player controller\n" }, +#endif + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified player controller" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_QueryReplays_eventQueryReplays_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_QueryReplays_eventQueryReplays_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_QueryReplays, nullptr, "QueryReplays", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::AsyncAction_QueryReplays_eventQueryReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::AsyncAction_QueryReplays_eventQueryReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_QueryReplays::execQueryReplays) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_QueryReplays**)Z_Param__Result=UAsyncAction_QueryReplays::QueryReplays(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class UAsyncAction_QueryReplays Function QueryReplays + +// Begin Class UAsyncAction_QueryReplays +void UAsyncAction_QueryReplays::StaticRegisterNativesUAsyncAction_QueryReplays() +{ + UClass* Class = UAsyncAction_QueryReplays::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "QueryReplays", &UAsyncAction_QueryReplays::execQueryReplays }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_QueryReplays); +UClass* Z_Construct_UClass_UAsyncAction_QueryReplays_NoRegister() +{ + return UAsyncAction_QueryReplays::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_QueryReplays_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Watches for team changes in the specified player controller\n */" }, +#endif + { "IncludePath", "Replays/AsyncAction_QueryReplays.h" }, + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Watches for team changes in the specified player controller" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_QueryComplete_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the replay query completes\n" }, +#endif + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the replay query completes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ResultList_MetaData[] = { + { "ModuleRelativePath", "Replays/AsyncAction_QueryReplays.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_QueryComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ResultList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_QueryReplays_QueryReplays, "QueryReplays" }, // 2349585692 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_QueryComplete = { "QueryComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_QueryReplays, QueryComplete), Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_QueryComplete_MetaData), NewProp_QueryComplete_MetaData) }; // 1544130346 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_ResultList = { "ResultList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_QueryReplays, ResultList), Z_Construct_UClass_ULyraReplayList_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ResultList_MetaData), NewProp_ResultList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_QueryComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::NewProp_ResultList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::ClassParams = { + &UAsyncAction_QueryReplays::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_QueryReplays() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton, Z_Construct_UClass_UAsyncAction_QueryReplays_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_QueryReplays.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UAsyncAction_QueryReplays::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_QueryReplays); +UAsyncAction_QueryReplays::~UAsyncAction_QueryReplays() {} +// End Class UAsyncAction_QueryReplays + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_QueryReplays, UAsyncAction_QueryReplays::StaticClass, TEXT("UAsyncAction_QueryReplays"), &Z_Registration_Info_UClass_UAsyncAction_QueryReplays, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_QueryReplays), 58345850U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_3227735304(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h new file mode 100644 index 00000000..12b08079 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/AsyncAction_QueryReplays.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Replays/AsyncAction_QueryReplays.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_QueryReplays; +class ULyraReplayList; +#ifdef LYRAGAME_AsyncAction_QueryReplays_generated_h +#error "AsyncAction_QueryReplays.generated.h already included, missing '#pragma once' in AsyncAction_QueryReplays.h" +#endif +#define LYRAGAME_AsyncAction_QueryReplays_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_17_DELEGATE \ +LYRAGAME_API void FQueryReplayAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& QueryReplayAsyncDelegate, ULyraReplayList* Results); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execQueryReplays); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_QueryReplays(); \ + friend struct Z_Construct_UClass_UAsyncAction_QueryReplays_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_QueryReplays, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_QueryReplays) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_QueryReplays(UAsyncAction_QueryReplays&&); \ + UAsyncAction_QueryReplays(const UAsyncAction_QueryReplays&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_QueryReplays); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_QueryReplays); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_QueryReplays) \ + NO_API virtual ~UAsyncAction_QueryReplays(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Replays_AsyncAction_QueryReplays_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp new file mode 100644 index 00000000..2667708e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.gen.cpp @@ -0,0 +1,218 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/CircumferenceMarkerWidget.h" +#include "LyraGame/UI/Weapons/SCircumferenceMarkerWidget.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCircumferenceMarkerWidget() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UCircumferenceMarkerWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_UCircumferenceMarkerWidget_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UCircumferenceMarkerWidget Function SetRadius +struct Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics +{ + struct CircumferenceMarkerWidget_eventSetRadius_Parms + { + float InRadius; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the radius of the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the radius of the circle." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::NewProp_InRadius = { "InRadius", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CircumferenceMarkerWidget_eventSetRadius_Parms, InRadius), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::NewProp_InRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCircumferenceMarkerWidget, nullptr, "SetRadius", nullptr, nullptr, Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::CircumferenceMarkerWidget_eventSetRadius_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::CircumferenceMarkerWidget_eventSetRadius_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCircumferenceMarkerWidget::execSetRadius) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InRadius); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetRadius(Z_Param_InRadius); + P_NATIVE_END; +} +// End Class UCircumferenceMarkerWidget Function SetRadius + +// Begin Class UCircumferenceMarkerWidget +void UCircumferenceMarkerWidget::StaticRegisterNativesUCircumferenceMarkerWidget() +{ + UClass* Class = UCircumferenceMarkerWidget::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetRadius", &UCircumferenceMarkerWidget::execSetRadius }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCircumferenceMarkerWidget); +UClass* Z_Construct_UClass_UCircumferenceMarkerWidget_NoRegister() +{ + return UCircumferenceMarkerWidget::StaticClass(); +} +struct Z_Construct_UClass_UCircumferenceMarkerWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MarkerList_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The list of positions/orientations to draw the markers at. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of positions/orientations to draw the markers at." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Radius_MetaData[] = { + { "Category", "Appearance" }, + { "ClampMin", "0.000000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The radius of the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The radius of the circle." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to place around the circle. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to place around the circle." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bReticleCornerOutsideSpreadRadius_MetaData[] = { + { "Category", "Corner" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether reticle corner images are placed outside the spread radius *///@TODO: Make this a 0-1 float alignment instead (e.g., inside/on/outside the radius)?\n" }, +#endif + { "ModuleRelativePath", "UI/Weapons/CircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether reticle corner images are placed outside the spread radius //@TODO: Make this a 0-1 float alignment instead (e.g., inside/on/outside the radius)?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MarkerList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MarkerList; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Radius; + static const UECodeGen_Private::FStructPropertyParams NewProp_MarkerImage; + static void NewProp_bReticleCornerOutsideSpreadRadius_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bReticleCornerOutsideSpreadRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCircumferenceMarkerWidget_SetRadius, "SetRadius" }, // 1066622100 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList_Inner = { "MarkerList", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry, METADATA_PARAMS(0, nullptr) }; // 3476315904 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList = { "MarkerList", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, MarkerList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MarkerList_MetaData), NewProp_MarkerList_MetaData) }; // 3476315904 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_Radius = { "Radius", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, Radius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Radius_MetaData), NewProp_Radius_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerImage = { "MarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCircumferenceMarkerWidget, MarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MarkerImage_MetaData), NewProp_MarkerImage_MetaData) }; // 4269649686 +void Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius_SetBit(void* Obj) +{ + ((UCircumferenceMarkerWidget*)Obj)->bReticleCornerOutsideSpreadRadius = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius = { "bReticleCornerOutsideSpreadRadius", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UCircumferenceMarkerWidget), &Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bReticleCornerOutsideSpreadRadius_MetaData), NewProp_bReticleCornerOutsideSpreadRadius_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_Radius, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_MarkerImage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::NewProp_bReticleCornerOutsideSpreadRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::ClassParams = { + &UCircumferenceMarkerWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCircumferenceMarkerWidget() +{ + if (!Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton, Z_Construct_UClass_UCircumferenceMarkerWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCircumferenceMarkerWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UCircumferenceMarkerWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCircumferenceMarkerWidget); +UCircumferenceMarkerWidget::~UCircumferenceMarkerWidget() {} +// End Class UCircumferenceMarkerWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCircumferenceMarkerWidget, UCircumferenceMarkerWidget::StaticClass, TEXT("UCircumferenceMarkerWidget"), &Z_Registration_Info_UClass_UCircumferenceMarkerWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCircumferenceMarkerWidget), 2693132380U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_4024659510(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h new file mode 100644 index 00000000..5a6954d2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/CircumferenceMarkerWidget.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/CircumferenceMarkerWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_CircumferenceMarkerWidget_generated_h +#error "CircumferenceMarkerWidget.generated.h already included, missing '#pragma once' in CircumferenceMarkerWidget.h" +#endif +#define LYRAGAME_CircumferenceMarkerWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetRadius); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCircumferenceMarkerWidget(); \ + friend struct Z_Construct_UClass_UCircumferenceMarkerWidget_Statics; \ +public: \ + DECLARE_CLASS(UCircumferenceMarkerWidget, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UCircumferenceMarkerWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCircumferenceMarkerWidget(UCircumferenceMarkerWidget&&); \ + UCircumferenceMarkerWidget(const UCircumferenceMarkerWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCircumferenceMarkerWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCircumferenceMarkerWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCircumferenceMarkerWidget) \ + NO_API virtual ~UCircumferenceMarkerWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_CircumferenceMarkerWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp new file mode 100644 index 00000000..4ec1d73c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.gen.cpp @@ -0,0 +1,398 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddAbilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddAbilities() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataTable_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityGrant(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAttributeSetGrant(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilityGrant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityGrant; +class UScriptStruct* FLyraAbilityGrant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityGrant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityGrant")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityGrant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityGrant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityType_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAbilityGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Type of ability to grant\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Type of ability to grant" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_AbilityType; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewProp_AbilityType = { "AbilityType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityGrant, AbilityType), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityType_MetaData), NewProp_AbilityType_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewProp_AbilityType, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityGrant", + Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::PropPointers), + sizeof(FLyraAbilityGrant), + alignof(FLyraAbilityGrant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityGrant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityGrant.InnerSingleton; +} +// End ScriptStruct FLyraAbilityGrant + +// Begin ScriptStruct FLyraAttributeSetGrant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant; +class UScriptStruct* FLyraAttributeSetGrant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAttributeSetGrant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAttributeSetGrant")); + } + return Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAttributeSetGrant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttributeSetType_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAttributeSetGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability set to grant\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability set to grant" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitializationData_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraAttributeSetGrant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Data table referent to initialize the attributes with, if any (can be left unset)\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Data table referent to initialize the attributes with, if any (can be left unset)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_AttributeSetType; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InitializationData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_AttributeSetType = { "AttributeSetType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAttributeSetGrant, AttributeSetType), Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttributeSetType_MetaData), NewProp_AttributeSetType_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_InitializationData = { "InitializationData", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAttributeSetGrant, InitializationData), Z_Construct_UClass_UDataTable_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitializationData_MetaData), NewProp_InitializationData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_AttributeSetType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewProp_InitializationData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAttributeSetGrant", + Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::PropPointers), + sizeof(FLyraAttributeSetGrant), + alignof(FLyraAttributeSetGrant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAttributeSetGrant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton, Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant.InnerSingleton; +} +// End ScriptStruct FLyraAttributeSetGrant + +// Begin ScriptStruct FGameFeatureAbilitiesEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry; +class UScriptStruct* FGameFeatureAbilitiesEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameFeatureAbilitiesEntry")); + } + return Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameFeatureAbilitiesEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorClass_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base actor class to add to\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base actor class to add to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAbilities_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of abilities to grant to actors of the specified class\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of abilities to grant to actors of the specified class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributes_MetaData[] = { + { "Category", "Attributes" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of attribute sets to grant to actors of the specified class \n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of attribute sets to grant to actors of the specified class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAbilitySets_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Attributes" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of ability sets to grant to actors of the specified class\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of ability sets to grant to actors of the specified class" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ActorClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAbilities_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAttributes_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributes; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_GrantedAbilitySets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAbilitySets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_ActorClass = { "ActorClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, ActorClass), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorClass_MetaData), NewProp_ActorClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities_Inner = { "GrantedAbilities", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilityGrant, METADATA_PARAMS(0, nullptr) }; // 23572149 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities = { "GrantedAbilities", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAbilities), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAbilities_MetaData), NewProp_GrantedAbilities_MetaData) }; // 23572149 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes_Inner = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAttributeSetGrant, METADATA_PARAMS(0, nullptr) }; // 2721527875 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAttributes), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributes_MetaData), NewProp_GrantedAttributes_MetaData) }; // 2721527875 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets_Inner = { "GrantedAbilitySets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets = { "GrantedAbilitySets", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameFeatureAbilitiesEntry, GrantedAbilitySets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAbilitySets_MetaData), NewProp_GrantedAbilitySets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_ActorClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAttributes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewProp_GrantedAbilitySets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GameFeatureAbilitiesEntry", + Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::PropPointers), + sizeof(FGameFeatureAbilitiesEntry), + alignof(FGameFeatureAbilitiesEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry() +{ + if (!Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry.InnerSingleton; +} +// End ScriptStruct FGameFeatureAbilitiesEntry + +// Begin Class UGameFeatureAction_AddAbilities +void UGameFeatureAction_AddAbilities::StaticRegisterNativesUGameFeatureAction_AddAbilities() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddAbilities); +UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities_NoRegister() +{ + return UGameFeatureAction_AddAbilities::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Add Abilities" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitiesList_MetaData[] = { + { "Category", "Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddAbilities.h" }, + { "ShowOnlyInnerProperties", "" }, + { "TitleProperty", "ActorClass" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilitiesList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitiesList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList_Inner = { "AbilitiesList", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry, METADATA_PARAMS(0, nullptr) }; // 3194784580 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList = { "AbilitiesList", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddAbilities, AbilitiesList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitiesList_MetaData), NewProp_AbilitiesList_MetaData) }; // 3194784580 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::NewProp_AbilitiesList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::ClassParams = { + &UGameFeatureAction_AddAbilities::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddAbilities() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddAbilities::StaticClass(); +} +UGameFeatureAction_AddAbilities::UGameFeatureAction_AddAbilities(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddAbilities); +UGameFeatureAction_AddAbilities::~UGameFeatureAction_AddAbilities() {} +// End Class UGameFeatureAction_AddAbilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityGrant::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics::NewStructOps, TEXT("LyraAbilityGrant"), &Z_Registration_Info_UScriptStruct_LyraAbilityGrant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityGrant), 23572149U) }, + { FLyraAttributeSetGrant::StaticStruct, Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics::NewStructOps, TEXT("LyraAttributeSetGrant"), &Z_Registration_Info_UScriptStruct_LyraAttributeSetGrant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAttributeSetGrant), 2721527875U) }, + { FGameFeatureAbilitiesEntry::StaticStruct, Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics::NewStructOps, TEXT("GameFeatureAbilitiesEntry"), &Z_Registration_Info_UScriptStruct_GameFeatureAbilitiesEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameFeatureAbilitiesEntry), 3194784580U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddAbilities, UGameFeatureAction_AddAbilities::StaticClass, TEXT("UGameFeatureAction_AddAbilities"), &Z_Registration_Info_UClass_UGameFeatureAction_AddAbilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddAbilities), 4006559623U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_1745660388(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h new file mode 100644 index 00000000..4277600a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddAbilities.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddAbilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddAbilities_generated_h +#error "GameFeatureAction_AddAbilities.generated.h already included, missing '#pragma once' in GameFeatureAction_AddAbilities.h" +#endif +#define LYRAGAME_GameFeatureAction_AddAbilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityGrant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_35_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAttributeSetGrant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_49_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameFeatureAbilitiesEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddAbilities(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddAbilities_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddAbilities, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddAbilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddAbilities(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddAbilities(UGameFeatureAction_AddAbilities&&); \ + UGameFeatureAction_AddAbilities(const UGameFeatureAction_AddAbilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddAbilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddAbilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddAbilities) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddAbilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_74_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h_77_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddAbilities_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp new file mode 100644 index 00000000..1ba061a7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.gen.cpp @@ -0,0 +1,120 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddGameplayCuePath.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddGameplayCuePath() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FDirectoryPath(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_AddGameplayCuePath +void UGameFeatureAction_AddGameplayCuePath::StaticRegisterNativesUGameFeatureAction_AddGameplayCuePath() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddGameplayCuePath); +UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_NoRegister() +{ + return UGameFeatureAction_AddGameplayCuePath::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for adding gameplay cue paths to the gameplay cue manager.\n *\n * @see UAbilitySystemGlobals::GameplayCueNotifyPaths\n */" }, +#endif + { "DisplayName", "Add Gameplay Cue Path" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for adding gameplay cue paths to the gameplay cue manager.\n\n@see UAbilitySystemGlobals::GameplayCueNotifyPaths" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DirectoryPathsToAdd_MetaData[] = { + { "Category", "Game Feature | Gameplay Cues" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of paths to register to the gameplay cue manager. These are relative tot he game content directory */" }, +#endif + { "LongPackageName", "" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" }, + { "RelativeToGameContentDir", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of paths to register to the gameplay cue manager. These are relative tot he game content directory" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DirectoryPathsToAdd_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DirectoryPathsToAdd; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd_Inner = { "DirectoryPathsToAdd", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FDirectoryPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd = { "DirectoryPathsToAdd", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddGameplayCuePath, DirectoryPathsToAdd), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DirectoryPathsToAdd_MetaData), NewProp_DirectoryPathsToAdd_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::NewProp_DirectoryPathsToAdd, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::ClassParams = { + &UGameFeatureAction_AddGameplayCuePath::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddGameplayCuePath::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddGameplayCuePath); +UGameFeatureAction_AddGameplayCuePath::~UGameFeatureAction_AddGameplayCuePath() {} +// End Class UGameFeatureAction_AddGameplayCuePath + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath, UGameFeatureAction_AddGameplayCuePath::StaticClass, TEXT("UGameFeatureAction_AddGameplayCuePath"), &Z_Registration_Info_UClass_UGameFeatureAction_AddGameplayCuePath, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddGameplayCuePath), 3820482031U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_3240366981(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h new file mode 100644 index 00000000..7c9d4c87 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddGameplayCuePath.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddGameplayCuePath.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddGameplayCuePath_generated_h +#error "GameFeatureAction_AddGameplayCuePath.generated.h already included, missing '#pragma once' in GameFeatureAction_AddGameplayCuePath.h" +#endif +#define LYRAGAME_GameFeatureAction_AddGameplayCuePath_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddGameplayCuePath(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddGameplayCuePath_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddGameplayCuePath, UGameFeatureAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddGameplayCuePath) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddGameplayCuePath(UGameFeatureAction_AddGameplayCuePath&&); \ + UGameFeatureAction_AddGameplayCuePath(const UGameFeatureAction_AddGameplayCuePath&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddGameplayCuePath); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddGameplayCuePath); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameFeatureAction_AddGameplayCuePath) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddGameplayCuePath(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddGameplayCuePath_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp new file mode 100644 index 00000000..74ec707c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputBinding.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddInputBinding() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_AddInputBinding +void UGameFeatureAction_AddInputBinding::StaticRegisterNativesUGameFeatureAction_AddInputBinding() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddInputBinding); +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding_NoRegister() +{ + return UGameFeatureAction_AddInputBinding::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Adds InputMappingContext to local players' EnhancedInput system. \n * Expects that local players are set up to use the EnhancedInput system.\n */" }, +#endif + { "DisplayName", "Add Input Binds" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds InputMappingContext to local players' EnhancedInput system.\nExpects that local players are set up to use the EnhancedInput system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfigs_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~ End UObject interface\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputBinding.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InputConfigs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InputConfigs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs_Inner = { "InputConfigs", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInputConfig_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs = { "InputConfigs", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddInputBinding, InputConfigs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfigs_MetaData), NewProp_InputConfigs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::NewProp_InputConfigs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::ClassParams = { + &UGameFeatureAction_AddInputBinding::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputBinding() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddInputBinding::StaticClass(); +} +UGameFeatureAction_AddInputBinding::UGameFeatureAction_AddInputBinding(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddInputBinding); +UGameFeatureAction_AddInputBinding::~UGameFeatureAction_AddInputBinding() {} +// End Class UGameFeatureAction_AddInputBinding + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddInputBinding, UGameFeatureAction_AddInputBinding::StaticClass, TEXT("UGameFeatureAction_AddInputBinding"), &Z_Registration_Info_UClass_UGameFeatureAction_AddInputBinding, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddInputBinding), 3548439855U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_1118814399(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h new file mode 100644 index 00000000..ffbece7f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputBinding.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddInputBinding.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddInputBinding_generated_h +#error "GameFeatureAction_AddInputBinding.generated.h already included, missing '#pragma once' in GameFeatureAction_AddInputBinding.h" +#endif +#define LYRAGAME_GameFeatureAction_AddInputBinding_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddInputBinding(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddInputBinding_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddInputBinding, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddInputBinding) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddInputBinding(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddInputBinding(UGameFeatureAction_AddInputBinding&&); \ + UGameFeatureAction_AddInputBinding(const UGameFeatureAction_AddInputBinding&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddInputBinding); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddInputBinding); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddInputBinding) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddInputBinding(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputBinding_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp new file mode 100644 index 00000000..278ba9dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.gen.cpp @@ -0,0 +1,213 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddInputContextMapping() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputMappingContext_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInputMappingContextAndPriority +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority; +class UScriptStruct* FInputMappingContextAndPriority::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInputMappingContextAndPriority, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InputMappingContextAndPriority")); + } + return Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInputMappingContextAndPriority::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMapping_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "Input" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Higher priority input mappings will be prioritized over mappings with a lower priority.\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Higher priority input mappings will be prioritized over mappings with a lower priority." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRegisterWithSettings_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, then this mapping context will be registered with the settings when this game feature action is registered. */" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, then this mapping context will be registered with the settings when this game feature action is registered." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_InputMapping; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static void NewProp_bRegisterWithSettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRegisterWithSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_InputMapping = { "InputMapping", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInputMappingContextAndPriority, InputMapping), Z_Construct_UClass_UInputMappingContext_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMapping_MetaData), NewProp_InputMapping_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInputMappingContextAndPriority, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +void Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings_SetBit(void* Obj) +{ + ((FInputMappingContextAndPriority*)Obj)->bRegisterWithSettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings = { "bRegisterWithSettings", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FInputMappingContextAndPriority), &Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRegisterWithSettings_MetaData), NewProp_bRegisterWithSettings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_InputMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewProp_bRegisterWithSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InputMappingContextAndPriority", + Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::PropPointers), + sizeof(FInputMappingContextAndPriority), + alignof(FInputMappingContextAndPriority), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority() +{ + if (!Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton, Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority.InnerSingleton; +} +// End ScriptStruct FInputMappingContextAndPriority + +// Begin Class UGameFeatureAction_AddInputContextMapping +void UGameFeatureAction_AddInputContextMapping::StaticRegisterNativesUGameFeatureAction_AddInputContextMapping() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddInputContextMapping); +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_NoRegister() +{ + return UGameFeatureAction_AddInputContextMapping::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Adds InputMappingContext to local players' EnhancedInput system. \n * Expects that local players are set up to use the EnhancedInput system.\n */" }, +#endif + { "DisplayName", "Add Input Mapping" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds InputMappingContext to local players' EnhancedInput system.\nExpects that local players are set up to use the EnhancedInput system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMappings_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UObject interface\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddInputContextMapping.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputMappings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InputMappings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings_Inner = { "InputMappings", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputMappingContextAndPriority, METADATA_PARAMS(0, nullptr) }; // 1299260669 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings = { "InputMappings", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddInputContextMapping, InputMappings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMappings_MetaData), NewProp_InputMappings_MetaData) }; // 1299260669 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::NewProp_InputMappings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::ClassParams = { + &UGameFeatureAction_AddInputContextMapping::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddInputContextMapping::StaticClass(); +} +UGameFeatureAction_AddInputContextMapping::UGameFeatureAction_AddInputContextMapping(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddInputContextMapping); +UGameFeatureAction_AddInputContextMapping::~UGameFeatureAction_AddInputContextMapping() {} +// End Class UGameFeatureAction_AddInputContextMapping + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInputMappingContextAndPriority::StaticStruct, Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics::NewStructOps, TEXT("InputMappingContextAndPriority"), &Z_Registration_Info_UScriptStruct_InputMappingContextAndPriority, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInputMappingContextAndPriority), 1299260669U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping, UGameFeatureAction_AddInputContextMapping::StaticClass, TEXT("UGameFeatureAction_AddInputContextMapping"), &Z_Registration_Info_UClass_UGameFeatureAction_AddInputContextMapping, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddInputContextMapping), 1051781548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_1778785110(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h new file mode 100644 index 00000000..d8be1f6b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddInputContextMapping.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddInputContextMapping.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddInputContextMapping_generated_h +#error "GameFeatureAction_AddInputContextMapping.generated.h already included, missing '#pragma once' in GameFeatureAction_AddInputContextMapping.h" +#endif +#define LYRAGAME_GameFeatureAction_AddInputContextMapping_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInputMappingContextAndPriority_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddInputContextMapping(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddInputContextMapping_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddInputContextMapping, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddInputContextMapping) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddInputContextMapping(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddInputContextMapping(UGameFeatureAction_AddInputContextMapping&&); \ + UGameFeatureAction_AddInputContextMapping(const UGameFeatureAction_AddInputContextMapping&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddInputContextMapping); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddInputContextMapping); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddInputContextMapping) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddInputContextMapping(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_36_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h_39_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddInputContextMapping_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp new file mode 100644 index 00000000..92207ba3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.gen.cpp @@ -0,0 +1,309 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_AddWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDElementEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDLayoutRequest(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraHUDLayoutRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest; +class UScriptStruct* FLyraHUDLayoutRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraHUDLayoutRequest")); + } + return Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraHUDLayoutRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayoutClass_MetaData[] = { + { "AssetBundles", "Client" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layout widget to spawn\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layout widget to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerID_MetaData[] = { + { "Categories", "UI.Layer" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to insert the widget in\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to insert the widget in" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LayoutClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayoutClass = { "LayoutClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDLayoutRequest, LayoutClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayoutClass_MetaData), NewProp_LayoutClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayerID = { "LayerID", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDLayoutRequest, LayerID), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerID_MetaData), NewProp_LayerID_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayoutClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewProp_LayerID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraHUDLayoutRequest", + Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::PropPointers), + sizeof(FLyraHUDLayoutRequest), + alignof(FLyraHUDLayoutRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDLayoutRequest() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest.InnerSingleton; +} +// End ScriptStruct FLyraHUDLayoutRequest + +// Begin ScriptStruct FLyraHUDElementEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraHUDElementEntry; +class UScriptStruct* FLyraHUDElementEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraHUDElementEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraHUDElementEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraHUDElementEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AssetBundles", "Client" }, + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The widget to spawn\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlotID_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The slot ID where we should place this widget\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The slot ID where we should place this widget" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlotID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDElementEntry, WidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_SlotID = { "SlotID", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraHUDElementEntry, SlotID), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlotID_MetaData), NewProp_SlotID_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewProp_SlotID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraHUDElementEntry", + Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::PropPointers), + sizeof(FLyraHUDElementEntry), + alignof(FLyraHUDElementEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraHUDElementEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraHUDElementEntry.InnerSingleton; +} +// End ScriptStruct FLyraHUDElementEntry + +// Begin Class UGameFeatureAction_AddWidgets +void UGameFeatureAction_AddWidgets::StaticRegisterNativesUGameFeatureAction_AddWidgets() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_AddWidgets); +UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets_NoRegister() +{ + return UGameFeatureAction_AddWidgets::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Add Widgets" }, + { "IncludePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layout_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layout to add to the HUD\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "TitleProperty", "{LayerID} -> {LayoutClass}" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layout to add to the HUD" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widgets_MetaData[] = { + { "Category", "UI" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Widgets to add to the HUD\n" }, +#endif + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_AddWidget.h" }, + { "TitleProperty", "{SlotID} -> {WidgetClass}" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Widgets to add to the HUD" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Layout_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Layout; + static const UECodeGen_Private::FStructPropertyParams NewProp_Widgets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Widgets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout_Inner = { "Layout", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest, METADATA_PARAMS(0, nullptr) }; // 264733097 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout = { "Layout", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddWidgets, Layout), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layout_MetaData), NewProp_Layout_MetaData) }; // 264733097 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets_Inner = { "Widgets", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraHUDElementEntry, METADATA_PARAMS(0, nullptr) }; // 1018170076 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets = { "Widgets", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameFeatureAction_AddWidgets, Widgets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widgets_MetaData), NewProp_Widgets_MetaData) }; // 1018170076 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Layout, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::NewProp_Widgets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::ClassParams = { + &UGameFeatureAction_AddWidgets::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_AddWidgets() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_AddWidgets::StaticClass(); +} +UGameFeatureAction_AddWidgets::UGameFeatureAction_AddWidgets(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_AddWidgets); +UGameFeatureAction_AddWidgets::~UGameFeatureAction_AddWidgets() {} +// End Class UGameFeatureAction_AddWidgets + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraHUDLayoutRequest::StaticStruct, Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics::NewStructOps, TEXT("LyraHUDLayoutRequest"), &Z_Registration_Info_UScriptStruct_LyraHUDLayoutRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraHUDLayoutRequest), 264733097U) }, + { FLyraHUDElementEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics::NewStructOps, TEXT("LyraHUDElementEntry"), &Z_Registration_Info_UScriptStruct_LyraHUDElementEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraHUDElementEntry), 1018170076U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_AddWidgets, UGameFeatureAction_AddWidgets::StaticClass, TEXT("UGameFeatureAction_AddWidgets"), &Z_Registration_Info_UClass_UGameFeatureAction_AddWidgets, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_AddWidgets), 3124192335U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_2590366624(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h new file mode 100644 index 00000000..f9711d84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_AddWidget.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_AddWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_AddWidget_generated_h +#error "GameFeatureAction_AddWidget.generated.h already included, missing '#pragma once' in GameFeatureAction_AddWidget.h" +#endif +#define LYRAGAME_GameFeatureAction_AddWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraHUDLayoutRequest_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_32_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraHUDElementEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_AddWidgets(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_AddWidgets_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_AddWidgets, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_AddWidgets) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_AddWidgets(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_AddWidgets(UGameFeatureAction_AddWidgets&&); \ + UGameFeatureAction_AddWidgets(const UGameFeatureAction_AddWidgets&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_AddWidgets); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_AddWidgets); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_AddWidgets) \ + LYRAGAME_API virtual ~UGameFeatureAction_AddWidgets(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h_52_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_AddWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp new file mode 100644 index 00000000..6fdafd72 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.gen.cpp @@ -0,0 +1,114 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_SplitscreenConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_SplitscreenConfig() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_SplitscreenConfig +void UGameFeatureAction_SplitscreenConfig::StaticRegisterNativesUGameFeatureAction_SplitscreenConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_SplitscreenConfig); +UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_NoRegister() +{ + return UGameFeatureAction_SplitscreenConfig::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type.\n */" }, +#endif + { "DisplayName", "Splitscreen Config" }, + { "IncludePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "GameFeatureAction responsible for granting abilities (and attributes) to actors of a specified type." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableSplitscreen_MetaData[] = { + { "Category", "Action" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_SplitscreenConfig.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bDisableSplitscreen_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableSplitscreen; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen_SetBit(void* Obj) +{ + ((UGameFeatureAction_SplitscreenConfig*)Obj)->bDisableSplitscreen = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen = { "bDisableSplitscreen", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UGameFeatureAction_SplitscreenConfig), &Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableSplitscreen_MetaData), NewProp_bDisableSplitscreen_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::NewProp_bDisableSplitscreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction_WorldActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::ClassParams = { + &UGameFeatureAction_SplitscreenConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::PropPointers), + 0, + 0x002810A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_SplitscreenConfig::StaticClass(); +} +UGameFeatureAction_SplitscreenConfig::UGameFeatureAction_SplitscreenConfig(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_SplitscreenConfig); +UGameFeatureAction_SplitscreenConfig::~UGameFeatureAction_SplitscreenConfig() {} +// End Class UGameFeatureAction_SplitscreenConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig, UGameFeatureAction_SplitscreenConfig::StaticClass, TEXT("UGameFeatureAction_SplitscreenConfig"), &Z_Registration_Info_UClass_UGameFeatureAction_SplitscreenConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_SplitscreenConfig), 2219805128U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_730484118(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h new file mode 100644 index 00000000..a366ff1c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_SplitscreenConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_SplitscreenConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_SplitscreenConfig_generated_h +#error "GameFeatureAction_SplitscreenConfig.generated.h already included, missing '#pragma once' in GameFeatureAction_SplitscreenConfig.h" +#endif +#define LYRAGAME_GameFeatureAction_SplitscreenConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_SplitscreenConfig(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_SplitscreenConfig_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_SplitscreenConfig, UGameFeatureAction_WorldActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_SplitscreenConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UGameFeatureAction_SplitscreenConfig(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_SplitscreenConfig(UGameFeatureAction_SplitscreenConfig&&); \ + UGameFeatureAction_SplitscreenConfig(const UGameFeatureAction_SplitscreenConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UGameFeatureAction_SplitscreenConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_SplitscreenConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_SplitscreenConfig) \ + LYRAGAME_API virtual ~UGameFeatureAction_SplitscreenConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_SplitscreenConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp new file mode 100644 index 00000000..076bacab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.gen.cpp @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/GameFeatureAction_WorldActionBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameFeatureAction_WorldActionBase() {} + +// Begin Cross Module References +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameFeatureAction_WorldActionBase +void UGameFeatureAction_WorldActionBase::StaticRegisterNativesUGameFeatureAction_WorldActionBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameFeatureAction_WorldActionBase); +UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase_NoRegister() +{ + return UGameFeatureAction_WorldActionBase::StaticClass(); +} +struct Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Base class for GameFeatureActions that wish to do something world specific.\n */" }, +#endif + { "IncludePath", "GameFeatures/GameFeatureAction_WorldActionBase.h" }, + { "ModuleRelativePath", "GameFeatures/GameFeatureAction_WorldActionBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Base class for GameFeatureActions that wish to do something world specific." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFeatureAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::ClassParams = { + &UGameFeatureAction_WorldActionBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x002010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameFeatureAction_WorldActionBase() +{ + if (!Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton, Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameFeatureAction_WorldActionBase::StaticClass(); +} +UGameFeatureAction_WorldActionBase::UGameFeatureAction_WorldActionBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameFeatureAction_WorldActionBase); +UGameFeatureAction_WorldActionBase::~UGameFeatureAction_WorldActionBase() {} +// End Class UGameFeatureAction_WorldActionBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameFeatureAction_WorldActionBase, UGameFeatureAction_WorldActionBase::StaticClass, TEXT("UGameFeatureAction_WorldActionBase"), &Z_Registration_Info_UClass_UGameFeatureAction_WorldActionBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameFeatureAction_WorldActionBase), 2307205903U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_2407313128(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h new file mode 100644 index 00000000..5ae83b26 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameFeatureAction_WorldActionBase.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/GameFeatureAction_WorldActionBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameFeatureAction_WorldActionBase_generated_h +#error "GameFeatureAction_WorldActionBase.generated.h already included, missing '#pragma once' in GameFeatureAction_WorldActionBase.h" +#endif +#define LYRAGAME_GameFeatureAction_WorldActionBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameFeatureAction_WorldActionBase(); \ + friend struct Z_Construct_UClass_UGameFeatureAction_WorldActionBase_Statics; \ +public: \ + DECLARE_CLASS(UGameFeatureAction_WorldActionBase, UGameFeatureAction, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UGameFeatureAction_WorldActionBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameFeatureAction_WorldActionBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameFeatureAction_WorldActionBase(UGameFeatureAction_WorldActionBase&&); \ + UGameFeatureAction_WorldActionBase(const UGameFeatureAction_WorldActionBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameFeatureAction_WorldActionBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameFeatureAction_WorldActionBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameFeatureAction_WorldActionBase) \ + NO_API virtual ~UGameFeatureAction_WorldActionBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_GameFeatureAction_WorldActionBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp new file mode 100644 index 00000000..38d0441e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayAbilityTargetActor_Interact() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Trace(); +LYRAGAME_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact(); +LYRAGAME_API UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class AGameplayAbilityTargetActor_Interact +void AGameplayAbilityTargetActor_Interact::StaticRegisterNativesAGameplayAbilityTargetActor_Interact() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AGameplayAbilityTargetActor_Interact); +UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_NoRegister() +{ + return AGameplayAbilityTargetActor_Interact::StaticClass(); +} +struct Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Intermediate base class for all interaction target actors. */" }, +#endif + { "IncludePath", "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Intermediate base class for all interaction target actors." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameplayAbilityTargetActor_Trace, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::ClassParams = { + &AGameplayAbilityTargetActor_Interact::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::Class_MetaDataParams), Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AGameplayAbilityTargetActor_Interact() +{ + if (!Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton, Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return AGameplayAbilityTargetActor_Interact::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AGameplayAbilityTargetActor_Interact); +AGameplayAbilityTargetActor_Interact::~AGameplayAbilityTargetActor_Interact() {} +// End Class AGameplayAbilityTargetActor_Interact + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AGameplayAbilityTargetActor_Interact, AGameplayAbilityTargetActor_Interact::StaticClass, TEXT("AGameplayAbilityTargetActor_Interact"), &Z_Registration_Info_UClass_AGameplayAbilityTargetActor_Interact, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AGameplayAbilityTargetActor_Interact), 3276221668U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_3519761287(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h new file mode 100644 index 00000000..99f15bb2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayAbilityTargetActor_Interact.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Abilities/GameplayAbilityTargetActor_Interact.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayAbilityTargetActor_Interact_generated_h +#error "GameplayAbilityTargetActor_Interact.generated.h already included, missing '#pragma once' in GameplayAbilityTargetActor_Interact.h" +#endif +#define LYRAGAME_GameplayAbilityTargetActor_Interact_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAGameplayAbilityTargetActor_Interact(); \ + friend struct Z_Construct_UClass_AGameplayAbilityTargetActor_Interact_Statics; \ +public: \ + DECLARE_CLASS(AGameplayAbilityTargetActor_Interact, AGameplayAbilityTargetActor_Trace, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(AGameplayAbilityTargetActor_Interact) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AGameplayAbilityTargetActor_Interact(AGameplayAbilityTargetActor_Interact&&); \ + AGameplayAbilityTargetActor_Interact(const AGameplayAbilityTargetActor_Interact&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AGameplayAbilityTargetActor_Interact); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AGameplayAbilityTargetActor_Interact); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AGameplayAbilityTargetActor_Interact) \ + NO_API virtual ~AGameplayAbilityTargetActor_Interact(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_GameplayAbilityTargetActor_Interact_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp new file mode 100644 index 00000000..a211f426 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/GameplayMessageProcessor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UGameplayMessageProcessor +void UGameplayMessageProcessor::StaticRegisterNativesUGameplayMessageProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameplayMessageProcessor); +UClass* Z_Construct_UClass_UGameplayMessageProcessor_NoRegister() +{ + return UGameplayMessageProcessor::StaticClass(); +} +struct Z_Construct_UClass_UGameplayMessageProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UGameplayMessageProcessor\n * \n * Base class for any message processor which observes other gameplay messages\n * and potentially re-emits updates (e.g., when a chain or combo is detected)\n * \n * Note that these processors are spawned on the server once (not per player)\n * and should do their own internal filtering if only relevant for some players.\n */" }, +#endif + { "IncludePath", "Messages/GameplayMessageProcessor.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Messages/GameplayMessageProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameplayMessageProcessor\n\nBase class for any message processor which observes other gameplay messages\nand potentially re-emits updates (e.g., when a chain or combo is detected)\n\nNote that these processors are spawned on the server once (not per player)\nand should do their own internal filtering if only relevant for some players." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameplayMessageProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameplayMessageProcessor_Statics::ClassParams = { + &UGameplayMessageProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameplayMessageProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameplayMessageProcessor() +{ + if (!Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton, Z_Construct_UClass_UGameplayMessageProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameplayMessageProcessor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UGameplayMessageProcessor::StaticClass(); +} +UGameplayMessageProcessor::UGameplayMessageProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameplayMessageProcessor); +UGameplayMessageProcessor::~UGameplayMessageProcessor() {} +// End Class UGameplayMessageProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameplayMessageProcessor, UGameplayMessageProcessor::StaticClass, TEXT("UGameplayMessageProcessor"), &Z_Registration_Info_UClass_UGameplayMessageProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameplayMessageProcessor), 960492463U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_3993301078(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h new file mode 100644 index 00000000..7e666665 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayMessageProcessor.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/GameplayMessageProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayMessageProcessor_generated_h +#error "GameplayMessageProcessor.generated.h already included, missing '#pragma once' in GameplayMessageProcessor.h" +#endif +#define LYRAGAME_GameplayMessageProcessor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameplayMessageProcessor(); \ + friend struct Z_Construct_UClass_UGameplayMessageProcessor_Statics; \ +public: \ + DECLARE_CLASS(UGameplayMessageProcessor, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UGameplayMessageProcessor) + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameplayMessageProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameplayMessageProcessor(UGameplayMessageProcessor&&); \ + UGameplayMessageProcessor(const UGameplayMessageProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameplayMessageProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameplayMessageProcessor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameplayMessageProcessor) \ + NO_API virtual ~UGameplayMessageProcessor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_GameplayMessageProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp new file mode 100644 index 00000000..94eef678 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.gen.cpp @@ -0,0 +1,192 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayTagStack() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStack(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FGameplayTagStack +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FGameplayTagStack cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayTagStack; +class UScriptStruct* FGameplayTagStack::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayTagStack, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameplayTagStack")); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStack.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameplayTagStack::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents one stack of a gameplay tag (tag + count)\n */" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents one stack of a gameplay tag (tag + count)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "ModuleRelativePath", "System/GameplayTagStack.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "ModuleRelativePath", "System/GameplayTagStack.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStack, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayTagStack_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "GameplayTagStack", + Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::PropPointers), + sizeof(FGameplayTagStack), + alignof(FGameplayTagStack), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStack_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayTagStack_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStack() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton, Z_Construct_UScriptStruct_FGameplayTagStack_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStack.InnerSingleton; +} +// End ScriptStruct FGameplayTagStack + +// Begin ScriptStruct FGameplayTagStackContainer +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FGameplayTagStackContainer cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayTagStackContainer; +class UScriptStruct* FGameplayTagStackContainer::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayTagStackContainer, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GameplayTagStackContainer")); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGameplayTagStackContainer::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FGameplayTagStackContainer); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FGameplayTagStackContainer); +#endif +struct Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Container of gameplay tag stacks */" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Container of gameplay tag stacks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Stacks_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of gameplay tag stacks\n" }, +#endif + { "ModuleRelativePath", "System/GameplayTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of gameplay tag stacks" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Stacks_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Stacks; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks_Inner = { "Stacks", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTagStack, METADATA_PARAMS(0, nullptr) }; // 1006826503 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks = { "Stacks", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayTagStackContainer, Stacks), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Stacks_MetaData), NewProp_Stacks_MetaData) }; // 1006826503 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewProp_Stacks, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "GameplayTagStackContainer", + Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::PropPointers), + sizeof(FGameplayTagStackContainer), + alignof(FGameplayTagStackContainer), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton, Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayTagStackContainer.InnerSingleton; +} +// End ScriptStruct FGameplayTagStackContainer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameplayTagStack::StaticStruct, Z_Construct_UScriptStruct_FGameplayTagStack_Statics::NewStructOps, TEXT("GameplayTagStack"), &Z_Registration_Info_UScriptStruct_GameplayTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayTagStack), 1006826503U) }, + { FGameplayTagStackContainer::StaticStruct, Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics::NewStructOps, TEXT("GameplayTagStackContainer"), &Z_Registration_Info_UScriptStruct_GameplayTagStackContainer, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayTagStackContainer), 3610867483U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_2527901525(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.generated.h new file mode 100644 index 00000000..ada7a492 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/GameplayTagStack.generated.h @@ -0,0 +1,38 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/GameplayTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_GameplayTagStack_generated_h +#error "GameplayTagStack.generated.h already included, missing '#pragma once' in GameplayTagStack.h" +#endif +#define LYRAGAME_GameplayTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayTagStack_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h_46_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayTagStackContainer_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FGameplayTagStackContainer, Stacks, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_GameplayTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp new file mode 100644 index 00000000..edd63fa4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/HitMarkerConfirmationWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeHitMarkerConfirmationWidget() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UHitMarkerConfirmationWidget +void UHitMarkerConfirmationWidget::StaticRegisterNativesUHitMarkerConfirmationWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UHitMarkerConfirmationWidget); +UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget_NoRegister() +{ + return UHitMarkerConfirmationWidget::StaticClass(); +} +struct Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitNotifyDuration_MetaData[] = { + { "Category", "Appearance" }, + { "ClampMin", "0.000000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The duration (in seconds) to display hit notifies (they fade to transparent over this time) */" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The duration (in seconds) to display hit notifies (they fade to transparent over this time)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerHitMarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to draw for individual hit markers. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to draw for individual hit markers." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerHitMarkerZoneOverrideImages_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Map from zone tag (e.g., weak spot) to override marker images for individual location hits. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map from zone tag (e.g., weak spot) to override marker images for individual location hits." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnyHitsMarkerImage_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The marker image to draw if there are any hits at all. */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/HitMarkerConfirmationWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The marker image to draw if there are any hits at all." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HitNotifyDuration; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerImage; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerZoneOverrideImages_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PerHitMarkerZoneOverrideImages; + static const UECodeGen_Private::FStructPropertyParams NewProp_AnyHitsMarkerImage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_HitNotifyDuration = { "HitNotifyDuration", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, HitNotifyDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitNotifyDuration_MetaData), NewProp_HitNotifyDuration_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerImage = { "PerHitMarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, PerHitMarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerHitMarkerImage_MetaData), NewProp_PerHitMarkerImage_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_ValueProp = { "PerHitMarkerZoneOverrideImages", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(0, nullptr) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp = { "PerHitMarkerZoneOverrideImages_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages = { "PerHitMarkerZoneOverrideImages", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, PerHitMarkerZoneOverrideImages), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerHitMarkerZoneOverrideImages_MetaData), NewProp_PerHitMarkerZoneOverrideImages_MetaData) }; // 1298103297 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_AnyHitsMarkerImage = { "AnyHitsMarkerImage", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UHitMarkerConfirmationWidget, AnyHitsMarkerImage), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnyHitsMarkerImage_MetaData), NewProp_AnyHitsMarkerImage_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_HitNotifyDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerImage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_PerHitMarkerZoneOverrideImages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::NewProp_AnyHitsMarkerImage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::ClassParams = { + &UHitMarkerConfirmationWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UHitMarkerConfirmationWidget() +{ + if (!Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton, Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UHitMarkerConfirmationWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UHitMarkerConfirmationWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UHitMarkerConfirmationWidget); +UHitMarkerConfirmationWidget::~UHitMarkerConfirmationWidget() {} +// End Class UHitMarkerConfirmationWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UHitMarkerConfirmationWidget, UHitMarkerConfirmationWidget::StaticClass, TEXT("UHitMarkerConfirmationWidget"), &Z_Registration_Info_UClass_UHitMarkerConfirmationWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UHitMarkerConfirmationWidget), 2623668083U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_3501005335(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h new file mode 100644 index 00000000..d04b17c6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/HitMarkerConfirmationWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/HitMarkerConfirmationWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_HitMarkerConfirmationWidget_generated_h +#error "HitMarkerConfirmationWidget.generated.h already included, missing '#pragma once' in HitMarkerConfirmationWidget.h" +#endif +#define LYRAGAME_HitMarkerConfirmationWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUHitMarkerConfirmationWidget(); \ + friend struct Z_Construct_UClass_UHitMarkerConfirmationWidget_Statics; \ +public: \ + DECLARE_CLASS(UHitMarkerConfirmationWidget, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UHitMarkerConfirmationWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UHitMarkerConfirmationWidget(UHitMarkerConfirmationWidget&&); \ + UHitMarkerConfirmationWidget(const UHitMarkerConfirmationWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UHitMarkerConfirmationWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UHitMarkerConfirmationWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UHitMarkerConfirmationWidget) \ + NO_API virtual ~UHitMarkerConfirmationWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_HitMarkerConfirmationWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp new file mode 100644 index 00000000..2a99fbdd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp @@ -0,0 +1,234 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IActorIndicatorWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIActorIndicatorWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorWidgetInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorWidgetInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UIndicatorWidgetInterface Function BindIndicator +struct IndicatorWidgetInterface_eventBindIndicator_Parms +{ + UIndicatorDescriptor* Indicator; +}; +void IIndicatorWidgetInterface::BindIndicator(UIndicatorDescriptor* Indicator) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_BindIndicator instead."); +} +static FName NAME_UIndicatorWidgetInterface_BindIndicator = FName(TEXT("BindIndicator")); +void IIndicatorWidgetInterface::Execute_BindIndicator(UObject* O, UIndicatorDescriptor* Indicator) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UIndicatorWidgetInterface::StaticClass())); + IndicatorWidgetInterface_eventBindIndicator_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UIndicatorWidgetInterface_BindIndicator); + if (Func) + { + Parms.Indicator=Indicator; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IIndicatorWidgetInterface*)(O->GetNativeInterfaceAddress(UIndicatorWidgetInterface::StaticClass()))) + { + I->BindIndicator_Implementation(Indicator); + } +} +struct Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::NewProp_Indicator = { "Indicator", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorWidgetInterface_eventBindIndicator_Parms, Indicator), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::NewProp_Indicator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorWidgetInterface, nullptr, "BindIndicator", nullptr, nullptr, Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::PropPointers), sizeof(IndicatorWidgetInterface_eventBindIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(IndicatorWidgetInterface_eventBindIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IIndicatorWidgetInterface::execBindIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_Indicator); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->BindIndicator_Implementation(Z_Param_Indicator); + P_NATIVE_END; +} +// End Interface UIndicatorWidgetInterface Function BindIndicator + +// Begin Interface UIndicatorWidgetInterface Function UnbindIndicator +struct IndicatorWidgetInterface_eventUnbindIndicator_Parms +{ + const UIndicatorDescriptor* Indicator; +}; +void IIndicatorWidgetInterface::UnbindIndicator(const UIndicatorDescriptor* Indicator) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_UnbindIndicator instead."); +} +static FName NAME_UIndicatorWidgetInterface_UnbindIndicator = FName(TEXT("UnbindIndicator")); +void IIndicatorWidgetInterface::Execute_UnbindIndicator(UObject* O, const UIndicatorDescriptor* Indicator) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UIndicatorWidgetInterface::StaticClass())); + IndicatorWidgetInterface_eventUnbindIndicator_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UIndicatorWidgetInterface_UnbindIndicator); + if (Func) + { + Parms.Indicator=Indicator; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IIndicatorWidgetInterface*)(O->GetNativeInterfaceAddress(UIndicatorWidgetInterface::StaticClass()))) + { + I->UnbindIndicator_Implementation(Indicator); + } +} +struct Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicator_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::NewProp_Indicator = { "Indicator", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorWidgetInterface_eventUnbindIndicator_Parms, Indicator), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicator_MetaData), NewProp_Indicator_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::NewProp_Indicator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorWidgetInterface, nullptr, "UnbindIndicator", nullptr, nullptr, Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::PropPointers), sizeof(IndicatorWidgetInterface_eventUnbindIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(IndicatorWidgetInterface_eventUnbindIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IIndicatorWidgetInterface::execUnbindIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_Indicator); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnbindIndicator_Implementation(Z_Param_Indicator); + P_NATIVE_END; +} +// End Interface UIndicatorWidgetInterface Function UnbindIndicator + +// Begin Interface UIndicatorWidgetInterface +void UIndicatorWidgetInterface::StaticRegisterNativesUIndicatorWidgetInterface() +{ + UClass* Class = UIndicatorWidgetInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "BindIndicator", &IIndicatorWidgetInterface::execBindIndicator }, + { "UnbindIndicator", &IIndicatorWidgetInterface::execUnbindIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorWidgetInterface); +UClass* Z_Construct_UClass_UIndicatorWidgetInterface_NoRegister() +{ + return UIndicatorWidgetInterface::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorWidgetInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IActorIndicatorWidget.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorWidgetInterface_BindIndicator, "BindIndicator" }, // 3185953401 + { &Z_Construct_UFunction_UIndicatorWidgetInterface_UnbindIndicator, "UnbindIndicator" }, // 3179714369 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UIndicatorWidgetInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorWidgetInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorWidgetInterface_Statics::ClassParams = { + &UIndicatorWidgetInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorWidgetInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorWidgetInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorWidgetInterface() +{ + if (!Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton, Z_Construct_UClass_UIndicatorWidgetInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorWidgetInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorWidgetInterface::StaticClass(); +} +UIndicatorWidgetInterface::UIndicatorWidgetInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorWidgetInterface); +UIndicatorWidgetInterface::~UIndicatorWidgetInterface() {} +// End Interface UIndicatorWidgetInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorWidgetInterface, UIndicatorWidgetInterface::StaticClass, TEXT("UIndicatorWidgetInterface"), &Z_Registration_Info_UClass_UIndicatorWidgetInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorWidgetInterface), 1655659806U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_3058068677(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h new file mode 100644 index 00000000..18a2f9f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.generated.h @@ -0,0 +1,85 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IActorIndicatorWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UIndicatorDescriptor; +#ifdef LYRAGAME_IActorIndicatorWidget_generated_h +#error "IActorIndicatorWidget.generated.h already included, missing '#pragma once' in IActorIndicatorWidget.h" +#endif +#define LYRAGAME_IActorIndicatorWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void UnbindIndicator_Implementation(const UIndicatorDescriptor* Indicator) {}; \ + virtual void BindIndicator_Implementation(UIndicatorDescriptor* Indicator) {}; \ + DECLARE_FUNCTION(execUnbindIndicator); \ + DECLARE_FUNCTION(execBindIndicator); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UIndicatorWidgetInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorWidgetInterface(UIndicatorWidgetInterface&&); \ + UIndicatorWidgetInterface(const UIndicatorWidgetInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorWidgetInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorWidgetInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UIndicatorWidgetInterface) \ + NO_API virtual ~UIndicatorWidgetInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUIndicatorWidgetInterface(); \ + friend struct Z_Construct_UClass_UIndicatorWidgetInterface_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorWidgetInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorWidgetInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IIndicatorWidgetInterface() {} \ +public: \ + typedef UIndicatorWidgetInterface UClassType; \ + typedef IIndicatorWidgetInterface ThisClass; \ + static void Execute_BindIndicator(UObject* O, UIndicatorDescriptor* Indicator); \ + static void Execute_UnbindIndicator(UObject* O, const UIndicatorDescriptor* Indicator); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IActorIndicatorWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp new file mode 100644 index 00000000..a351a5d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/IInteractableTarget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIInteractableTarget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UInteractableTarget +void UInteractableTarget::StaticRegisterNativesUInteractableTarget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractableTarget); +UClass* Z_Construct_UClass_UInteractableTarget_NoRegister() +{ + return UInteractableTarget::StaticClass(); +} +struct Z_Construct_UClass_UInteractableTarget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Interaction/IInteractableTarget.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractableTarget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractableTarget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractableTarget_Statics::ClassParams = { + &UInteractableTarget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractableTarget_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractableTarget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractableTarget() +{ + if (!Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton, Z_Construct_UClass_UInteractableTarget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractableTarget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractableTarget::StaticClass(); +} +UInteractableTarget::UInteractableTarget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractableTarget); +UInteractableTarget::~UInteractableTarget() {} +// End Interface UInteractableTarget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractableTarget, UInteractableTarget::StaticClass, TEXT("UInteractableTarget"), &Z_Registration_Info_UClass_UInteractableTarget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractableTarget), 2018106830U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_1256944562(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.generated.h new file mode 100644 index 00000000..9fbeaf1b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/IInteractableTarget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IInteractableTarget_generated_h +#error "IInteractableTarget.generated.h already included, missing '#pragma once' in IInteractableTarget.h" +#endif +#define LYRAGAME_IInteractableTarget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UInteractableTarget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractableTarget(UInteractableTarget&&); \ + UInteractableTarget(const UInteractableTarget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UInteractableTarget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractableTarget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInteractableTarget) \ + LYRAGAME_API virtual ~UInteractableTarget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUInteractableTarget(); \ + friend struct Z_Construct_UClass_UInteractableTarget_Statics; \ +public: \ + DECLARE_CLASS(UInteractableTarget, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UInteractableTarget) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IInteractableTarget() {} \ +public: \ + typedef UInteractableTarget UClassType; \ + typedef IInteractableTarget ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_34_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h_37_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractableTarget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp new file mode 100644 index 00000000..3894d6cc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/IInteractionInstigator.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIInteractionInstigator() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionInstigator(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionInstigator_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface UInteractionInstigator +void UInteractionInstigator::StaticRegisterNativesUInteractionInstigator() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractionInstigator); +UClass* Z_Construct_UClass_UInteractionInstigator_NoRegister() +{ + return UInteractionInstigator::StaticClass(); +} +struct Z_Construct_UClass_UInteractionInstigator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Interaction/IInteractionInstigator.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractionInstigator_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionInstigator_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractionInstigator_Statics::ClassParams = { + &UInteractionInstigator::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionInstigator_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractionInstigator_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractionInstigator() +{ + if (!Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton, Z_Construct_UClass_UInteractionInstigator_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractionInstigator.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractionInstigator::StaticClass(); +} +UInteractionInstigator::UInteractionInstigator(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractionInstigator); +UInteractionInstigator::~UInteractionInstigator() {} +// End Interface UInteractionInstigator + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractionInstigator, UInteractionInstigator::StaticClass, TEXT("UInteractionInstigator"), &Z_Registration_Info_UClass_UInteractionInstigator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractionInstigator), 51394017U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_990617268(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.generated.h new file mode 100644 index 00000000..c0f4a6b3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/IInteractionInstigator.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IInteractionInstigator_generated_h +#error "IInteractionInstigator.generated.h already included, missing '#pragma once' in IInteractionInstigator.h" +#endif +#define LYRAGAME_IInteractionInstigator_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UInteractionInstigator(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractionInstigator(UInteractionInstigator&&); \ + UInteractionInstigator(const UInteractionInstigator&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UInteractionInstigator); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractionInstigator); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInteractionInstigator) \ + LYRAGAME_API virtual ~UInteractionInstigator(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUInteractionInstigator(); \ + friend struct Z_Construct_UClass_UInteractionInstigator_Statics; \ +public: \ + DECLARE_CLASS(UInteractionInstigator, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UInteractionInstigator) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IInteractionInstigator() {} \ +public: \ + typedef UInteractionInstigator UClassType; \ + typedef IInteractionInstigator ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h_16_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_IInteractionInstigator_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.gen.cpp new file mode 100644 index 00000000..cc1a600b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.gen.cpp @@ -0,0 +1,535 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/IPickupable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIPickupable() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupableStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupableStatics_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPickupInstance(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPickupTemplate(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FPickupTemplate +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PickupTemplate; +class UScriptStruct* FPickupTemplate::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPickupTemplate, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PickupTemplate")); + } + return Z_Registration_Info_UScriptStruct_PickupTemplate.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPickupTemplate::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPickupTemplate_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "Category", "PickupTemplate" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDef_MetaData[] = { + { "Category", "PickupTemplate" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupTemplate, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupTemplate, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDef_MetaData), NewProp_ItemDef_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewProp_ItemDef, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPickupTemplate_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PickupTemplate", + Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::PropPointers), + sizeof(FPickupTemplate), + alignof(FPickupTemplate), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupTemplate_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPickupTemplate_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPickupTemplate() +{ + if (!Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton, Z_Construct_UScriptStruct_FPickupTemplate_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PickupTemplate.InnerSingleton; +} +// End ScriptStruct FPickupTemplate + +// Begin ScriptStruct FPickupInstance +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PickupInstance; +class UScriptStruct* FPickupInstance::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPickupInstance, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PickupInstance")); + } + return Z_Registration_Info_UScriptStruct_PickupInstance.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPickupInstance::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPickupInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Item_MetaData[] = { + { "Category", "PickupInstance" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Item; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPickupInstance_Statics::NewProp_Item = { "Item", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPickupInstance, Item), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Item_MetaData), NewProp_Item_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPickupInstance_Statics::NewProp_Item, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPickupInstance_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PickupInstance", + Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::PropPointers), + sizeof(FPickupInstance), + alignof(FPickupInstance), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPickupInstance_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPickupInstance_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPickupInstance() +{ + if (!Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton, Z_Construct_UScriptStruct_FPickupInstance_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PickupInstance.InnerSingleton; +} +// End ScriptStruct FPickupInstance + +// Begin ScriptStruct FInventoryPickup +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InventoryPickup; +class UScriptStruct* FInventoryPickup::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInventoryPickup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InventoryPickup")); + } + return Z_Registration_Info_UScriptStruct_InventoryPickup.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInventoryPickup::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInventoryPickup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instances_MetaData[] = { + { "Category", "InventoryPickup" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Templates_MetaData[] = { + { "Category", "InventoryPickup" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Instances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Instances; + static const UECodeGen_Private::FStructPropertyParams NewProp_Templates_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Templates; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances_Inner = { "Instances", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPickupInstance, METADATA_PARAMS(0, nullptr) }; // 4021539528 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances = { "Instances", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInventoryPickup, Instances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instances_MetaData), NewProp_Instances_MetaData) }; // 4021539528 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates_Inner = { "Templates", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPickupTemplate, METADATA_PARAMS(0, nullptr) }; // 3868139398 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates = { "Templates", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInventoryPickup, Templates), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Templates_MetaData), NewProp_Templates_MetaData) }; // 3868139398 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Instances, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewProp_Templates, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInventoryPickup_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InventoryPickup", + Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::PropPointers), + sizeof(FInventoryPickup), + alignof(FInventoryPickup), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInventoryPickup_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInventoryPickup_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup() +{ + if (!Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton, Z_Construct_UScriptStruct_FInventoryPickup_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InventoryPickup.InnerSingleton; +} +// End ScriptStruct FInventoryPickup + +// Begin Interface UPickupable Function GetPickupInventory +struct Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics +{ + struct Pickupable_eventGetPickupInventory_Parms + { + FInventoryPickup ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(Pickupable_eventGetPickupInventory_Parms, ReturnValue), Z_Construct_UScriptStruct_FInventoryPickup, METADATA_PARAMS(0, nullptr) }; // 3290137148 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupable, nullptr, "GetPickupInventory", nullptr, nullptr, Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Pickupable_eventGetPickupInventory_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::Pickupable_eventGetPickupInventory_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupable_GetPickupInventory() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupable_GetPickupInventory_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IPickupable::execGetPickupInventory) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FInventoryPickup*)Z_Param__Result=P_THIS->GetPickupInventory(); + P_NATIVE_END; +} +// End Interface UPickupable Function GetPickupInventory + +// Begin Interface UPickupable +void UPickupable::StaticRegisterNativesUPickupable() +{ + UClass* Class = UPickupable::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPickupInventory", &IPickupable::execGetPickupInventory }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPickupable); +UClass* Z_Construct_UClass_UPickupable_NoRegister() +{ + return UPickupable::StaticClass(); +} +struct Z_Construct_UClass_UPickupable_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPickupable_GetPickupInventory, "GetPickupInventory" }, // 2150523224 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPickupable_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupable_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPickupable_Statics::ClassParams = { + &UPickupable::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupable_Statics::Class_MetaDataParams), Z_Construct_UClass_UPickupable_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPickupable() +{ + if (!Z_Registration_Info_UClass_UPickupable.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPickupable.OuterSingleton, Z_Construct_UClass_UPickupable_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPickupable.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPickupable::StaticClass(); +} +UPickupable::UPickupable(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPickupable); +UPickupable::~UPickupable() {} +// End Interface UPickupable + +// Begin Class UPickupableStatics Function AddPickupToInventory +struct Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics +{ + struct PickupableStatics_eventAddPickupToInventory_Parms + { + ULyraInventoryManagerComponent* InventoryComponent; + TScriptInterface Pickup; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + { "WorldContext", "Ability" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryComponent; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_Pickup; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_InventoryComponent = { "InventoryComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventAddPickupToInventory_Parms, InventoryComponent), Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryComponent_MetaData), NewProp_InventoryComponent_MetaData) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_Pickup = { "Pickup", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventAddPickupToInventory_Parms, Pickup), Z_Construct_UClass_UPickupable_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_InventoryComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::NewProp_Pickup, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupableStatics, nullptr, "AddPickupToInventory", nullptr, nullptr, Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PickupableStatics_eventAddPickupToInventory_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::PickupableStatics_eventAddPickupToInventory_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPickupableStatics::execAddPickupToInventory) +{ + P_GET_OBJECT(ULyraInventoryManagerComponent,Z_Param_InventoryComponent); + P_GET_TINTERFACE(IPickupable,Z_Param_Pickup); + P_FINISH; + P_NATIVE_BEGIN; + UPickupableStatics::AddPickupToInventory(Z_Param_InventoryComponent,Z_Param_Pickup); + P_NATIVE_END; +} +// End Class UPickupableStatics Function AddPickupToInventory + +// Begin Class UPickupableStatics Function GetFirstPickupableFromActor +struct Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics +{ + struct PickupableStatics_eventGetFirstPickupableFromActor_Parms + { + AActor* Actor; + TScriptInterface ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventGetFirstPickupableFromActor_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PickupableStatics_eventGetFirstPickupableFromActor_Parms, ReturnValue), Z_Construct_UClass_UPickupable_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPickupableStatics, nullptr, "GetFirstPickupableFromActor", nullptr, nullptr, Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PickupableStatics_eventGetFirstPickupableFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::PickupableStatics_eventGetFirstPickupableFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPickupableStatics::execGetFirstPickupableFromActor) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(TScriptInterface*)Z_Param__Result=UPickupableStatics::GetFirstPickupableFromActor(Z_Param_Actor); + P_NATIVE_END; +} +// End Class UPickupableStatics Function GetFirstPickupableFromActor + +// Begin Class UPickupableStatics +void UPickupableStatics::StaticRegisterNativesUPickupableStatics() +{ + UClass* Class = UPickupableStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddPickupToInventory", &UPickupableStatics::execAddPickupToInventory }, + { "GetFirstPickupableFromActor", &UPickupableStatics::execGetFirstPickupableFromActor }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPickupableStatics); +UClass* Z_Construct_UClass_UPickupableStatics_NoRegister() +{ + return UPickupableStatics::StaticClass(); +} +struct Z_Construct_UClass_UPickupableStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "IncludePath", "Inventory/IPickupable.h" }, + { "ModuleRelativePath", "Inventory/IPickupable.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPickupableStatics_AddPickupToInventory, "AddPickupToInventory" }, // 3625979158 + { &Z_Construct_UFunction_UPickupableStatics_GetFirstPickupableFromActor, "GetFirstPickupableFromActor" }, // 398689282 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPickupableStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupableStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPickupableStatics_Statics::ClassParams = { + &UPickupableStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPickupableStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_UPickupableStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPickupableStatics() +{ + if (!Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton, Z_Construct_UClass_UPickupableStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPickupableStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPickupableStatics::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPickupableStatics); +UPickupableStatics::~UPickupableStatics() {} +// End Class UPickupableStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPickupTemplate::StaticStruct, Z_Construct_UScriptStruct_FPickupTemplate_Statics::NewStructOps, TEXT("PickupTemplate"), &Z_Registration_Info_UScriptStruct_PickupTemplate, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPickupTemplate), 3868139398U) }, + { FPickupInstance::StaticStruct, Z_Construct_UScriptStruct_FPickupInstance_Statics::NewStructOps, TEXT("PickupInstance"), &Z_Registration_Info_UScriptStruct_PickupInstance, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPickupInstance), 4021539528U) }, + { FInventoryPickup::StaticStruct, Z_Construct_UScriptStruct_FInventoryPickup_Statics::NewStructOps, TEXT("InventoryPickup"), &Z_Registration_Info_UScriptStruct_InventoryPickup, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInventoryPickup), 3290137148U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPickupable, UPickupable::StaticClass, TEXT("UPickupable"), &Z_Registration_Info_UClass_UPickupable, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPickupable), 1088473728U) }, + { Z_Construct_UClass_UPickupableStatics, UPickupableStatics::StaticClass, TEXT("UPickupableStatics"), &Z_Registration_Info_UClass_UPickupableStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPickupableStatics), 4087650878U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_1392840785(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.generated.h new file mode 100644 index 00000000..da6ddabc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IPickupable.generated.h @@ -0,0 +1,141 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/IPickupable.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class IPickupable; +class ULyraInventoryManagerComponent; +struct FInventoryPickup; +#ifdef LYRAGAME_IPickupable_generated_h +#error "IPickupable.generated.h already included, missing '#pragma once' in IPickupable.h" +#endif +#define LYRAGAME_IPickupable_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_24_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPickupTemplate_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_37_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPickupInstance_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_47_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInventoryPickup_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetPickupInventory); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API UPickupable(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPickupable(UPickupable&&); \ + UPickupable(const UPickupable&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, UPickupable); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPickupable); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPickupable) \ + LYRAGAME_API virtual ~UPickupable(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUPickupable(); \ + friend struct Z_Construct_UClass_UPickupable_Statics; \ +public: \ + DECLARE_CLASS(UPickupable, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(UPickupable) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IPickupable() {} \ +public: \ + typedef UPickupable UClassType; \ + typedef IPickupable ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_58_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_67_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_61_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAddPickupToInventory); \ + DECLARE_FUNCTION(execGetFirstPickupableFromActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPickupableStatics(); \ + friend struct Z_Construct_UClass_UPickupableStatics_Statics; \ +public: \ + DECLARE_CLASS(UPickupableStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UPickupableStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPickupableStatics(UPickupableStatics&&); \ + UPickupableStatics(const UPickupableStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPickupableStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPickupableStatics); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPickupableStatics) \ + NO_API virtual ~UPickupableStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_75_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h_78_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_IPickupable_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp new file mode 100644 index 00000000..9d74e3a0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.gen.cpp @@ -0,0 +1,1745 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorDescriptor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorDescriptor() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode(); +SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EHorizontalAlignment(); +SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EVerticalAlignment(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EActorCanvasProjectionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EActorCanvasProjectionMode; +static UEnum* EActorCanvasProjectionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EActorCanvasProjectionMode")); + } + return Z_Registration_Info_UEnum_EActorCanvasProjectionMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EActorCanvasProjectionMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ActorBoundingBox.Name", "EActorCanvasProjectionMode::ActorBoundingBox" }, + { "ActorScreenBoundingBox.Name", "EActorCanvasProjectionMode::ActorScreenBoundingBox" }, + { "BlueprintType", "true" }, + { "ComponentBoundingBox.Name", "EActorCanvasProjectionMode::ComponentBoundingBox" }, + { "ComponentPoint.Name", "EActorCanvasProjectionMode::ComponentPoint" }, + { "ComponentScreenBoundingBox.Name", "EActorCanvasProjectionMode::ComponentScreenBoundingBox" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EActorCanvasProjectionMode::ComponentPoint", (int64)EActorCanvasProjectionMode::ComponentPoint }, + { "EActorCanvasProjectionMode::ComponentBoundingBox", (int64)EActorCanvasProjectionMode::ComponentBoundingBox }, + { "EActorCanvasProjectionMode::ComponentScreenBoundingBox", (int64)EActorCanvasProjectionMode::ComponentScreenBoundingBox }, + { "EActorCanvasProjectionMode::ActorBoundingBox", (int64)EActorCanvasProjectionMode::ActorBoundingBox }, + { "EActorCanvasProjectionMode::ActorScreenBoundingBox", (int64)EActorCanvasProjectionMode::ActorScreenBoundingBox }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EActorCanvasProjectionMode", + "EActorCanvasProjectionMode", + Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode() +{ + if (!Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EActorCanvasProjectionMode.InnerSingleton; +} +// End Enum EActorCanvasProjectionMode + +// Begin Class UIndicatorDescriptor Function GetAutoRemoveWhenIndicatorComponentIsNull +struct Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics +{ + struct IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetAutoRemoveWhenIndicatorComponentIsNull", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventGetAutoRemoveWhenIndicatorComponentIsNull_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetAutoRemoveWhenIndicatorComponentIsNull) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetAutoRemoveWhenIndicatorComponentIsNull(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetAutoRemoveWhenIndicatorComponentIsNull + +// Begin Class UIndicatorDescriptor Function GetBoundingBoxAnchor +struct Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics +{ + struct IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms + { + FVector ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetBoundingBoxAnchor", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventGetBoundingBoxAnchor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetBoundingBoxAnchor) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector*)Z_Param__Result=P_THIS->GetBoundingBoxAnchor(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetBoundingBoxAnchor + +// Begin Class UIndicatorDescriptor Function GetClampToScreen +struct Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics +{ + struct IndicatorDescriptor_eventGetClampToScreen_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Clamp the indicator to the edge of the screen?\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clamp the indicator to the edge of the screen?" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetClampToScreen_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetClampToScreen_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetClampToScreen", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::IndicatorDescriptor_eventGetClampToScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::IndicatorDescriptor_eventGetClampToScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetClampToScreen) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetClampToScreen(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetClampToScreen + +// Begin Class UIndicatorDescriptor Function GetComponentSocketName +struct Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics +{ + struct IndicatorDescriptor_eventGetComponentSocketName_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetComponentSocketName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetComponentSocketName", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::IndicatorDescriptor_eventGetComponentSocketName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::IndicatorDescriptor_eventGetComponentSocketName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetComponentSocketName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetComponentSocketName(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetComponentSocketName + +// Begin Class UIndicatorDescriptor Function GetDataObject +struct Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics +{ + struct IndicatorDescriptor_eventGetDataObject_Parms + { + UObject* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetDataObject_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetDataObject", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::IndicatorDescriptor_eventGetDataObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::IndicatorDescriptor_eventGetDataObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetDataObject) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UObject**)Z_Param__Result=P_THIS->GetDataObject(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetDataObject + +// Begin Class UIndicatorDescriptor Function GetHAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics +{ + struct IndicatorDescriptor_eventGetHAlign_Parms + { + TEnumAsByte ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Horizontal alignment to the point in space to place the indicator at.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Horizontal alignment to the point in space to place the indicator at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetHAlign_Parms, ReturnValue), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(0, nullptr) }; // 1062133256 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetHAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::IndicatorDescriptor_eventGetHAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::IndicatorDescriptor_eventGetHAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetHAlign) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TEnumAsByte*)Z_Param__Result=P_THIS->GetHAlign(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetHAlign + +// Begin Class UIndicatorDescriptor Function GetIndicatorClass +struct Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics +{ + struct IndicatorDescriptor_eventGetIndicatorClass_Parms + { + TSoftClassPtr ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetIndicatorClass_Parms, ReturnValue), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetIndicatorClass", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::IndicatorDescriptor_eventGetIndicatorClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::IndicatorDescriptor_eventGetIndicatorClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetIndicatorClass) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TSoftClassPtr *)Z_Param__Result=P_THIS->GetIndicatorClass(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetIndicatorClass + +// Begin Class UIndicatorDescriptor Function GetIsVisible +struct Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics +{ + struct IndicatorDescriptor_eventGetIsVisible_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Layout Properties\n//=======================\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layout Properties" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetIsVisible_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetIsVisible_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetIsVisible", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::IndicatorDescriptor_eventGetIsVisible_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::IndicatorDescriptor_eventGetIsVisible_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetIsVisible) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsVisible(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetIsVisible + +// Begin Class UIndicatorDescriptor Function GetPriority +struct Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics +{ + struct IndicatorDescriptor_eventGetPriority_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Allows sorting the indicators (after they are sorted by depth), to allow some group of indicators\n// to always be in front of others.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows sorting the indicators (after they are sorted by depth), to allow some group of indicators\nto always be in front of others." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetPriority_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetPriority", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::IndicatorDescriptor_eventGetPriority_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::IndicatorDescriptor_eventGetPriority_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetPriority() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetPriority_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetPriority) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetPriority(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetPriority + +// Begin Class UIndicatorDescriptor Function GetProjectionMode +struct Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics +{ + struct IndicatorDescriptor_eventGetProjectionMode_Parms + { + EActorCanvasProjectionMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetProjectionMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(0, nullptr) }; // 2516112598 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetProjectionMode", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::IndicatorDescriptor_eventGetProjectionMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::IndicatorDescriptor_eventGetProjectionMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetProjectionMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(EActorCanvasProjectionMode*)Z_Param__Result=P_THIS->GetProjectionMode(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetProjectionMode + +// Begin Class UIndicatorDescriptor Function GetSceneComponent +struct Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics +{ + struct IndicatorDescriptor_eventGetSceneComponent_Parms + { + USceneComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetSceneComponent_Parms, ReturnValue), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetSceneComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::IndicatorDescriptor_eventGetSceneComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::IndicatorDescriptor_eventGetSceneComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetSceneComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(USceneComponent**)Z_Param__Result=P_THIS->GetSceneComponent(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetSceneComponent + +// Begin Class UIndicatorDescriptor Function GetScreenSpaceOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics +{ + struct IndicatorDescriptor_eventGetScreenSpaceOffset_Parms + { + FVector2D ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The position offset for the indicator in screen space.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The position offset for the indicator in screen space." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetScreenSpaceOffset_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetScreenSpaceOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::IndicatorDescriptor_eventGetScreenSpaceOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::IndicatorDescriptor_eventGetScreenSpaceOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetScreenSpaceOffset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector2D*)Z_Param__Result=P_THIS->GetScreenSpaceOffset(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetScreenSpaceOffset + +// Begin Class UIndicatorDescriptor Function GetShowClampToScreenArrow +struct Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics +{ + struct IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Show the arrow if clamping to the edge of the screen?\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Show the arrow if clamping to the edge of the screen?" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetShowClampToScreenArrow", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventGetShowClampToScreenArrow_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetShowClampToScreenArrow) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetShowClampToScreenArrow(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetShowClampToScreenArrow + +// Begin Class UIndicatorDescriptor Function GetVAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics +{ + struct IndicatorDescriptor_eventGetVAlign_Parms + { + TEnumAsByte ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Vertical alignment to the point in space to place the indicator at.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Vertical alignment to the point in space to place the indicator at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetVAlign_Parms, ReturnValue), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(0, nullptr) }; // 550775363 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetVAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::IndicatorDescriptor_eventGetVAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::IndicatorDescriptor_eventGetVAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetVAlign) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TEnumAsByte*)Z_Param__Result=P_THIS->GetVAlign(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetVAlign + +// Begin Class UIndicatorDescriptor Function GetWorldPositionOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics +{ + struct IndicatorDescriptor_eventGetWorldPositionOffset_Parms + { + FVector ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The position offset for the indicator in world space.\n" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The position offset for the indicator in world space." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventGetWorldPositionOffset_Parms, ReturnValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "GetWorldPositionOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::IndicatorDescriptor_eventGetWorldPositionOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::IndicatorDescriptor_eventGetWorldPositionOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execGetWorldPositionOffset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FVector*)Z_Param__Result=P_THIS->GetWorldPositionOffset(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function GetWorldPositionOffset + +// Begin Class UIndicatorDescriptor Function SetAutoRemoveWhenIndicatorComponentIsNull +struct Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics +{ + struct IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms + { + bool CanAutomaticallyRemove; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_CanAutomaticallyRemove_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_CanAutomaticallyRemove; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms*)Obj)->CanAutomaticallyRemove = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove = { "CanAutomaticallyRemove", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::NewProp_CanAutomaticallyRemove, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetAutoRemoveWhenIndicatorComponentIsNull", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::IndicatorDescriptor_eventSetAutoRemoveWhenIndicatorComponentIsNull_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetAutoRemoveWhenIndicatorComponentIsNull) +{ + P_GET_UBOOL(Z_Param_CanAutomaticallyRemove); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAutoRemoveWhenIndicatorComponentIsNull(Z_Param_CanAutomaticallyRemove); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetAutoRemoveWhenIndicatorComponentIsNull + +// Begin Class UIndicatorDescriptor Function SetBoundingBoxAnchor +struct Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics +{ + struct IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms + { + FVector InBoundingBoxAnchor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InBoundingBoxAnchor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::NewProp_InBoundingBoxAnchor = { "InBoundingBoxAnchor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms, InBoundingBoxAnchor), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::NewProp_InBoundingBoxAnchor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetBoundingBoxAnchor", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::IndicatorDescriptor_eventSetBoundingBoxAnchor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetBoundingBoxAnchor) +{ + P_GET_STRUCT(FVector,Z_Param_InBoundingBoxAnchor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundingBoxAnchor(Z_Param_InBoundingBoxAnchor); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetBoundingBoxAnchor + +// Begin Class UIndicatorDescriptor Function SetClampToScreen +struct Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics +{ + struct IndicatorDescriptor_eventSetClampToScreen_Parms + { + bool bValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetClampToScreen_Parms*)Obj)->bValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue = { "bValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetClampToScreen_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::NewProp_bValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetClampToScreen", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::IndicatorDescriptor_eventSetClampToScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::IndicatorDescriptor_eventSetClampToScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetClampToScreen) +{ + P_GET_UBOOL(Z_Param_bValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetClampToScreen(Z_Param_bValue); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetClampToScreen + +// Begin Class UIndicatorDescriptor Function SetComponentSocketName +struct Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics +{ + struct IndicatorDescriptor_eventSetComponentSocketName_Parms + { + FName SocketName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetComponentSocketName_Parms, SocketName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::NewProp_SocketName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetComponentSocketName", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::IndicatorDescriptor_eventSetComponentSocketName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::IndicatorDescriptor_eventSetComponentSocketName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetComponentSocketName) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SocketName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetComponentSocketName(Z_Param_SocketName); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetComponentSocketName + +// Begin Class UIndicatorDescriptor Function SetDataObject +struct Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics +{ + struct IndicatorDescriptor_eventSetDataObject_Parms + { + UObject* InDataObject; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InDataObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::NewProp_InDataObject = { "InDataObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetDataObject_Parms, InDataObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::NewProp_InDataObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetDataObject", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::IndicatorDescriptor_eventSetDataObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::IndicatorDescriptor_eventSetDataObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetDataObject) +{ + P_GET_OBJECT(UObject,Z_Param_InDataObject); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDataObject(Z_Param_InDataObject); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetDataObject + +// Begin Class UIndicatorDescriptor Function SetDesiredVisibility +struct Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics +{ + struct IndicatorDescriptor_eventSetDesiredVisibility_Parms + { + bool InVisible; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_InVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_InVisible; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetDesiredVisibility_Parms*)Obj)->InVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible = { "InVisible", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetDesiredVisibility_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::NewProp_InVisible, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetDesiredVisibility", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::IndicatorDescriptor_eventSetDesiredVisibility_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::IndicatorDescriptor_eventSetDesiredVisibility_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetDesiredVisibility) +{ + P_GET_UBOOL(Z_Param_InVisible); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDesiredVisibility(Z_Param_InVisible); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetDesiredVisibility + +// Begin Class UIndicatorDescriptor Function SetHAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics +{ + struct IndicatorDescriptor_eventSetHAlign_Parms + { + TEnumAsByte InHAlignment; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InHAlignment; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::NewProp_InHAlignment = { "InHAlignment", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetHAlign_Parms, InHAlignment), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(0, nullptr) }; // 1062133256 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::NewProp_InHAlignment, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetHAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::IndicatorDescriptor_eventSetHAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::IndicatorDescriptor_eventSetHAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetHAlign) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_InHAlignment); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHAlign(EHorizontalAlignment(Z_Param_InHAlignment)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetHAlign + +// Begin Class UIndicatorDescriptor Function SetIndicatorClass +struct Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics +{ + struct IndicatorDescriptor_eventSetIndicatorClass_Parms + { + TSoftClassPtr InIndicatorWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_InIndicatorWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::NewProp_InIndicatorWidgetClass = { "InIndicatorWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetIndicatorClass_Parms, InIndicatorWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::NewProp_InIndicatorWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetIndicatorClass", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::IndicatorDescriptor_eventSetIndicatorClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::IndicatorDescriptor_eventSetIndicatorClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetIndicatorClass) +{ + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_InIndicatorWidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetIndicatorClass(Z_Param_InIndicatorWidgetClass); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetIndicatorClass + +// Begin Class UIndicatorDescriptor Function SetPriority +struct Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics +{ + struct IndicatorDescriptor_eventSetPriority_Parms + { + int32 InPriority; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InPriority; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::NewProp_InPriority = { "InPriority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetPriority_Parms, InPriority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::NewProp_InPriority, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetPriority", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::IndicatorDescriptor_eventSetPriority_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::IndicatorDescriptor_eventSetPriority_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetPriority() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetPriority_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetPriority) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InPriority); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetPriority(Z_Param_InPriority); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetPriority + +// Begin Class UIndicatorDescriptor Function SetProjectionMode +struct Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics +{ + struct IndicatorDescriptor_eventSetProjectionMode_Parms + { + EActorCanvasProjectionMode InProjectionMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InProjectionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InProjectionMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode = { "InProjectionMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetProjectionMode_Parms, InProjectionMode), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(0, nullptr) }; // 2516112598 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::NewProp_InProjectionMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetProjectionMode", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::IndicatorDescriptor_eventSetProjectionMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::IndicatorDescriptor_eventSetProjectionMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetProjectionMode) +{ + P_GET_ENUM(EActorCanvasProjectionMode,Z_Param_InProjectionMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetProjectionMode(EActorCanvasProjectionMode(Z_Param_InProjectionMode)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetProjectionMode + +// Begin Class UIndicatorDescriptor Function SetSceneComponent +struct Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics +{ + struct IndicatorDescriptor_eventSetSceneComponent_Parms + { + USceneComponent* InComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::NewProp_InComponent = { "InComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetSceneComponent_Parms, InComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InComponent_MetaData), NewProp_InComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::NewProp_InComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetSceneComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::IndicatorDescriptor_eventSetSceneComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::IndicatorDescriptor_eventSetSceneComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetSceneComponent) +{ + P_GET_OBJECT(USceneComponent,Z_Param_InComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSceneComponent(Z_Param_InComponent); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetSceneComponent + +// Begin Class UIndicatorDescriptor Function SetScreenSpaceOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics +{ + struct IndicatorDescriptor_eventSetScreenSpaceOffset_Parms + { + FVector2D Offset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Offset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::NewProp_Offset = { "Offset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetScreenSpaceOffset_Parms, Offset), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::NewProp_Offset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetScreenSpaceOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::IndicatorDescriptor_eventSetScreenSpaceOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::IndicatorDescriptor_eventSetScreenSpaceOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetScreenSpaceOffset) +{ + P_GET_STRUCT(FVector2D,Z_Param_Offset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetScreenSpaceOffset(Z_Param_Offset); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetScreenSpaceOffset + +// Begin Class UIndicatorDescriptor Function SetShowClampToScreenArrow +struct Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics +{ + struct IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms + { + bool bValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue_SetBit(void* Obj) +{ + ((IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms*)Obj)->bValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue = { "bValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms), &Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::NewProp_bValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetShowClampToScreenArrow", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::IndicatorDescriptor_eventSetShowClampToScreenArrow_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetShowClampToScreenArrow) +{ + P_GET_UBOOL(Z_Param_bValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowClampToScreenArrow(Z_Param_bValue); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetShowClampToScreenArrow + +// Begin Class UIndicatorDescriptor Function SetVAlign +struct Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics +{ + struct IndicatorDescriptor_eventSetVAlign_Parms + { + TEnumAsByte InVAlignment; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InVAlignment; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::NewProp_InVAlignment = { "InVAlignment", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetVAlign_Parms, InVAlignment), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(0, nullptr) }; // 550775363 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::NewProp_InVAlignment, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetVAlign", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::IndicatorDescriptor_eventSetVAlign_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::IndicatorDescriptor_eventSetVAlign_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetVAlign) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_InVAlignment); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetVAlign(EVerticalAlignment(Z_Param_InVAlignment)); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetVAlign + +// Begin Class UIndicatorDescriptor Function SetWorldPositionOffset +struct Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics +{ + struct IndicatorDescriptor_eventSetWorldPositionOffset_Parms + { + FVector Offset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Offset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::NewProp_Offset = { "Offset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorDescriptor_eventSetWorldPositionOffset_Parms, Offset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::NewProp_Offset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "SetWorldPositionOffset", nullptr, nullptr, Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::IndicatorDescriptor_eventSetWorldPositionOffset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::IndicatorDescriptor_eventSetWorldPositionOffset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execSetWorldPositionOffset) +{ + P_GET_STRUCT(FVector,Z_Param_Offset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetWorldPositionOffset(Z_Param_Offset); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function SetWorldPositionOffset + +// Begin Class UIndicatorDescriptor Function UnregisterIndicator +struct Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorDescriptor, nullptr, "UnregisterIndicator", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorDescriptor::execUnregisterIndicator) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterIndicator(); + P_NATIVE_END; +} +// End Class UIndicatorDescriptor Function UnregisterIndicator + +// Begin Class UIndicatorDescriptor +void UIndicatorDescriptor::StaticRegisterNativesUIndicatorDescriptor() +{ + UClass* Class = UIndicatorDescriptor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAutoRemoveWhenIndicatorComponentIsNull", &UIndicatorDescriptor::execGetAutoRemoveWhenIndicatorComponentIsNull }, + { "GetBoundingBoxAnchor", &UIndicatorDescriptor::execGetBoundingBoxAnchor }, + { "GetClampToScreen", &UIndicatorDescriptor::execGetClampToScreen }, + { "GetComponentSocketName", &UIndicatorDescriptor::execGetComponentSocketName }, + { "GetDataObject", &UIndicatorDescriptor::execGetDataObject }, + { "GetHAlign", &UIndicatorDescriptor::execGetHAlign }, + { "GetIndicatorClass", &UIndicatorDescriptor::execGetIndicatorClass }, + { "GetIsVisible", &UIndicatorDescriptor::execGetIsVisible }, + { "GetPriority", &UIndicatorDescriptor::execGetPriority }, + { "GetProjectionMode", &UIndicatorDescriptor::execGetProjectionMode }, + { "GetSceneComponent", &UIndicatorDescriptor::execGetSceneComponent }, + { "GetScreenSpaceOffset", &UIndicatorDescriptor::execGetScreenSpaceOffset }, + { "GetShowClampToScreenArrow", &UIndicatorDescriptor::execGetShowClampToScreenArrow }, + { "GetVAlign", &UIndicatorDescriptor::execGetVAlign }, + { "GetWorldPositionOffset", &UIndicatorDescriptor::execGetWorldPositionOffset }, + { "SetAutoRemoveWhenIndicatorComponentIsNull", &UIndicatorDescriptor::execSetAutoRemoveWhenIndicatorComponentIsNull }, + { "SetBoundingBoxAnchor", &UIndicatorDescriptor::execSetBoundingBoxAnchor }, + { "SetClampToScreen", &UIndicatorDescriptor::execSetClampToScreen }, + { "SetComponentSocketName", &UIndicatorDescriptor::execSetComponentSocketName }, + { "SetDataObject", &UIndicatorDescriptor::execSetDataObject }, + { "SetDesiredVisibility", &UIndicatorDescriptor::execSetDesiredVisibility }, + { "SetHAlign", &UIndicatorDescriptor::execSetHAlign }, + { "SetIndicatorClass", &UIndicatorDescriptor::execSetIndicatorClass }, + { "SetPriority", &UIndicatorDescriptor::execSetPriority }, + { "SetProjectionMode", &UIndicatorDescriptor::execSetProjectionMode }, + { "SetSceneComponent", &UIndicatorDescriptor::execSetSceneComponent }, + { "SetScreenSpaceOffset", &UIndicatorDescriptor::execSetScreenSpaceOffset }, + { "SetShowClampToScreenArrow", &UIndicatorDescriptor::execSetShowClampToScreenArrow }, + { "SetVAlign", &UIndicatorDescriptor::execSetVAlign }, + { "SetWorldPositionOffset", &UIndicatorDescriptor::execSetWorldPositionOffset }, + { "UnregisterIndicator", &UIndicatorDescriptor::execUnregisterIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorDescriptor); +UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister() +{ + return UIndicatorDescriptor::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Describes and controls an active indicator. It is highly recommended that your widget implements\n * IActorIndicatorWidget so that it can 'bind' to the associated data.\n */" }, +#endif + { "IncludePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes and controls an active indicator. It is highly recommended that your widget implements\nIActorIndicatorWidget so that it can 'bind' to the associated data." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bVisible_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bClampToScreen_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowClampToScreenArrow_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideScreenPosition_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ProjectionMode_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HAlignment_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VAlignment_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundingBoxAnchor_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScreenSpaceOffset_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldPositionOffset_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DataObject_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Component_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentSocketName_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IndicatorWidgetClass_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ManagerPtr_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorDescriptor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bVisible; + static void NewProp_bClampToScreen_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bClampToScreen; + static void NewProp_bShowClampToScreenArrow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowClampToScreenArrow; + static void NewProp_bOverrideScreenPosition_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideScreenPosition; + static void NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAutoRemoveWhenIndicatorComponentIsNull; + static const UECodeGen_Private::FBytePropertyParams NewProp_ProjectionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ProjectionMode; + static const UECodeGen_Private::FBytePropertyParams NewProp_HAlignment; + static const UECodeGen_Private::FBytePropertyParams NewProp_VAlignment; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundingBoxAnchor; + static const UECodeGen_Private::FStructPropertyParams NewProp_ScreenSpaceOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_WorldPositionOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Component; + static const UECodeGen_Private::FNamePropertyParams NewProp_ComponentSocketName; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_IndicatorWidgetClass; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ManagerPtr; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorDescriptor_GetAutoRemoveWhenIndicatorComponentIsNull, "GetAutoRemoveWhenIndicatorComponentIsNull" }, // 586661031 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetBoundingBoxAnchor, "GetBoundingBoxAnchor" }, // 3612467272 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetClampToScreen, "GetClampToScreen" }, // 1240186353 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetComponentSocketName, "GetComponentSocketName" }, // 1507430976 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetDataObject, "GetDataObject" }, // 375881837 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetHAlign, "GetHAlign" }, // 4274260103 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetIndicatorClass, "GetIndicatorClass" }, // 402199051 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetIsVisible, "GetIsVisible" }, // 1119965446 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetPriority, "GetPriority" }, // 807588186 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetProjectionMode, "GetProjectionMode" }, // 469690149 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetSceneComponent, "GetSceneComponent" }, // 2937080312 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetScreenSpaceOffset, "GetScreenSpaceOffset" }, // 1966415760 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetShowClampToScreenArrow, "GetShowClampToScreenArrow" }, // 1091688510 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetVAlign, "GetVAlign" }, // 1541585313 + { &Z_Construct_UFunction_UIndicatorDescriptor_GetWorldPositionOffset, "GetWorldPositionOffset" }, // 3229724626 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetAutoRemoveWhenIndicatorComponentIsNull, "SetAutoRemoveWhenIndicatorComponentIsNull" }, // 4227089716 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetBoundingBoxAnchor, "SetBoundingBoxAnchor" }, // 237700587 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetClampToScreen, "SetClampToScreen" }, // 3757377185 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetComponentSocketName, "SetComponentSocketName" }, // 2132015575 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetDataObject, "SetDataObject" }, // 1015785284 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetDesiredVisibility, "SetDesiredVisibility" }, // 3795572908 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetHAlign, "SetHAlign" }, // 949138408 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetIndicatorClass, "SetIndicatorClass" }, // 2491182527 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetPriority, "SetPriority" }, // 207615074 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetProjectionMode, "SetProjectionMode" }, // 3188167591 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetSceneComponent, "SetSceneComponent" }, // 3350924914 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetScreenSpaceOffset, "SetScreenSpaceOffset" }, // 3230735886 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetShowClampToScreenArrow, "SetShowClampToScreenArrow" }, // 2064956278 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetVAlign, "SetVAlign" }, // 2670287014 + { &Z_Construct_UFunction_UIndicatorDescriptor_SetWorldPositionOffset, "SetWorldPositionOffset" }, // 184897898 + { &Z_Construct_UFunction_UIndicatorDescriptor_UnregisterIndicator, "UnregisterIndicator" }, // 152098449 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible = { "bVisible", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bVisible_MetaData), NewProp_bVisible_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bClampToScreen = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen = { "bClampToScreen", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bClampToScreen_MetaData), NewProp_bClampToScreen_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bShowClampToScreenArrow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow = { "bShowClampToScreenArrow", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowClampToScreenArrow_MetaData), NewProp_bShowClampToScreenArrow_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bOverrideScreenPosition = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition = { "bOverrideScreenPosition", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideScreenPosition_MetaData), NewProp_bOverrideScreenPosition_MetaData) }; +void Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit(void* Obj) +{ + ((UIndicatorDescriptor*)Obj)->bAutoRemoveWhenIndicatorComponentIsNull = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull = { "bAutoRemoveWhenIndicatorComponentIsNull", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIndicatorDescriptor), &Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData), NewProp_bAutoRemoveWhenIndicatorComponentIsNull_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode = { "ProjectionMode", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ProjectionMode), Z_Construct_UEnum_LyraGame_EActorCanvasProjectionMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ProjectionMode_MetaData), NewProp_ProjectionMode_MetaData) }; // 2516112598 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_HAlignment = { "HAlignment", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, HAlignment), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HAlignment_MetaData), NewProp_HAlignment_MetaData) }; // 1062133256 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_VAlignment = { "VAlignment", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, VAlignment), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VAlignment_MetaData), NewProp_VAlignment_MetaData) }; // 550775363 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_BoundingBoxAnchor = { "BoundingBoxAnchor", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, BoundingBoxAnchor), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundingBoxAnchor_MetaData), NewProp_BoundingBoxAnchor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ScreenSpaceOffset = { "ScreenSpaceOffset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ScreenSpaceOffset), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScreenSpaceOffset_MetaData), NewProp_ScreenSpaceOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_WorldPositionOffset = { "WorldPositionOffset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, WorldPositionOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldPositionOffset_MetaData), NewProp_WorldPositionOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_DataObject = { "DataObject", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, DataObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DataObject_MetaData), NewProp_DataObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Component = { "Component", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, Component), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Component_MetaData), NewProp_Component_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ComponentSocketName = { "ComponentSocketName", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ComponentSocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentSocketName_MetaData), NewProp_ComponentSocketName_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_IndicatorWidgetClass = { "IndicatorWidgetClass", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, IndicatorWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IndicatorWidgetClass_MetaData), NewProp_IndicatorWidgetClass_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ManagerPtr = { "ManagerPtr", nullptr, (EPropertyFlags)0x0044000000080008, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorDescriptor, ManagerPtr), Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ManagerPtr_MetaData), NewProp_ManagerPtr_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bVisible, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bClampToScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bShowClampToScreenArrow, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bOverrideScreenPosition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_bAutoRemoveWhenIndicatorComponentIsNull, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ProjectionMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_HAlignment, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_VAlignment, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_BoundingBoxAnchor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ScreenSpaceOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_WorldPositionOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_DataObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_Component, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ComponentSocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_IndicatorWidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorDescriptor_Statics::NewProp_ManagerPtr, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UIndicatorDescriptor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorDescriptor_Statics::ClassParams = { + &UIndicatorDescriptor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorDescriptor_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorDescriptor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorDescriptor() +{ + if (!Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton, Z_Construct_UClass_UIndicatorDescriptor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorDescriptor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorDescriptor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorDescriptor); +UIndicatorDescriptor::~UIndicatorDescriptor() {} +// End Class UIndicatorDescriptor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EActorCanvasProjectionMode_StaticEnum, TEXT("EActorCanvasProjectionMode"), &Z_Registration_Info_UEnum_EActorCanvasProjectionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2516112598U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorDescriptor, UIndicatorDescriptor::StaticClass, TEXT("UIndicatorDescriptor"), &Z_Registration_Info_UClass_UIndicatorDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorDescriptor), 852713036U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_3577030636(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h new file mode 100644 index 00000000..a9573e5c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorDescriptor.generated.h @@ -0,0 +1,104 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorDescriptor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class USceneComponent; +class UUserWidget; +enum class EActorCanvasProjectionMode : uint8; +#ifdef LYRAGAME_IndicatorDescriptor_generated_h +#error "IndicatorDescriptor.generated.h already included, missing '#pragma once' in IndicatorDescriptor.h" +#endif +#define LYRAGAME_IndicatorDescriptor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnregisterIndicator); \ + DECLARE_FUNCTION(execSetPriority); \ + DECLARE_FUNCTION(execGetPriority); \ + DECLARE_FUNCTION(execSetBoundingBoxAnchor); \ + DECLARE_FUNCTION(execGetBoundingBoxAnchor); \ + DECLARE_FUNCTION(execSetScreenSpaceOffset); \ + DECLARE_FUNCTION(execGetScreenSpaceOffset); \ + DECLARE_FUNCTION(execSetWorldPositionOffset); \ + DECLARE_FUNCTION(execGetWorldPositionOffset); \ + DECLARE_FUNCTION(execSetShowClampToScreenArrow); \ + DECLARE_FUNCTION(execGetShowClampToScreenArrow); \ + DECLARE_FUNCTION(execSetClampToScreen); \ + DECLARE_FUNCTION(execGetClampToScreen); \ + DECLARE_FUNCTION(execSetVAlign); \ + DECLARE_FUNCTION(execGetVAlign); \ + DECLARE_FUNCTION(execSetHAlign); \ + DECLARE_FUNCTION(execGetHAlign); \ + DECLARE_FUNCTION(execSetProjectionMode); \ + DECLARE_FUNCTION(execGetProjectionMode); \ + DECLARE_FUNCTION(execSetDesiredVisibility); \ + DECLARE_FUNCTION(execGetIsVisible); \ + DECLARE_FUNCTION(execGetAutoRemoveWhenIndicatorComponentIsNull); \ + DECLARE_FUNCTION(execSetAutoRemoveWhenIndicatorComponentIsNull); \ + DECLARE_FUNCTION(execSetIndicatorClass); \ + DECLARE_FUNCTION(execGetIndicatorClass); \ + DECLARE_FUNCTION(execSetComponentSocketName); \ + DECLARE_FUNCTION(execGetComponentSocketName); \ + DECLARE_FUNCTION(execSetSceneComponent); \ + DECLARE_FUNCTION(execGetSceneComponent); \ + DECLARE_FUNCTION(execSetDataObject); \ + DECLARE_FUNCTION(execGetDataObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUIndicatorDescriptor(); \ + friend struct Z_Construct_UClass_UIndicatorDescriptor_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorDescriptor, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorDescriptor) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorDescriptor(UIndicatorDescriptor&&); \ + UIndicatorDescriptor(const UIndicatorDescriptor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorDescriptor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorDescriptor); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UIndicatorDescriptor) \ + NO_API virtual ~UIndicatorDescriptor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_36_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h_39_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorDescriptor_h + + +#define FOREACH_ENUM_EACTORCANVASPROJECTIONMODE(op) \ + op(EActorCanvasProjectionMode::ComponentPoint) \ + op(EActorCanvasProjectionMode::ComponentBoundingBox) \ + op(EActorCanvasProjectionMode::ComponentScreenBoundingBox) \ + op(EActorCanvasProjectionMode::ActorBoundingBox) \ + op(EActorCanvasProjectionMode::ActorScreenBoundingBox) + +enum class EActorCanvasProjectionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp new file mode 100644 index 00000000..279e7f7b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.gen.cpp @@ -0,0 +1,109 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorLayer.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorLayer() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLayer(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLayer_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UIndicatorLayer +void UIndicatorLayer::StaticRegisterNativesUIndicatorLayer() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorLayer); +UClass* Z_Construct_UClass_UIndicatorLayer_NoRegister() +{ + return UIndicatorLayer::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorLayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/IndicatorSystem/IndicatorLayer.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArrowBrush_MetaData[] = { + { "Category", "Appearance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Default arrow brush to use if UI is clamped to the screen and needs to show an arrow. */" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default arrow brush to use if UI is clamped to the screen and needs to show an arrow." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ArrowBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UIndicatorLayer_Statics::NewProp_ArrowBrush = { "ArrowBrush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIndicatorLayer, ArrowBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArrowBrush_MetaData), NewProp_ArrowBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIndicatorLayer_Statics::NewProp_ArrowBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UIndicatorLayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorLayer_Statics::ClassParams = { + &UIndicatorLayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorLayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorLayer() +{ + if (!Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton, Z_Construct_UClass_UIndicatorLayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorLayer.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorLayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorLayer); +UIndicatorLayer::~UIndicatorLayer() {} +// End Class UIndicatorLayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorLayer, UIndicatorLayer::StaticClass, TEXT("UIndicatorLayer"), &Z_Registration_Info_UClass_UIndicatorLayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorLayer), 4224139507U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_2353594586(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.generated.h new file mode 100644 index 00000000..2c518106 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLayer.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorLayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_IndicatorLayer_generated_h +#error "IndicatorLayer.generated.h already included, missing '#pragma once' in IndicatorLayer.h" +#endif +#define LYRAGAME_IndicatorLayer_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_INCLASS \ +private: \ + static void StaticRegisterNativesUIndicatorLayer(); \ + friend struct Z_Construct_UClass_UIndicatorLayer_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorLayer, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorLayer) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UIndicatorLayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UIndicatorLayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorLayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorLayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorLayer(UIndicatorLayer&&); \ + UIndicatorLayer(const UIndicatorLayer&); \ +public: \ + NO_API virtual ~UIndicatorLayer(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h_16_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp new file mode 100644 index 00000000..844a26a1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.gen.cpp @@ -0,0 +1,154 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/IndicatorLibrary.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIndicatorLibrary() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UIndicatorLibrary Function GetIndicatorManagerComponent +struct Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics +{ + struct IndicatorLibrary_eventGetIndicatorManagerComponent_Parms + { + AController* Controller; + ULyraIndicatorManagerComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Controller; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_Controller = { "Controller", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorLibrary_eventGetIndicatorManagerComponent_Parms, Controller), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(IndicatorLibrary_eventGetIndicatorManagerComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_Controller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UIndicatorLibrary, nullptr, "GetIndicatorManagerComponent", nullptr, nullptr, Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::IndicatorLibrary_eventGetIndicatorManagerComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::IndicatorLibrary_eventGetIndicatorManagerComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UIndicatorLibrary::execGetIndicatorManagerComponent) +{ + P_GET_OBJECT(AController,Z_Param_Controller); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraIndicatorManagerComponent**)Z_Param__Result=UIndicatorLibrary::GetIndicatorManagerComponent(Z_Param_Controller); + P_NATIVE_END; +} +// End Class UIndicatorLibrary Function GetIndicatorManagerComponent + +// Begin Class UIndicatorLibrary +void UIndicatorLibrary::StaticRegisterNativesUIndicatorLibrary() +{ + UClass* Class = UIndicatorLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetIndicatorManagerComponent", &UIndicatorLibrary::execGetIndicatorManagerComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UIndicatorLibrary); +UClass* Z_Construct_UClass_UIndicatorLibrary_NoRegister() +{ + return UIndicatorLibrary::StaticClass(); +} +struct Z_Construct_UClass_UIndicatorLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + { "ModuleRelativePath", "UI/IndicatorSystem/IndicatorLibrary.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UIndicatorLibrary_GetIndicatorManagerComponent, "GetIndicatorManagerComponent" }, // 1462875548 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UIndicatorLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UIndicatorLibrary_Statics::ClassParams = { + &UIndicatorLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIndicatorLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_UIndicatorLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UIndicatorLibrary() +{ + if (!Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton, Z_Construct_UClass_UIndicatorLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UIndicatorLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UIndicatorLibrary::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UIndicatorLibrary); +UIndicatorLibrary::~UIndicatorLibrary() {} +// End Class UIndicatorLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UIndicatorLibrary, UIndicatorLibrary::StaticClass, TEXT("UIndicatorLibrary"), &Z_Registration_Info_UClass_UIndicatorLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIndicatorLibrary), 3126916581U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_2897106164(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.generated.h new file mode 100644 index 00000000..ea5b11c9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IndicatorLibrary.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/IndicatorLibrary.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class ULyraIndicatorManagerComponent; +#ifdef LYRAGAME_IndicatorLibrary_generated_h +#error "IndicatorLibrary.generated.h already included, missing '#pragma once' in IndicatorLibrary.h" +#endif +#define LYRAGAME_IndicatorLibrary_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetIndicatorManagerComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUIndicatorLibrary(); \ + friend struct Z_Construct_UClass_UIndicatorLibrary_Statics; \ +public: \ + DECLARE_CLASS(UIndicatorLibrary, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UIndicatorLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UIndicatorLibrary(UIndicatorLibrary&&); \ + UIndicatorLibrary(const UIndicatorLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UIndicatorLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UIndicatorLibrary); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UIndicatorLibrary) \ + NO_API virtual ~UIndicatorLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_IndicatorLibrary_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.gen.cpp new file mode 100644 index 00000000..168ec4ba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.gen.cpp @@ -0,0 +1,186 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionOption.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionOption() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemComponent_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInteractionOption +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InteractionOption; +class UScriptStruct* FInteractionOption::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInteractionOption, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InteractionOption")); + } + return Z_Registration_Info_UScriptStruct_InteractionOption.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInteractionOption::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInteractionOption_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractableTarget_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The interactable target */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interactable target" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Simple text the interaction might return */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Simple text the interaction might return" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubText_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Simple sub-text the interaction might return */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Simple sub-text the interaction might return" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionAbilityToGrant_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability to grant the avatar when they get near interactable objects. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability to grant the avatar when they get near interactable objects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetAbilitySystem_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability system on the target that can be used for the TargetInteractionHandle and sending the event, if needed. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system on the target that can be used for the TargetInteractionHandle and sending the event, if needed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetInteractionAbilityHandle_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The ability spec to activate on the object for this option. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability spec to activate on the object for this option." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionWidgetClass_MetaData[] = { + { "Category", "InteractionOption" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The widget to show for this kind of interaction. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionOption.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to show for this kind of interaction." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FInterfacePropertyParams NewProp_InteractableTarget; + static const UECodeGen_Private::FTextPropertyParams NewProp_Text; + static const UECodeGen_Private::FTextPropertyParams NewProp_SubText; + static const UECodeGen_Private::FClassPropertyParams NewProp_InteractionAbilityToGrant; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetAbilitySystem; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetInteractionAbilityHandle; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_InteractionWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractableTarget = { "InteractableTarget", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractableTarget), Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractableTarget_MetaData), NewProp_InteractableTarget_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_Text = { "Text", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, Text), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_MetaData), NewProp_Text_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_SubText = { "SubText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, SubText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubText_MetaData), NewProp_SubText_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionAbilityToGrant = { "InteractionAbilityToGrant", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractionAbilityToGrant), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionAbilityToGrant_MetaData), NewProp_InteractionAbilityToGrant_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetAbilitySystem = { "TargetAbilitySystem", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, TargetAbilitySystem), Z_Construct_UClass_UAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetAbilitySystem_MetaData), NewProp_TargetAbilitySystem_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetInteractionAbilityHandle = { "TargetInteractionAbilityHandle", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, TargetInteractionAbilityHandle), Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetInteractionAbilityHandle_MetaData), NewProp_TargetInteractionAbilityHandle_MetaData) }; // 3490030742 +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionWidgetClass = { "InteractionWidgetClass", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionOption, InteractionWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionWidgetClass_MetaData), NewProp_InteractionWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractableTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_Text, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_SubText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionAbilityToGrant, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetAbilitySystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_TargetInteractionAbilityHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionOption_Statics::NewProp_InteractionWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInteractionOption_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InteractionOption", + Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::PropPointers), + sizeof(FInteractionOption), + alignof(FInteractionOption), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionOption_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInteractionOption_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton, Z_Construct_UScriptStruct_FInteractionOption_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InteractionOption.InnerSingleton; +} +// End ScriptStruct FInteractionOption + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInteractionOption::StaticStruct, Z_Construct_UScriptStruct_FInteractionOption_Statics::NewStructOps, TEXT("InteractionOption"), &Z_Registration_Info_UScriptStruct_InteractionOption, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInteractionOption), 4256573821U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_3492746877(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.generated.h new file mode 100644 index 00000000..7fa87937 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionOption.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InteractionOption_generated_h +#error "InteractionOption.generated.h already included, missing '#pragma once' in InteractionOption.h" +#endif +#define LYRAGAME_InteractionOption_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInteractionOption_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionOption_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.gen.cpp new file mode 100644 index 00000000..e3cf4250 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.gen.cpp @@ -0,0 +1,129 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionQuery.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionQuery() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FInteractionQuery +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_InteractionQuery; +class UScriptStruct* FInteractionQuery::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInteractionQuery, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("InteractionQuery")); + } + return Z_Registration_Info_UScriptStruct_InteractionQuery.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FInteractionQuery::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FInteractionQuery_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestingAvatar_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The requesting pawn. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The requesting pawn." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestingController_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allow us to specify a controller - does not need to match the owner of the requesting avatar. */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allow us to specify a controller - does not need to match the owner of the requesting avatar." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OptionalObjectData_MetaData[] = { + { "Category", "InteractionQuery" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A generic UObject to shove in extra data required for the interaction */" }, +#endif + { "ModuleRelativePath", "Interaction/InteractionQuery.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A generic UObject to shove in extra data required for the interaction" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_RequestingAvatar; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_RequestingController; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_OptionalObjectData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingAvatar = { "RequestingAvatar", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, RequestingAvatar), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestingAvatar_MetaData), NewProp_RequestingAvatar_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingController = { "RequestingController", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, RequestingController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestingController_MetaData), NewProp_RequestingController_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_OptionalObjectData = { "OptionalObjectData", nullptr, (EPropertyFlags)0x0014000000000004, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInteractionQuery, OptionalObjectData), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OptionalObjectData_MetaData), NewProp_OptionalObjectData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingAvatar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_RequestingController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewProp_OptionalObjectData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInteractionQuery_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "InteractionQuery", + Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::PropPointers), + sizeof(FInteractionQuery), + alignof(FInteractionQuery), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInteractionQuery_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInteractionQuery_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FInteractionQuery() +{ + if (!Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton, Z_Construct_UScriptStruct_FInteractionQuery_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_InteractionQuery.InnerSingleton; +} +// End ScriptStruct FInteractionQuery + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FInteractionQuery::StaticStruct, Z_Construct_UScriptStruct_FInteractionQuery_Statics::NewStructOps, TEXT("InteractionQuery"), &Z_Registration_Info_UScriptStruct_InteractionQuery, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInteractionQuery), 2707672158U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_833749486(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.generated.h new file mode 100644 index 00000000..998bbfc0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionQuery.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InteractionQuery_generated_h +#error "InteractionQuery.generated.h already included, missing '#pragma once' in InteractionQuery.h" +#endif +#define LYRAGAME_InteractionQuery_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h_14_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FInteractionQuery_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionQuery_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.gen.cpp new file mode 100644 index 00000000..4a5673a2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.gen.cpp @@ -0,0 +1,202 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/InteractionStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInteractionStatics() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractionStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInteractionStatics Function GetActorFromInteractableTarget +struct Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics +{ + struct InteractionStatics_eventGetActorFromInteractableTarget_Parms + { + TScriptInterface InteractableTarget; + AActor* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FInterfacePropertyParams NewProp_InteractableTarget; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_InteractableTarget = { "InteractableTarget", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetActorFromInteractableTarget_Parms, InteractableTarget), Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetActorFromInteractableTarget_Parms, ReturnValue), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_InteractableTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UInteractionStatics, nullptr, "GetActorFromInteractableTarget", nullptr, nullptr, Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::InteractionStatics_eventGetActorFromInteractableTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::InteractionStatics_eventGetActorFromInteractableTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UInteractionStatics::execGetActorFromInteractableTarget) +{ + P_GET_TINTERFACE(IInteractableTarget,Z_Param_InteractableTarget); + P_FINISH; + P_NATIVE_BEGIN; + *(AActor**)Z_Param__Result=UInteractionStatics::GetActorFromInteractableTarget(Z_Param_InteractableTarget); + P_NATIVE_END; +} +// End Class UInteractionStatics Function GetActorFromInteractableTarget + +// Begin Class UInteractionStatics Function GetInteractableTargetsFromActor +struct Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics +{ + struct InteractionStatics_eventGetInteractableTargetsFromActor_Parms + { + AActor* Actor; + TArray > OutInteractableTargets; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FInterfacePropertyParams NewProp_OutInteractableTargets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_OutInteractableTargets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetInteractableTargetsFromActor_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FInterfacePropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets_Inner = { "OutInteractableTargets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Interface, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UInteractableTarget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets = { "OutInteractableTargets", nullptr, (EPropertyFlags)0x0014000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(InteractionStatics_eventGetInteractableTargetsFromActor_Parms, OutInteractableTargets), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::NewProp_OutInteractableTargets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UInteractionStatics, nullptr, "GetInteractableTargetsFromActor", nullptr, nullptr, Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::InteractionStatics_eventGetInteractableTargetsFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::InteractionStatics_eventGetInteractableTargetsFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UInteractionStatics::execGetInteractableTargetsFromActor) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_GET_TARRAY_REF(TScriptInterface,Z_Param_Out_OutInteractableTargets); + P_FINISH; + P_NATIVE_BEGIN; + UInteractionStatics::GetInteractableTargetsFromActor(Z_Param_Actor,Z_Param_Out_OutInteractableTargets); + P_NATIVE_END; +} +// End Class UInteractionStatics Function GetInteractableTargetsFromActor + +// Begin Class UInteractionStatics +void UInteractionStatics::StaticRegisterNativesUInteractionStatics() +{ + UClass* Class = UInteractionStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetActorFromInteractableTarget", &UInteractionStatics::execGetActorFromInteractableTarget }, + { "GetInteractableTargetsFromActor", &UInteractionStatics::execGetInteractableTargetsFromActor }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInteractionStatics); +UClass* Z_Construct_UClass_UInteractionStatics_NoRegister() +{ + return UInteractionStatics::StaticClass(); +} +struct Z_Construct_UClass_UInteractionStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "IncludePath", "Interaction/InteractionStatics.h" }, + { "ModuleRelativePath", "Interaction/InteractionStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UInteractionStatics_GetActorFromInteractableTarget, "GetActorFromInteractableTarget" }, // 4167680917 + { &Z_Construct_UFunction_UInteractionStatics_GetInteractableTargetsFromActor, "GetInteractableTargetsFromActor" }, // 2032744671 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UInteractionStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInteractionStatics_Statics::ClassParams = { + &UInteractionStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInteractionStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_UInteractionStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInteractionStatics() +{ + if (!Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton, Z_Construct_UClass_UInteractionStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInteractionStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInteractionStatics::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInteractionStatics); +UInteractionStatics::~UInteractionStatics() {} +// End Class UInteractionStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInteractionStatics, UInteractionStatics::StaticClass, TEXT("UInteractionStatics"), &Z_Registration_Info_UClass_UInteractionStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInteractionStatics), 3701344633U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_5150132(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.generated.h new file mode 100644 index 00000000..70074ff7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionStatics.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/InteractionStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class IInteractableTarget; +#ifdef LYRAGAME_InteractionStatics_generated_h +#error "InteractionStatics.generated.h already included, missing '#pragma once' in InteractionStatics.h" +#endif +#define LYRAGAME_InteractionStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetInteractableTargetsFromActor); \ + DECLARE_FUNCTION(execGetActorFromInteractableTarget); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInteractionStatics(); \ + friend struct Z_Construct_UClass_UInteractionStatics_Statics; \ +public: \ + DECLARE_CLASS(UInteractionStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInteractionStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInteractionStatics(UInteractionStatics&&); \ + UInteractionStatics(const UInteractionStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInteractionStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInteractionStatics); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UInteractionStatics) \ + NO_API virtual ~UInteractionStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_InteractionStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp new file mode 100644 index 00000000..6cdee18e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.gen.cpp @@ -0,0 +1,104 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_EquippableItem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_EquippableItem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_EquippableItem +void UInventoryFragment_EquippableItem::StaticRegisterNativesUInventoryFragment_EquippableItem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_EquippableItem); +UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem_NoRegister() +{ + return UInventoryFragment_EquippableItem::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_EquippableItem.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_EquippableItem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentDefinition_MetaData[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_EquippableItem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_EquippableItem, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentDefinition_MetaData), NewProp_EquipmentDefinition_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::NewProp_EquipmentDefinition, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::ClassParams = { + &UInventoryFragment_EquippableItem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_EquippableItem() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton, Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_EquippableItem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_EquippableItem::StaticClass(); +} +UInventoryFragment_EquippableItem::UInventoryFragment_EquippableItem(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_EquippableItem); +UInventoryFragment_EquippableItem::~UInventoryFragment_EquippableItem() {} +// End Class UInventoryFragment_EquippableItem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_EquippableItem, UInventoryFragment_EquippableItem::StaticClass, TEXT("UInventoryFragment_EquippableItem"), &Z_Registration_Info_UClass_UInventoryFragment_EquippableItem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_EquippableItem), 3723313257U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_3457227960(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h new file mode 100644 index 00000000..11cc2d4b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_EquippableItem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_EquippableItem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_EquippableItem_generated_h +#error "InventoryFragment_EquippableItem.generated.h already included, missing '#pragma once' in InventoryFragment_EquippableItem.h" +#endif +#define LYRAGAME_InventoryFragment_EquippableItem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_EquippableItem(); \ + friend struct Z_Construct_UClass_UInventoryFragment_EquippableItem_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_EquippableItem, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_EquippableItem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_EquippableItem(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_EquippableItem(UInventoryFragment_EquippableItem&&); \ + UInventoryFragment_EquippableItem(const UInventoryFragment_EquippableItem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_EquippableItem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_EquippableItem); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_EquippableItem) \ + NO_API virtual ~UInventoryFragment_EquippableItem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_EquippableItem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp new file mode 100644 index 00000000..5ec61aeb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_PickupIcon.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_PickupIcon() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_USkeletalMesh_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_PickupIcon +void UInventoryFragment_PickupIcon::StaticRegisterNativesUInventoryFragment_PickupIcon() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_PickupIcon); +UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon_NoRegister() +{ + return UInventoryFragment_PickupIcon::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_PickupIcon.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SkeletalMesh_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PadColor_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_PickupIcon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SkeletalMesh; + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FStructPropertyParams NewProp_PadColor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_SkeletalMesh = { "SkeletalMesh", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, SkeletalMesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SkeletalMesh_MetaData), NewProp_SkeletalMesh_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_PadColor = { "PadColor", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_PickupIcon, PadColor), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PadColor_MetaData), NewProp_PadColor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_SkeletalMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::NewProp_PadColor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::ClassParams = { + &UInventoryFragment_PickupIcon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_PickupIcon() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton, Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_PickupIcon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_PickupIcon::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_PickupIcon); +UInventoryFragment_PickupIcon::~UInventoryFragment_PickupIcon() {} +// End Class UInventoryFragment_PickupIcon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_PickupIcon, UInventoryFragment_PickupIcon::StaticClass, TEXT("UInventoryFragment_PickupIcon"), &Z_Registration_Info_UClass_UInventoryFragment_PickupIcon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_PickupIcon), 973779185U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_306961599(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h new file mode 100644 index 00000000..aab903ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_PickupIcon.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_PickupIcon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_PickupIcon_generated_h +#error "InventoryFragment_PickupIcon.generated.h already included, missing '#pragma once' in InventoryFragment_PickupIcon.h" +#endif +#define LYRAGAME_InventoryFragment_PickupIcon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_PickupIcon(); \ + friend struct Z_Construct_UClass_UInventoryFragment_PickupIcon_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_PickupIcon, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_PickupIcon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_PickupIcon(UInventoryFragment_PickupIcon&&); \ + UInventoryFragment_PickupIcon(const UInventoryFragment_PickupIcon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_PickupIcon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_PickupIcon); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UInventoryFragment_PickupIcon) \ + NO_API virtual ~UInventoryFragment_PickupIcon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_PickupIcon_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp new file mode 100644 index 00000000..9ba6f74a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_QuickBarIcon.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_QuickBarIcon() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_QuickBarIcon +void UInventoryFragment_QuickBarIcon::StaticRegisterNativesUInventoryFragment_QuickBarIcon() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_QuickBarIcon); +UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon_NoRegister() +{ + return UInventoryFragment_QuickBarIcon::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Brush_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AmmoBrush_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayNameWhenEquipped_MetaData[] = { + { "Category", "Appearance" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_QuickBarIcon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Brush; + static const UECodeGen_Private::FStructPropertyParams NewProp_AmmoBrush; + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayNameWhenEquipped; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_Brush = { "Brush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, Brush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Brush_MetaData), NewProp_Brush_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_AmmoBrush = { "AmmoBrush", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, AmmoBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AmmoBrush_MetaData), NewProp_AmmoBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_DisplayNameWhenEquipped = { "DisplayNameWhenEquipped", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_QuickBarIcon, DisplayNameWhenEquipped), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayNameWhenEquipped_MetaData), NewProp_DisplayNameWhenEquipped_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_Brush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_AmmoBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::NewProp_DisplayNameWhenEquipped, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::ClassParams = { + &UInventoryFragment_QuickBarIcon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_QuickBarIcon() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton, Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_QuickBarIcon::StaticClass(); +} +UInventoryFragment_QuickBarIcon::UInventoryFragment_QuickBarIcon(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_QuickBarIcon); +UInventoryFragment_QuickBarIcon::~UInventoryFragment_QuickBarIcon() {} +// End Class UInventoryFragment_QuickBarIcon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_QuickBarIcon, UInventoryFragment_QuickBarIcon::StaticClass, TEXT("UInventoryFragment_QuickBarIcon"), &Z_Registration_Info_UClass_UInventoryFragment_QuickBarIcon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_QuickBarIcon), 882345615U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_926576195(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h new file mode 100644 index 00000000..09b51bc0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_QuickBarIcon.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_QuickBarIcon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_QuickBarIcon_generated_h +#error "InventoryFragment_QuickBarIcon.generated.h already included, missing '#pragma once' in InventoryFragment_QuickBarIcon.h" +#endif +#define LYRAGAME_InventoryFragment_QuickBarIcon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_QuickBarIcon(); \ + friend struct Z_Construct_UClass_UInventoryFragment_QuickBarIcon_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_QuickBarIcon, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_QuickBarIcon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_QuickBarIcon(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_QuickBarIcon(UInventoryFragment_QuickBarIcon&&); \ + UInventoryFragment_QuickBarIcon(const UInventoryFragment_QuickBarIcon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_QuickBarIcon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_QuickBarIcon); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_QuickBarIcon) \ + NO_API virtual ~UInventoryFragment_QuickBarIcon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_QuickBarIcon_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp new file mode 100644 index 00000000..bfea0799 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.gen.cpp @@ -0,0 +1,107 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/InventoryFragment_ReticleConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_ReticleConfig() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_ReticleConfig +void UInventoryFragment_ReticleConfig::StaticRegisterNativesUInventoryFragment_ReticleConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_ReticleConfig); +UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig_NoRegister() +{ + return UInventoryFragment_ReticleConfig::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + { "ModuleRelativePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReticleWidgets_MetaData[] = { + { "Category", "Reticle" }, + { "ModuleRelativePath", "Weapons/InventoryFragment_ReticleConfig.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ReticleWidgets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReticleWidgets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets_Inner = { "ReticleWidgets", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets = { "ReticleWidgets", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_ReticleConfig, ReticleWidgets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReticleWidgets_MetaData), NewProp_ReticleWidgets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::NewProp_ReticleWidgets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::ClassParams = { + &UInventoryFragment_ReticleConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_ReticleConfig() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton, Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_ReticleConfig::StaticClass(); +} +UInventoryFragment_ReticleConfig::UInventoryFragment_ReticleConfig(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_ReticleConfig); +UInventoryFragment_ReticleConfig::~UInventoryFragment_ReticleConfig() {} +// End Class UInventoryFragment_ReticleConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_ReticleConfig, UInventoryFragment_ReticleConfig::StaticClass, TEXT("UInventoryFragment_ReticleConfig"), &Z_Registration_Info_UClass_UInventoryFragment_ReticleConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_ReticleConfig), 2367396655U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_2541663250(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h new file mode 100644 index 00000000..1de53562 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_ReticleConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/InventoryFragment_ReticleConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_ReticleConfig_generated_h +#error "InventoryFragment_ReticleConfig.generated.h already included, missing '#pragma once' in InventoryFragment_ReticleConfig.h" +#endif +#define LYRAGAME_InventoryFragment_ReticleConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_ReticleConfig(); \ + friend struct Z_Construct_UClass_UInventoryFragment_ReticleConfig_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_ReticleConfig, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_ReticleConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_ReticleConfig(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_ReticleConfig(UInventoryFragment_ReticleConfig&&); \ + UInventoryFragment_ReticleConfig(const UInventoryFragment_ReticleConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_ReticleConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_ReticleConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_ReticleConfig) \ + NO_API virtual ~UInventoryFragment_ReticleConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_InventoryFragment_ReticleConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp new file mode 100644 index 00000000..529f6b86 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.gen.cpp @@ -0,0 +1,110 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/InventoryFragment_SetStats.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeInventoryFragment_SetStats() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_SetStats(); +LYRAGAME_API UClass* Z_Construct_UClass_UInventoryFragment_SetStats_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UInventoryFragment_SetStats +void UInventoryFragment_SetStats::StaticRegisterNativesUInventoryFragment_SetStats() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UInventoryFragment_SetStats); +UClass* Z_Construct_UClass_UInventoryFragment_SetStats_NoRegister() +{ + return UInventoryFragment_SetStats::StaticClass(); +} +struct Z_Construct_UClass_UInventoryFragment_SetStats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Inventory/InventoryFragment_SetStats.h" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_SetStats.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitialItemStats_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Inventory/InventoryFragment_SetStats.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InitialItemStats_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_InitialItemStats_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_InitialItemStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_ValueProp = { "InitialItemStats", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_Key_KeyProp = { "InitialItemStats_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats = { "InitialItemStats", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UInventoryFragment_SetStats, InitialItemStats), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitialItemStats_MetaData), NewProp_InitialItemStats_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UInventoryFragment_SetStats_Statics::NewProp_InitialItemStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UInventoryFragment_SetStats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraInventoryItemFragment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UInventoryFragment_SetStats_Statics::ClassParams = { + &UInventoryFragment_SetStats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UInventoryFragment_SetStats_Statics::Class_MetaDataParams), Z_Construct_UClass_UInventoryFragment_SetStats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UInventoryFragment_SetStats() +{ + if (!Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton, Z_Construct_UClass_UInventoryFragment_SetStats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UInventoryFragment_SetStats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UInventoryFragment_SetStats::StaticClass(); +} +UInventoryFragment_SetStats::UInventoryFragment_SetStats(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UInventoryFragment_SetStats); +UInventoryFragment_SetStats::~UInventoryFragment_SetStats() {} +// End Class UInventoryFragment_SetStats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UInventoryFragment_SetStats, UInventoryFragment_SetStats::StaticClass, TEXT("UInventoryFragment_SetStats"), &Z_Registration_Info_UClass_UInventoryFragment_SetStats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UInventoryFragment_SetStats), 3076951085U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_3308168937(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h new file mode 100644 index 00000000..5b23c15d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InventoryFragment_SetStats.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/InventoryFragment_SetStats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_InventoryFragment_SetStats_generated_h +#error "InventoryFragment_SetStats.generated.h already included, missing '#pragma once' in InventoryFragment_SetStats.h" +#endif +#define LYRAGAME_InventoryFragment_SetStats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUInventoryFragment_SetStats(); \ + friend struct Z_Construct_UClass_UInventoryFragment_SetStats_Statics; \ +public: \ + DECLARE_CLASS(UInventoryFragment_SetStats, ULyraInventoryItemFragment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UInventoryFragment_SetStats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UInventoryFragment_SetStats(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UInventoryFragment_SetStats(UInventoryFragment_SetStats&&); \ + UInventoryFragment_SetStats(const UInventoryFragment_SetStats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UInventoryFragment_SetStats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UInventoryFragment_SetStats); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UInventoryFragment_SetStats) \ + NO_API virtual ~UInventoryFragment_SetStats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_InventoryFragment_SetStats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp new file mode 100644 index 00000000..82a73417 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost +void ULyraAbilityCost::StaticRegisterNativesULyraAbilityCost() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost); +UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister() +{ + return ULyraAbilityCost::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilityCost\n *\n * Base class for costs that a LyraGameplayAbility has (e.g., ammo or charges)\n */" }, +#endif + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilityCost\n\nBase class for costs that a LyraGameplayAbility has (e.g., ammo or charges)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOnlyApplyCostOnHit_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this cost should only be applied if this ability hits successfully */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this cost should only be applied if this ability hits successfully" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bOnlyApplyCostOnHit_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOnlyApplyCostOnHit; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit_SetBit(void* Obj) +{ + ((ULyraAbilityCost*)Obj)->bOnlyApplyCostOnHit = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit = { "bOnlyApplyCostOnHit", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraAbilityCost), &Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOnlyApplyCostOnHit_MetaData), NewProp_bOnlyApplyCostOnHit_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_Statics::NewProp_bOnlyApplyCostOnHit, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_Statics::ClassParams = { + &ULyraAbilityCost::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::PropPointers), + 0, + 0x003010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost); +ULyraAbilityCost::~ULyraAbilityCost() {} +// End Class ULyraAbilityCost + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost, ULyraAbilityCost::StaticClass, TEXT("ULyraAbilityCost"), &Z_Registration_Info_UClass_ULyraAbilityCost, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost), 1522987733U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_1232204097(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.generated.h new file mode 100644 index 00000000..2e554e80 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_generated_h +#error "LyraAbilityCost.generated.h already included, missing '#pragma once' in LyraAbilityCost.h" +#endif +#define LYRAGAME_LyraAbilityCost_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost(ULyraAbilityCost&&); \ + ULyraAbilityCost(const ULyraAbilityCost&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost) \ + NO_API virtual ~ULyraAbilityCost(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp new file mode 100644 index 00000000..f579609a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.gen.cpp @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_InventoryItem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_InventoryItem +void ULyraAbilityCost_InventoryItem::StaticRegisterNativesULyraAbilityCost_InventoryItem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_InventoryItem); +UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem_NoRegister() +{ + return ULyraAbilityCost_InventoryItem::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of an inventory item\n */" }, +#endif + { "DisplayName", "Inventory Item" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of an inventory item" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "AbilityCost" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the item to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the item to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDefinition_MetaData[] = { + { "Category", "AbilityCost" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which item to consume */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which item to consume" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDefinition; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_InventoryItem, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_ItemDefinition = { "ItemDefinition", nullptr, (EPropertyFlags)0x0024080000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_InventoryItem, ItemDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDefinition_MetaData), NewProp_ItemDefinition_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::NewProp_ItemDefinition, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::ClassParams = { + &ULyraAbilityCost_InventoryItem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_InventoryItem() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_InventoryItem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_InventoryItem); +ULyraAbilityCost_InventoryItem::~ULyraAbilityCost_InventoryItem() {} +// End Class ULyraAbilityCost_InventoryItem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_InventoryItem, ULyraAbilityCost_InventoryItem::StaticClass, TEXT("ULyraAbilityCost_InventoryItem"), &Z_Registration_Info_UClass_ULyraAbilityCost_InventoryItem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_InventoryItem), 3644715369U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_2376489421(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h new file mode 100644 index 00000000..b0b50266 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_InventoryItem.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_InventoryItem_generated_h +#error "LyraAbilityCost_InventoryItem.generated.h already included, missing '#pragma once' in LyraAbilityCost_InventoryItem.h" +#endif +#define LYRAGAME_LyraAbilityCost_InventoryItem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_InventoryItem(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_InventoryItem_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_InventoryItem, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_InventoryItem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_InventoryItem(ULyraAbilityCost_InventoryItem&&); \ + ULyraAbilityCost_InventoryItem(const ULyraAbilityCost_InventoryItem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_InventoryItem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_InventoryItem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_InventoryItem) \ + NO_API virtual ~ULyraAbilityCost_InventoryItem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_InventoryItem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp new file mode 100644 index 00000000..14cbc21f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.gen.cpp @@ -0,0 +1,144 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_ItemTagStack() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_ItemTagStack +void ULyraAbilityCost_ItemTagStack::StaticRegisterNativesULyraAbilityCost_ItemTagStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_ItemTagStack); +UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_NoRegister() +{ + return ULyraAbilityCost_ItemTagStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of a tag stack\n * on the associated item instance\n */" }, +#endif + { "DisplayName", "Item Tag Stack" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of a tag stack\non the associated item instance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the tag to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the tag to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to spend some of */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to spend some of" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to send back as a response if this cost cannot be applied */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to send back as a response if this cost cannot be applied" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_FailureTag = { "FailureTag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_ItemTagStack, FailureTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTag_MetaData), NewProp_FailureTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::NewProp_FailureTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::ClassParams = { + &ULyraAbilityCost_ItemTagStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_ItemTagStack() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_ItemTagStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_ItemTagStack); +ULyraAbilityCost_ItemTagStack::~ULyraAbilityCost_ItemTagStack() {} +// End Class ULyraAbilityCost_ItemTagStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_ItemTagStack, ULyraAbilityCost_ItemTagStack::StaticClass, TEXT("ULyraAbilityCost_ItemTagStack"), &Z_Registration_Info_UClass_ULyraAbilityCost_ItemTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_ItemTagStack), 871800849U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_551251423(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h new file mode 100644 index 00000000..a1e3d2d3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_ItemTagStack.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_ItemTagStack_generated_h +#error "LyraAbilityCost_ItemTagStack.generated.h already included, missing '#pragma once' in LyraAbilityCost_ItemTagStack.h" +#endif +#define LYRAGAME_LyraAbilityCost_ItemTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_ItemTagStack(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_ItemTagStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_ItemTagStack, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_ItemTagStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_ItemTagStack(ULyraAbilityCost_ItemTagStack&&); \ + ULyraAbilityCost_ItemTagStack(const ULyraAbilityCost_ItemTagStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_ItemTagStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_ItemTagStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_ItemTagStack) \ + NO_API virtual ~ULyraAbilityCost_ItemTagStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_ItemTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp new file mode 100644 index 00000000..5e501cfd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.gen.cpp @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityCost_PlayerTagStack() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilityCost_PlayerTagStack +void ULyraAbilityCost_PlayerTagStack::StaticRegisterNativesULyraAbilityCost_PlayerTagStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityCost_PlayerTagStack); +UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_NoRegister() +{ + return ULyraAbilityCost_PlayerTagStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents a cost that requires expending a quantity of a tag stack on the player state\n */" }, +#endif + { "DisplayName", "Player Tag Stack" }, + { "IncludePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a cost that requires expending a quantity of a tag stack on the player state" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Quantity_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How much of the tag to spend (keyed on ability level) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much of the tag to spend (keyed on ability level)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tag_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which tag to spend some of */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which tag to spend some of" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Quantity; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Quantity = { "Quantity", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_PlayerTagStack, Quantity), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Quantity_MetaData), NewProp_Quantity_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityCost_PlayerTagStack, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tag_MetaData), NewProp_Tag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Quantity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::NewProp_Tag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAbilityCost, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::ClassParams = { + &ULyraAbilityCost_PlayerTagStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::PropPointers), + 0, + 0x002010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton, Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityCost_PlayerTagStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityCost_PlayerTagStack); +ULyraAbilityCost_PlayerTagStack::~ULyraAbilityCost_PlayerTagStack() {} +// End Class ULyraAbilityCost_PlayerTagStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack, ULyraAbilityCost_PlayerTagStack::StaticClass, TEXT("ULyraAbilityCost_PlayerTagStack"), &Z_Registration_Info_UClass_ULyraAbilityCost_PlayerTagStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityCost_PlayerTagStack), 1985272582U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_3605655177(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h new file mode 100644 index 00000000..d229377d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost_PlayerTagStack.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityCost_PlayerTagStack_generated_h +#error "LyraAbilityCost_PlayerTagStack.generated.h already included, missing '#pragma once' in LyraAbilityCost_PlayerTagStack.h" +#endif +#define LYRAGAME_LyraAbilityCost_PlayerTagStack_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityCost_PlayerTagStack(); \ + friend struct Z_Construct_UClass_ULyraAbilityCost_PlayerTagStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityCost_PlayerTagStack, ULyraAbilityCost, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityCost_PlayerTagStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityCost_PlayerTagStack(ULyraAbilityCost_PlayerTagStack&&); \ + ULyraAbilityCost_PlayerTagStack(const ULyraAbilityCost_PlayerTagStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityCost_PlayerTagStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityCost_PlayerTagStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAbilityCost_PlayerTagStack) \ + NO_API virtual ~ULyraAbilityCost_PlayerTagStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilityCost_PlayerTagStack_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp new file mode 100644 index 00000000..f68b97c2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.gen.cpp @@ -0,0 +1,542 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySet.h" +#include "GameplayAbilities/Public/ActiveGameplayEffectHandle.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySet() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FActiveGameplayEffectHandle(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilitySet_GameplayAbility +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility; +class UScriptStruct* FLyraAbilitySet_GameplayAbility::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GameplayAbility")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GameplayAbility::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GameplayAbility\n *\n *\x09""Data used by the ability set to grant gameplay abilities.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GameplayAbility\n\n Data used by the ability set to grant gameplay abilities." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Ability_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay ability to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay ability to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityLevel_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Level of ability to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Level of ability to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "Categories", "InputTag" }, + { "Category", "LyraAbilitySet_GameplayAbility" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tag used to process input for the ability.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tag used to process input for the ability." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FIntPropertyParams NewProp_AbilityLevel; + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Ability_MetaData), NewProp_Ability_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_AbilityLevel = { "AbilityLevel", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, AbilityLevel), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityLevel_MetaData), NewProp_AbilityLevel_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayAbility, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_Ability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_AbilityLevel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewProp_InputTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GameplayAbility", + Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::PropPointers), + sizeof(FLyraAbilitySet_GameplayAbility), + alignof(FLyraAbilitySet_GameplayAbility), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GameplayAbility + +// Begin ScriptStruct FLyraAbilitySet_GameplayEffect +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect; +class UScriptStruct* FLyraAbilitySet_GameplayEffect::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GameplayEffect")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GameplayEffect::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GameplayEffect\n *\n *\x09""Data used by the ability set to grant gameplay effects.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GameplayEffect\n\n Data used by the ability set to grant gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayEffect_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect to grant." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectLevel_MetaData[] = { + { "Category", "LyraAbilitySet_GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Level of gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Level of gameplay effect to grant." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_GameplayEffect; + static const UECodeGen_Private::FFloatPropertyParams NewProp_EffectLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_GameplayEffect = { "GameplayEffect", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayEffect, GameplayEffect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayEffect_MetaData), NewProp_GameplayEffect_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_EffectLevel = { "EffectLevel", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GameplayEffect, EffectLevel), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectLevel_MetaData), NewProp_EffectLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_GameplayEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewProp_EffectLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GameplayEffect", + Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::PropPointers), + sizeof(FLyraAbilitySet_GameplayEffect), + alignof(FLyraAbilitySet_GameplayEffect), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GameplayEffect + +// Begin ScriptStruct FLyraAbilitySet_AttributeSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet; +class UScriptStruct* FLyraAbilitySet_AttributeSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_AttributeSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_AttributeSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_AttributeSet\n *\n *\x09""Data used by the ability set to grant attribute sets.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_AttributeSet\n\n Data used by the ability set to grant attribute sets." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttributeSet_MetaData[] = { + { "Category", "LyraAbilitySet_AttributeSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect to grant.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect to grant." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_AttributeSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewProp_AttributeSet = { "AttributeSet", nullptr, (EPropertyFlags)0x0014000000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_AttributeSet, AttributeSet), Z_Construct_UClass_UClass, Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttributeSet_MetaData), NewProp_AttributeSet_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewProp_AttributeSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_AttributeSet", + Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::PropPointers), + sizeof(FLyraAbilitySet_AttributeSet), + alignof(FLyraAbilitySet_AttributeSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_AttributeSet + +// Begin ScriptStruct FLyraAbilitySet_GrantedHandles +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles; +class UScriptStruct* FLyraAbilitySet_GrantedHandles::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySet_GrantedHandles")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySet_GrantedHandles::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraAbilitySet_GrantedHandles\n *\n *\x09""Data used to store handles to what has been granted by the ability set.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraAbilitySet_GrantedHandles\n\n Data used to store handles to what has been granted by the ability set." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySpecHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles to the granted abilities.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles to the granted abilities." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayEffectHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles to the granted gameplay effects.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles to the granted gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributeSets_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Pointers to the granted attribute sets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointers to the granted attribute sets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilitySpecHandles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySpecHandles; + static const UECodeGen_Private::FStructPropertyParams NewProp_GameplayEffectHandles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameplayEffectHandles; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GrantedAttributeSets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributeSets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles_Inner = { "AbilitySpecHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(0, nullptr) }; // 3490030742 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles = { "AbilitySpecHandles", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, AbilitySpecHandles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySpecHandles_MetaData), NewProp_AbilitySpecHandles_MetaData) }; // 3490030742 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles_Inner = { "GameplayEffectHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FActiveGameplayEffectHandle, METADATA_PARAMS(0, nullptr) }; // 290910411 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles = { "GameplayEffectHandles", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, GameplayEffectHandles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayEffectHandles_MetaData), NewProp_GameplayEffectHandles_MetaData) }; // 290910411 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets_Inner = { "GrantedAttributeSets", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAttributeSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets = { "GrantedAttributeSets", nullptr, (EPropertyFlags)0x0124088000000008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySet_GrantedHandles, GrantedAttributeSets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributeSets_MetaData), NewProp_GrantedAttributeSets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_AbilitySpecHandles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GameplayEffectHandles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewProp_GrantedAttributeSets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySet_GrantedHandles", + Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::PropPointers), + sizeof(FLyraAbilitySet_GrantedHandles), + alignof(FLyraAbilitySet_GrantedHandles), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySet_GrantedHandles + +// Begin Class ULyraAbilitySet +void ULyraAbilitySet::StaticRegisterNativesULyraAbilitySet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySet); +UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister() +{ + return ULyraAbilitySet::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilitySet\n *\n *\x09Non-mutable data asset used to grant gameplay abilities and gameplay effects.\n */" }, +#endif + { "IncludePath", "AbilitySystem/LyraAbilitySet.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilitySet\n\n Non-mutable data asset used to grant gameplay abilities and gameplay effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedGameplayAbilities_MetaData[] = { + { "Category", "Gameplay Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay abilities to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "Ability" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay abilities to grant when this ability set is granted." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedGameplayEffects_MetaData[] = { + { "Category", "Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effects to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "GameplayEffect" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effects to grant when this ability set is granted." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedAttributes_MetaData[] = { + { "Category", "Attribute Sets" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Attribute sets to grant when this ability set is granted.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySet.h" }, + { "TitleProperty", "AttributeSet" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attribute sets to grant when this ability set is granted." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedGameplayAbilities_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedGameplayAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedGameplayEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedGameplayEffects; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedAttributes_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GrantedAttributes; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities_Inner = { "GrantedGameplayAbilities", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility, METADATA_PARAMS(0, nullptr) }; // 3706031477 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities = { "GrantedGameplayAbilities", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedGameplayAbilities), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedGameplayAbilities_MetaData), NewProp_GrantedGameplayAbilities_MetaData) }; // 3706031477 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects_Inner = { "GrantedGameplayEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect, METADATA_PARAMS(0, nullptr) }; // 198845761 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects = { "GrantedGameplayEffects", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedGameplayEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedGameplayEffects_MetaData), NewProp_GrantedGameplayEffects_MetaData) }; // 198845761 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes_Inner = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet, METADATA_PARAMS(0, nullptr) }; // 229780853 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes = { "GrantedAttributes", nullptr, (EPropertyFlags)0x0020080000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySet, GrantedAttributes), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedAttributes_MetaData), NewProp_GrantedAttributes_MetaData) }; // 229780853 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedGameplayEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySet_Statics::NewProp_GrantedAttributes, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilitySet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySet_Statics::ClassParams = { + &ULyraAbilitySet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::PropPointers), + 0, + 0x000100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySet() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton, Z_Construct_UClass_ULyraAbilitySet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySet); +ULyraAbilitySet::~ULyraAbilitySet() {} +// End Class ULyraAbilitySet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilitySet_GameplayAbility::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics::NewStructOps, TEXT("LyraAbilitySet_GameplayAbility"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayAbility, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GameplayAbility), 3706031477U) }, + { FLyraAbilitySet_GameplayEffect::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics::NewStructOps, TEXT("LyraAbilitySet_GameplayEffect"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GameplayEffect, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GameplayEffect), 198845761U) }, + { FLyraAbilitySet_AttributeSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics::NewStructOps, TEXT("LyraAbilitySet_AttributeSet"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_AttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_AttributeSet), 229780853U) }, + { FLyraAbilitySet_GrantedHandles::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics::NewStructOps, TEXT("LyraAbilitySet_GrantedHandles"), &Z_Registration_Info_UScriptStruct_LyraAbilitySet_GrantedHandles, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySet_GrantedHandles), 3322214549U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySet, ULyraAbilitySet::StaticClass, TEXT("ULyraAbilitySet"), &Z_Registration_Info_UClass_ULyraAbilitySet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySet), 823694018U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_2430856076(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.generated.h new file mode 100644 index 00000000..864e534a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySet.generated.h @@ -0,0 +1,82 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySet_generated_h +#error "LyraAbilitySet.generated.h already included, missing '#pragma once' in LyraAbilitySet.h" +#endif +#define LYRAGAME_LyraAbilitySet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_28_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayAbility_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_54_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GameplayEffect_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_75_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_AttributeSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_92_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilitySet(); \ + friend struct Z_Construct_UClass_ULyraAbilitySet_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySet, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySet) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySet(ULyraAbilitySet&&); \ + ULyraAbilitySet(const ULyraAbilitySet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySet); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySet) \ + NO_API virtual ~ULyraAbilitySet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_123_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h_126_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp new file mode 100644 index 00000000..d7f5567f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp @@ -0,0 +1,108 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySimpleFailureMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilitySimpleFailureMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage; +class UScriptStruct* FLyraAbilitySimpleFailureMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilitySimpleFailureMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilitySimpleFailureMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerController_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTags_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingReason_MetaData[] = { + { "Category", "LyraAbilitySimpleFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTags; + static const UECodeGen_Private::FTextPropertyParams NewProp_UserFacingReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerController_MetaData), NewProp_PlayerController_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_FailureTags = { "FailureTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, FailureTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTags_MetaData), NewProp_FailureTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_UserFacingReason = { "UserFacingReason", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilitySimpleFailureMessage, UserFacingReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingReason_MetaData), NewProp_UserFacingReason_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_FailureTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewProp_UserFacingReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilitySimpleFailureMessage", + Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::PropPointers), + sizeof(FLyraAbilitySimpleFailureMessage), + alignof(FLyraAbilitySimpleFailureMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage.InnerSingleton; +} +// End ScriptStruct FLyraAbilitySimpleFailureMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilitySimpleFailureMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics::NewStructOps, TEXT("LyraAbilitySimpleFailureMessage"), &Z_Registration_Info_UScriptStruct_LyraAbilitySimpleFailureMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilitySimpleFailureMessage), 2850206243U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_2275757792(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h new file mode 100644 index 00000000..3032133f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraAbilitySimpleFailureMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySimpleFailureMessage_generated_h +#error "LyraAbilitySimpleFailureMessage.generated.h already included, missing '#pragma once' in LyraAbilitySimpleFailureMessage.h" +#endif +#define LYRAGAME_LyraAbilitySimpleFailureMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilitySimpleFailureMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraAbilitySimpleFailureMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp new file mode 100644 index 00000000..57c589d1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.gen.cpp @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySourceInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySourceInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface ULyraAbilitySourceInterface +void ULyraAbilitySourceInterface::StaticRegisterNativesULyraAbilitySourceInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySourceInterface); +UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister() +{ + return ULyraAbilitySourceInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySourceInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySourceInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::ClassParams = { + &ULyraAbilitySourceInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySourceInterface() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton, Z_Construct_UClass_ULyraAbilitySourceInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySourceInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySourceInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySourceInterface); +ULyraAbilitySourceInterface::~ULyraAbilitySourceInterface() {} +// End Interface ULyraAbilitySourceInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySourceInterface, ULyraAbilitySourceInterface::StaticClass, TEXT("ULyraAbilitySourceInterface"), &Z_Registration_Info_UClass_ULyraAbilitySourceInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySourceInterface), 3768332760U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_2367543607(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h new file mode 100644 index 00000000..681d043f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySourceInterface.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySourceInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySourceInterface_generated_h +#error "LyraAbilitySourceInterface.generated.h already included, missing '#pragma once' in LyraAbilitySourceInterface.h" +#endif +#define LYRAGAME_LyraAbilitySourceInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilitySourceInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySourceInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySourceInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySourceInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySourceInterface(ULyraAbilitySourceInterface&&); \ + ULyraAbilitySourceInterface(const ULyraAbilitySourceInterface&); \ +public: \ + NO_API virtual ~ULyraAbilitySourceInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraAbilitySourceInterface(); \ + friend struct Z_Construct_UClass_ULyraAbilitySourceInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySourceInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySourceInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_INCLASS_IINTERFACE \ +protected: \ + virtual ~ILyraAbilitySourceInterface() {} \ +public: \ + typedef ULyraAbilitySourceInterface UClassType; \ + typedef ILyraAbilitySourceInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_22_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h_17_INCLASS_IINTERFACE \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySourceInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp new file mode 100644 index 00000000..d7edef8a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.gen.cpp @@ -0,0 +1,195 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySystemComponent.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySystemComponent() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemComponent(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilitySystemComponent Function ClientNotifyAbilityFailed +struct LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms +{ + const UGameplayAbility* Ability; + FGameplayTagContainer FailureReason; +}; +static const FName NAME_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed = FName(TEXT("ClientNotifyAbilityFailed")); +void ULyraAbilitySystemComponent::ClientNotifyAbilityFailed(const UGameplayAbility* Ability, FGameplayTagContainer const& FailureReason) +{ + LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms Parms; + Parms.Ability=Ability; + Parms.FailureReason=FailureReason; + UFunction* Func = FindFunctionChecked(NAME_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Notify client that an ability failed to activate */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Notify client that an ability failed to activate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Ability_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Ability; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms, Ability), Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Ability_MetaData), NewProp_Ability_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_FailureReason = { "FailureReason", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms, FailureReason), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureReason_MetaData), NewProp_FailureReason_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_Ability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::NewProp_FailureReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAbilitySystemComponent, nullptr, "ClientNotifyAbilityFailed", nullptr, nullptr, Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::PropPointers), sizeof(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x01080C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAbilitySystemComponent_eventClientNotifyAbilityFailed_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraAbilitySystemComponent::execClientNotifyAbilityFailed) +{ + P_GET_OBJECT(UGameplayAbility,Z_Param_Ability); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_FailureReason); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientNotifyAbilityFailed_Implementation(Z_Param_Ability,Z_Param_FailureReason); + P_NATIVE_END; +} +// End Class ULyraAbilitySystemComponent Function ClientNotifyAbilityFailed + +// Begin Class ULyraAbilitySystemComponent +void ULyraAbilitySystemComponent::StaticRegisterNativesULyraAbilitySystemComponent() +{ + UClass* Class = ULyraAbilitySystemComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ClientNotifyAbilityFailed", &ULyraAbilitySystemComponent::execClientNotifyAbilityFailed }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySystemComponent); +UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister() +{ + return ULyraAbilitySystemComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySystemComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAbilitySystemComponent\n *\n *\x09""Base ability system component class used by this project.\n */" }, +#endif + { "HideCategories", "Object LOD Lighting Transform Sockets TextureStreaming Object LOD Lighting Transform Sockets TextureStreaming" }, + { "IncludePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAbilitySystemComponent\n\n Base ability system component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TagRelationshipMapping_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// If set, this table is used to look up tag relationships for activate and cancel\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If set, this table is used to look up tag relationships for activate and cancel" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TagRelationshipMapping; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraAbilitySystemComponent_ClientNotifyAbilityFailed, "ClientNotifyAbilityFailed" }, // 2220705093 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::NewProp_TagRelationshipMapping = { "TagRelationshipMapping", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilitySystemComponent, TagRelationshipMapping), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TagRelationshipMapping_MetaData), NewProp_TagRelationshipMapping_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::NewProp_TagRelationshipMapping, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilitySystemComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::ClassParams = { + &ULyraAbilitySystemComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::PropPointers), + 0, + 0x00B010A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySystemComponent() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton, Z_Construct_UClass_ULyraAbilitySystemComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySystemComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySystemComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySystemComponent); +ULyraAbilitySystemComponent::~ULyraAbilitySystemComponent() {} +// End Class ULyraAbilitySystemComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySystemComponent, ULyraAbilitySystemComponent::StaticClass, TEXT("ULyraAbilitySystemComponent"), &Z_Registration_Info_UClass_ULyraAbilitySystemComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySystemComponent), 2360637702U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_1692774161(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h new file mode 100644 index 00000000..010e5d8d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemComponent.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySystemComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameplayAbility; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraAbilitySystemComponent_generated_h +#error "LyraAbilitySystemComponent.generated.h already included, missing '#pragma once' in LyraAbilitySystemComponent.h" +#endif +#define LYRAGAME_LyraAbilitySystemComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientNotifyAbilityFailed_Implementation(const UGameplayAbility* Ability, FGameplayTagContainer const& FailureReason); \ + DECLARE_FUNCTION(execClientNotifyAbilityFailed); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilitySystemComponent(); \ + friend struct Z_Construct_UClass_ULyraAbilitySystemComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySystemComponent, UAbilitySystemComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySystemComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySystemComponent(ULyraAbilitySystemComponent&&); \ + ULyraAbilitySystemComponent(const ULyraAbilitySystemComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySystemComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySystemComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySystemComponent) \ + NO_API virtual ~ULyraAbilitySystemComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp new file mode 100644 index 00000000..a539a63b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilitySystemGlobals.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilitySystemGlobals() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemGlobals(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAbilitySystemGlobals +void ULyraAbilitySystemGlobals::StaticRegisterNativesULyraAbilitySystemGlobals() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilitySystemGlobals); +UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals_NoRegister() +{ + return ULyraAbilitySystemGlobals::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "AbilitySystem/LyraAbilitySystemGlobals.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilitySystemGlobals.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAbilitySystemGlobals, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::ClassParams = { + &ULyraAbilitySystemGlobals::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilitySystemGlobals() +{ + if (!Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton, Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilitySystemGlobals.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilitySystemGlobals::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilitySystemGlobals); +ULyraAbilitySystemGlobals::~ULyraAbilitySystemGlobals() {} +// End Class ULyraAbilitySystemGlobals + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilitySystemGlobals, ULyraAbilitySystemGlobals::StaticClass, TEXT("ULyraAbilitySystemGlobals"), &Z_Registration_Info_UClass_ULyraAbilitySystemGlobals, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilitySystemGlobals), 3949004670U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_2496548070(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h new file mode 100644 index 00000000..a073569e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySystemGlobals.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilitySystemGlobals.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilitySystemGlobals_generated_h +#error "LyraAbilitySystemGlobals.generated.h already included, missing '#pragma once' in LyraAbilitySystemGlobals.h" +#endif +#define LYRAGAME_LyraAbilitySystemGlobals_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_INCLASS \ +private: \ + static void StaticRegisterNativesULyraAbilitySystemGlobals(); \ + friend struct Z_Construct_UClass_ULyraAbilitySystemGlobals_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilitySystemGlobals, UAbilitySystemGlobals, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilitySystemGlobals) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilitySystemGlobals(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilitySystemGlobals) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilitySystemGlobals); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilitySystemGlobals); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilitySystemGlobals(ULyraAbilitySystemGlobals&&); \ + ULyraAbilitySystemGlobals(const ULyraAbilitySystemGlobals&); \ +public: \ + NO_API virtual ~ULyraAbilitySystemGlobals(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_INCLASS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h_15_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilitySystemGlobals_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp new file mode 100644 index 00000000..97c2c47b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.gen.cpp @@ -0,0 +1,251 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraAbilityTagRelationshipMapping.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAbilityTagRelationshipMapping() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityTagRelationship(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAbilityTagRelationship +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship; +class UScriptStruct* FLyraAbilityTagRelationship::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityTagRelationship")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityTagRelationship::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Struct that defines the relationship between different ability tags */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Struct that defines the relationship between different ability tags" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTag_MetaData[] = { + { "Categories", "Gameplay.Action" }, + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tag that this container relationship is about. Single tag, but abilities can have multiple of these */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tag that this container relationship is about. Single tag, but abilities can have multiple of these" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagsToBlock_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The other ability tags that will be blocked by any ability using this tag */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The other ability tags that will be blocked by any ability using this tag" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagsToCancel_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The other ability tags that will be canceled by any ability using this tag */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The other ability tags that will be canceled by any ability using this tag" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationRequiredTags_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If an ability has the tag, this is implicitly added to the activation required tags of the ability */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If an ability has the tag, this is implicitly added to the activation required tags of the ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationBlockedTags_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If an ability has the tag, this is implicitly added to the activation blocked tags of the ability */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If an ability has the tag, this is implicitly added to the activation blocked tags of the ability" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagsToBlock; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagsToCancel; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivationRequiredTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivationBlockedTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTag = { "AbilityTag", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTag_MetaData), NewProp_AbilityTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToBlock = { "AbilityTagsToBlock", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTagsToBlock), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagsToBlock_MetaData), NewProp_AbilityTagsToBlock_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToCancel = { "AbilityTagsToCancel", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, AbilityTagsToCancel), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagsToCancel_MetaData), NewProp_AbilityTagsToCancel_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationRequiredTags = { "ActivationRequiredTags", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, ActivationRequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationRequiredTags_MetaData), NewProp_ActivationRequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationBlockedTags = { "ActivationBlockedTags", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityTagRelationship, ActivationBlockedTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationBlockedTags_MetaData), NewProp_ActivationBlockedTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToBlock, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_AbilityTagsToCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationRequiredTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewProp_ActivationBlockedTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityTagRelationship", + Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::PropPointers), + sizeof(FLyraAbilityTagRelationship), + alignof(FLyraAbilityTagRelationship), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityTagRelationship() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship.InnerSingleton; +} +// End ScriptStruct FLyraAbilityTagRelationship + +// Begin Class ULyraAbilityTagRelationshipMapping +void ULyraAbilityTagRelationshipMapping::StaticRegisterNativesULyraAbilityTagRelationshipMapping() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAbilityTagRelationshipMapping); +UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister() +{ + return ULyraAbilityTagRelationshipMapping::StaticClass(); +} +struct Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Mapping of how ability tags block or cancel other abilities */" }, +#endif + { "IncludePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Mapping of how ability tags block or cancel other abilities" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityTagRelationships_MetaData[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The list of relationships between different gameplay tags (which ones block or cancel others) */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraAbilityTagRelationshipMapping.h" }, + { "TitleProperty", "AbilityTag" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of relationships between different gameplay tags (which ones block or cancel others)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityTagRelationships_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilityTagRelationships; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships_Inner = { "AbilityTagRelationships", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship, METADATA_PARAMS(0, nullptr) }; // 2507486859 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships = { "AbilityTagRelationships", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAbilityTagRelationshipMapping, AbilityTagRelationships), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityTagRelationships_MetaData), NewProp_AbilityTagRelationships_MetaData) }; // 2507486859 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::NewProp_AbilityTagRelationships, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::ClassParams = { + &ULyraAbilityTagRelationshipMapping::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping() +{ + if (!Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton, Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAbilityTagRelationshipMapping::StaticClass(); +} +ULyraAbilityTagRelationshipMapping::ULyraAbilityTagRelationshipMapping(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAbilityTagRelationshipMapping); +ULyraAbilityTagRelationshipMapping::~ULyraAbilityTagRelationshipMapping() {} +// End Class ULyraAbilityTagRelationshipMapping + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityTagRelationship::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics::NewStructOps, TEXT("LyraAbilityTagRelationship"), &Z_Registration_Info_UScriptStruct_LyraAbilityTagRelationship, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityTagRelationship), 2507486859U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAbilityTagRelationshipMapping, ULyraAbilityTagRelationshipMapping::StaticClass, TEXT("ULyraAbilityTagRelationshipMapping"), &Z_Registration_Info_UClass_ULyraAbilityTagRelationshipMapping, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAbilityTagRelationshipMapping), 4101548953U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_1447544072(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h new file mode 100644 index 00000000..d9534cfe --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityTagRelationshipMapping.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraAbilityTagRelationshipMapping.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAbilityTagRelationshipMapping_generated_h +#error "LyraAbilityTagRelationshipMapping.generated.h already included, missing '#pragma once' in LyraAbilityTagRelationshipMapping.h" +#endif +#define LYRAGAME_LyraAbilityTagRelationshipMapping_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityTagRelationship_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAbilityTagRelationshipMapping(); \ + friend struct Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_Statics; \ +public: \ + DECLARE_CLASS(ULyraAbilityTagRelationshipMapping, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAbilityTagRelationshipMapping) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAbilityTagRelationshipMapping(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAbilityTagRelationshipMapping(ULyraAbilityTagRelationshipMapping&&); \ + ULyraAbilityTagRelationshipMapping(const ULyraAbilityTagRelationshipMapping&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAbilityTagRelationshipMapping); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAbilityTagRelationshipMapping); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAbilityTagRelationshipMapping) \ + NO_API virtual ~ULyraAbilityTagRelationshipMapping(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_41_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraAbilityTagRelationshipMapping_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp new file mode 100644 index 00000000..d0913dac --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraActionWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActionWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActionWidget(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActionWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActionWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraActionWidget +void ULyraActionWidget::StaticRegisterNativesULyraActionWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActionWidget); +UClass* Z_Construct_UClass_ULyraActionWidget_NoRegister() +{ + return ULyraActionWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraActionWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** An action widget that will get the icon of key that is currently assigned to the common input action on this widget */" }, +#endif + { "IncludePath", "UI/Foundation/LyraActionWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraActionWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An action widget that will get the icon of key that is currently assigned to the common input action on this widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedInputAction_MetaData[] = { + { "Category", "LyraActionWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Enhanced Input Action that is associated with this Common Input action. */" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraActionWidget.h" }, + { "NativeConst", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Enhanced Input Action that is associated with this Common Input action." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AssociatedInputAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActionWidget_Statics::NewProp_AssociatedInputAction = { "AssociatedInputAction", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActionWidget, AssociatedInputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedInputAction_MetaData), NewProp_AssociatedInputAction_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActionWidget_Statics::NewProp_AssociatedInputAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActionWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActionWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActionWidget_Statics::ClassParams = { + &ULyraActionWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActionWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActionWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActionWidget() +{ + if (!Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton, Z_Construct_UClass_ULyraActionWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActionWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActionWidget::StaticClass(); +} +ULyraActionWidget::ULyraActionWidget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActionWidget); +ULyraActionWidget::~ULyraActionWidget() {} +// End Class ULyraActionWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActionWidget, ULyraActionWidget::StaticClass, TEXT("ULyraActionWidget"), &Z_Registration_Info_UClass_ULyraActionWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActionWidget), 2665317932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_3291217521(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.generated.h new file mode 100644 index 00000000..f61e2620 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraActionWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraActionWidget_generated_h +#error "LyraActionWidget.generated.h already included, missing '#pragma once' in LyraActionWidget.h" +#endif +#define LYRAGAME_LyraActionWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActionWidget(); \ + friend struct Z_Construct_UClass_ULyraActionWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraActionWidget, UCommonActionWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActionWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActionWidget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActionWidget(ULyraActionWidget&&); \ + ULyraActionWidget(const ULyraActionWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActionWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActionWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActionWidget) \ + NO_API virtual ~ULyraActionWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraActionWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp new file mode 100644 index 00000000..ff7275ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraActivatableWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActivatableWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_EMouseCaptureMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraWidgetInputMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraWidgetInputMode; +static UEnum* ELyraWidgetInputMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraWidgetInputMode")); + } + return Z_Registration_Info_UEnum_ELyraWidgetInputMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraWidgetInputMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Default.Name", "ELyraWidgetInputMode::Default" }, + { "Game.Name", "ELyraWidgetInputMode::Game" }, + { "GameAndMenu.Name", "ELyraWidgetInputMode::GameAndMenu" }, + { "Menu.Name", "ELyraWidgetInputMode::Menu" }, + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraWidgetInputMode::Default", (int64)ELyraWidgetInputMode::Default }, + { "ELyraWidgetInputMode::GameAndMenu", (int64)ELyraWidgetInputMode::GameAndMenu }, + { "ELyraWidgetInputMode::Game", (int64)ELyraWidgetInputMode::Game }, + { "ELyraWidgetInputMode::Menu", (int64)ELyraWidgetInputMode::Menu }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraWidgetInputMode", + "ELyraWidgetInputMode", + Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode() +{ + if (!Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraWidgetInputMode.InnerSingleton; +} +// End Enum ELyraWidgetInputMode + +// Begin Class ULyraActivatableWidget +void ULyraActivatableWidget::StaticRegisterNativesULyraActivatableWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActivatableWidget); +UClass* Z_Construct_UClass_ULyraActivatableWidget_NoRegister() +{ + return ULyraActivatableWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraActivatableWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// An activatable widget that automatically drives the desired input config when activated\n" }, +#endif + { "IncludePath", "UI/LyraActivatableWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An activatable widget that automatically drives the desired input config when activated" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfig_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The desired input mode to use while this UI is activated, for example do you want key presses to still reach the game/player controller? */" }, +#endif + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The desired input mode to use while this UI is activated, for example do you want key presses to still reach the game/player controller?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameMouseCaptureMode_MetaData[] = { + { "Category", "Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The desired mouse behavior when the game gets input. */" }, +#endif + { "ModuleRelativePath", "UI/LyraActivatableWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The desired mouse behavior when the game gets input." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InputConfig_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InputConfig; + static const UECodeGen_Private::FBytePropertyParams NewProp_GameMouseCaptureMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GameMouseCaptureMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig = { "InputConfig", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActivatableWidget, InputConfig), Z_Construct_UEnum_LyraGame_ELyraWidgetInputMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfig_MetaData), NewProp_InputConfig_MetaData) }; // 429253751 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode = { "GameMouseCaptureMode", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActivatableWidget, GameMouseCaptureMode), Z_Construct_UEnum_Engine_EMouseCaptureMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameMouseCaptureMode_MetaData), NewProp_GameMouseCaptureMode_MetaData) }; // 2576598572 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_InputConfig, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActivatableWidget_Statics::NewProp_GameMouseCaptureMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActivatableWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActivatableWidget_Statics::ClassParams = { + &ULyraActivatableWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActivatableWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActivatableWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActivatableWidget() +{ + if (!Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton, Z_Construct_UClass_ULyraActivatableWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActivatableWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActivatableWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActivatableWidget); +ULyraActivatableWidget::~ULyraActivatableWidget() {} +// End Class ULyraActivatableWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraWidgetInputMode_StaticEnum, TEXT("ELyraWidgetInputMode"), &Z_Registration_Info_UEnum_ELyraWidgetInputMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 429253751U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActivatableWidget, ULyraActivatableWidget::StaticClass, TEXT("ULyraActivatableWidget"), &Z_Registration_Info_UClass_ULyraActivatableWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActivatableWidget), 507563066U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_2177112901(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h new file mode 100644 index 00000000..1d8d8c6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActivatableWidget.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraActivatableWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraActivatableWidget_generated_h +#error "LyraActivatableWidget.generated.h already included, missing '#pragma once' in LyraActivatableWidget.h" +#endif +#define LYRAGAME_LyraActivatableWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActivatableWidget(); \ + friend struct Z_Construct_UClass_ULyraActivatableWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraActivatableWidget, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActivatableWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActivatableWidget(ULyraActivatableWidget&&); \ + ULyraActivatableWidget(const ULyraActivatableWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActivatableWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActivatableWidget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActivatableWidget) \ + NO_API virtual ~ULyraActivatableWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraActivatableWidget_h + + +#define FOREACH_ENUM_ELYRAWIDGETINPUTMODE(op) \ + op(ELyraWidgetInputMode::Default) \ + op(ELyraWidgetInputMode::GameAndMenu) \ + op(ELyraWidgetInputMode::Game) \ + op(ELyraWidgetInputMode::Menu) + +enum class ELyraWidgetInputMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp new file mode 100644 index 00000000..0685f12f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraActorUtilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraActorUtilities() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActorUtilities(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActorUtilities_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EBlueprintExposedNetMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EBlueprintExposedNetMode; +static UEnum* EBlueprintExposedNetMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EBlueprintExposedNetMode")); + } + return Z_Registration_Info_UEnum_EBlueprintExposedNetMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EBlueprintExposedNetMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Client.Comment", "/**\n\x09 * Network client: client connected to a remote server.\n\x09 * Note that every mode less than this value is a kind of server, so checking NetMode < NM_Client is always some variety of server.\n\x09 */" }, + { "Client.Name", "EBlueprintExposedNetMode::Client" }, + { "Client.ToolTip", "Network client: client connected to a remote server.\nNote that every mode less than this value is a kind of server, so checking NetMode < NM_Client is always some variety of server." }, + { "DedicatedServer.Comment", "/** Dedicated server: server with no local players. */" }, + { "DedicatedServer.Name", "EBlueprintExposedNetMode::DedicatedServer" }, + { "DedicatedServer.ToolTip", "Dedicated server: server with no local players." }, + { "ListenServer.Comment", "/** Listen server: a server that also has a local player who is hosting the game, available to other players on the network. */" }, + { "ListenServer.Name", "EBlueprintExposedNetMode::ListenServer" }, + { "ListenServer.ToolTip", "Listen server: a server that also has a local player who is hosting the game, available to other players on the network." }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, + { "Standalone.Comment", "/** Standalone: a game without networking, with one or more local players. Still considered a server because it has all server functionality. */" }, + { "Standalone.Name", "EBlueprintExposedNetMode::Standalone" }, + { "Standalone.ToolTip", "Standalone: a game without networking, with one or more local players. Still considered a server because it has all server functionality." }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EBlueprintExposedNetMode::Standalone", (int64)EBlueprintExposedNetMode::Standalone }, + { "EBlueprintExposedNetMode::DedicatedServer", (int64)EBlueprintExposedNetMode::DedicatedServer }, + { "EBlueprintExposedNetMode::ListenServer", (int64)EBlueprintExposedNetMode::ListenServer }, + { "EBlueprintExposedNetMode::Client", (int64)EBlueprintExposedNetMode::Client }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EBlueprintExposedNetMode", + "EBlueprintExposedNetMode", + Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode() +{ + if (!Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EBlueprintExposedNetMode.InnerSingleton; +} +// End Enum EBlueprintExposedNetMode + +// Begin Class ULyraActorUtilities Function SwitchOnNetMode +struct Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics +{ + struct LyraActorUtilities_eventSwitchOnNetMode_Parms + { + const UObject* WorldContextObject; + EBlueprintExposedNetMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Get the network mode (dedicated server, client, standalone, etc...) for an actor or component.\n\x09 */" }, +#endif + { "ExpandEnumAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get the network mode (dedicated server, client, standalone, etc...) for an actor or component." }, +#endif + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraActorUtilities_eventSwitchOnNetMode_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraActorUtilities_eventSwitchOnNetMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EBlueprintExposedNetMode, METADATA_PARAMS(0, nullptr) }; // 3667641838 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraActorUtilities, nullptr, "SwitchOnNetMode", nullptr, nullptr, Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::LyraActorUtilities_eventSwitchOnNetMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::LyraActorUtilities_eventSwitchOnNetMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraActorUtilities::execSwitchOnNetMode) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(EBlueprintExposedNetMode*)Z_Param__Result=ULyraActorUtilities::SwitchOnNetMode(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraActorUtilities Function SwitchOnNetMode + +// Begin Class ULyraActorUtilities +void ULyraActorUtilities::StaticRegisterNativesULyraActorUtilities() +{ + UClass* Class = ULyraActorUtilities::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SwitchOnNetMode", &ULyraActorUtilities::execSwitchOnNetMode }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActorUtilities); +UClass* Z_Construct_UClass_ULyraActorUtilities_NoRegister() +{ + return ULyraActorUtilities::StaticClass(); +} +struct Z_Construct_UClass_ULyraActorUtilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraActorUtilities.h" }, + { "ModuleRelativePath", "System/LyraActorUtilities.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraActorUtilities_SwitchOnNetMode, "SwitchOnNetMode" }, // 3599317536 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraActorUtilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActorUtilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActorUtilities_Statics::ClassParams = { + &ULyraActorUtilities::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActorUtilities_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActorUtilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActorUtilities() +{ + if (!Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton, Z_Construct_UClass_ULyraActorUtilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActorUtilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActorUtilities::StaticClass(); +} +ULyraActorUtilities::ULyraActorUtilities(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActorUtilities); +ULyraActorUtilities::~ULyraActorUtilities() {} +// End Class ULyraActorUtilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EBlueprintExposedNetMode_StaticEnum, TEXT("EBlueprintExposedNetMode"), &Z_Registration_Info_UEnum_EBlueprintExposedNetMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3667641838U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActorUtilities, ULyraActorUtilities::StaticClass, TEXT("ULyraActorUtilities"), &Z_Registration_Info_UClass_ULyraActorUtilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActorUtilities), 4108752661U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_953022587(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.generated.h new file mode 100644 index 00000000..430b8fae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActorUtilities.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraActorUtilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +enum class EBlueprintExposedNetMode : uint8; +#ifdef LYRAGAME_LyraActorUtilities_generated_h +#error "LyraActorUtilities.generated.h already included, missing '#pragma once' in LyraActorUtilities.h" +#endif +#define LYRAGAME_LyraActorUtilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSwitchOnNetMode); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActorUtilities(); \ + friend struct Z_Construct_UClass_ULyraActorUtilities_Statics; \ +public: \ + DECLARE_CLASS(ULyraActorUtilities, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActorUtilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActorUtilities(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActorUtilities(ULyraActorUtilities&&); \ + ULyraActorUtilities(const ULyraActorUtilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActorUtilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActorUtilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActorUtilities) \ + NO_API virtual ~ULyraActorUtilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_32_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h_35_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraActorUtilities_h + + +#define FOREACH_ENUM_EBLUEPRINTEXPOSEDNETMODE(op) \ + op(EBlueprintExposedNetMode::Standalone) \ + op(EBlueprintExposedNetMode::DedicatedServer) \ + op(EBlueprintExposedNetMode::ListenServer) \ + op(EBlueprintExposedNetMode::Client) + +enum class EBlueprintExposedNetMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp new file mode 100644 index 00000000..7b7cd764 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.gen.cpp @@ -0,0 +1,127 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraAimSensitivityData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAimSensitivityData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAimSensitivityData +void ULyraAimSensitivityData::StaticRegisterNativesULyraAimSensitivityData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAimSensitivityData); +UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister() +{ + return ULyraAimSensitivityData::StaticClass(); +} +struct Z_Construct_UClass_ULyraAimSensitivityData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines a set of gamepad sensitivity to a float value. */" }, +#endif + { "DisplayName", "Lyra Aim Sensitivity Data" }, + { "IncludePath", "Input/LyraAimSensitivityData.h" }, + { "ModuleRelativePath", "Input/LyraAimSensitivityData.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "Data asset used to define a map of Gamepad Sensitivty to a float value." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines a set of gamepad sensitivity to a float value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityMap_MetaData[] = { + { "Category", "LyraAimSensitivityData" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Map of SensitivityMap settings to their corresponding float */" }, +#endif + { "ModuleRelativePath", "Input/LyraAimSensitivityData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of SensitivityMap settings to their corresponding float" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_SensitivityMap_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_SensitivityMap_Key_KeyProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SensitivityMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_SensitivityMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_ValueProp = { "SensitivityMap", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp = { "SensitivityMap_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap = { "SensitivityMap", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAimSensitivityData, SensitivityMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityMap_MetaData), NewProp_SensitivityMap_MetaData) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAimSensitivityData_Statics::NewProp_SensitivityMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAimSensitivityData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAimSensitivityData_Statics::ClassParams = { + &ULyraAimSensitivityData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAimSensitivityData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAimSensitivityData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAimSensitivityData() +{ + if (!Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton, Z_Construct_UClass_ULyraAimSensitivityData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAimSensitivityData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAimSensitivityData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAimSensitivityData); +ULyraAimSensitivityData::~ULyraAimSensitivityData() {} +// End Class ULyraAimSensitivityData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAimSensitivityData, ULyraAimSensitivityData::StaticClass, TEXT("ULyraAimSensitivityData"), &Z_Registration_Info_UClass_ULyraAimSensitivityData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAimSensitivityData), 1592872845U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_3359076582(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h new file mode 100644 index 00000000..ef4330cb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAimSensitivityData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraAimSensitivityData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAimSensitivityData_generated_h +#error "LyraAimSensitivityData.generated.h already included, missing '#pragma once' in LyraAimSensitivityData.h" +#endif +#define LYRAGAME_LyraAimSensitivityData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAimSensitivityData(); \ + friend struct Z_Construct_UClass_ULyraAimSensitivityData_Statics; \ +public: \ + DECLARE_CLASS(ULyraAimSensitivityData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAimSensitivityData) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAimSensitivityData(ULyraAimSensitivityData&&); \ + ULyraAimSensitivityData(const ULyraAimSensitivityData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAimSensitivityData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAimSensitivityData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAimSensitivityData) \ + NO_API virtual ~ULyraAimSensitivityData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraAimSensitivityData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp new file mode 100644 index 00000000..7e936eb4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.gen.cpp @@ -0,0 +1,125 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Animation/LyraAnimInstance.h" +#include "GameplayAbilities/Public/GameplayEffectTypes.h" +#include "Runtime/Engine/Classes/Components/SkeletalMeshComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAnimInstance() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagBlueprintPropertyMap(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAnimInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAnimInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAnimInstance +void ULyraAnimInstance::StaticRegisterNativesULyraAnimInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAnimInstance); +UClass* Z_Construct_UClass_ULyraAnimInstance_NoRegister() +{ + return ULyraAnimInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraAnimInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAnimInstance\n *\n *\x09The base game animation instance class used by this project.\n */" }, +#endif + { "HideCategories", "AnimInstance" }, + { "IncludePath", "Animation/LyraAnimInstance.h" }, + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAnimInstance\n\n The base game animation instance class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplayTagPropertyMap_MetaData[] = { + { "Category", "GameplayTags" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay tags that can be mapped to blueprint variables. The variables will automatically update as the tags are added or removed.\n// These should be used instead of manually querying for the gameplay tags.\n" }, +#endif + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay tags that can be mapped to blueprint variables. The variables will automatically update as the tags are added or removed.\nThese should be used instead of manually querying for the gameplay tags." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundDistance_MetaData[] = { + { "Category", "Character State Data" }, + { "ModuleRelativePath", "Animation/LyraAnimInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GameplayTagPropertyMap; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GroundDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GameplayTagPropertyMap = { "GameplayTagPropertyMap", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAnimInstance, GameplayTagPropertyMap), Z_Construct_UScriptStruct_FGameplayTagBlueprintPropertyMap, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplayTagPropertyMap_MetaData), NewProp_GameplayTagPropertyMap_MetaData) }; // 2674068477 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GroundDistance = { "GroundDistance", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAnimInstance, GroundDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundDistance_MetaData), NewProp_GroundDistance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GameplayTagPropertyMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAnimInstance_Statics::NewProp_GroundDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAnimInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAnimInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAnimInstance_Statics::ClassParams = { + &ULyraAnimInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::PropPointers), + 0, + 0x008000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAnimInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAnimInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAnimInstance() +{ + if (!Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton, Z_Construct_UClass_ULyraAnimInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAnimInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAnimInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAnimInstance); +ULyraAnimInstance::~ULyraAnimInstance() {} +// End Class ULyraAnimInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAnimInstance, ULyraAnimInstance::StaticClass, TEXT("ULyraAnimInstance"), &Z_Registration_Info_UClass_ULyraAnimInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAnimInstance), 2092704503U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_1921519734(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.generated.h new file mode 100644 index 00000000..58758745 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAnimInstance.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Animation/LyraAnimInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAnimInstance_generated_h +#error "LyraAnimInstance.generated.h already included, missing '#pragma once' in LyraAnimInstance.h" +#endif +#define LYRAGAME_LyraAnimInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAnimInstance(); \ + friend struct Z_Construct_UClass_ULyraAnimInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraAnimInstance, UAnimInstance, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAnimInstance) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAnimInstance(ULyraAnimInstance&&); \ + ULyraAnimInstance(const ULyraAnimInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAnimInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAnimInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAnimInstance) \ + NO_API virtual ~ULyraAnimInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Animation_LyraAnimInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp new file mode 100644 index 00000000..8e79f438 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.gen.cpp @@ -0,0 +1,162 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraAssetManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAssetManager() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAssetManager(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAssetManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAssetManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAssetManager +void ULyraAssetManager::StaticRegisterNativesULyraAssetManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAssetManager); +UClass* Z_Construct_UClass_ULyraAssetManager_NoRegister() +{ + return ULyraAssetManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraAssetManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAssetManager\n *\n *\x09Game implementation of the asset manager that overrides functionality and stores game-specific types.\n *\x09It is expected that most games will want to override AssetManager as it provides a good place for game-specific loading logic.\n *\x09This class is used by setting 'AssetManagerClassName' in DefaultEngine.ini.\n */" }, +#endif + { "IncludePath", "System/LyraAssetManager.h" }, + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAssetManager\n\n Game implementation of the asset manager that overrides functionality and stores game-specific types.\n It is expected that most games will want to override AssetManager as it provides a good place for game-specific loading logic.\n This class is used by setting 'AssetManagerClassName' in DefaultEngine.ini." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LyraGameDataPath_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Global game data asset to use.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Global game data asset to use." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameDataMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Loaded version of the game data\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loaded version of the game data" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPawnData_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Pawn data used when spawning player pawns if there isn't one set on the player state.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pawn data used when spawning player pawns if there isn't one set on the player state." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadedAssets_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Assets loaded and tracked by the asset manager.\n" }, +#endif + { "ModuleRelativePath", "System/LyraAssetManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Assets loaded and tracked by the asset manager." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_LyraGameDataPath; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GameDataMap_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_GameDataMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_GameDataMap; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_DefaultPawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LoadedAssets_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_LoadedAssets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LyraGameDataPath = { "LyraGameDataPath", nullptr, (EPropertyFlags)0x0024080000004000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, LyraGameDataPath), Z_Construct_UClass_ULyraGameData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LyraGameDataPath_MetaData), NewProp_LyraGameDataPath_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_ValueProp = { "GameDataMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UPrimaryDataAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_Key_KeyProp = { "GameDataMap_Key", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap = { "GameDataMap", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, GameDataMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameDataMap_MetaData), NewProp_GameDataMap_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_DefaultPawnData = { "DefaultPawnData", nullptr, (EPropertyFlags)0x0024080000004000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, DefaultPawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPawnData_MetaData), NewProp_DefaultPawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets_ElementProp = { "LoadedAssets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets = { "LoadedAssets", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAssetManager, LoadedAssets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadedAssets_MetaData), NewProp_LoadedAssets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LyraGameDataPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_GameDataMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_DefaultPawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAssetManager_Statics::NewProp_LoadedAssets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAssetManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAssetManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAssetManager_Statics::ClassParams = { + &ULyraAssetManager::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::PropPointers), + 0, + 0x001000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAssetManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAssetManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAssetManager() +{ + if (!Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton, Z_Construct_UClass_ULyraAssetManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAssetManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAssetManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAssetManager); +ULyraAssetManager::~ULyraAssetManager() {} +// End Class ULyraAssetManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAssetManager, ULyraAssetManager::StaticClass, TEXT("ULyraAssetManager"), &Z_Registration_Info_UClass_ULyraAssetManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAssetManager), 2024443560U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_2769802936(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.generated.h new file mode 100644 index 00000000..5ae2a794 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAssetManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraAssetManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAssetManager_generated_h +#error "LyraAssetManager.generated.h already included, missing '#pragma once' in LyraAssetManager.h" +#endif +#define LYRAGAME_LyraAssetManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAssetManager(); \ + friend struct Z_Construct_UClass_ULyraAssetManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraAssetManager, UAssetManager, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAssetManager) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAssetManager(ULyraAssetManager&&); \ + ULyraAssetManager(const ULyraAssetManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAssetManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAssetManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAssetManager) \ + NO_API virtual ~ULyraAssetManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_28_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h_31_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraAssetManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp new file mode 100644 index 00000000..fb1444c1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraAttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAttributeSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraAttributeSet +void ULyraAttributeSet::StaticRegisterNativesULyraAttributeSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAttributeSet); +UClass* Z_Construct_UClass_ULyraAttributeSet_NoRegister() +{ + return ULyraAttributeSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraAttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraAttributeSet\n *\n *\x09""Base attribute set class for the project.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraAttributeSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraAttributeSet\n\n Base attribute set class for the project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraAttributeSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAttributeSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAttributeSet_Statics::ClassParams = { + &ULyraAttributeSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x003000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAttributeSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAttributeSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAttributeSet() +{ + if (!Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton, Z_Construct_UClass_ULyraAttributeSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAttributeSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAttributeSet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAttributeSet); +ULyraAttributeSet::~ULyraAttributeSet() {} +// End Class ULyraAttributeSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAttributeSet, ULyraAttributeSet::StaticClass, TEXT("ULyraAttributeSet"), &Z_Registration_Info_UClass_ULyraAttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAttributeSet), 3812889591U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_457937553(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.generated.h new file mode 100644 index 00000000..ed339861 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAttributeSet.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraAttributeSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAttributeSet_generated_h +#error "LyraAttributeSet.generated.h already included, missing '#pragma once' in LyraAttributeSet.h" +#endif +#define LYRAGAME_LyraAttributeSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAttributeSet(); \ + friend struct Z_Construct_UClass_ULyraAttributeSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraAttributeSet, UAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAttributeSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAttributeSet(ULyraAttributeSet&&); \ + ULyraAttributeSet(const ULyraAttributeSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAttributeSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAttributeSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAttributeSet) \ + NO_API virtual ~ULyraAttributeSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h_52_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraAttributeSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp new file mode 100644 index 00000000..0a898e6e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.gen.cpp @@ -0,0 +1,316 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Audio/LyraAudioMixEffectsSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAudioMixEffectsSubsystem() {} + +// Begin Cross Module References +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBus_NoRegister(); +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBusMix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundSubmix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAudioSubmixEffectsChain +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain; +class UScriptStruct* FLyraAudioSubmixEffectsChain::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAudioSubmixEffectsChain")); + } + return Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAudioSubmixEffectsChain::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Submix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix on which to apply the Submix Effect Chain Override\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix on which to apply the Submix Effect Chain Override" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect Chain Override (Effects processed in Array index order)\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect Chain Override (Effects processed in Array index order)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Submix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_Submix = { "Submix", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAudioSubmixEffectsChain, Submix), Z_Construct_UClass_USoundSubmix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Submix_MetaData), NewProp_Submix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain_Inner = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAudioSubmixEffectsChain, SubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubmixEffectChain_MetaData), NewProp_SubmixEffectChain_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_Submix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewProp_SubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAudioSubmixEffectsChain", + Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::PropPointers), + sizeof(FLyraAudioSubmixEffectsChain), + alignof(FLyraAudioSubmixEffectsChain), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain.InnerSingleton; +} +// End ScriptStruct FLyraAudioSubmixEffectsChain + +// Begin Class ULyraAudioMixEffectsSubsystem +void ULyraAudioMixEffectsSubsystem::StaticRegisterNativesULyraAudioMixEffectsSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAudioMixEffectsSubsystem); +UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_NoRegister() +{ + return ULyraAudioMixEffectsSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This subsystem is meant to automatically engage default and user control bus mixes\n * to retrieve previously saved user settings and apply them to the activated user mix.\n * Additionally, this subsystem will automatically apply HDR/LDR Audio Submix Effect Chain Overrides\n * based on the user's preference for HDR Audio. Submix Effect Chain Overrides are defined in the\n * Lyra Audio Settings.\n */" }, +#endif + { "IncludePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This subsystem is meant to automatically engage default and user control bus mixes\nto retrieve previously saved user settings and apply them to the activated user mix.\nAdditionally, this subsystem will automatically apply HDR/LDR Audio Submix Effect Chain Overrides\nbased on the user's preference for HDR Audio. Submix Effect Chain Overrides are defined in the\nLyra Audio Settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultBaseMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Loading Screen Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loading Screen Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserMix_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// User Sound Control Bus Mix retrieved from the Lyra Audio Settings\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "User Sound Control Bus Mix retrieved from the Lyra Audio Settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Overall Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Overall Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Music Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Music Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// SoundFX Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SoundFX Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Dialogue Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Dialogue Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatControlBus_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// VoiceChat Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "VoiceChat Sound Control Bus retrieved from the Lyra Audio Settings and linked to the UI and game settings in LyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HDRSubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect Chain Overrides to apply when HDR Audio is turned on\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect Chain Overrides to apply when HDR Audio is turned on" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LDRSubmixEffectChain_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Submix Effect hain Overrides to apply when HDR Audio is turned off\n" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioMixEffectsSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Effect hain Overrides to apply when HDR Audio is turned off" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultBaseMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LoadingScreenMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserMix; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverallControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MusicControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SoundFXControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DialogueControlBus; + static const UECodeGen_Private::FObjectPropertyParams NewProp_VoiceChatControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_HDRSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HDRSubmixEffectChain; + static const UECodeGen_Private::FStructPropertyParams NewProp_LDRSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LDRSubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DefaultBaseMix = { "DefaultBaseMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, DefaultBaseMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultBaseMix_MetaData), NewProp_DefaultBaseMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LoadingScreenMix = { "LoadingScreenMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, LoadingScreenMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenMix_MetaData), NewProp_LoadingScreenMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_UserMix = { "UserMix", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, UserMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserMix_MetaData), NewProp_UserMix_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_OverallControlBus = { "OverallControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, OverallControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallControlBus_MetaData), NewProp_OverallControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_MusicControlBus = { "MusicControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, MusicControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicControlBus_MetaData), NewProp_MusicControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_SoundFXControlBus = { "SoundFXControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, SoundFXControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXControlBus_MetaData), NewProp_SoundFXControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DialogueControlBus = { "DialogueControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, DialogueControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueControlBus_MetaData), NewProp_DialogueControlBus_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_VoiceChatControlBus = { "VoiceChatControlBus", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, VoiceChatControlBus), Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatControlBus_MetaData), NewProp_VoiceChatControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain_Inner = { "HDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, METADATA_PARAMS(0, nullptr) }; // 2051370987 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain = { "HDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, HDRSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HDRSubmixEffectChain_MetaData), NewProp_HDRSubmixEffectChain_MetaData) }; // 2051370987 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain_Inner = { "LDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain, METADATA_PARAMS(0, nullptr) }; // 2051370987 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain = { "LDRSubmixEffectChain", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioMixEffectsSubsystem, LDRSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LDRSubmixEffectChain_MetaData), NewProp_LDRSubmixEffectChain_MetaData) }; // 2051370987 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DefaultBaseMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LoadingScreenMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_UserMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_OverallControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_MusicControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_SoundFXControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_DialogueControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_VoiceChatControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_HDRSubmixEffectChain, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::NewProp_LDRSubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::ClassParams = { + &ULyraAudioMixEffectsSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAudioMixEffectsSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton, Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAudioMixEffectsSubsystem::StaticClass(); +} +ULyraAudioMixEffectsSubsystem::ULyraAudioMixEffectsSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAudioMixEffectsSubsystem); +ULyraAudioMixEffectsSubsystem::~ULyraAudioMixEffectsSubsystem() {} +// End Class ULyraAudioMixEffectsSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAudioSubmixEffectsChain::StaticStruct, Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics::NewStructOps, TEXT("LyraAudioSubmixEffectsChain"), &Z_Registration_Info_UScriptStruct_LyraAudioSubmixEffectsChain, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAudioSubmixEffectsChain), 2051370987U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAudioMixEffectsSubsystem, ULyraAudioMixEffectsSubsystem::StaticClass, TEXT("ULyraAudioMixEffectsSubsystem"), &Z_Registration_Info_UClass_ULyraAudioMixEffectsSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAudioMixEffectsSubsystem), 3146904743U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_219221928(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h new file mode 100644 index 00000000..04ecc9b0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioMixEffectsSubsystem.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Audio/LyraAudioMixEffectsSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAudioMixEffectsSubsystem_generated_h +#error "LyraAudioMixEffectsSubsystem.generated.h already included, missing '#pragma once' in LyraAudioMixEffectsSubsystem.h" +#endif +#define LYRAGAME_LyraAudioMixEffectsSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_20_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAudioSubmixEffectsChain_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAudioMixEffectsSubsystem(); \ + friend struct Z_Construct_UClass_ULyraAudioMixEffectsSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraAudioMixEffectsSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAudioMixEffectsSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAudioMixEffectsSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAudioMixEffectsSubsystem(ULyraAudioMixEffectsSubsystem&&); \ + ULyraAudioMixEffectsSubsystem(const ULyraAudioMixEffectsSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAudioMixEffectsSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAudioMixEffectsSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraAudioMixEffectsSubsystem) \ + NO_API virtual ~ULyraAudioMixEffectsSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioMixEffectsSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp new file mode 100644 index 00000000..480e4a43 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.gen.cpp @@ -0,0 +1,323 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Audio/LyraAudioSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAudioSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UClass* Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundSubmix_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAudioSettings_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraSubmixEffectChainMap +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap; +class UScriptStruct* FLyraSubmixEffectChainMap::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraSubmixEffectChainMap")); + } + return Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraSubmixEffectChainMap::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Submix_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundSubmix" }, + { "Category", "LyraSubmixEffectChainMap" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubmixEffectChain_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundEffectSubmixPreset" }, + { "Category", "LyraSubmixEffectChainMap" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Submix; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_SubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_Submix = { "Submix", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraSubmixEffectChainMap, Submix), Z_Construct_UClass_USoundSubmix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Submix_MetaData), NewProp_Submix_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain_Inner = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundEffectSubmixPreset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain = { "SubmixEffectChain", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraSubmixEffectChainMap, SubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubmixEffectChain_MetaData), NewProp_SubmixEffectChain_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_Submix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewProp_SubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraSubmixEffectChainMap", + Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::PropPointers), + sizeof(FLyraSubmixEffectChainMap), + alignof(FLyraSubmixEffectChainMap), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap() +{ + if (!Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap.InnerSingleton; +} +// End ScriptStruct FLyraSubmixEffectChainMap + +// Begin Class ULyraAudioSettings +void ULyraAudioSettings::StaticRegisterNativesULyraAudioSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAudioSettings); +UClass* Z_Construct_UClass_ULyraAudioSettings_NoRegister() +{ + return ULyraAudioSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraAudioSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "LyraAudioSettings" }, + { "IncludePath", "Audio/LyraAudioSettings.h" }, + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "MixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Default Base Control Bus Mix */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Default Base Control Bus Mix" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "MixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Loading Screen Control Bus Mix - Called during loading screens to cover background audio events */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Loading Screen Control Bus Mix - Called during loading screens to cover background audio events" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserSettingsControlBusMix_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBusMix" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Default Base Control Bus Mix */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Default Base Control Bus Mix" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Overall sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Overall sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Music sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Music sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the SoundFX sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the SoundFX sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the Dialogue sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the Dialogue sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatVolumeControlBus_MetaData[] = { + { "AllowedClasses", "/Script/AudioModulation.SoundControlBus" }, + { "Category", "UserMixSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Control Bus assigned to the VoiceChat sound volume setting */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Control Bus assigned to the VoiceChat sound volume setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HDRAudioSubmixEffectChain_MetaData[] = { + { "Category", "EffectSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Submix Processing Chains to achieve high dynamic range audio output */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Processing Chains to achieve high dynamic range audio output" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LDRAudioSubmixEffectChain_MetaData[] = { + { "Category", "EffectSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Submix Processing Chains to achieve low dynamic range audio output */" }, +#endif + { "ModuleRelativePath", "Audio/LyraAudioSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Submix Processing Chains to achieve low dynamic range audio output" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_LoadingScreenControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserSettingsControlBusMix; + static const UECodeGen_Private::FStructPropertyParams NewProp_OverallVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_MusicVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_SoundFXVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_DialogueVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_VoiceChatVolumeControlBus; + static const UECodeGen_Private::FStructPropertyParams NewProp_HDRAudioSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HDRAudioSubmixEffectChain; + static const UECodeGen_Private::FStructPropertyParams NewProp_LDRAudioSubmixEffectChain_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LDRAudioSubmixEffectChain; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DefaultControlBusMix = { "DefaultControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, DefaultControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultControlBusMix_MetaData), NewProp_DefaultControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LoadingScreenControlBusMix = { "LoadingScreenControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, LoadingScreenControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenControlBusMix_MetaData), NewProp_LoadingScreenControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_UserSettingsControlBusMix = { "UserSettingsControlBusMix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, UserSettingsControlBusMix), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserSettingsControlBusMix_MetaData), NewProp_UserSettingsControlBusMix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_OverallVolumeControlBus = { "OverallVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, OverallVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallVolumeControlBus_MetaData), NewProp_OverallVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_MusicVolumeControlBus = { "MusicVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, MusicVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicVolumeControlBus_MetaData), NewProp_MusicVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_SoundFXVolumeControlBus = { "SoundFXVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, SoundFXVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXVolumeControlBus_MetaData), NewProp_SoundFXVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DialogueVolumeControlBus = { "DialogueVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, DialogueVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueVolumeControlBus_MetaData), NewProp_DialogueVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_VoiceChatVolumeControlBus = { "VoiceChatVolumeControlBus", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, VoiceChatVolumeControlBus), Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatVolumeControlBus_MetaData), NewProp_VoiceChatVolumeControlBus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain_Inner = { "HDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, METADATA_PARAMS(0, nullptr) }; // 2674517442 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain = { "HDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, HDRAudioSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HDRAudioSubmixEffectChain_MetaData), NewProp_HDRAudioSubmixEffectChain_MetaData) }; // 2674517442 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain_Inner = { "LDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap, METADATA_PARAMS(0, nullptr) }; // 2674517442 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain = { "LDRAudioSubmixEffectChain", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAudioSettings, LDRAudioSubmixEffectChain), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LDRAudioSubmixEffectChain_MetaData), NewProp_LDRAudioSubmixEffectChain_MetaData) }; // 2674517442 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DefaultControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LoadingScreenControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_UserSettingsControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_OverallVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_MusicVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_SoundFXVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_DialogueVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_VoiceChatVolumeControlBus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_HDRAudioSubmixEffectChain, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAudioSettings_Statics::NewProp_LDRAudioSubmixEffectChain, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAudioSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAudioSettings_Statics::ClassParams = { + &ULyraAudioSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::PropPointers), + 0, + 0x001000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAudioSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAudioSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAudioSettings() +{ + if (!Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton, Z_Construct_UClass_ULyraAudioSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAudioSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraAudioSettings::StaticClass(); +} +ULyraAudioSettings::ULyraAudioSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAudioSettings); +ULyraAudioSettings::~ULyraAudioSettings() {} +// End Class ULyraAudioSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraSubmixEffectChainMap::StaticStruct, Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics::NewStructOps, TEXT("LyraSubmixEffectChainMap"), &Z_Registration_Info_UScriptStruct_LyraSubmixEffectChainMap, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraSubmixEffectChainMap), 2674517442U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAudioSettings, ULyraAudioSettings::StaticClass, TEXT("ULyraAudioSettings"), &Z_Registration_Info_UClass_ULyraAudioSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAudioSettings), 2583634539U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_1014962831(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.generated.h new file mode 100644 index 00000000..18b6cd3c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAudioSettings.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Audio/LyraAudioSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraAudioSettings_generated_h +#error "LyraAudioSettings.generated.h already included, missing '#pragma once' in LyraAudioSettings.h" +#endif +#define LYRAGAME_LyraAudioSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraSubmixEffectChainMap_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAudioSettings(); \ + friend struct Z_Construct_UClass_ULyraAudioSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraAudioSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraAudioSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAudioSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAudioSettings(ULyraAudioSettings&&); \ + ULyraAudioSettings(const ULyraAudioSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAudioSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAudioSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAudioSettings) \ + NO_API virtual ~ULyraAudioSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_30_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h_33_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Audio_LyraAudioSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp new file mode 100644 index 00000000..4ee48b8f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraBotCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBotCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBotCheats Function AddPlayerBot +struct Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a bot player\n" }, +#endif + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a bot player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCheats, nullptr, "AddPlayerBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCheats::execAddPlayerBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddPlayerBot(); + P_NATIVE_END; +} +// End Class ULyraBotCheats Function AddPlayerBot + +// Begin Class ULyraBotCheats Function RemovePlayerBot +struct Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a random bot player\n" }, +#endif + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a random bot player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCheats, nullptr, "RemovePlayerBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCheats::execRemovePlayerBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemovePlayerBot(); + P_NATIVE_END; +} +// End Class ULyraBotCheats Function RemovePlayerBot + +// Begin Class ULyraBotCheats +void ULyraBotCheats::StaticRegisterNativesULyraBotCheats() +{ + UClass* Class = ULyraBotCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddPlayerBot", &ULyraBotCheats::execAddPlayerBot }, + { "RemovePlayerBot", &ULyraBotCheats::execRemovePlayerBot }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBotCheats); +UClass* Z_Construct_UClass_ULyraBotCheats_NoRegister() +{ + return ULyraBotCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraBotCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to bots */" }, +#endif + { "IncludePath", "Development/LyraBotCheats.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Development/LyraBotCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to bots" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBotCheats_AddPlayerBot, "AddPlayerBot" }, // 3734653617 + { &Z_Construct_UFunction_ULyraBotCheats_RemovePlayerBot, "RemovePlayerBot" }, // 397959546 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraBotCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBotCheats_Statics::ClassParams = { + &ULyraBotCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBotCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBotCheats() +{ + if (!Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton, Z_Construct_UClass_ULyraBotCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBotCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBotCheats::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBotCheats); +ULyraBotCheats::~ULyraBotCheats() {} +// End Class ULyraBotCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBotCheats, ULyraBotCheats::StaticClass, TEXT("ULyraBotCheats"), &Z_Registration_Info_UClass_ULyraBotCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBotCheats), 4073402433U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_540700765(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.generated.h new file mode 100644 index 00000000..2365fca2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCheats.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraBotCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBotCheats_generated_h +#error "LyraBotCheats.generated.h already included, missing '#pragma once' in LyraBotCheats.h" +#endif +#define LYRAGAME_LyraBotCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemovePlayerBot); \ + DECLARE_FUNCTION(execAddPlayerBot); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBotCheats(); \ + friend struct Z_Construct_UClass_ULyraBotCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraBotCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBotCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBotCheats(ULyraBotCheats&&); \ + ULyraBotCheats(const ULyraBotCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBotCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBotCheats); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraBotCheats) \ + NO_API virtual ~ULyraBotCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraBotCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp new file mode 100644 index 00000000..a707a777 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.gen.cpp @@ -0,0 +1,267 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraBotCreationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBotCreationComponent() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_AAIController_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCreationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBotCreationComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBotCreationComponent Function RemoveOneBot +struct Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deletes the last created bot if possible */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deletes the last created bot if possible" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "RemoveOneBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080404, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execRemoveOneBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveOneBot(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function RemoveOneBot + +// Begin Class ULyraBotCreationComponent Function ServerCreateBots +static const FName NAME_ULyraBotCreationComponent_ServerCreateBots = FName(TEXT("ServerCreateBots")); +void ULyraBotCreationComponent::ServerCreateBots() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraBotCreationComponent_ServerCreateBots); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + ServerCreateBots_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Spawns bots up to NumBotsToCreate */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spawns bots up to NumBotsToCreate" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "ServerCreateBots", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C04, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execServerCreateBots) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ServerCreateBots_Implementation(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function ServerCreateBots + +// Begin Class ULyraBotCreationComponent Function SpawnOneBot +struct Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Always creates a single bot */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Always creates a single bot" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBotCreationComponent, nullptr, "SpawnOneBot", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080404, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBotCreationComponent::execSpawnOneBot) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SpawnOneBot(); + P_NATIVE_END; +} +// End Class ULyraBotCreationComponent Function SpawnOneBot + +// Begin Class ULyraBotCreationComponent +void ULyraBotCreationComponent::StaticRegisterNativesULyraBotCreationComponent() +{ + UClass* Class = ULyraBotCreationComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "RemoveOneBot", &ULyraBotCreationComponent::execRemoveOneBot }, + { "ServerCreateBots", &ULyraBotCreationComponent::execServerCreateBots }, + { "SpawnOneBot", &ULyraBotCreationComponent::execSpawnOneBot }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBotCreationComponent); +UClass* Z_Construct_UClass_ULyraBotCreationComponent_NoRegister() +{ + return ULyraBotCreationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraBotCreationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "GameModes/LyraBotCreationComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumBotsToCreate_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BotControllerClass_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RandomBotNames_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedBotList_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraBotCreationComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NumBotsToCreate; + static const UECodeGen_Private::FClassPropertyParams NewProp_BotControllerClass; + static const UECodeGen_Private::FStrPropertyParams NewProp_RandomBotNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RandomBotNames; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedBotList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SpawnedBotList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBotCreationComponent_RemoveOneBot, "RemoveOneBot" }, // 1268094969 + { &Z_Construct_UFunction_ULyraBotCreationComponent_ServerCreateBots, "ServerCreateBots" }, // 971890224 + { &Z_Construct_UFunction_ULyraBotCreationComponent_SpawnOneBot, "SpawnOneBot" }, // 3856896300 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_NumBotsToCreate = { "NumBotsToCreate", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, NumBotsToCreate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumBotsToCreate_MetaData), NewProp_NumBotsToCreate_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_BotControllerClass = { "BotControllerClass", nullptr, (EPropertyFlags)0x0024080000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, BotControllerClass), Z_Construct_UClass_UClass, Z_Construct_UClass_AAIController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BotControllerClass_MetaData), NewProp_BotControllerClass_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames_Inner = { "RandomBotNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames = { "RandomBotNames", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, RandomBotNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RandomBotNames_MetaData), NewProp_RandomBotNames_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList_Inner = { "SpawnedBotList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AAIController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList = { "SpawnedBotList", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBotCreationComponent, SpawnedBotList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedBotList_MetaData), NewProp_SpawnedBotList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_NumBotsToCreate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_BotControllerClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_RandomBotNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBotCreationComponent_Statics::NewProp_SpawnedBotList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBotCreationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBotCreationComponent_Statics::ClassParams = { + &ULyraBotCreationComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBotCreationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBotCreationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBotCreationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton, Z_Construct_UClass_ULyraBotCreationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBotCreationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBotCreationComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBotCreationComponent); +ULyraBotCreationComponent::~ULyraBotCreationComponent() {} +// End Class ULyraBotCreationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBotCreationComponent, ULyraBotCreationComponent::StaticClass, TEXT("ULyraBotCreationComponent"), &Z_Registration_Info_UClass_ULyraBotCreationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBotCreationComponent), 1663100918U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_3314829384(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h new file mode 100644 index 00000000..c9f69175 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBotCreationComponent.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraBotCreationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBotCreationComponent_generated_h +#error "LyraBotCreationComponent.generated.h already included, missing '#pragma once' in LyraBotCreationComponent.h" +#endif +#define LYRAGAME_LyraBotCreationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ServerCreateBots_Implementation(); \ + DECLARE_FUNCTION(execServerCreateBots); \ + DECLARE_FUNCTION(execRemoveOneBot); \ + DECLARE_FUNCTION(execSpawnOneBot); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBotCreationComponent(); \ + friend struct Z_Construct_UClass_ULyraBotCreationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraBotCreationComponent, UGameStateComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBotCreationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBotCreationComponent(ULyraBotCreationComponent&&); \ + ULyraBotCreationComponent(const ULyraBotCreationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBotCreationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBotCreationComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBotCreationComponent) \ + NO_API virtual ~ULyraBotCreationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraBotCreationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp new file mode 100644 index 00000000..4043f4e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.gen.cpp @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraBoundActionButton.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBoundActionButton() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonBoundActionButton(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonStyle_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBoundActionButton(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBoundActionButton_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBoundActionButton +void ULyraBoundActionButton::StaticRegisterNativesULyraBoundActionButton() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBoundActionButton); +UClass* Z_Construct_UClass_ULyraBoundActionButton_NoRegister() +{ + return ULyraBoundActionButton::StaticClass(); +} +struct Z_Construct_UClass_ULyraBoundActionButton_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraBoundActionButton.h" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyboardStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TouchStyle_MetaData[] = { + { "Category", "Styles" }, + { "ModuleRelativePath", "UI/Common/LyraBoundActionButton.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_KeyboardStyle; + static const UECodeGen_Private::FClassPropertyParams NewProp_GamepadStyle; + static const UECodeGen_Private::FClassPropertyParams NewProp_TouchStyle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_KeyboardStyle = { "KeyboardStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, KeyboardStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyboardStyle_MetaData), NewProp_KeyboardStyle_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_GamepadStyle = { "GamepadStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, GamepadStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadStyle_MetaData), NewProp_GamepadStyle_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_TouchStyle = { "TouchStyle", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBoundActionButton, TouchStyle), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonStyle_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TouchStyle_MetaData), NewProp_TouchStyle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_KeyboardStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_GamepadStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBoundActionButton_Statics::NewProp_TouchStyle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBoundActionButton_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonBoundActionButton, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBoundActionButton_Statics::ClassParams = { + &ULyraBoundActionButton::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBoundActionButton_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBoundActionButton_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBoundActionButton() +{ + if (!Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton, Z_Construct_UClass_ULyraBoundActionButton_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBoundActionButton.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBoundActionButton::StaticClass(); +} +ULyraBoundActionButton::ULyraBoundActionButton(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBoundActionButton); +ULyraBoundActionButton::~ULyraBoundActionButton() {} +// End Class ULyraBoundActionButton + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBoundActionButton, ULyraBoundActionButton::StaticClass, TEXT("ULyraBoundActionButton"), &Z_Registration_Info_UClass_ULyraBoundActionButton, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBoundActionButton), 1412031008U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_292333060(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h new file mode 100644 index 00000000..da64b0f9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBoundActionButton.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraBoundActionButton.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBoundActionButton_generated_h +#error "LyraBoundActionButton.generated.h already included, missing '#pragma once' in LyraBoundActionButton.h" +#endif +#define LYRAGAME_LyraBoundActionButton_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBoundActionButton(); \ + friend struct Z_Construct_UClass_ULyraBoundActionButton_Statics; \ +public: \ + DECLARE_CLASS(ULyraBoundActionButton, UCommonBoundActionButton, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBoundActionButton) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraBoundActionButton(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBoundActionButton(ULyraBoundActionButton&&); \ + ULyraBoundActionButton(const ULyraBoundActionButton&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBoundActionButton); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBoundActionButton); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBoundActionButton) \ + NO_API virtual ~ULyraBoundActionButton(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraBoundActionButton_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp new file mode 100644 index 00000000..14e968ec --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.gen.cpp @@ -0,0 +1,224 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Screens/LyraBrightnessEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraBrightnessEditor() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBrightnessEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraBrightnessEditor_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetSwitcher_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraBrightnessEditor Function HandleBackClicked +struct Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBrightnessEditor, nullptr, "HandleBackClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBrightnessEditor::execHandleBackClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleBackClicked(); + P_NATIVE_END; +} +// End Class ULyraBrightnessEditor Function HandleBackClicked + +// Begin Class ULyraBrightnessEditor Function HandleDoneClicked +struct Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraBrightnessEditor, nullptr, "HandleDoneClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraBrightnessEditor::execHandleDoneClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleDoneClicked(); + P_NATIVE_END; +} +// End Class ULyraBrightnessEditor Function HandleDoneClicked + +// Begin Class ULyraBrightnessEditor +void ULyraBrightnessEditor::StaticRegisterNativesULyraBrightnessEditor() +{ + UClass* Class = ULyraBrightnessEditor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleBackClicked", &ULyraBrightnessEditor::execHandleBackClicked }, + { "HandleDoneClicked", &ULyraBrightnessEditor::execHandleDoneClicked }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraBrightnessEditor); +UClass* Z_Construct_UClass_ULyraBrightnessEditor_NoRegister() +{ + return ULyraBrightnessEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraBrightnessEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/Screens/LyraBrightnessEditor.h" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCancel_MetaData[] = { + { "Category", "Restrictions" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Switcher_SafeZoneMessage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Default_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Back_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Done_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraBrightnessEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraBrightnessEditor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanCancel_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCancel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Switcher_SafeZoneMessage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Default; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Back; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Done; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraBrightnessEditor_HandleBackClicked, "HandleBackClicked" }, // 2180966280 + { &Z_Construct_UFunction_ULyraBrightnessEditor_HandleDoneClicked, "HandleDoneClicked" }, // 3117725778 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel_SetBit(void* Obj) +{ + ((ULyraBrightnessEditor*)Obj)->bCanCancel = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel = { "bCanCancel", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraBrightnessEditor), &Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCancel_MetaData), NewProp_bCanCancel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Switcher_SafeZoneMessage = { "Switcher_SafeZoneMessage", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Switcher_SafeZoneMessage), Z_Construct_UClass_UWidgetSwitcher_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Switcher_SafeZoneMessage_MetaData), NewProp_Switcher_SafeZoneMessage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_RichText_Default = { "RichText_Default", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, RichText_Default), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Default_MetaData), NewProp_RichText_Default_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Back = { "Button_Back", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Button_Back), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Back_MetaData), NewProp_Button_Back_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Done = { "Button_Done", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraBrightnessEditor, Button_Done), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Done_MetaData), NewProp_Button_Done_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_bCanCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Switcher_SafeZoneMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_RichText_Default, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Back, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraBrightnessEditor_Statics::NewProp_Button_Done, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraBrightnessEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameSettingActionInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraBrightnessEditor, IGameSettingActionInterface), false }, // 3882456604 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraBrightnessEditor_Statics::ClassParams = { + &ULyraBrightnessEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraBrightnessEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraBrightnessEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraBrightnessEditor() +{ + if (!Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton, Z_Construct_UClass_ULyraBrightnessEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraBrightnessEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraBrightnessEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraBrightnessEditor); +ULyraBrightnessEditor::~ULyraBrightnessEditor() {} +// End Class ULyraBrightnessEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraBrightnessEditor, ULyraBrightnessEditor::StaticClass, TEXT("ULyraBrightnessEditor"), &Z_Registration_Info_UClass_ULyraBrightnessEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraBrightnessEditor), 1160176725U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_4250889822(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h new file mode 100644 index 00000000..f10d1fa5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraBrightnessEditor.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Screens/LyraBrightnessEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraBrightnessEditor_generated_h +#error "LyraBrightnessEditor.generated.h already included, missing '#pragma once' in LyraBrightnessEditor.h" +#endif +#define LYRAGAME_LyraBrightnessEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleDoneClicked); \ + DECLARE_FUNCTION(execHandleBackClicked); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraBrightnessEditor(); \ + friend struct Z_Construct_UClass_ULyraBrightnessEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraBrightnessEditor, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraBrightnessEditor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraBrightnessEditor(ULyraBrightnessEditor&&); \ + ULyraBrightnessEditor(const ULyraBrightnessEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraBrightnessEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraBrightnessEditor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraBrightnessEditor) \ + NO_API virtual ~ULyraBrightnessEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraBrightnessEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp new file mode 100644 index 00000000..4a691235 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.gen.cpp @@ -0,0 +1,247 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraButtonBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraButtonBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraButtonBase Function SetButtonText +struct Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics +{ + struct LyraButtonBase_eventSetButtonText_Parms + { + FText InText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_InText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::NewProp_InText = { "InText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraButtonBase_eventSetButtonText_Parms, InText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InText_MetaData), NewProp_InText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::NewProp_InText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "SetButtonText", nullptr, nullptr, Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::LyraButtonBase_eventSetButtonText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::LyraButtonBase_eventSetButtonText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraButtonBase_SetButtonText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_SetButtonText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraButtonBase::execSetButtonText) +{ + P_GET_PROPERTY_REF(FTextProperty,Z_Param_Out_InText); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetButtonText(Z_Param_Out_InText); + P_NATIVE_END; +} +// End Class ULyraButtonBase Function SetButtonText + +// Begin Class ULyraButtonBase Function UpdateButtonStyle +static const FName NAME_ULyraButtonBase_UpdateButtonStyle = FName(TEXT("UpdateButtonStyle")); +void ULyraButtonBase::UpdateButtonStyle() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraButtonBase_UpdateButtonStyle); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "UpdateButtonStyle", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraButtonBase Function UpdateButtonStyle + +// Begin Class ULyraButtonBase Function UpdateButtonText +struct LyraButtonBase_eventUpdateButtonText_Parms +{ + FText InText; +}; +static const FName NAME_ULyraButtonBase_UpdateButtonText = FName(TEXT("UpdateButtonText")); +void ULyraButtonBase::UpdateButtonText(FText const& InText) +{ + LyraButtonBase_eventUpdateButtonText_Parms Parms; + Parms.InText=InText; + UFunction* Func = FindFunctionChecked(NAME_ULyraButtonBase_UpdateButtonText); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_InText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::NewProp_InText = { "InText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraButtonBase_eventUpdateButtonText_Parms, InText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InText_MetaData), NewProp_InText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::NewProp_InText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraButtonBase, nullptr, "UpdateButtonText", nullptr, nullptr, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::PropPointers), sizeof(LyraButtonBase_eventUpdateButtonText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraButtonBase_eventUpdateButtonText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraButtonBase Function UpdateButtonText + +// Begin Class ULyraButtonBase +void ULyraButtonBase::StaticRegisterNativesULyraButtonBase() +{ + UClass* Class = ULyraButtonBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetButtonText", &ULyraButtonBase::execSetButtonText }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraButtonBase); +UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister() +{ + return ULyraButtonBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraButtonBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/Foundation/LyraButtonBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverride_ButtonText_MetaData[] = { + { "Category", "Button" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ButtonText_MetaData[] = { + { "Category", "Button" }, + { "editcondition", "bOverride_ButtonText" }, + { "ModuleRelativePath", "UI/Foundation/LyraButtonBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bOverride_ButtonText_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverride_ButtonText; + static const UECodeGen_Private::FTextPropertyParams NewProp_ButtonText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraButtonBase_SetButtonText, "SetButtonText" }, // 2924947996 + { &Z_Construct_UFunction_ULyraButtonBase_UpdateButtonStyle, "UpdateButtonStyle" }, // 511124998 + { &Z_Construct_UFunction_ULyraButtonBase_UpdateButtonText, "UpdateButtonText" }, // 2455802817 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText_SetBit(void* Obj) +{ + ((ULyraButtonBase*)Obj)->bOverride_ButtonText = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText = { "bOverride_ButtonText", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(ULyraButtonBase), &Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverride_ButtonText_MetaData), NewProp_bOverride_ButtonText_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_ButtonText = { "ButtonText", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraButtonBase, ButtonText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ButtonText_MetaData), NewProp_ButtonText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_bOverride_ButtonText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraButtonBase_Statics::NewProp_ButtonText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraButtonBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonButtonBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraButtonBase_Statics::ClassParams = { + &ULyraButtonBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraButtonBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraButtonBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraButtonBase() +{ + if (!Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton, Z_Construct_UClass_ULyraButtonBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraButtonBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraButtonBase::StaticClass(); +} +ULyraButtonBase::ULyraButtonBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraButtonBase); +ULyraButtonBase::~ULyraButtonBase() {} +// End Class ULyraButtonBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraButtonBase, ULyraButtonBase::StaticClass, TEXT("ULyraButtonBase"), &Z_Registration_Info_UClass_ULyraButtonBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraButtonBase), 2872452804U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_582371877(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.generated.h new file mode 100644 index 00000000..5b6ce4a5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraButtonBase.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraButtonBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraButtonBase_generated_h +#error "LyraButtonBase.generated.h already included, missing '#pragma once' in LyraButtonBase.h" +#endif +#define LYRAGAME_LyraButtonBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetButtonText); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraButtonBase(); \ + friend struct Z_Construct_UClass_ULyraButtonBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraButtonBase, UCommonButtonBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraButtonBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraButtonBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraButtonBase(ULyraButtonBase&&); \ + ULyraButtonBase(const ULyraButtonBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraButtonBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraButtonBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraButtonBase) \ + NO_API virtual ~ULyraButtonBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraButtonBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp new file mode 100644 index 00000000..4beb8c78 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraAssistInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraAssistInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Interface ULyraCameraAssistInterface +void ULyraCameraAssistInterface::StaticRegisterNativesULyraCameraAssistInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraAssistInterface); +UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister() +{ + return ULyraCameraAssistInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraAssistInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Camera/LyraCameraAssistInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCameraAssistInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraAssistInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraAssistInterface_Statics::ClassParams = { + &ULyraCameraAssistInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraAssistInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraAssistInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraAssistInterface() +{ + if (!Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton, Z_Construct_UClass_ULyraCameraAssistInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraAssistInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraAssistInterface::StaticClass(); +} +ULyraCameraAssistInterface::ULyraCameraAssistInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraAssistInterface); +ULyraCameraAssistInterface::~ULyraCameraAssistInterface() {} +// End Interface ULyraCameraAssistInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraAssistInterface, ULyraCameraAssistInterface::StaticClass, TEXT("ULyraCameraAssistInterface"), &Z_Registration_Info_UClass_ULyraCameraAssistInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraAssistInterface), 1786343506U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_2596330468(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h new file mode 100644 index 00000000..8c83b059 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraAssistInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraAssistInterface_generated_h +#error "LyraCameraAssistInterface.generated.h already included, missing '#pragma once' in LyraCameraAssistInterface.h" +#endif +#define LYRAGAME_LyraCameraAssistInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraCameraAssistInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraAssistInterface(ULyraCameraAssistInterface&&); \ + ULyraCameraAssistInterface(const ULyraCameraAssistInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraAssistInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraAssistInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCameraAssistInterface) \ + NO_API virtual ~ULyraCameraAssistInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraCameraAssistInterface(); \ + friend struct Z_Construct_UClass_ULyraCameraAssistInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraAssistInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraAssistInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraCameraAssistInterface() {} \ +public: \ + typedef ULyraCameraAssistInterface UClassType; \ + typedef ILyraCameraAssistInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraAssistInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp new file mode 100644 index 00000000..9662982f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.gen.cpp @@ -0,0 +1,184 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCameraComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCameraComponent Function FindCameraComponent +struct Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics +{ + struct LyraCameraComponent_eventFindCameraComponent_Parms + { + const AActor* Actor; + ULyraCameraComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Camera" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the camera component if one exists on the specified actor.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the camera component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCameraComponent_eventFindCameraComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCameraComponent_eventFindCameraComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraCameraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCameraComponent, nullptr, "FindCameraComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::LyraCameraComponent_eventFindCameraComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::LyraCameraComponent_eventFindCameraComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCameraComponent::execFindCameraComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraCameraComponent**)Z_Param__Result=ULyraCameraComponent::FindCameraComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraCameraComponent Function FindCameraComponent + +// Begin Class ULyraCameraComponent +void ULyraCameraComponent::StaticRegisterNativesULyraCameraComponent() +{ + UClass* Class = ULyraCameraComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindCameraComponent", &ULyraCameraComponent::execFindCameraComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraComponent); +UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister() +{ + return ULyraCameraComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraComponent\n *\n *\x09The base camera component class used by this project.\n */" }, +#endif + { "HideCategories", "Mobility Rendering LOD Trigger PhysicsVolume" }, + { "IncludePath", "Camera/LyraCameraComponent.h" }, + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraComponent\n\n The base camera component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeStack_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Stack used to blend the camera modes.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stack used to blend the camera modes." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeStack; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCameraComponent_FindCameraComponent, "FindCameraComponent" }, // 3452154293 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraComponent_Statics::NewProp_CameraModeStack = { "CameraModeStack", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraComponent, CameraModeStack), Z_Construct_UClass_ULyraCameraModeStack_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeStack_MetaData), NewProp_CameraModeStack_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraComponent_Statics::NewProp_CameraModeStack, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCameraComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraComponent_Statics::ClassParams = { + &ULyraCameraComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraComponent() +{ + if (!Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton, Z_Construct_UClass_ULyraCameraComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraComponent); +ULyraCameraComponent::~ULyraCameraComponent() {} +// End Class ULyraCameraComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraComponent, ULyraCameraComponent::StaticClass, TEXT("ULyraCameraComponent"), &Z_Registration_Info_UClass_ULyraCameraComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraComponent), 187712535U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_3508538831(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.generated.h new file mode 100644 index 00000000..15ca4db2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraComponent.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraCameraComponent; +#ifdef LYRAGAME_LyraCameraComponent_generated_h +#error "LyraCameraComponent.generated.h already included, missing '#pragma once' in LyraCameraComponent.h" +#endif +#define LYRAGAME_LyraCameraComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindCameraComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraComponent(); \ + friend struct Z_Construct_UClass_ULyraCameraComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraComponent, UCameraComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraComponent(ULyraCameraComponent&&); \ + ULyraCameraComponent(const ULyraCameraComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCameraComponent) \ + NO_API virtual ~ULyraCameraComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_27_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp new file mode 100644 index 00000000..4e0b6d02 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.gen.cpp @@ -0,0 +1,393 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraMode.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraCameraModeBlendFunction +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction; +static UEnum* ELyraCameraModeBlendFunction_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraCameraModeBlendFunction")); + } + return Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraCameraModeBlendFunction_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraCameraModeBlendFunction\n *\n *\x09""Blend function used for transitioning between camera modes.\n */" }, +#endif + { "COUNT.Hidden", "" }, + { "COUNT.Name", "ELyraCameraModeBlendFunction::COUNT" }, + { "EaseIn.Comment", "// Immediately accelerates, but smoothly decelerates into the target. Ease amount controlled by the exponent.\n" }, + { "EaseIn.Name", "ELyraCameraModeBlendFunction::EaseIn" }, + { "EaseIn.ToolTip", "Immediately accelerates, but smoothly decelerates into the target. Ease amount controlled by the exponent." }, + { "EaseInOut.Comment", "// Smoothly accelerates and decelerates. Ease amount controlled by the exponent.\n" }, + { "EaseInOut.Name", "ELyraCameraModeBlendFunction::EaseInOut" }, + { "EaseInOut.ToolTip", "Smoothly accelerates and decelerates. Ease amount controlled by the exponent." }, + { "EaseOut.Comment", "// Smoothly accelerates, but does not decelerate into the target. Ease amount controlled by the exponent.\n" }, + { "EaseOut.Name", "ELyraCameraModeBlendFunction::EaseOut" }, + { "EaseOut.ToolTip", "Smoothly accelerates, but does not decelerate into the target. Ease amount controlled by the exponent." }, + { "Linear.Comment", "// Does a simple linear interpolation.\n" }, + { "Linear.Name", "ELyraCameraModeBlendFunction::Linear" }, + { "Linear.ToolTip", "Does a simple linear interpolation." }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraCameraModeBlendFunction\n\n Blend function used for transitioning between camera modes." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraCameraModeBlendFunction::Linear", (int64)ELyraCameraModeBlendFunction::Linear }, + { "ELyraCameraModeBlendFunction::EaseIn", (int64)ELyraCameraModeBlendFunction::EaseIn }, + { "ELyraCameraModeBlendFunction::EaseOut", (int64)ELyraCameraModeBlendFunction::EaseOut }, + { "ELyraCameraModeBlendFunction::EaseInOut", (int64)ELyraCameraModeBlendFunction::EaseInOut }, + { "ELyraCameraModeBlendFunction::COUNT", (int64)ELyraCameraModeBlendFunction::COUNT }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraCameraModeBlendFunction", + "ELyraCameraModeBlendFunction", + Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction() +{ + if (!Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction.InnerSingleton; +} +// End Enum ELyraCameraModeBlendFunction + +// Begin Class ULyraCameraMode +void ULyraCameraMode::StaticRegisterNativesULyraCameraMode() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode); +UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister() +{ + return ULyraCameraMode::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode\n *\n *\x09""Base class for all camera modes.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode\n\n Base class for all camera modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraTypeTag_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A tag that can be queried by gameplay code that cares when a kind of camera mode is active\n// without having to ask about a specific mode (e.g., when aiming downsights to get more accuracy)\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A tag that can be queried by gameplay code that cares when a kind of camera mode is active\nwithout having to ask about a specific mode (e.g., when aiming downsights to get more accuracy)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FieldOfView_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "170.0" }, + { "ClampMin", "5.0" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The horizontal field of view (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The horizontal field of view (in degrees)." }, +#endif + { "UIMax", "170" }, + { "UIMin", "5.0" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewPitchMin_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "89.9" }, + { "ClampMin", "-89.9" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Minimum view pitch (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimum view pitch (in degrees)." }, +#endif + { "UIMax", "89.9" }, + { "UIMin", "-89.9" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewPitchMax_MetaData[] = { + { "Category", "View" }, + { "ClampMax", "89.9" }, + { "ClampMin", "-89.9" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Maximum view pitch (in degrees).\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maximum view pitch (in degrees)." }, +#endif + { "UIMax", "89.9" }, + { "UIMin", "-89.9" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendTime_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How long it takes to blend in this mode.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How long it takes to blend in this mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendFunction_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Function used for blending.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Function used for blending." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BlendExponent_MetaData[] = { + { "Category", "Blending" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponent used by blend functions to control the shape of the curve.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponent used by blend functions to control the shape of the curve." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bResetInterpolation_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, skips all interpolation and puts camera in ideal location. Automatically set to false next frame. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, skips all interpolation and puts camera in ideal location. Automatically set to false next frame." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CameraTypeTag; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FieldOfView; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ViewPitchMin; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ViewPitchMax; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BlendTime; + static const UECodeGen_Private::FBytePropertyParams NewProp_BlendFunction_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_BlendFunction; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BlendExponent; + static void NewProp_bResetInterpolation_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bResetInterpolation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_CameraTypeTag = { "CameraTypeTag", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, CameraTypeTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraTypeTag_MetaData), NewProp_CameraTypeTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_FieldOfView = { "FieldOfView", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, FieldOfView), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FieldOfView_MetaData), NewProp_FieldOfView_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMin = { "ViewPitchMin", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, ViewPitchMin), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewPitchMin_MetaData), NewProp_ViewPitchMin_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMax = { "ViewPitchMax", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, ViewPitchMax), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewPitchMax_MetaData), NewProp_ViewPitchMax_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendTime = { "BlendTime", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendTime_MetaData), NewProp_BlendTime_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction = { "BlendFunction", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendFunction), Z_Construct_UEnum_LyraGame_ELyraCameraModeBlendFunction, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendFunction_MetaData), NewProp_BlendFunction_MetaData) }; // 1611382477 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendExponent = { "BlendExponent", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode, BlendExponent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BlendExponent_MetaData), NewProp_BlendExponent_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation_SetBit(void* Obj) +{ + ((ULyraCameraMode*)Obj)->bResetInterpolation = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation = { "bResetInterpolation", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(ULyraCameraMode), &Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bResetInterpolation_MetaData), NewProp_bResetInterpolation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_CameraTypeTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_FieldOfView, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_ViewPitchMax, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendFunction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_BlendExponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_Statics::NewProp_bResetInterpolation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_Statics::ClassParams = { + &ULyraCameraMode::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode); +ULyraCameraMode::~ULyraCameraMode() {} +// End Class ULyraCameraMode + +// Begin Class ULyraCameraModeStack +void ULyraCameraModeStack::StaticRegisterNativesULyraCameraModeStack() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraModeStack); +UClass* Z_Construct_UClass_ULyraCameraModeStack_NoRegister() +{ + return ULyraCameraModeStack::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraModeStack_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraModeStack\n *\n *\x09Stack used for blending camera modes.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode.h" }, + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraModeStack\n\n Stack used for blending camera modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeInstances_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraModeStack_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeInstances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CameraModeInstances; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraModeStack_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CameraModeStack; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances_Inner = { "CameraModeInstances", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances = { "CameraModeInstances", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraModeStack, CameraModeInstances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeInstances_MetaData), NewProp_CameraModeInstances_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack_Inner = { "CameraModeStack", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack = { "CameraModeStack", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraModeStack, CameraModeStack), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraModeStack_MetaData), NewProp_CameraModeStack_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeInstances, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraModeStack_Statics::NewProp_CameraModeStack, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraModeStack_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraModeStack_Statics::ClassParams = { + &ULyraCameraModeStack::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraModeStack_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraModeStack_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraModeStack() +{ + if (!Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton, Z_Construct_UClass_ULyraCameraModeStack_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraModeStack.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraModeStack::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraModeStack); +ULyraCameraModeStack::~ULyraCameraModeStack() {} +// End Class ULyraCameraModeStack + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraCameraModeBlendFunction_StaticEnum, TEXT("ELyraCameraModeBlendFunction"), &Z_Registration_Info_UEnum_ELyraCameraModeBlendFunction, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1611382477U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode, ULyraCameraMode::StaticClass, TEXT("ULyraCameraMode"), &Z_Registration_Info_UClass_ULyraCameraMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode), 3822634538U) }, + { Z_Construct_UClass_ULyraCameraModeStack, ULyraCameraModeStack::StaticClass, TEXT("ULyraCameraModeStack"), &Z_Registration_Info_UClass_ULyraCameraModeStack, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraModeStack), 2902396006U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_3882960887(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.generated.h new file mode 100644 index 00000000..bfdec1c9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode.generated.h @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraMode_generated_h +#error "LyraCameraMode.generated.h already included, missing '#pragma once' in LyraCameraMode.h" +#endif +#define LYRAGAME_LyraCameraMode_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode(ULyraCameraMode&&); \ + ULyraCameraMode(const ULyraCameraMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode) \ + NO_API virtual ~ULyraCameraMode(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_65_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_68_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraModeStack(); \ + friend struct Z_Construct_UClass_ULyraCameraModeStack_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraModeStack, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraModeStack) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraModeStack(ULyraCameraModeStack&&); \ + ULyraCameraModeStack(const ULyraCameraModeStack&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraModeStack); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraModeStack); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraModeStack) \ + NO_API virtual ~ULyraCameraModeStack(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_160_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h_163_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_h + + +#define FOREACH_ENUM_ELYRACAMERAMODEBLENDFUNCTION(op) \ + op(ELyraCameraModeBlendFunction::Linear) \ + op(ELyraCameraModeBlendFunction::EaseIn) \ + op(ELyraCameraModeBlendFunction::EaseOut) \ + op(ELyraCameraModeBlendFunction::EaseInOut) \ + op(ELyraCameraModeBlendFunction::COUNT) + +enum class ELyraCameraModeBlendFunction : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp new file mode 100644 index 00000000..405b7aa4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.gen.cpp @@ -0,0 +1,279 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraCameraMode_ThirdPerson.h" +#include "LyraGame/Camera/LyraPenetrationAvoidanceFeeler.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode_ThirdPerson() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCurveVector_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCameraMode_ThirdPerson +void ULyraCameraMode_ThirdPerson::StaticRegisterNativesULyraCameraMode_ThirdPerson() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode_ThirdPerson); +UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson_NoRegister() +{ + return ULyraCameraMode_ThirdPerson::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode_ThirdPerson\n *\n *\x09""A basic third person camera mode.\n */" }, +#endif + { "IncludePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode_ThirdPerson\n\n A basic third person camera mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetCurve_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Curve that defines local-space offsets from the target using the view pitch to evaluate the curve.\n" }, +#endif + { "EditCondition", "!bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Curve that defines local-space offsets from the target using the view pitch to evaluate the curve." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseRuntimeFloatCurves_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// UE-103986: Live editing of RuntimeFloatCurves during PIE does not work (unlike curve assets).\n// Once that is resolved this will become the default and TargetOffsetCurve will be removed.\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UE-103986: Live editing of RuntimeFloatCurves during PIE does not work (unlike curve assets).\nOnce that is resolved this will become the default and TargetOffsetCurve will be removed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetX_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetY_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetOffsetZ_MetaData[] = { + { "Category", "Third Person" }, + { "EditCondition", "bUseRuntimeFloatCurves" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CrouchOffsetBlendMultiplier_MetaData[] = { + { "Category", "Third Person" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Alters the speed that a crouch offset is blended in or out\n" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Alters the speed that a crouch offset is blended in or out" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationBlendInTime_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationBlendOutTime_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreventPenetration_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, does collision checks to keep the camera out of the world. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, does collision checks to keep the camera out of the world." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDoPredictiveAvoidance_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, try to detect nearby walls and move the camera in anticipation. Helps prevent popping. */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, try to detect nearby walls and move the camera in anticipation. Helps prevent popping." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionPushOutDistance_MetaData[] = { + { "Category", "Collision" }, + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReportPenetrationPercent_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** When the camera's distance is pushed into this percentage of its full distance due to penetration */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When the camera's distance is pushed into this percentage of its full distance due to penetration" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PenetrationAvoidanceFeelers_MetaData[] = { + { "Category", "Collision" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * These are the feeler rays that are used to find where to place the camera.\n\x09 * Index: 0 : This is the normal feeler we use to prevent collisions.\n\x09 * Index: 1+ : These feelers are used if you bDoPredictiveAvoidance=true, to scan for potential impacts if the player\n\x09 * were to rotate towards that direction and primitively collide the camera so that it pulls in before\n\x09 * impacting the occluder.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "These are the feeler rays that are used to find where to place the camera.\nIndex: 0 : This is the normal feeler we use to prevent collisions.\nIndex: 1+ : These feelers are used if you bDoPredictiveAvoidance=true, to scan for potential impacts if the player\n were to rotate towards that direction and primitively collide the camera so that it pulls in before\n impacting the occluder." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AimLineToDesiredPosBlockedPct_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DebugActorsHitDuringCameraPenetration_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraCameraMode_ThirdPerson.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetOffsetCurve; + static void NewProp_bUseRuntimeFloatCurves_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseRuntimeFloatCurves; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetX; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetY; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetOffsetZ; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CrouchOffsetBlendMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PenetrationBlendInTime; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PenetrationBlendOutTime; + static void NewProp_bPreventPenetration_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreventPenetration; + static void NewProp_bDoPredictiveAvoidance_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDoPredictiveAvoidance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CollisionPushOutDistance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReportPenetrationPercent; + static const UECodeGen_Private::FStructPropertyParams NewProp_PenetrationAvoidanceFeelers_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PenetrationAvoidanceFeelers; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AimLineToDesiredPosBlockedPct; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DebugActorsHitDuringCameraPenetration_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DebugActorsHitDuringCameraPenetration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetCurve = { "TargetOffsetCurve", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetCurve), Z_Construct_UClass_UCurveVector_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetCurve_MetaData), NewProp_TargetOffsetCurve_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bUseRuntimeFloatCurves = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves = { "bUseRuntimeFloatCurves", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseRuntimeFloatCurves_MetaData), NewProp_bUseRuntimeFloatCurves_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetX = { "TargetOffsetX", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetX), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetX_MetaData), NewProp_TargetOffsetX_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetY = { "TargetOffsetY", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetY), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetY_MetaData), NewProp_TargetOffsetY_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetZ = { "TargetOffsetZ", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, TargetOffsetZ), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetOffsetZ_MetaData), NewProp_TargetOffsetZ_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CrouchOffsetBlendMultiplier = { "CrouchOffsetBlendMultiplier", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, CrouchOffsetBlendMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CrouchOffsetBlendMultiplier_MetaData), NewProp_CrouchOffsetBlendMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendInTime = { "PenetrationBlendInTime", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationBlendInTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationBlendInTime_MetaData), NewProp_PenetrationBlendInTime_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendOutTime = { "PenetrationBlendOutTime", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationBlendOutTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationBlendOutTime_MetaData), NewProp_PenetrationBlendOutTime_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bPreventPenetration = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration = { "bPreventPenetration", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreventPenetration_MetaData), NewProp_bPreventPenetration_MetaData) }; +void Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance_SetBit(void* Obj) +{ + ((ULyraCameraMode_ThirdPerson*)Obj)->bDoPredictiveAvoidance = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance = { "bDoPredictiveAvoidance", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCameraMode_ThirdPerson), &Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDoPredictiveAvoidance_MetaData), NewProp_bDoPredictiveAvoidance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CollisionPushOutDistance = { "CollisionPushOutDistance", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, CollisionPushOutDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionPushOutDistance_MetaData), NewProp_CollisionPushOutDistance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_ReportPenetrationPercent = { "ReportPenetrationPercent", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, ReportPenetrationPercent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReportPenetrationPercent_MetaData), NewProp_ReportPenetrationPercent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers_Inner = { "PenetrationAvoidanceFeelers", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler, METADATA_PARAMS(0, nullptr) }; // 2900195724 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers = { "PenetrationAvoidanceFeelers", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, PenetrationAvoidanceFeelers), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PenetrationAvoidanceFeelers_MetaData), NewProp_PenetrationAvoidanceFeelers_MetaData) }; // 2900195724 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_AimLineToDesiredPosBlockedPct = { "AimLineToDesiredPosBlockedPct", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, AimLineToDesiredPosBlockedPct), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AimLineToDesiredPosBlockedPct_MetaData), NewProp_AimLineToDesiredPosBlockedPct_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration_Inner = { "DebugActorsHitDuringCameraPenetration", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration = { "DebugActorsHitDuringCameraPenetration", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_ThirdPerson, DebugActorsHitDuringCameraPenetration), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DebugActorsHitDuringCameraPenetration_MetaData), NewProp_DebugActorsHitDuringCameraPenetration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bUseRuntimeFloatCurves, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_TargetOffsetZ, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CrouchOffsetBlendMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendInTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationBlendOutTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bPreventPenetration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_bDoPredictiveAvoidance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_CollisionPushOutDistance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_ReportPenetrationPercent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_PenetrationAvoidanceFeelers, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_AimLineToDesiredPosBlockedPct, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::NewProp_DebugActorsHitDuringCameraPenetration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCameraMode, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::ClassParams = { + &ULyraCameraMode_ThirdPerson::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::PropPointers), + 0, + 0x000000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode_ThirdPerson() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCameraMode_ThirdPerson::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode_ThirdPerson); +ULyraCameraMode_ThirdPerson::~ULyraCameraMode_ThirdPerson() {} +// End Class ULyraCameraMode_ThirdPerson + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode_ThirdPerson, ULyraCameraMode_ThirdPerson::StaticClass, TEXT("ULyraCameraMode_ThirdPerson"), &Z_Registration_Info_UClass_ULyraCameraMode_ThirdPerson, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode_ThirdPerson), 1732915727U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_2488542726(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h new file mode 100644 index 00000000..89029c7f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraMode_ThirdPerson.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraCameraMode_ThirdPerson.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCameraMode_ThirdPerson_generated_h +#error "LyraCameraMode_ThirdPerson.generated.h already included, missing '#pragma once' in LyraCameraMode_ThirdPerson.h" +#endif +#define LYRAGAME_LyraCameraMode_ThirdPerson_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode_ThirdPerson(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_ThirdPerson_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode_ThirdPerson, ULyraCameraMode, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode_ThirdPerson) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode_ThirdPerson(ULyraCameraMode_ThirdPerson&&); \ + ULyraCameraMode_ThirdPerson(const ULyraCameraMode_ThirdPerson&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode_ThirdPerson); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode_ThirdPerson); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode_ThirdPerson) \ + NO_API virtual ~ULyraCameraMode_ThirdPerson(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraCameraMode_ThirdPerson_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.gen.cpp new file mode 100644 index 00000000..c56d599a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.gen.cpp @@ -0,0 +1,845 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacter.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +#include "Runtime/Engine/Classes/Engine/ReplicatedState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacter() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRepMovement(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayCueInterface_NoRegister(); +GAMEPLAYTAGS_API UClass* Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraReplicatedAcceleration(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FSharedRepMovement(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraReplicatedAcceleration +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration; +class UScriptStruct* FLyraReplicatedAcceleration::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraReplicatedAcceleration")); + } + return Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraReplicatedAcceleration::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraReplicatedAcceleration: Compressed representation of acceleration\n */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraReplicatedAcceleration: Compressed representation of acceleration" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelXYRadians_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelXYMagnitude_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Direction of XY accel component, quantized to represent [0, 2*pi]\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Direction of XY accel component, quantized to represent [0, 2*pi]" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccelZ_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//Accel rate of XY component, quantized to represent [0, MaxAcceleration]\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Accel rate of XY component, quantized to represent [0, MaxAcceleration]" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_AccelXYRadians; + static const UECodeGen_Private::FBytePropertyParams NewProp_AccelXYMagnitude; + static const UECodeGen_Private::FInt8PropertyParams NewProp_AccelZ; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYRadians = { "AccelXYRadians", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelXYRadians), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelXYRadians_MetaData), NewProp_AccelXYRadians_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYMagnitude = { "AccelXYMagnitude", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelXYMagnitude), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelXYMagnitude_MetaData), NewProp_AccelXYMagnitude_MetaData) }; +const UECodeGen_Private::FInt8PropertyParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelZ = { "AccelZ", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int8, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraReplicatedAcceleration, AccelZ), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccelZ_MetaData), NewProp_AccelZ_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYRadians, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelXYMagnitude, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewProp_AccelZ, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraReplicatedAcceleration", + Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::PropPointers), + sizeof(FLyraReplicatedAcceleration), + alignof(FLyraReplicatedAcceleration), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraReplicatedAcceleration() +{ + if (!Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton, Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration.InnerSingleton; +} +// End ScriptStruct FLyraReplicatedAcceleration + +// Begin ScriptStruct FSharedRepMovement +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_SharedRepMovement; +class UScriptStruct* FSharedRepMovement::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSharedRepMovement, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("SharedRepMovement")); + } + return Z_Registration_Info_UScriptStruct_SharedRepMovement.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FSharedRepMovement::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FSharedRepMovement_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type we use to send FastShared movement updates. */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type we use to send FastShared movement updates." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepMovement_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepTimeStamp_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RepMovementMode_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bProxyIsJumpForceApplied_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsCrouched_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_RepMovement; + static const UECodeGen_Private::FFloatPropertyParams NewProp_RepTimeStamp; + static const UECodeGen_Private::FBytePropertyParams NewProp_RepMovementMode; + static void NewProp_bProxyIsJumpForceApplied_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bProxyIsJumpForceApplied; + static void NewProp_bIsCrouched_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsCrouched; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovement = { "RepMovement", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepMovement), Z_Construct_UScriptStruct_FRepMovement, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepMovement_MetaData), NewProp_RepMovement_MetaData) }; // 2904220107 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepTimeStamp = { "RepTimeStamp", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepTimeStamp), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepTimeStamp_MetaData), NewProp_RepTimeStamp_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovementMode = { "RepMovementMode", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSharedRepMovement, RepMovementMode), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RepMovementMode_MetaData), NewProp_RepMovementMode_MetaData) }; +void Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied_SetBit(void* Obj) +{ + ((FSharedRepMovement*)Obj)->bProxyIsJumpForceApplied = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied = { "bProxyIsJumpForceApplied", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSharedRepMovement), &Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bProxyIsJumpForceApplied_MetaData), NewProp_bProxyIsJumpForceApplied_MetaData) }; +void Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched_SetBit(void* Obj) +{ + ((FSharedRepMovement*)Obj)->bIsCrouched = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched = { "bIsCrouched", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FSharedRepMovement), &Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsCrouched_MetaData), NewProp_bIsCrouched_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovement, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepTimeStamp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_RepMovementMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bProxyIsJumpForceApplied, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewProp_bIsCrouched, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSharedRepMovement_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "SharedRepMovement", + Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::PropPointers), + sizeof(FSharedRepMovement), + alignof(FSharedRepMovement), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSharedRepMovement_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSharedRepMovement_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FSharedRepMovement() +{ + if (!Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton, Z_Construct_UScriptStruct_FSharedRepMovement_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_SharedRepMovement.InnerSingleton; +} +// End ScriptStruct FSharedRepMovement + +// Begin Class ALyraCharacter Function FastSharedReplication +struct LyraCharacter_eventFastSharedReplication_Parms +{ + FSharedRepMovement SharedRepMovement; +}; +static const FName NAME_ALyraCharacter_FastSharedReplication = FName(TEXT("FastSharedReplication")); +void ALyraCharacter::FastSharedReplication(FSharedRepMovement const& SharedRepMovement) +{ + LyraCharacter_eventFastSharedReplication_Parms Parms; + Parms.SharedRepMovement=SharedRepMovement; + UFunction* Func = FindFunctionChecked(NAME_ALyraCharacter_FastSharedReplication); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** RPCs that is called on frames when default property replication is skipped. This replicates a single movement update to everyone. */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "RPCs that is called on frames when default property replication is skipped. This replicates a single movement update to everyone." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SharedRepMovement_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SharedRepMovement; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::NewProp_SharedRepMovement = { "SharedRepMovement", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventFastSharedReplication_Parms, SharedRepMovement), Z_Construct_UScriptStruct_FSharedRepMovement, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SharedRepMovement_MetaData), NewProp_SharedRepMovement_MetaData) }; // 3438049812 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::NewProp_SharedRepMovement, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "FastSharedReplication", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::PropPointers), sizeof(LyraCharacter_eventFastSharedReplication_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00024C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraCharacter_eventFastSharedReplication_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_FastSharedReplication() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_FastSharedReplication_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execFastSharedReplication) +{ + P_GET_STRUCT(FSharedRepMovement,Z_Param_SharedRepMovement); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FastSharedReplication_Implementation(Z_Param_SharedRepMovement); + P_NATIVE_END; +} +// End Class ALyraCharacter Function FastSharedReplication + +// Begin Class ALyraCharacter Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics +{ + struct LyraCharacter_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::LyraCharacter_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::LyraCharacter_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraAbilitySystemComponent + +// Begin Class ALyraCharacter Function GetLyraPlayerController +struct Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics +{ + struct LyraCharacter_eventGetLyraPlayerController_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraPlayerController_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraPlayerController", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::LyraCharacter_eventGetLyraPlayerController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::LyraCharacter_eventGetLyraPlayerController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraPlayerController) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerController(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraPlayerController + +// Begin Class ALyraCharacter Function GetLyraPlayerState +struct Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics +{ + struct LyraCharacter_eventGetLyraPlayerState_Parms + { + ALyraPlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventGetLyraPlayerState_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "GetLyraPlayerState", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::LyraCharacter_eventGetLyraPlayerState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::LyraCharacter_eventGetLyraPlayerState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execGetLyraPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerState**)Z_Param__Result=P_THIS->GetLyraPlayerState(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function GetLyraPlayerState + +// Begin Class ALyraCharacter Function K2_OnDeathFinished +static const FName NAME_ALyraCharacter_K2_OnDeathFinished = FName(TEXT("K2_OnDeathFinished")); +void ALyraCharacter::K2_OnDeathFinished() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraCharacter_K2_OnDeathFinished); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the death sequence for the character has completed\n" }, +#endif + { "DisplayName", "OnDeathFinished" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the death sequence for the character has completed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "K2_OnDeathFinished", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraCharacter Function K2_OnDeathFinished + +// Begin Class ALyraCharacter Function OnControllerChangedTeam +struct Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics +{ + struct LyraCharacter_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::LyraCharacter_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::LyraCharacter_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnControllerChangedTeam + +// Begin Class ALyraCharacter Function OnDeathFinished +struct Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics +{ + struct LyraCharacter_eventOnDeathFinished_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Ends the death sequence for the character (detaches controller, destroys pawn, etc...)\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ends the death sequence for the character (detaches controller, destroys pawn, etc...)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnDeathFinished_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnDeathFinished", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::LyraCharacter_eventOnDeathFinished_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::LyraCharacter_eventOnDeathFinished_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnDeathFinished() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnDeathFinished_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnDeathFinished) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathFinished(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnDeathFinished + +// Begin Class ALyraCharacter Function OnDeathStarted +struct Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics +{ + struct LyraCharacter_eventOnDeathStarted_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Begins the death sequence for the character (disables collision, disables movement, etc...)\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Begins the death sequence for the character (disables collision, disables movement, etc...)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnDeathStarted_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnDeathStarted", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::LyraCharacter_eventOnDeathStarted_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::LyraCharacter_eventOnDeathStarted_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnDeathStarted() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnDeathStarted_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnDeathStarted) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathStarted(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnDeathStarted + +// Begin Class ALyraCharacter Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics +{ + struct LyraCharacter_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacter_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::LyraCharacter_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::LyraCharacter_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnRep_MyTeamID + +// Begin Class ALyraCharacter Function OnRep_ReplicatedAcceleration +struct Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraCharacter, nullptr, "OnRep_ReplicatedAcceleration", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraCharacter::execOnRep_ReplicatedAcceleration) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_ReplicatedAcceleration(); + P_NATIVE_END; +} +// End Class ALyraCharacter Function OnRep_ReplicatedAcceleration + +// Begin Class ALyraCharacter +void ALyraCharacter::StaticRegisterNativesALyraCharacter() +{ + UClass* Class = ALyraCharacter::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FastSharedReplication", &ALyraCharacter::execFastSharedReplication }, + { "GetLyraAbilitySystemComponent", &ALyraCharacter::execGetLyraAbilitySystemComponent }, + { "GetLyraPlayerController", &ALyraCharacter::execGetLyraPlayerController }, + { "GetLyraPlayerState", &ALyraCharacter::execGetLyraPlayerState }, + { "OnControllerChangedTeam", &ALyraCharacter::execOnControllerChangedTeam }, + { "OnDeathFinished", &ALyraCharacter::execOnDeathFinished }, + { "OnDeathStarted", &ALyraCharacter::execOnDeathStarted }, + { "OnRep_MyTeamID", &ALyraCharacter::execOnRep_MyTeamID }, + { "OnRep_ReplicatedAcceleration", &ALyraCharacter::execOnRep_ReplicatedAcceleration }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraCharacter); +UClass* Z_Construct_UClass_ALyraCharacter_NoRegister() +{ + return ALyraCharacter::StaticClass(); +} +struct Z_Construct_UClass_ALyraCharacter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraCharacter\n *\n *\x09The base character pawn class used by this project.\n *\x09Responsible for sending events to pawn components.\n *\x09New behavior should be added via pawn components when possible.\n */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraCharacter.h" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base character pawn class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraCharacter\n\n The base character pawn class used by this project.\n Responsible for sending events to pawn components.\n New behavior should be added via pawn components when possible." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnExtComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CameraComponent_MetaData[] = { + { "AllowPrivateAccess", "true" }, + { "Category", "Lyra|Character" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReplicatedAcceleration_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacter.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnExtComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CameraComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReplicatedAcceleration; + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraCharacter_FastSharedReplication, "FastSharedReplication" }, // 3783367670 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1659054540 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerController, "GetLyraPlayerController" }, // 2609980737 + { &Z_Construct_UFunction_ALyraCharacter_GetLyraPlayerState, "GetLyraPlayerState" }, // 1893654844 + { &Z_Construct_UFunction_ALyraCharacter_K2_OnDeathFinished, "K2_OnDeathFinished" }, // 4190250602 + { &Z_Construct_UFunction_ALyraCharacter_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 153103298 + { &Z_Construct_UFunction_ALyraCharacter_OnDeathFinished, "OnDeathFinished" }, // 4213671362 + { &Z_Construct_UFunction_ALyraCharacter_OnDeathStarted, "OnDeathStarted" }, // 3980990600 + { &Z_Construct_UFunction_ALyraCharacter_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 3207955130 + { &Z_Construct_UFunction_ALyraCharacter_OnRep_ReplicatedAcceleration, "OnRep_ReplicatedAcceleration" }, // 2953740735 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_PawnExtComponent = { "PawnExtComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, PawnExtComponent), Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnExtComponent_MetaData), NewProp_PawnExtComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_HealthComponent = { "HealthComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, HealthComponent), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthComponent_MetaData), NewProp_HealthComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_CameraComponent = { "CameraComponent", nullptr, (EPropertyFlags)0x01440000000a001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, CameraComponent), Z_Construct_UClass_ULyraCameraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CameraComponent_MetaData), NewProp_CameraComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_ReplicatedAcceleration = { "ReplicatedAcceleration", "OnRep_ReplicatedAcceleration", (EPropertyFlags)0x0040000100002020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, ReplicatedAcceleration), Z_Construct_UScriptStruct_FLyraReplicatedAcceleration, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReplicatedAcceleration_MetaData), NewProp_ReplicatedAcceleration_MetaData) }; // 3643263984 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraCharacter_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacter, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraCharacter_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_PawnExtComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_HealthComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_CameraComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_ReplicatedAcceleration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacter_Statics::NewProp_OnTeamChangedDelegate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraCharacter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularCharacter, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraCharacter_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IAbilitySystemInterface), false }, // 2272790346 + { Z_Construct_UClass_UGameplayCueInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IGameplayCueInterface), false }, // 881046121 + { Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, IGameplayTagAssetInterface), false }, // 2592985258 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraCharacter, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraCharacter_Statics::ClassParams = { + &ALyraCharacter::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraCharacter_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacter_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraCharacter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraCharacter() +{ + if (!Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton, Z_Construct_UClass_ALyraCharacter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraCharacter.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraCharacter::StaticClass(); +} +void ALyraCharacter::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_ReplicatedAcceleration(TEXT("ReplicatedAcceleration")); + static const FName Name_MyTeamID(TEXT("MyTeamID")); + const bool bIsValid = true + && Name_ReplicatedAcceleration == ClassReps[(int32)ENetFields_Private::ReplicatedAcceleration].Property->GetFName() + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraCharacter")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraCharacter); +ALyraCharacter::~ALyraCharacter() {} +// End Class ALyraCharacter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraReplicatedAcceleration::StaticStruct, Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics::NewStructOps, TEXT("LyraReplicatedAcceleration"), &Z_Registration_Info_UScriptStruct_LyraReplicatedAcceleration, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraReplicatedAcceleration), 3643263984U) }, + { FSharedRepMovement::StaticStruct, Z_Construct_UScriptStruct_FSharedRepMovement_Statics::NewStructOps, TEXT("SharedRepMovement"), &Z_Registration_Info_UScriptStruct_SharedRepMovement, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSharedRepMovement), 3438049812U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraCharacter, ALyraCharacter::StaticClass, TEXT("ALyraCharacter"), &Z_Registration_Info_UClass_ALyraCharacter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraCharacter), 2065265588U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_1147311146(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.generated.h new file mode 100644 index 00000000..5ee812df --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacter.generated.h @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacter.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ALyraPlayerController; +class ALyraPlayerState; +class ULyraAbilitySystemComponent; +class UObject; +struct FGenericTeamId; +struct FSharedRepMovement; +#ifdef LYRAGAME_LyraCharacter_generated_h +#error "LyraCharacter.generated.h already included, missing '#pragma once' in LyraCharacter.h" +#endif +#define LYRAGAME_LyraCharacter_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_37_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraReplicatedAcceleration_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_53_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FSharedRepMovement_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void FastSharedReplication_Implementation(FSharedRepMovement const& SharedRepMovement); \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnRep_ReplicatedAcceleration); \ + DECLARE_FUNCTION(execOnControllerChangedTeam); \ + DECLARE_FUNCTION(execOnDeathFinished); \ + DECLARE_FUNCTION(execOnDeathStarted); \ + DECLARE_FUNCTION(execFastSharedReplication); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerState); \ + DECLARE_FUNCTION(execGetLyraPlayerController); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraCharacter(); \ + friend struct Z_Construct_UClass_ALyraCharacter_Statics; \ +public: \ + DECLARE_CLASS(ALyraCharacter, AModularCharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraCharacter) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + ReplicatedAcceleration=NETFIELD_REP_START, \ + MyTeamID, \ + NETFIELD_REP_END=MyTeamID }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraCharacter(ALyraCharacter&&); \ + ALyraCharacter(const ALyraCharacter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraCharacter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraCharacter); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraCharacter) \ + NO_API virtual ~ALyraCharacter(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_95_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h_98_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacter_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp new file mode 100644 index 00000000..978ee0e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.gen.cpp @@ -0,0 +1,253 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacterMovementComponent.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterMovementComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCharacterMovementComponent(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterGroundInfo(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraCharacterGroundInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo; +class UScriptStruct* FLyraCharacterGroundInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterGroundInfo")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterGroundInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraCharacterGroundInfo\n *\n *\x09Information about the ground under the character. It only gets updated as needed.\n */" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraCharacterGroundInfo\n\n Information about the ground under the character. It only gets updated as needed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundHitResult_MetaData[] = { + { "Category", "LyraCharacterGroundInfo" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GroundDistance_MetaData[] = { + { "Category", "LyraCharacterGroundInfo" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GroundHitResult; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GroundDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundHitResult = { "GroundHitResult", nullptr, (EPropertyFlags)0x0010008000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterGroundInfo, GroundHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundHitResult_MetaData), NewProp_GroundHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundDistance = { "GroundDistance", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterGroundInfo, GroundDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GroundDistance_MetaData), NewProp_GroundDistance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundHitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewProp_GroundDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterGroundInfo", + Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::PropPointers), + sizeof(FLyraCharacterGroundInfo), + alignof(FLyraCharacterGroundInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterGroundInfo() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo.InnerSingleton; +} +// End ScriptStruct FLyraCharacterGroundInfo + +// Begin Class ULyraCharacterMovementComponent Function GetGroundInfo +struct Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics +{ + struct LyraCharacterMovementComponent_eventGetGroundInfo_Parms + { + FLyraCharacterGroundInfo ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|CharacterMovement" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current ground info. Calling this will update the ground info if it's out of date.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current ground info. Calling this will update the ground info if it's out of date." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008008000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCharacterMovementComponent_eventGetGroundInfo_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraCharacterGroundInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; // 1955041393 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCharacterMovementComponent, nullptr, "GetGroundInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::LyraCharacterMovementComponent_eventGetGroundInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::LyraCharacterMovementComponent_eventGetGroundInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCharacterMovementComponent::execGetGroundInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraCharacterGroundInfo*)Z_Param__Result=P_THIS->GetGroundInfo(); + P_NATIVE_END; +} +// End Class ULyraCharacterMovementComponent Function GetGroundInfo + +// Begin Class ULyraCharacterMovementComponent +void ULyraCharacterMovementComponent::StaticRegisterNativesULyraCharacterMovementComponent() +{ + UClass* Class = ULyraCharacterMovementComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetGroundInfo", &ULyraCharacterMovementComponent::execGetGroundInfo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCharacterMovementComponent); +UClass* Z_Construct_UClass_ULyraCharacterMovementComponent_NoRegister() +{ + return ULyraCharacterMovementComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraCharacterMovementComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCharacterMovementComponent\n *\n *\x09The base character movement component class used by this project.\n */" }, +#endif + { "IncludePath", "Character/LyraCharacterMovementComponent.h" }, + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCharacterMovementComponent\n\n The base character movement component class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHasReplicatedAcceleration_MetaData[] = { + { "ModuleRelativePath", "Character/LyraCharacterMovementComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bHasReplicatedAcceleration_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHasReplicatedAcceleration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCharacterMovementComponent_GetGroundInfo, "GetGroundInfo" }, // 3443260485 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration_SetBit(void* Obj) +{ + ((ULyraCharacterMovementComponent*)Obj)->bHasReplicatedAcceleration = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration = { "bHasReplicatedAcceleration", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraCharacterMovementComponent), &Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHasReplicatedAcceleration_MetaData), NewProp_bHasReplicatedAcceleration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::NewProp_bHasReplicatedAcceleration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCharacterMovementComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::ClassParams = { + &ULyraCharacterMovementComponent::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCharacterMovementComponent() +{ + if (!Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton, Z_Construct_UClass_ULyraCharacterMovementComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCharacterMovementComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCharacterMovementComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCharacterMovementComponent); +ULyraCharacterMovementComponent::~ULyraCharacterMovementComponent() {} +// End Class ULyraCharacterMovementComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCharacterGroundInfo::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics::NewStructOps, TEXT("LyraCharacterGroundInfo"), &Z_Registration_Info_UScriptStruct_LyraCharacterGroundInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterGroundInfo), 1955041393U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCharacterMovementComponent, ULyraCharacterMovementComponent::StaticClass, TEXT("ULyraCharacterMovementComponent"), &Z_Registration_Info_UClass_ULyraCharacterMovementComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCharacterMovementComponent), 1696872802U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_494473716(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h new file mode 100644 index 00000000..78d4f6e2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterMovementComponent.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacterMovementComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraCharacterGroundInfo; +#ifdef LYRAGAME_LyraCharacterMovementComponent_generated_h +#error "LyraCharacterMovementComponent.generated.h already included, missing '#pragma once' in LyraCharacterMovementComponent.h" +#endif +#define LYRAGAME_LyraCharacterMovementComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterGroundInfo_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetGroundInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCharacterMovementComponent(); \ + friend struct Z_Construct_UClass_ULyraCharacterMovementComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraCharacterMovementComponent, UCharacterMovementComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCharacterMovementComponent) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCharacterMovementComponent(ULyraCharacterMovementComponent&&); \ + ULyraCharacterMovementComponent(const ULyraCharacterMovementComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCharacterMovementComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCharacterMovementComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraCharacterMovementComponent) \ + NO_API virtual ~ULyraCharacterMovementComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterMovementComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp new file mode 100644 index 00000000..654be390 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp @@ -0,0 +1,268 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterPartTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECharacterCustomizationCollisionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode; +static UEnum* ECharacterCustomizationCollisionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECharacterCustomizationCollisionMode")); + } + return Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECharacterCustomizationCollisionMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// How should collision be configured on the spawned part actor\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, + { "NoCollision.Comment", "// Disable collision on spawned character parts\n" }, + { "NoCollision.Name", "ECharacterCustomizationCollisionMode::NoCollision" }, + { "NoCollision.ToolTip", "Disable collision on spawned character parts" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How should collision be configured on the spawned part actor" }, +#endif + { "UseCollisionFromCharacterPart.Comment", "// Leave the collision settings on character parts alone\n" }, + { "UseCollisionFromCharacterPart.Name", "ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart" }, + { "UseCollisionFromCharacterPart.ToolTip", "Leave the collision settings on character parts alone" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECharacterCustomizationCollisionMode::NoCollision", (int64)ECharacterCustomizationCollisionMode::NoCollision }, + { "ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart", (int64)ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECharacterCustomizationCollisionMode", + "ECharacterCustomizationCollisionMode", + Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode() +{ + if (!Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode.InnerSingleton; +} +// End Enum ECharacterCustomizationCollisionMode + +// Begin ScriptStruct FLyraCharacterPartHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle; +class UScriptStruct* FLyraCharacterPartHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPartHandle, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPartHandle")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPartHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A handle created by adding a character part entry, can be used to remove it later\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A handle created by adding a character part entry, can be used to remove it later" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartHandle_MetaData[] = { + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_PartHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewProp_PartHandle = { "PartHandle", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartHandle, PartHandle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartHandle_MetaData), NewProp_PartHandle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewProp_PartHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterPartHandle", + Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::PropPointers), + sizeof(FLyraCharacterPartHandle), + alignof(FLyraCharacterPartHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPartHandle + +// Begin ScriptStruct FLyraCharacterPart +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPart; +class UScriptStruct* FLyraCharacterPart::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPart, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPart")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPart.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPart::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCharacterPart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n// A character part request\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "/\n A character part request" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartClass_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The part to spawn\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The part to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SocketName_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The socket to attach the part to (if any)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The socket to attach the part to (if any)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionMode_MetaData[] = { + { "Category", "LyraCharacterPart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How to handle collision for the primitive components in the part\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCharacterPartTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How to handle collision for the primitive components in the part" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PartClass; + static const UECodeGen_Private::FNamePropertyParams NewProp_SocketName; + static const UECodeGen_Private::FBytePropertyParams NewProp_CollisionMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_CollisionMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_PartClass = { "PartClass", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, PartClass), Z_Construct_UClass_UClass, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartClass_MetaData), NewProp_PartClass_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_SocketName = { "SocketName", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, SocketName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SocketName_MetaData), NewProp_SocketName_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode = { "CollisionMode", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPart, CollisionMode), Z_Construct_UEnum_LyraGame_ECharacterCustomizationCollisionMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionMode_MetaData), NewProp_CollisionMode_MetaData) }; // 1261648034 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_PartClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_SocketName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewProp_CollisionMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCharacterPart", + Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::PropPointers), + sizeof(FLyraCharacterPart), + alignof(FLyraCharacterPart), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPart.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPart + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECharacterCustomizationCollisionMode_StaticEnum, TEXT("ECharacterCustomizationCollisionMode"), &Z_Registration_Info_UEnum_ECharacterCustomizationCollisionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1261648034U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCharacterPartHandle::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics::NewStructOps, TEXT("LyraCharacterPartHandle"), &Z_Registration_Info_UScriptStruct_LyraCharacterPartHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPartHandle), 1063436802U) }, + { FLyraCharacterPart::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPart_Statics::NewStructOps, TEXT("LyraCharacterPart"), &Z_Registration_Info_UScriptStruct_LyraCharacterPart, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPart), 2027995414U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_1743221314(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h new file mode 100644 index 00000000..d6a7cf1c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.generated.h @@ -0,0 +1,43 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCharacterPartTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCharacterPartTypes_generated_h +#error "LyraCharacterPartTypes.generated.h already included, missing '#pragma once' in LyraCharacterPartTypes.h" +#endif +#define LYRAGAME_LyraCharacterPartTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPartHandle_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h_58_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPart_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCharacterPartTypes_h + + +#define FOREACH_ENUM_ECHARACTERCUSTOMIZATIONCOLLISIONMODE(op) \ + op(ECharacterCustomizationCollisionMode::NoCollision) \ + op(ECharacterCustomizationCollisionMode::UseCollisionFromCharacterPart) + +enum class ECharacterCustomizationCollisionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp new file mode 100644 index 00000000..d9c4e7d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.gen.cpp @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraCharacterWithAbilities.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCharacterWithAbilities() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacterWithAbilities(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacterWithAbilities_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraCharacterWithAbilities +void ALyraCharacterWithAbilities::StaticRegisterNativesALyraCharacterWithAbilities() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraCharacterWithAbilities); +UClass* Z_Construct_UClass_ALyraCharacterWithAbilities_NoRegister() +{ + return ALyraCharacterWithAbilities::StaticClass(); +} +struct Z_Construct_UClass_ALyraCharacterWithAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// ALyraCharacter typically gets the ability system component from the possessing player state\n// This represents a character with a self-contained ability system component.\n" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraCharacterWithAbilities.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraCharacter typically gets the ability system component from the possessing player state\nThis represents a character with a self-contained ability system component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component sub-object used by player characters.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component sub-object used by player characters." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CombatSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Combat attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraCharacterWithAbilities.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Combat attribute set used by this actor." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CombatSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_CombatSet = { "CombatSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraCharacterWithAbilities, CombatSet), Z_Construct_UClass_ULyraCombatSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CombatSet_MetaData), NewProp_CombatSet_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::NewProp_CombatSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraCharacter, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::ClassParams = { + &ALyraCharacterWithAbilities::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraCharacterWithAbilities() +{ + if (!Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton, Z_Construct_UClass_ALyraCharacterWithAbilities_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraCharacterWithAbilities.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraCharacterWithAbilities::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraCharacterWithAbilities); +ALyraCharacterWithAbilities::~ALyraCharacterWithAbilities() {} +// End Class ALyraCharacterWithAbilities + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraCharacterWithAbilities, ALyraCharacterWithAbilities::StaticClass, TEXT("ALyraCharacterWithAbilities"), &Z_Registration_Info_UClass_ALyraCharacterWithAbilities, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraCharacterWithAbilities), 2255054525U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_3903215519(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h new file mode 100644 index 00000000..e84691a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterWithAbilities.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraCharacterWithAbilities.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCharacterWithAbilities_generated_h +#error "LyraCharacterWithAbilities.generated.h already included, missing '#pragma once' in LyraCharacterWithAbilities.h" +#endif +#define LYRAGAME_LyraCharacterWithAbilities_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraCharacterWithAbilities(); \ + friend struct Z_Construct_UClass_ALyraCharacterWithAbilities_Statics; \ +public: \ + DECLARE_CLASS(ALyraCharacterWithAbilities, ALyraCharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraCharacterWithAbilities) + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraCharacterWithAbilities(ALyraCharacterWithAbilities&&); \ + ALyraCharacterWithAbilities(const ALyraCharacterWithAbilities&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraCharacterWithAbilities); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraCharacterWithAbilities); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraCharacterWithAbilities) \ + NO_API virtual ~ALyraCharacterWithAbilities(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraCharacterWithAbilities_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp new file mode 100644 index 00000000..ccac9b02 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.gen.cpp @@ -0,0 +1,715 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraCheatManager.h" +#include "Runtime/Engine/Classes/GameFramework/PlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCheatManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCheatManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCheatManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCheatManager Function AddTagToSelf +struct Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics +{ + struct LyraCheatManager_eventAddTagToSelf_Parms + { + FString TagName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds the dynamic tag to the owning player's ability system component.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds the dynamic tag to the owning player's ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_TagName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::NewProp_TagName = { "TagName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventAddTagToSelf_Parms, TagName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::NewProp_TagName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "AddTagToSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::LyraCheatManager_eventAddTagToSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::LyraCheatManager_eventAddTagToSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execAddTagToSelf) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_TagName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddTagToSelf(Z_Param_TagName); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function AddTagToSelf + +// Begin Class ULyraCheatManager Function CancelActivatedAbilities +struct Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Forces input activated abilities to be canceled. Useful for tracking down ability interruption bugs. \n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Forces input activated abilities to be canceled. Useful for tracking down ability interruption bugs." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CancelActivatedAbilities", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCancelActivatedAbilities) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CancelActivatedAbilities(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CancelActivatedAbilities + +// Begin Class ULyraCheatManager Function Cheat +struct Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics +{ + struct LyraCheatManager_eventCheat_Parms + { + FString Msg; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Runs a cheat on the server for the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runs a cheat on the server for the owning player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventCheat_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "Cheat", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::LyraCheatManager_eventCheat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020601, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::LyraCheatManager_eventCheat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_Cheat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_Cheat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCheat) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Cheat(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function Cheat + +// Begin Class ULyraCheatManager Function CheatAll +struct Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics +{ + struct LyraCheatManager_eventCheatAll_Parms + { + FString Msg; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Runs a cheat on the server for the all players.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runs a cheat on the server for the all players." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventCheatAll_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CheatAll", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::LyraCheatManager_eventCheatAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020601, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::LyraCheatManager_eventCheatAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_CheatAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CheatAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCheatAll) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CheatAll(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CheatAll + +// Begin Class ULyraCheatManager Function CycleAbilitySystemDebug +struct Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CycleAbilitySystemDebug", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCycleAbilitySystemDebug) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleAbilitySystemDebug(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CycleAbilitySystemDebug + +// Begin Class ULyraCheatManager Function CycleDebugCameras +struct Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "CycleDebugCameras", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execCycleDebugCameras) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleDebugCameras(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function CycleDebugCameras + +// Begin Class ULyraCheatManager Function DamageSelf +struct Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics +{ + struct LyraCheatManager_eventDamageSelf_Parms + { + float DamageAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified damage amount to the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified damage amount to the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DamageAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::NewProp_DamageAmount = { "DamageAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventDamageSelf_Parms, DamageAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::NewProp_DamageAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "DamageSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::LyraCheatManager_eventDamageSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::LyraCheatManager_eventDamageSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_DamageSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_DamageSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execDamageSelf) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_DamageAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DamageSelf(Z_Param_DamageAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function DamageSelf + +// Begin Class ULyraCheatManager Function DamageSelfDestruct +struct Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies enough damage to kill the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies enough damage to kill the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "DamageSelfDestruct", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execDamageSelfDestruct) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DamageSelfDestruct(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function DamageSelfDestruct + +// Begin Class ULyraCheatManager Function HealSelf +struct Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics +{ + struct LyraCheatManager_eventHealSelf_Parms + { + float HealAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified amount of healing to the owning player.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified amount of healing to the owning player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HealAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::NewProp_HealAmount = { "HealAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventHealSelf_Parms, HealAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::NewProp_HealAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "HealSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::LyraCheatManager_eventHealSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::LyraCheatManager_eventHealSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_HealSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_HealSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execHealSelf) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_HealAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HealSelf(Z_Param_HealAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function HealSelf + +// Begin Class ULyraCheatManager Function HealTarget +struct Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics +{ + struct LyraCheatManager_eventHealTarget_Parms + { + float HealAmount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Applies the specified amount of healing to the actor that the player is looking at.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies the specified amount of healing to the actor that the player is looking at." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_HealAmount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::NewProp_HealAmount = { "HealAmount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventHealTarget_Parms, HealAmount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::NewProp_HealAmount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "HealTarget", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::LyraCheatManager_eventHealTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::LyraCheatManager_eventHealTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_HealTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_HealTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execHealTarget) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_HealAmount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HealTarget(Z_Param_HealAmount); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function HealTarget + +// Begin Class ULyraCheatManager Function PlayNextGame +struct Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Starts the next match\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the next match" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "PlayNextGame", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_PlayNextGame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_PlayNextGame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execPlayNextGame) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayNextGame(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function PlayNextGame + +// Begin Class ULyraCheatManager Function RemoveTagFromSelf +struct Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics +{ + struct LyraCheatManager_eventRemoveTagFromSelf_Parms + { + FString TagName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes the dynamic tag from the owning player's ability system component.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes the dynamic tag from the owning player's ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_TagName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::NewProp_TagName = { "TagName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventRemoveTagFromSelf_Parms, TagName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::NewProp_TagName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "RemoveTagFromSelf", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::LyraCheatManager_eventRemoveTagFromSelf_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::LyraCheatManager_eventRemoveTagFromSelf_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execRemoveTagFromSelf) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_TagName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveTagFromSelf(Z_Param_TagName); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function RemoveTagFromSelf + +// Begin Class ULyraCheatManager Function ToggleFixedCamera +struct Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "ToggleFixedCamera", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execToggleFixedCamera) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ToggleFixedCamera(); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function ToggleFixedCamera + +// Begin Class ULyraCheatManager Function UnlimitedHealth +struct Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics +{ + struct LyraCheatManager_eventUnlimitedHealth_Parms + { + int32 Enabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Prevents the owning player from dropping below 1 health.\n" }, +#endif + { "CPP_Default_Enabled", "-1" }, + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Prevents the owning player from dropping below 1 health." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Enabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::NewProp_Enabled = { "Enabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCheatManager_eventUnlimitedHealth_Parms, Enabled), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::NewProp_Enabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCheatManager, nullptr, "UnlimitedHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::LyraCheatManager_eventUnlimitedHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::LyraCheatManager_eventUnlimitedHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCheatManager::execUnlimitedHealth) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_Enabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnlimitedHealth(Z_Param_Enabled); + P_NATIVE_END; +} +// End Class ULyraCheatManager Function UnlimitedHealth + +// Begin Class ULyraCheatManager +void ULyraCheatManager::StaticRegisterNativesULyraCheatManager() +{ + UClass* Class = ULyraCheatManager::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddTagToSelf", &ULyraCheatManager::execAddTagToSelf }, + { "CancelActivatedAbilities", &ULyraCheatManager::execCancelActivatedAbilities }, + { "Cheat", &ULyraCheatManager::execCheat }, + { "CheatAll", &ULyraCheatManager::execCheatAll }, + { "CycleAbilitySystemDebug", &ULyraCheatManager::execCycleAbilitySystemDebug }, + { "CycleDebugCameras", &ULyraCheatManager::execCycleDebugCameras }, + { "DamageSelf", &ULyraCheatManager::execDamageSelf }, + { "DamageSelfDestruct", &ULyraCheatManager::execDamageSelfDestruct }, + { "HealSelf", &ULyraCheatManager::execHealSelf }, + { "HealTarget", &ULyraCheatManager::execHealTarget }, + { "PlayNextGame", &ULyraCheatManager::execPlayNextGame }, + { "RemoveTagFromSelf", &ULyraCheatManager::execRemoveTagFromSelf }, + { "ToggleFixedCamera", &ULyraCheatManager::execToggleFixedCamera }, + { "UnlimitedHealth", &ULyraCheatManager::execUnlimitedHealth }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCheatManager); +UClass* Z_Construct_UClass_ULyraCheatManager_NoRegister() +{ + return ULyraCheatManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraCheatManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCheatManager\n *\n *\x09""Base cheat manager class used by this project.\n */" }, +#endif + { "IncludePath", "Player/LyraCheatManager.h" }, + { "ModuleRelativePath", "Player/LyraCheatManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCheatManager\n\n Base cheat manager class used by this project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCheatManager_AddTagToSelf, "AddTagToSelf" }, // 1330023533 + { &Z_Construct_UFunction_ULyraCheatManager_CancelActivatedAbilities, "CancelActivatedAbilities" }, // 3423383744 + { &Z_Construct_UFunction_ULyraCheatManager_Cheat, "Cheat" }, // 2647888070 + { &Z_Construct_UFunction_ULyraCheatManager_CheatAll, "CheatAll" }, // 292118147 + { &Z_Construct_UFunction_ULyraCheatManager_CycleAbilitySystemDebug, "CycleAbilitySystemDebug" }, // 523119135 + { &Z_Construct_UFunction_ULyraCheatManager_CycleDebugCameras, "CycleDebugCameras" }, // 2167405522 + { &Z_Construct_UFunction_ULyraCheatManager_DamageSelf, "DamageSelf" }, // 1704873789 + { &Z_Construct_UFunction_ULyraCheatManager_DamageSelfDestruct, "DamageSelfDestruct" }, // 3975124878 + { &Z_Construct_UFunction_ULyraCheatManager_HealSelf, "HealSelf" }, // 474619823 + { &Z_Construct_UFunction_ULyraCheatManager_HealTarget, "HealTarget" }, // 391853583 + { &Z_Construct_UFunction_ULyraCheatManager_PlayNextGame, "PlayNextGame" }, // 3041194444 + { &Z_Construct_UFunction_ULyraCheatManager_RemoveTagFromSelf, "RemoveTagFromSelf" }, // 3113163407 + { &Z_Construct_UFunction_ULyraCheatManager_ToggleFixedCamera, "ToggleFixedCamera" }, // 2542674358 + { &Z_Construct_UFunction_ULyraCheatManager_UnlimitedHealth, "UnlimitedHealth" }, // 1509377239 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCheatManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCheatManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCheatManager_Statics::ClassParams = { + &ULyraCheatManager::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCheatManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCheatManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCheatManager() +{ + if (!Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton, Z_Construct_UClass_ULyraCheatManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCheatManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCheatManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCheatManager); +ULyraCheatManager::~ULyraCheatManager() {} +// End Class ULyraCheatManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCheatManager, ULyraCheatManager::StaticClass, TEXT("ULyraCheatManager"), &Z_Registration_Info_UClass_ULyraCheatManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCheatManager), 737949807U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_3501631667(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.generated.h new file mode 100644 index 00000000..ea0b3021 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCheatManager.generated.h @@ -0,0 +1,74 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraCheatManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCheatManager_generated_h +#error "LyraCheatManager.generated.h already included, missing '#pragma once' in LyraCheatManager.h" +#endif +#define LYRAGAME_LyraCheatManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnlimitedHealth); \ + DECLARE_FUNCTION(execDamageSelfDestruct); \ + DECLARE_FUNCTION(execHealTarget); \ + DECLARE_FUNCTION(execHealSelf); \ + DECLARE_FUNCTION(execDamageSelf); \ + DECLARE_FUNCTION(execRemoveTagFromSelf); \ + DECLARE_FUNCTION(execAddTagToSelf); \ + DECLARE_FUNCTION(execCancelActivatedAbilities); \ + DECLARE_FUNCTION(execCycleAbilitySystemDebug); \ + DECLARE_FUNCTION(execCycleDebugCameras); \ + DECLARE_FUNCTION(execToggleFixedCamera); \ + DECLARE_FUNCTION(execPlayNextGame); \ + DECLARE_FUNCTION(execCheatAll); \ + DECLARE_FUNCTION(execCheat); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCheatManager(); \ + friend struct Z_Construct_UClass_ULyraCheatManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraCheatManager, UCheatManager, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraCheatManager) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCheatManager(ULyraCheatManager&&); \ + ULyraCheatManager(const ULyraCheatManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraCheatManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCheatManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCheatManager) \ + LYRAGAME_API virtual ~ULyraCheatManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraCheatManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp new file mode 100644 index 00000000..f410cd2d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.gen.cpp @@ -0,0 +1,241 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraCombatSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCombatSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCombatSet Function OnRep_BaseDamage +struct Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics +{ + struct LyraCombatSet_eventOnRep_BaseDamage_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCombatSet_eventOnRep_BaseDamage_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCombatSet, nullptr, "OnRep_BaseDamage", nullptr, nullptr, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::LyraCombatSet_eventOnRep_BaseDamage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::LyraCombatSet_eventOnRep_BaseDamage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCombatSet::execOnRep_BaseDamage) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BaseDamage(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraCombatSet Function OnRep_BaseDamage + +// Begin Class ULyraCombatSet Function OnRep_BaseHeal +struct Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics +{ + struct LyraCombatSet_eventOnRep_BaseHeal_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCombatSet_eventOnRep_BaseHeal_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCombatSet, nullptr, "OnRep_BaseHeal", nullptr, nullptr, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::LyraCombatSet_eventOnRep_BaseHeal_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::LyraCombatSet_eventOnRep_BaseHeal_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCombatSet::execOnRep_BaseHeal) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BaseHeal(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraCombatSet Function OnRep_BaseHeal + +// Begin Class ULyraCombatSet +void ULyraCombatSet::StaticRegisterNativesULyraCombatSet() +{ + UClass* Class = ULyraCombatSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_BaseDamage", &ULyraCombatSet::execOnRep_BaseDamage }, + { "OnRep_BaseHeal", &ULyraCombatSet::execOnRep_BaseHeal }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCombatSet); +UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister() +{ + return ULyraCombatSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraCombatSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCombatSet\n *\n * Class that defines attributes that are necessary for applying damage or healing.\n *\x09""Attribute examples include: damage, healing, attack power, and shield penetrations.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCombatSet\n\n Class that defines attributes that are necessary for applying damage or healing.\n Attribute examples include: damage, healing, attack power, and shield penetrations." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BaseDamage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Combat" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base amount of damage to apply in the damage execution.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base amount of damage to apply in the damage execution." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BaseHeal_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Combat" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base amount of healing to apply in the heal execution.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraCombatSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base amount of healing to apply in the heal execution." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_BaseDamage; + static const UECodeGen_Private::FStructPropertyParams NewProp_BaseHeal; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseDamage, "OnRep_BaseDamage" }, // 2641737249 + { &Z_Construct_UFunction_ULyraCombatSet_OnRep_BaseHeal, "OnRep_BaseHeal" }, // 2423459888 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseDamage = { "BaseDamage", "OnRep_BaseDamage", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCombatSet, BaseDamage), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BaseDamage_MetaData), NewProp_BaseDamage_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseHeal = { "BaseHeal", "OnRep_BaseHeal", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCombatSet, BaseHeal), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BaseHeal_MetaData), NewProp_BaseHeal_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseDamage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCombatSet_Statics::NewProp_BaseHeal, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCombatSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCombatSet_Statics::ClassParams = { + &ULyraCombatSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::PropPointers), + 0, + 0x002000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCombatSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCombatSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCombatSet() +{ + if (!Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton, Z_Construct_UClass_ULyraCombatSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCombatSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCombatSet::StaticClass(); +} +void ULyraCombatSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_BaseDamage(TEXT("BaseDamage")); + static const FName Name_BaseHeal(TEXT("BaseHeal")); + const bool bIsValid = true + && Name_BaseDamage == ClassReps[(int32)ENetFields_Private::BaseDamage].Property->GetFName() + && Name_BaseHeal == ClassReps[(int32)ENetFields_Private::BaseHeal].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraCombatSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCombatSet); +ULyraCombatSet::~ULyraCombatSet() {} +// End Class ULyraCombatSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCombatSet, ULyraCombatSet::StaticClass, TEXT("ULyraCombatSet"), &Z_Registration_Info_UClass_ULyraCombatSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCombatSet), 4058748171U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_2852601233(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.generated.h new file mode 100644 index 00000000..a01b3ac6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCombatSet.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraCombatSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef LYRAGAME_LyraCombatSet_generated_h +#error "LyraCombatSet.generated.h already included, missing '#pragma once' in LyraCombatSet.h" +#endif +#define LYRAGAME_LyraCombatSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_BaseHeal); \ + DECLARE_FUNCTION(execOnRep_BaseDamage); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCombatSet(); \ + friend struct Z_Construct_UClass_ULyraCombatSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraCombatSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCombatSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + BaseDamage=NETFIELD_REP_START, \ + BaseHeal, \ + NETFIELD_REP_END=BaseHeal }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraCombatSet) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCombatSet(ULyraCombatSet&&); \ + ULyraCombatSet(const ULyraCombatSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCombatSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCombatSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCombatSet) \ + NO_API virtual ~ULyraCombatSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraCombatSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp new file mode 100644 index 00000000..d8091b34 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.gen.cpp @@ -0,0 +1,215 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraConfirmationScreen.h" +#include "Runtime/Engine/Classes/Engine/DataTable.h" +#include "Runtime/SlateCore/Public/Input/Events.h" +#include "Runtime/SlateCore/Public/Layout/Geometry.h" +#include "Runtime/UMG/Public/Components/SlateWrapperTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraConfirmationScreen() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonBorder_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FDataTableRowHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraConfirmationScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraConfirmationScreen_NoRegister(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FGeometry(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FPointerEvent(); +UMG_API UClass* Z_Construct_UClass_UDynamicEntryBox_NoRegister(); +UMG_API UScriptStruct* Z_Construct_UScriptStruct_FEventReply(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraConfirmationScreen Function HandleTapToCloseZoneMouseButtonDown +struct Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics +{ + struct LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms + { + FGeometry MyGeometry; + FPointerEvent MouseEvent; + FEventReply ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseEvent_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MyGeometry; + static const UECodeGen_Private::FStructPropertyParams NewProp_MouseEvent; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MyGeometry = { "MyGeometry", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, MyGeometry), Z_Construct_UScriptStruct_FGeometry, METADATA_PARAMS(0, nullptr) }; // 3532897347 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MouseEvent = { "MouseEvent", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, MouseEvent), Z_Construct_UScriptStruct_FPointerEvent, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseEvent_MetaData), NewProp_MouseEvent_MetaData) }; // 2513801729 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms, ReturnValue), Z_Construct_UScriptStruct_FEventReply, METADATA_PARAMS(0, nullptr) }; // 615652629 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MyGeometry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_MouseEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraConfirmationScreen, nullptr, "HandleTapToCloseZoneMouseButtonDown", nullptr, nullptr, Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00440401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::LyraConfirmationScreen_eventHandleTapToCloseZoneMouseButtonDown_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraConfirmationScreen::execHandleTapToCloseZoneMouseButtonDown) +{ + P_GET_STRUCT(FGeometry,Z_Param_MyGeometry); + P_GET_STRUCT_REF(FPointerEvent,Z_Param_Out_MouseEvent); + P_FINISH; + P_NATIVE_BEGIN; + *(FEventReply*)Z_Param__Result=P_THIS->HandleTapToCloseZoneMouseButtonDown(Z_Param_MyGeometry,Z_Param_Out_MouseEvent); + P_NATIVE_END; +} +// End Class ULyraConfirmationScreen Function HandleTapToCloseZoneMouseButtonDown + +// Begin Class ULyraConfirmationScreen +void ULyraConfirmationScreen::StaticRegisterNativesULyraConfirmationScreen() +{ + UClass* Class = ULyraConfirmationScreen::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleTapToCloseZoneMouseButtonDown", &ULyraConfirmationScreen::execHandleTapToCloseZoneMouseButtonDown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraConfirmationScreen); +UClass* Z_Construct_UClass_ULyraConfirmationScreen_NoRegister() +{ + return ULyraConfirmationScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraConfirmationScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\x09\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraConfirmationScreen.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_Title_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Description_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryBox_Buttons_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Border_TapToCloseZone_MetaData[] = { + { "BindWidget", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAction_MetaData[] = { + { "Category", "LyraConfirmationScreen" }, + { "ModuleRelativePath", "UI/Foundation/LyraConfirmationScreen.h" }, + { "RowType", "/Script/CommonUI.CommonInputActionDataBase" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_Title; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Description; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EntryBox_Buttons; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Border_TapToCloseZone; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraConfirmationScreen_HandleTapToCloseZoneMouseButtonDown, "HandleTapToCloseZoneMouseButtonDown" }, // 3953298901 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Text_Title = { "Text_Title", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, Text_Title), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_Title_MetaData), NewProp_Text_Title_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_RichText_Description = { "RichText_Description", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, RichText_Description), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Description_MetaData), NewProp_RichText_Description_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_EntryBox_Buttons = { "EntryBox_Buttons", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, EntryBox_Buttons), Z_Construct_UClass_UDynamicEntryBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryBox_Buttons_MetaData), NewProp_EntryBox_Buttons_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Border_TapToCloseZone = { "Border_TapToCloseZone", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, Border_TapToCloseZone), Z_Construct_UClass_UCommonBorder_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Border_TapToCloseZone_MetaData), NewProp_Border_TapToCloseZone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_CancelAction = { "CancelAction", nullptr, (EPropertyFlags)0x0040000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraConfirmationScreen, CancelAction), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAction_MetaData), NewProp_CancelAction_MetaData) }; // 1360917958 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Text_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_RichText_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_EntryBox_Buttons, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_Border_TapToCloseZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraConfirmationScreen_Statics::NewProp_CancelAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraConfirmationScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameDialog, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraConfirmationScreen_Statics::ClassParams = { + &ULyraConfirmationScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraConfirmationScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraConfirmationScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraConfirmationScreen() +{ + if (!Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton, Z_Construct_UClass_ULyraConfirmationScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraConfirmationScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraConfirmationScreen::StaticClass(); +} +ULyraConfirmationScreen::ULyraConfirmationScreen() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraConfirmationScreen); +ULyraConfirmationScreen::~ULyraConfirmationScreen() {} +// End Class ULyraConfirmationScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraConfirmationScreen, ULyraConfirmationScreen::StaticClass, TEXT("ULyraConfirmationScreen"), &Z_Registration_Info_UClass_ULyraConfirmationScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraConfirmationScreen), 2432178220U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_937084617(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h new file mode 100644 index 00000000..98df488d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraConfirmationScreen.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraConfirmationScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FEventReply; +struct FGeometry; +struct FPointerEvent; +#ifdef LYRAGAME_LyraConfirmationScreen_generated_h +#error "LyraConfirmationScreen.generated.h already included, missing '#pragma once' in LyraConfirmationScreen.h" +#endif +#define LYRAGAME_LyraConfirmationScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleTapToCloseZoneMouseButtonDown); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraConfirmationScreen(); \ + friend struct Z_Construct_UClass_ULyraConfirmationScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraConfirmationScreen, UCommonGameDialog, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraConfirmationScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraConfirmationScreen(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraConfirmationScreen(ULyraConfirmationScreen&&); \ + ULyraConfirmationScreen(const ULyraConfirmationScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraConfirmationScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraConfirmationScreen); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraConfirmationScreen) \ + NO_API virtual ~ULyraConfirmationScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraConfirmationScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp new file mode 100644 index 00000000..cb86af52 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.gen.cpp @@ -0,0 +1,431 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectComponent.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +ENGINE_API UClass* Z_Construct_UClass_UAnimSequenceBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAudioComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraContextEffectComponent Function AnimMotionEffect_Implementation +struct Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics +{ + struct LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms + { + FName Bone; + FGameplayTag MotionEffect; + USceneComponent* StaticMeshComponent; + FVector LocationOffset; + FRotator RotationOffset; + const UAnimSequenceBase* AnimationSequence; + bool bHitSuccess; + FHitResult HitResult; + FGameplayTagContainer Contexts; + FVector VFXScale; + float AudioVolume; + float AudioPitch; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// AnimMotionEffect Implementation\n" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "AnimMotionEffect Implementation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bone_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MotionEffect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticMeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationSequence_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHitSuccess_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Bone; + static const UECodeGen_Private::FStructPropertyParams NewProp_MotionEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StaticMeshComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AnimationSequence; + static void NewProp_bHitSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHitSuccess; + static const UECodeGen_Private::FStructPropertyParams NewProp_HitResult; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Bone = { "Bone", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, Bone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bone_MetaData), NewProp_Bone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_MotionEffect = { "MotionEffect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, MotionEffect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MotionEffect_MetaData), NewProp_MotionEffect_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_StaticMeshComponent = { "StaticMeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, StaticMeshComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticMeshComponent_MetaData), NewProp_StaticMeshComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AnimationSequence = { "AnimationSequence", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AnimationSequence), Z_Construct_UClass_UAnimSequenceBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationSequence_MetaData), NewProp_AnimationSequence_MetaData) }; +void Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess_SetBit(void* Obj) +{ + ((LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms*)Obj)->bHitSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess = { "bHitSuccess", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms), &Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHitSuccess_MetaData), NewProp_bHitSuccess_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_HitResult = { "HitResult", nullptr, (EPropertyFlags)0x0010008000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, HitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitResult_MetaData), NewProp_HitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Bone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_MotionEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_StaticMeshComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AnimationSequence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_bHitSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_HitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "AnimMotionEffect_Implementation", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::LyraContextEffectComponent_eventAnimMotionEffect_Implementation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execAnimMotionEffect_Implementation) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Bone); + P_GET_STRUCT(FGameplayTag,Z_Param_MotionEffect); + P_GET_OBJECT(USceneComponent,Z_Param_StaticMeshComponent); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_OBJECT(UAnimSequenceBase,Z_Param_AnimationSequence); + P_GET_UBOOL(Z_Param_bHitSuccess); + P_GET_STRUCT(FHitResult,Z_Param_HitResult); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimMotionEffect_Implementation(Z_Param_Bone,Z_Param_MotionEffect,Z_Param_StaticMeshComponent,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_AnimationSequence,Z_Param_bHitSuccess,Z_Param_HitResult,Z_Param_Contexts,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function AnimMotionEffect_Implementation + +// Begin Class ULyraContextEffectComponent Function UpdateEffectContexts +struct Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics +{ + struct LyraContextEffectComponent_eventUpdateEffectContexts_Parms + { + FGameplayTagContainer NewEffectContexts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewEffectContexts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::NewProp_NewEffectContexts = { "NewEffectContexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventUpdateEffectContexts_Parms, NewEffectContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::NewProp_NewEffectContexts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "UpdateEffectContexts", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::LyraContextEffectComponent_eventUpdateEffectContexts_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::LyraContextEffectComponent_eventUpdateEffectContexts_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execUpdateEffectContexts) +{ + P_GET_STRUCT(FGameplayTagContainer,Z_Param_NewEffectContexts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateEffectContexts(Z_Param_NewEffectContexts); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function UpdateEffectContexts + +// Begin Class ULyraContextEffectComponent Function UpdateLibraries +struct Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics +{ + struct LyraContextEffectComponent_eventUpdateLibraries_Parms + { + TSet > NewContextEffectsLibraries; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_NewContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_NewContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries_ElementProp = { "NewContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries = { "NewContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectComponent_eventUpdateLibraries_Parms, NewContextEffectsLibraries), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::NewProp_NewContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectComponent, nullptr, "UpdateLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::LyraContextEffectComponent_eventUpdateLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::LyraContextEffectComponent_eventUpdateLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectComponent::execUpdateLibraries) +{ + P_GET_TSET(TSoftObjectPtr,Z_Param_NewContextEffectsLibraries); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateLibraries(Z_Param_NewContextEffectsLibraries); + P_NATIVE_END; +} +// End Class ULyraContextEffectComponent Function UpdateLibraries + +// Begin Class ULyraContextEffectComponent +void ULyraContextEffectComponent::StaticRegisterNativesULyraContextEffectComponent() +{ + UClass* Class = ULyraContextEffectComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimMotionEffect_Implementation", &ULyraContextEffectComponent::execAnimMotionEffect_Implementation }, + { "UpdateEffectContexts", &ULyraContextEffectComponent::execUpdateEffectContexts }, + { "UpdateLibraries", &ULyraContextEffectComponent::execUpdateLibraries }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectComponent); +UClass* Z_Construct_UClass_ULyraContextEffectComponent_NoRegister() +{ + return ULyraContextEffectComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "ClassGroupNames", "Custom" }, + { "HideCategories", "Variable Tags ComponentTick ComponentReplication Activation Cooking AssetUserData Collision" }, + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bConvertPhysicalSurfaceToContext_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Auto-Convert Physical Surface from Trace Result to Context\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Auto-Convert Physical Surface from Trace Result to Context" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultEffectContexts_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Contexts\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Contexts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultContextEffectsLibraries_MetaData[] = { + { "Category", "LyraContextEffectComponent" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default Libraries for this Actor\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default Libraries for this Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentContexts_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentContextEffectsLibraries_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveAudioComponents_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveNiagaraComponents_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bConvertPhysicalSurfaceToContext_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bConvertPhysicalSurfaceToContext; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultEffectContexts; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_DefaultContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_DefaultContextEffectsLibraries; + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentContexts; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_CurrentContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_CurrentContextEffectsLibraries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveAudioComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveAudioComponents; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveNiagaraComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveNiagaraComponents; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectComponent_AnimMotionEffect_Implementation, "AnimMotionEffect_Implementation" }, // 680837871 + { &Z_Construct_UFunction_ULyraContextEffectComponent_UpdateEffectContexts, "UpdateEffectContexts" }, // 1798442767 + { &Z_Construct_UFunction_ULyraContextEffectComponent_UpdateLibraries, "UpdateLibraries" }, // 832285938 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext_SetBit(void* Obj) +{ + ((ULyraContextEffectComponent*)Obj)->bConvertPhysicalSurfaceToContext = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext = { "bConvertPhysicalSurfaceToContext", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraContextEffectComponent), &Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bConvertPhysicalSurfaceToContext_MetaData), NewProp_bConvertPhysicalSurfaceToContext_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultEffectContexts = { "DefaultEffectContexts", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, DefaultEffectContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultEffectContexts_MetaData), NewProp_DefaultEffectContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries_ElementProp = { "DefaultContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries = { "DefaultContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, DefaultContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultContextEffectsLibraries_MetaData), NewProp_DefaultContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContexts = { "CurrentContexts", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, CurrentContexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentContexts_MetaData), NewProp_CurrentContexts_MetaData) }; // 3352185621 +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries_ElementProp = { "CurrentContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries = { "CurrentContextEffectsLibraries", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, CurrentContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentContextEffectsLibraries_MetaData), NewProp_CurrentContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents_Inner = { "ActiveAudioComponents", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAudioComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents = { "ActiveAudioComponents", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, ActiveAudioComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveAudioComponents_MetaData), NewProp_ActiveAudioComponents_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents_Inner = { "ActiveNiagaraComponents", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents = { "ActiveNiagaraComponents", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectComponent, ActiveNiagaraComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveNiagaraComponents_MetaData), NewProp_ActiveNiagaraComponents_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_bConvertPhysicalSurfaceToContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultEffectContexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_DefaultContextEffectsLibraries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_CurrentContextEffectsLibraries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveAudioComponents, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectComponent_Statics::NewProp_ActiveNiagaraComponents, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraContextEffectComponent, ILyraContextEffectsInterface), false }, // 1556334455 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectComponent_Statics::ClassParams = { + &ULyraContextEffectComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B020A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectComponent() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton, Z_Construct_UClass_ULyraContextEffectComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectComponent); +ULyraContextEffectComponent::~ULyraContextEffectComponent() {} +// End Class ULyraContextEffectComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectComponent, ULyraContextEffectComponent::StaticClass, TEXT("ULyraContextEffectComponent"), &Z_Registration_Info_UClass_ULyraContextEffectComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectComponent), 3435818313U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_125872761(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h new file mode 100644 index 00000000..ac6036ae --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectComponent.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAnimSequenceBase; +class ULyraContextEffectsLibrary; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FHitResult; +#ifdef LYRAGAME_LyraContextEffectComponent_generated_h +#error "LyraContextEffectComponent.generated.h already included, missing '#pragma once' in LyraContextEffectComponent.h" +#endif +#define LYRAGAME_LyraContextEffectComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUpdateLibraries); \ + DECLARE_FUNCTION(execUpdateEffectContexts); \ + DECLARE_FUNCTION(execAnimMotionEffect_Implementation); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectComponent(); \ + friend struct Z_Construct_UClass_ULyraContextEffectComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectComponent(ULyraContextEffectComponent&&); \ + ULyraContextEffectComponent(const ULyraContextEffectComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectComponent); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraContextEffectComponent) \ + NO_API virtual ~ULyraContextEffectComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp new file mode 100644 index 00000000..b52697d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp @@ -0,0 +1,334 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsInterface.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UAnimSequenceBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EEffectsContextMatchType(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EEffectsContextMatchType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EEffectsContextMatchType; +static UEnum* EEffectsContextMatchType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton) + { + Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EEffectsContextMatchType")); + } + return Z_Registration_Info_UEnum_EEffectsContextMatchType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EEffectsContextMatchType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BestMatch.Comment", "/**\n *\n */" }, + { "BestMatch.Name", "BestMatch" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ExactMatch.Comment", "/**\n *\n */" }, + { "ExactMatch.Name", "ExactMatch" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ExactMatch", (int64)ExactMatch }, + { "BestMatch", (int64)BestMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EEffectsContextMatchType", + "EEffectsContextMatchType", + Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::Regular, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EEffectsContextMatchType() +{ + if (!Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton, Z_Construct_UEnum_LyraGame_EEffectsContextMatchType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EEffectsContextMatchType.InnerSingleton; +} +// End Enum EEffectsContextMatchType + +// Begin Interface ULyraContextEffectsInterface Function AnimMotionEffect +struct LyraContextEffectsInterface_eventAnimMotionEffect_Parms +{ + FName Bone; + FGameplayTag MotionEffect; + USceneComponent* StaticMeshComponent; + FVector LocationOffset; + FRotator RotationOffset; + const UAnimSequenceBase* AnimationSequence; + bool bHitSuccess; + FHitResult HitResult; + FGameplayTagContainer Contexts; + FVector VFXScale; + float AudioVolume; + float AudioPitch; +}; +void ILyraContextEffectsInterface::AnimMotionEffect(const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_AnimMotionEffect instead."); +} +static FName NAME_ULyraContextEffectsInterface_AnimMotionEffect = FName(TEXT("AnimMotionEffect")); +void ILyraContextEffectsInterface::Execute_AnimMotionEffect(UObject* O, const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(ULyraContextEffectsInterface::StaticClass())); + LyraContextEffectsInterface_eventAnimMotionEffect_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_ULyraContextEffectsInterface_AnimMotionEffect); + if (Func) + { + Parms.Bone=Bone; + Parms.MotionEffect=MotionEffect; + Parms.StaticMeshComponent=StaticMeshComponent; + Parms.LocationOffset=LocationOffset; + Parms.RotationOffset=RotationOffset; + Parms.AnimationSequence=AnimationSequence; + Parms.bHitSuccess=bHitSuccess; + Parms.HitResult=HitResult; + Parms.Contexts=Contexts; + Parms.VFXScale=VFXScale; + Parms.AudioVolume=AudioVolume; + Parms.AudioPitch=AudioPitch; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (ILyraContextEffectsInterface*)(O->GetNativeInterfaceAddress(ULyraContextEffectsInterface::StaticClass()))) + { + I->AnimMotionEffect_Implementation(Bone,MotionEffect,StaticMeshComponent,LocationOffset,RotationOffset,AnimationSequence,bHitSuccess,HitResult,Contexts,VFXScale,AudioVolume,AudioPitch); + } +} +struct Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bone_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MotionEffect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticMeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationSequence_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHitSuccess_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Bone; + static const UECodeGen_Private::FStructPropertyParams NewProp_MotionEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StaticMeshComponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AnimationSequence; + static void NewProp_bHitSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHitSuccess; + static const UECodeGen_Private::FStructPropertyParams NewProp_HitResult; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Bone = { "Bone", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, Bone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bone_MetaData), NewProp_Bone_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_MotionEffect = { "MotionEffect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, MotionEffect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MotionEffect_MetaData), NewProp_MotionEffect_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_StaticMeshComponent = { "StaticMeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, StaticMeshComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticMeshComponent_MetaData), NewProp_StaticMeshComponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AnimationSequence = { "AnimationSequence", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AnimationSequence), Z_Construct_UClass_UAnimSequenceBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationSequence_MetaData), NewProp_AnimationSequence_MetaData) }; +void Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess_SetBit(void* Obj) +{ + ((LyraContextEffectsInterface_eventAnimMotionEffect_Parms*)Obj)->bHitSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess = { "bHitSuccess", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms), &Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHitSuccess_MetaData), NewProp_bHitSuccess_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_HitResult = { "HitResult", nullptr, (EPropertyFlags)0x0010008000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, HitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitResult_MetaData), NewProp_HitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsInterface_eventAnimMotionEffect_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Bone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_MotionEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_StaticMeshComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AnimationSequence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_bHitSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_HitResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsInterface, nullptr, "AnimMotionEffect", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::PropPointers), sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x0C820C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraContextEffectsInterface_eventAnimMotionEffect_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ILyraContextEffectsInterface::execAnimMotionEffect) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Bone); + P_GET_STRUCT(FGameplayTag,Z_Param_MotionEffect); + P_GET_OBJECT(USceneComponent,Z_Param_StaticMeshComponent); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_OBJECT(UAnimSequenceBase,Z_Param_AnimationSequence); + P_GET_UBOOL(Z_Param_bHitSuccess); + P_GET_STRUCT(FHitResult,Z_Param_HitResult); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimMotionEffect_Implementation(Z_Param_Bone,Z_Param_MotionEffect,Z_Param_StaticMeshComponent,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_AnimationSequence,Z_Param_bHitSuccess,Z_Param_HitResult,Z_Param_Contexts,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Interface ULyraContextEffectsInterface Function AnimMotionEffect + +// Begin Interface ULyraContextEffectsInterface +void ULyraContextEffectsInterface::StaticRegisterNativesULyraContextEffectsInterface() +{ + UClass* Class = ULyraContextEffectsInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimMotionEffect", &ILyraContextEffectsInterface::execAnimMotionEffect }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsInterface); +UClass* Z_Construct_UClass_ULyraContextEffectsInterface_NoRegister() +{ + return ULyraContextEffectsInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsInterface_AnimMotionEffect, "AnimMotionEffect" }, // 1251480123 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraContextEffectsInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsInterface_Statics::ClassParams = { + &ULyraContextEffectsInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsInterface() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsInterface::StaticClass(); +} +ULyraContextEffectsInterface::ULyraContextEffectsInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsInterface); +ULyraContextEffectsInterface::~ULyraContextEffectsInterface() {} +// End Interface ULyraContextEffectsInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EEffectsContextMatchType_StaticEnum, TEXT("EEffectsContextMatchType"), &Z_Registration_Info_UEnum_EEffectsContextMatchType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3523732416U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectsInterface, ULyraContextEffectsInterface::StaticClass, TEXT("ULyraContextEffectsInterface"), &Z_Registration_Info_UClass_ULyraContextEffectsInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsInterface), 1556334455U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_1430013495(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h new file mode 100644 index 00000000..a1154103 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.generated.h @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAnimSequenceBase; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FHitResult; +#ifdef LYRAGAME_LyraContextEffectsInterface_generated_h +#error "LyraContextEffectsInterface.generated.h already included, missing '#pragma once' in LyraContextEffectsInterface.h" +#endif +#define LYRAGAME_LyraContextEffectsInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void AnimMotionEffect_Implementation(const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch) {}; \ + DECLARE_FUNCTION(execAnimMotionEffect); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsInterface(ULyraContextEffectsInterface&&); \ + ULyraContextEffectsInterface(const ULyraContextEffectsInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsInterface) \ + NO_API virtual ~ULyraContextEffectsInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraContextEffectsInterface(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraContextEffectsInterface() {} \ +public: \ + typedef ULyraContextEffectsInterface UClassType; \ + typedef ILyraContextEffectsInterface ThisClass; \ + static void Execute_AnimMotionEffect(UObject* O, const FName Bone, const FGameplayTag MotionEffect, USceneComponent* StaticMeshComponent, const FVector LocationOffset, const FRotator RotationOffset, const UAnimSequenceBase* AnimationSequence, bool bHitSuccess, const FHitResult HitResult, FGameplayTagContainer Contexts, FVector VFXScale, float AudioVolume, float AudioPitch); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h_32_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsInterface_h + + +#define FOREACH_ENUM_EEFFECTSCONTEXTMATCHTYPE(op) \ + op(ExactMatch) \ + op(BestMatch) + +enum EEffectsContextMatchType : int; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp new file mode 100644 index 00000000..0e8a8770 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.gen.cpp @@ -0,0 +1,544 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsLibrary.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsLibrary() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActiveContextEffects(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActiveContextEffects_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffects(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EContextEffectsLibraryLoadState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState; +static UEnum* EContextEffectsLibraryLoadState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton) + { + Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EContextEffectsLibraryLoadState")); + } + return Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EContextEffectsLibraryLoadState_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "Loaded.Comment", "/**\n *\n */" }, + { "Loaded.Name", "EContextEffectsLibraryLoadState::Loaded" }, + { "Loading.Comment", "/**\n *\n */" }, + { "Loading.Name", "EContextEffectsLibraryLoadState::Loading" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "Unloaded.Comment", "/**\n *\n */" }, + { "Unloaded.Name", "EContextEffectsLibraryLoadState::Unloaded" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EContextEffectsLibraryLoadState::Unloaded", (int64)EContextEffectsLibraryLoadState::Unloaded }, + { "EContextEffectsLibraryLoadState::Loading", (int64)EContextEffectsLibraryLoadState::Loading }, + { "EContextEffectsLibraryLoadState::Loaded", (int64)EContextEffectsLibraryLoadState::Loaded }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EContextEffectsLibraryLoadState", + "EContextEffectsLibraryLoadState", + Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState() +{ + if (!Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton, Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState.InnerSingleton; +} +// End Enum EContextEffectsLibraryLoadState + +// Begin ScriptStruct FLyraContextEffects +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraContextEffects; +class UScriptStruct* FLyraContextEffects::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraContextEffects, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraContextEffects")); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraContextEffects::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectTag_MetaData[] = { + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effects_MetaData[] = { + { "AllowedClasses", "/Script/Engine.SoundBase, /Script/Niagara.NiagaraSystem" }, + { "Category", "LyraContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FStructPropertyParams NewProp_Effects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Effects; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_EffectTag = { "EffectTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, EffectTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectTag_MetaData), NewProp_EffectTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects_Inner = { "Effects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects = { "Effects", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraContextEffects, Effects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effects_MetaData), NewProp_Effects_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_EffectTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewProp_Effects, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraContextEffects_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraContextEffects", + Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::PropPointers), + sizeof(FLyraContextEffects), + alignof(FLyraContextEffects), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraContextEffects_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraContextEffects_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraContextEffects() +{ + if (!Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton, Z_Construct_UScriptStruct_FLyraContextEffects_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraContextEffects.InnerSingleton; +} +// End ScriptStruct FLyraContextEffects + +// Begin Class ULyraActiveContextEffects +void ULyraActiveContextEffects::StaticRegisterNativesULyraActiveContextEffects() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraActiveContextEffects); +UClass* Z_Construct_UClass_ULyraActiveContextEffects_NoRegister() +{ + return ULyraActiveContextEffects::StaticClass(); +} +struct Z_Construct_UClass_ULyraActiveContextEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectTag_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sounds_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraSystems_MetaData[] = { + { "Category", "LyraActiveContextEffects" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EffectTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sounds_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Sounds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraSystems_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraSystems; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_EffectTag = { "EffectTag", nullptr, (EPropertyFlags)0x0010000000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, EffectTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectTag_MetaData), NewProp_EffectTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000020001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds_Inner = { "Sounds", nullptr, (EPropertyFlags)0x0104000000020000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds = { "Sounds", nullptr, (EPropertyFlags)0x0114000000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, Sounds), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sounds_MetaData), NewProp_Sounds_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems_Inner = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0104000000020000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0114000000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraActiveContextEffects, NiagaraSystems), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraSystems_MetaData), NewProp_NiagaraSystems_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_EffectTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_Sounds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraActiveContextEffects_Statics::NewProp_NiagaraSystems, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraActiveContextEffects_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraActiveContextEffects_Statics::ClassParams = { + &ULyraActiveContextEffects::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraActiveContextEffects_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraActiveContextEffects_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraActiveContextEffects() +{ + if (!Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton, Z_Construct_UClass_ULyraActiveContextEffects_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraActiveContextEffects.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraActiveContextEffects::StaticClass(); +} +ULyraActiveContextEffects::ULyraActiveContextEffects(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraActiveContextEffects); +ULyraActiveContextEffects::~ULyraActiveContextEffects() {} +// End Class ULyraActiveContextEffects + +// Begin Delegate FLyraContextEffectLibraryLoadingComplete +struct Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms + { + TArray LyraActiveContextEffects; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LyraActiveContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LyraActiveContextEffects; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects_Inner = { "LyraActiveContextEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraActiveContextEffects_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects = { "LyraActiveContextEffects", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms, LyraActiveContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::NewProp_LyraActiveContextEffects, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraContextEffectLibraryLoadingComplete__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::_Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraContextEffectLibraryLoadingComplete_DelegateWrapper(const FScriptDelegate& LyraContextEffectLibraryLoadingComplete, const TArray& LyraActiveContextEffects) +{ + struct _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms + { + TArray LyraActiveContextEffects; + }; + _Script_LyraGame_eventLyraContextEffectLibraryLoadingComplete_Parms Parms; + Parms.LyraActiveContextEffects=LyraActiveContextEffects; + LyraContextEffectLibraryLoadingComplete.ProcessDelegate(&Parms); +} +// End Delegate FLyraContextEffectLibraryLoadingComplete + +// Begin Class ULyraContextEffectsLibrary Function GetEffects +struct Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics +{ + struct LyraContextEffectsLibrary_eventGetEffects_Parms + { + FGameplayTag Effect; + FGameplayTagContainer Context; + TArray Sounds; + TArray NiagaraSystems; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Effect_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Context_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sounds_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Sounds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraSystems_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraSystems; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Effect_MetaData), NewProp_Effect_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Context), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Context_MetaData), NewProp_Context_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds_Inner = { "Sounds", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds = { "Sounds", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, Sounds), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems_Inner = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems = { "NiagaraSystems", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsLibrary_eventGetEffects_Parms, NiagaraSystems), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_Sounds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::NewProp_NiagaraSystems, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsLibrary, nullptr, "GetEffects", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::LyraContextEffectsLibrary_eventGetEffects_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::LyraContextEffectsLibrary_eventGetEffects_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsLibrary::execGetEffects) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Effect); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Context); + P_GET_TARRAY_REF(USoundBase*,Z_Param_Out_Sounds); + P_GET_TARRAY_REF(UNiagaraSystem*,Z_Param_Out_NiagaraSystems); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetEffects(Z_Param_Effect,Z_Param_Context,Z_Param_Out_Sounds,Z_Param_Out_NiagaraSystems); + P_NATIVE_END; +} +// End Class ULyraContextEffectsLibrary Function GetEffects + +// Begin Class ULyraContextEffectsLibrary Function LoadEffects +struct Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsLibrary, nullptr, "LoadEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsLibrary::execLoadEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->LoadEffects(); + P_NATIVE_END; +} +// End Class ULyraContextEffectsLibrary Function LoadEffects + +// Begin Class ULyraContextEffectsLibrary +void ULyraContextEffectsLibrary::StaticRegisterNativesULyraContextEffectsLibrary() +{ + UClass* Class = ULyraContextEffectsLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetEffects", &ULyraContextEffectsLibrary::execGetEffects }, + { "LoadEffects", &ULyraContextEffectsLibrary::execLoadEffects }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsLibrary); +UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister() +{ + return ULyraContextEffectsLibrary::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextEffects_MetaData[] = { + { "Category", "LyraContextEffectsLibrary" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveContextEffects_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectsLoadState_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ContextEffects; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveContextEffects_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActiveContextEffects; + static const UECodeGen_Private::FBytePropertyParams NewProp_EffectsLoadState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_EffectsLoadState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsLibrary_GetEffects, "GetEffects" }, // 4022574230 + { &Z_Construct_UFunction_ULyraContextEffectsLibrary_LoadEffects, "LoadEffects" }, // 3358773624 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects_Inner = { "ContextEffects", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraContextEffects, METADATA_PARAMS(0, nullptr) }; // 4026134692 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects = { "ContextEffects", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, ContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextEffects_MetaData), NewProp_ContextEffects_MetaData) }; // 4026134692 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects_Inner = { "ActiveContextEffects", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraActiveContextEffects_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects = { "ActiveContextEffects", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, ActiveContextEffects), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveContextEffects_MetaData), NewProp_ActiveContextEffects_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState = { "EffectsLoadState", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsLibrary, EffectsLoadState), Z_Construct_UEnum_LyraGame_EContextEffectsLibraryLoadState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectsLoadState_MetaData), NewProp_EffectsLoadState_MetaData) }; // 2204375970 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ContextEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_ActiveContextEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::NewProp_EffectsLoadState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::ClassParams = { + &ULyraContextEffectsLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsLibrary() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsLibrary::StaticClass(); +} +ULyraContextEffectsLibrary::ULyraContextEffectsLibrary(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsLibrary); +ULyraContextEffectsLibrary::~ULyraContextEffectsLibrary() {} +// End Class ULyraContextEffectsLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EContextEffectsLibraryLoadState_StaticEnum, TEXT("EContextEffectsLibraryLoadState"), &Z_Registration_Info_UEnum_EContextEffectsLibraryLoadState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2204375970U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraContextEffects::StaticStruct, Z_Construct_UScriptStruct_FLyraContextEffects_Statics::NewStructOps, TEXT("LyraContextEffects"), &Z_Registration_Info_UScriptStruct_LyraContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraContextEffects), 4026134692U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraActiveContextEffects, ULyraActiveContextEffects::StaticClass, TEXT("ULyraActiveContextEffects"), &Z_Registration_Info_UClass_ULyraActiveContextEffects, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraActiveContextEffects), 4043339537U) }, + { Z_Construct_UClass_ULyraContextEffectsLibrary, ULyraContextEffectsLibrary::StaticClass, TEXT("ULyraContextEffectsLibrary"), &Z_Registration_Info_UClass_ULyraContextEffectsLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsLibrary), 2001368813U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_707458730(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h new file mode 100644 index 00000000..cb41c59d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsLibrary.generated.h @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsLibrary.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraActiveContextEffects; +class UNiagaraSystem; +class USoundBase; +struct FGameplayTag; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraContextEffectsLibrary_generated_h +#error "LyraContextEffectsLibrary.generated.h already included, missing '#pragma once' in LyraContextEffectsLibrary.h" +#endif +#define LYRAGAME_LyraContextEffectsLibrary_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_31_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraContextEffects_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraActiveContextEffects(); \ + friend struct Z_Construct_UClass_ULyraActiveContextEffects_Statics; \ +public: \ + DECLARE_CLASS(ULyraActiveContextEffects, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraActiveContextEffects) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraActiveContextEffects(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraActiveContextEffects(ULyraActiveContextEffects&&); \ + ULyraActiveContextEffects(const ULyraActiveContextEffects&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraActiveContextEffects); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraActiveContextEffects); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraActiveContextEffects) \ + NO_API virtual ~ULyraActiveContextEffects(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_47_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_50_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_66_DELEGATE \ +LYRAGAME_API void FLyraContextEffectLibraryLoadingComplete_DelegateWrapper(const FScriptDelegate& LyraContextEffectLibraryLoadingComplete, const TArray& LyraActiveContextEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execLoadEffects); \ + DECLARE_FUNCTION(execGetEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsLibrary(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsLibrary_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsLibrary, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsLibrary(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsLibrary(ULyraContextEffectsLibrary&&); \ + ULyraContextEffectsLibrary(const ULyraContextEffectsLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsLibrary); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsLibrary) \ + NO_API virtual ~ULyraContextEffectsLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_71_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h_74_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsLibrary_h + + +#define FOREACH_ENUM_ECONTEXTEFFECTSLIBRARYLOADSTATE(op) \ + op(EContextEffectsLibraryLoadState::Unloaded) \ + op(EContextEffectsLibraryLoadState::Loading) \ + op(EContextEffectsLibraryLoadState::Loaded) + +enum class EContextEffectsLibraryLoadState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp new file mode 100644 index 00000000..ebf59345 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.gen.cpp @@ -0,0 +1,595 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/ContextEffects/LyraContextEffectsSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraContextEffectsSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAudioComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +PHYSICSCORE_API UEnum* Z_Construct_UEnum_PhysicsCore_EPhysicalSurface(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraContextEffectsSettings +void ULyraContextEffectsSettings::StaticRegisterNativesULyraContextEffectsSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSettings); +UClass* Z_Construct_UClass_ULyraContextEffectsSettings_NoRegister() +{ + return ULyraContextEffectsSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "DisplayName", "LyraContextEffects" }, + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceTypeToContextMap_MetaData[] = { + { "Category", "LyraContextEffectsSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//\n" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SurfaceTypeToContextMap_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_SurfaceTypeToContextMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_SurfaceTypeToContextMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_ValueProp = { "SurfaceTypeToContextMap", nullptr, (EPropertyFlags)0x0000000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_Key_KeyProp = { "SurfaceTypeToContextMap_Key", nullptr, (EPropertyFlags)0x0000000000004001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(0, nullptr) }; // 161619406 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap = { "SurfaceTypeToContextMap", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSettings, SurfaceTypeToContextMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceTypeToContextMap_MetaData), NewProp_SurfaceTypeToContextMap_MetaData) }; // 161619406 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSettings_Statics::NewProp_SurfaceTypeToContextMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSettings_Statics::ClassParams = { + &ULyraContextEffectsSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::PropPointers), + 0, + 0x001000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSettings() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSettings::StaticClass(); +} +ULyraContextEffectsSettings::ULyraContextEffectsSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSettings); +ULyraContextEffectsSettings::~ULyraContextEffectsSettings() {} +// End Class ULyraContextEffectsSettings + +// Begin Class ULyraContextEffectsSet +void ULyraContextEffectsSet::StaticRegisterNativesULyraContextEffectsSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSet); +UClass* Z_Construct_UClass_ULyraContextEffectsSet_NoRegister() +{ + return ULyraContextEffectsSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LyraContextEffectsLibraries_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LyraContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_LyraContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries_ElementProp = { "LyraContextEffectsLibraries", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries = { "LyraContextEffectsLibraries", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSet, LyraContextEffectsLibraries), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LyraContextEffectsLibraries_MetaData), NewProp_LyraContextEffectsLibraries_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSet_Statics::NewProp_LyraContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSet_Statics::ClassParams = { + &ULyraContextEffectsSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSet() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSet::StaticClass(); +} +ULyraContextEffectsSet::ULyraContextEffectsSet(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSet); +ULyraContextEffectsSet::~ULyraContextEffectsSet() {} +// End Class ULyraContextEffectsSet + +// Begin Class ULyraContextEffectsSubsystem Function GetContextFromSurfaceType +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics +{ + struct LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms + { + TEnumAsByte PhysicalSurface; + FGameplayTag Context; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_PhysicalSurface; + static const UECodeGen_Private::FStructPropertyParams NewProp_Context; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_PhysicalSurface = { "PhysicalSurface", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms, PhysicalSurface), Z_Construct_UEnum_PhysicsCore_EPhysicalSurface, METADATA_PARAMS(0, nullptr) }; // 161619406 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms, Context), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms), &Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_PhysicalSurface, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "GetContextFromSurfaceType", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::LyraContextEffectsSubsystem_eventGetContextFromSurfaceType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execGetContextFromSurfaceType) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_PhysicalSurface); + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetContextFromSurfaceType(EPhysicalSurface(Z_Param_PhysicalSurface),Z_Param_Out_Context); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function GetContextFromSurfaceType + +// Begin Class ULyraContextEffectsSubsystem Function LoadAndAddContextEffectsLibraries +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics +{ + struct LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms + { + AActor* OwningActor; + TSet > ContextEffectsLibraries; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_ContextEffectsLibraries_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ContextEffectsLibraries; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries_ElementProp = { "ContextEffectsLibraries", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraContextEffectsLibrary_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries = { "ContextEffectsLibraries", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms, ContextEffectsLibraries), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_OwningActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::NewProp_ContextEffectsLibraries, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "LoadAndAddContextEffectsLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventLoadAndAddContextEffectsLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execLoadAndAddContextEffectsLibraries) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_GET_TSET(TSoftObjectPtr,Z_Param_ContextEffectsLibraries); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->LoadAndAddContextEffectsLibraries(Z_Param_OwningActor,Z_Param_ContextEffectsLibraries); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function LoadAndAddContextEffectsLibraries + +// Begin Class ULyraContextEffectsSubsystem Function SpawnContextEffects +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics +{ + struct LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms + { + const AActor* SpawningActor; + USceneComponent* AttachToComponent; + FName AttachPoint; + FVector LocationOffset; + FRotator RotationOffset; + FGameplayTag Effect; + FGameplayTagContainer Contexts; + TArray AudioOut; + TArray NiagaraOut; + FVector VFXScale; + float AudioVolume; + float AudioPitch; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "CPP_Default_AudioPitch", "1.000000" }, + { "CPP_Default_AudioVolume", "1.000000" }, + { "CPP_Default_VFXScale", "1.000000,1.000000,1.000000" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawningActor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachToComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachPoint_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RotationOffset_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioOut_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraOut_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawningActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AttachToComponent; + static const UECodeGen_Private::FNamePropertyParams NewProp_AttachPoint; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_RotationOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_Effect; + static const UECodeGen_Private::FStructPropertyParams NewProp_Contexts; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AudioOut_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AudioOut; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraOut_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NiagaraOut; + static const UECodeGen_Private::FStructPropertyParams NewProp_VFXScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AudioPitch; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_SpawningActor = { "SpawningActor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, SpawningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawningActor_MetaData), NewProp_SpawningActor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachToComponent = { "AttachToComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AttachToComponent), Z_Construct_UClass_USceneComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachToComponent_MetaData), NewProp_AttachToComponent_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachPoint = { "AttachPoint", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AttachPoint), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachPoint_MetaData), NewProp_AttachPoint_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_LocationOffset = { "LocationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, LocationOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationOffset_MetaData), NewProp_LocationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_RotationOffset = { "RotationOffset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, RotationOffset), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RotationOffset_MetaData), NewProp_RotationOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, Effect), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Contexts = { "Contexts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, Contexts), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut_Inner = { "AudioOut", nullptr, (EPropertyFlags)0x0000000000080000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UAudioComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut = { "AudioOut", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioOut), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioOut_MetaData), NewProp_AudioOut_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut_Inner = { "NiagaraOut", nullptr, (EPropertyFlags)0x0000000000080000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut = { "NiagaraOut", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, NiagaraOut), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraOut_MetaData), NewProp_NiagaraOut_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_VFXScale = { "VFXScale", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, VFXScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioVolume = { "AudioVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioPitch = { "AudioPitch", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms, AudioPitch), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_SpawningActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachToComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AttachPoint, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_LocationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_RotationOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Effect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_Contexts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioOut, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_NiagaraOut, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_VFXScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::NewProp_AudioPitch, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "SpawnContextEffects", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::LyraContextEffectsSubsystem_eventSpawnContextEffects_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execSpawnContextEffects) +{ + P_GET_OBJECT(AActor,Z_Param_SpawningActor); + P_GET_OBJECT(USceneComponent,Z_Param_AttachToComponent); + P_GET_PROPERTY(FNameProperty,Z_Param_AttachPoint); + P_GET_STRUCT(FVector,Z_Param_LocationOffset); + P_GET_STRUCT(FRotator,Z_Param_RotationOffset); + P_GET_STRUCT(FGameplayTag,Z_Param_Effect); + P_GET_STRUCT(FGameplayTagContainer,Z_Param_Contexts); + P_GET_TARRAY_REF(UAudioComponent*,Z_Param_Out_AudioOut); + P_GET_TARRAY_REF(UNiagaraComponent*,Z_Param_Out_NiagaraOut); + P_GET_STRUCT(FVector,Z_Param_VFXScale); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioVolume); + P_GET_PROPERTY(FFloatProperty,Z_Param_AudioPitch); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SpawnContextEffects(Z_Param_SpawningActor,Z_Param_AttachToComponent,Z_Param_AttachPoint,Z_Param_LocationOffset,Z_Param_RotationOffset,Z_Param_Effect,Z_Param_Contexts,Z_Param_Out_AudioOut,Z_Param_Out_NiagaraOut,Z_Param_VFXScale,Z_Param_AudioVolume,Z_Param_AudioPitch); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function SpawnContextEffects + +// Begin Class ULyraContextEffectsSubsystem Function UnloadAndRemoveContextEffectsLibraries +struct Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics +{ + struct LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "ContextEffects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraContextEffectsSubsystem, nullptr, "UnloadAndRemoveContextEffectsLibraries", nullptr, nullptr, Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::LyraContextEffectsSubsystem_eventUnloadAndRemoveContextEffectsLibraries_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraContextEffectsSubsystem::execUnloadAndRemoveContextEffectsLibraries) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnloadAndRemoveContextEffectsLibraries(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ULyraContextEffectsSubsystem Function UnloadAndRemoveContextEffectsLibraries + +// Begin Class ULyraContextEffectsSubsystem +void ULyraContextEffectsSubsystem::StaticRegisterNativesULyraContextEffectsSubsystem() +{ + UClass* Class = ULyraContextEffectsSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetContextFromSurfaceType", &ULyraContextEffectsSubsystem::execGetContextFromSurfaceType }, + { "LoadAndAddContextEffectsLibraries", &ULyraContextEffectsSubsystem::execLoadAndAddContextEffectsLibraries }, + { "SpawnContextEffects", &ULyraContextEffectsSubsystem::execSpawnContextEffects }, + { "UnloadAndRemoveContextEffectsLibraries", &ULyraContextEffectsSubsystem::execUnloadAndRemoveContextEffectsLibraries }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraContextEffectsSubsystem); +UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem_NoRegister() +{ + return ULyraContextEffectsSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveActorEffectsMap_MetaData[] = { + { "ModuleRelativePath", "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveActorEffectsMap_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActiveActorEffectsMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ActiveActorEffectsMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_GetContextFromSurfaceType, "GetContextFromSurfaceType" }, // 3029357560 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_LoadAndAddContextEffectsLibraries, "LoadAndAddContextEffectsLibraries" }, // 4094137175 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_SpawnContextEffects, "SpawnContextEffects" }, // 3493466618 + { &Z_Construct_UFunction_ULyraContextEffectsSubsystem_UnloadAndRemoveContextEffectsLibraries, "UnloadAndRemoveContextEffectsLibraries" }, // 1854305089 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_ValueProp = { "ActiveActorEffectsMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_ULyraContextEffectsSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_Key_KeyProp = { "ActiveActorEffectsMap_Key", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap = { "ActiveActorEffectsMap", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraContextEffectsSubsystem, ActiveActorEffectsMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveActorEffectsMap_MetaData), NewProp_ActiveActorEffectsMap_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::NewProp_ActiveActorEffectsMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::ClassParams = { + &ULyraContextEffectsSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraContextEffectsSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton, Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraContextEffectsSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraContextEffectsSubsystem::StaticClass(); +} +ULyraContextEffectsSubsystem::ULyraContextEffectsSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraContextEffectsSubsystem); +ULyraContextEffectsSubsystem::~ULyraContextEffectsSubsystem() {} +// End Class ULyraContextEffectsSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraContextEffectsSettings, ULyraContextEffectsSettings::StaticClass, TEXT("ULyraContextEffectsSettings"), &Z_Registration_Info_UClass_ULyraContextEffectsSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSettings), 1164594413U) }, + { Z_Construct_UClass_ULyraContextEffectsSet, ULyraContextEffectsSet::StaticClass, TEXT("ULyraContextEffectsSet"), &Z_Registration_Info_UClass_ULyraContextEffectsSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSet), 3972588694U) }, + { Z_Construct_UClass_ULyraContextEffectsSubsystem, ULyraContextEffectsSubsystem::StaticClass, TEXT("ULyraContextEffectsSubsystem"), &Z_Registration_Info_UClass_ULyraContextEffectsSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraContextEffectsSubsystem), 3090893694U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_1911929540(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h new file mode 100644 index 00000000..e70f86d7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsSubsystem.generated.h @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/ContextEffects/LyraContextEffectsSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UAudioComponent; +class ULyraContextEffectsLibrary; +class UNiagaraComponent; +class USceneComponent; +struct FGameplayTag; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraContextEffectsSubsystem_generated_h +#error "LyraContextEffectsSubsystem.generated.h already included, missing '#pragma once' in LyraContextEffectsSubsystem.h" +#endif +#define LYRAGAME_LyraContextEffectsSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSettings(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSettings(ULyraContextEffectsSettings&&); \ + ULyraContextEffectsSettings(const ULyraContextEffectsSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsSettings) \ + NO_API virtual ~ULyraContextEffectsSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSet(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSet, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSet(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSet(ULyraContextEffectsSet&&); \ + ULyraContextEffectsSet(const ULyraContextEffectsSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSet); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraContextEffectsSet) \ + NO_API virtual ~ULyraContextEffectsSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUnloadAndRemoveContextEffectsLibraries); \ + DECLARE_FUNCTION(execLoadAndAddContextEffectsLibraries); \ + DECLARE_FUNCTION(execGetContextFromSurfaceType); \ + DECLARE_FUNCTION(execSpawnContextEffects); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraContextEffectsSubsystem(); \ + friend struct Z_Construct_UClass_ULyraContextEffectsSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraContextEffectsSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraContextEffectsSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraContextEffectsSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraContextEffectsSubsystem(ULyraContextEffectsSubsystem&&); \ + ULyraContextEffectsSubsystem(const ULyraContextEffectsSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraContextEffectsSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraContextEffectsSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraContextEffectsSubsystem) \ + NO_API virtual ~ULyraContextEffectsSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_53_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_ContextEffects_LyraContextEffectsSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp new file mode 100644 index 00000000..2d30a580 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.gen.cpp @@ -0,0 +1,396 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraControllerComponent_CharacterParts.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraControllerComponent_CharacterParts() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraControllerCharacterPartEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry; +class UScriptStruct* FLyraControllerCharacterPartEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraControllerCharacterPartEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraControllerCharacterPartEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A character part requested on a controller component\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A character part requested on a controller component" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Part_MetaData[] = { + { "Category", "LyraControllerCharacterPartEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The character part being represented\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ShowOnlyInnerProperties", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The character part being represented" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Part; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewProp_Part = { "Part", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControllerCharacterPartEntry, Part), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Part_MetaData), NewProp_Part_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewProp_Part, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraControllerCharacterPartEntry", + Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::PropPointers), + sizeof(FLyraControllerCharacterPartEntry), + alignof(FLyraControllerCharacterPartEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry.InnerSingleton; +} +// End ScriptStruct FLyraControllerCharacterPartEntry + +// Begin Class ULyraControllerComponent_CharacterParts Function AddCharacterPart +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics +{ + struct LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms + { + FLyraCharacterPart NewPart; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part to the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part to the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewPart_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewPart; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart = { "NewPart", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms, NewPart), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewPart_MetaData), NewProp_NewPart_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execAddCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_NewPart); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddCharacterPart(Z_Param_Out_NewPart); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function AddCharacterPart + +// Begin Class ULyraControllerComponent_CharacterParts Function OnPossessedPawnChanged +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics +{ + struct LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms + { + APawn* OldPawn; + APawn* NewPawn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldPawn; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewPawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_OldPawn = { "OldPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms, OldPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_NewPawn = { "NewPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms, NewPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_OldPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::NewProp_NewPawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "OnPossessedPawnChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::LyraControllerComponent_CharacterParts_eventOnPossessedPawnChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execOnPossessedPawnChanged) +{ + P_GET_OBJECT(APawn,Z_Param_OldPawn); + P_GET_OBJECT(APawn,Z_Param_NewPawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPossessedPawnChanged(Z_Param_OldPawn,Z_Param_NewPawn); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function OnPossessedPawnChanged + +// Begin Class ULyraControllerComponent_CharacterParts Function RemoveAllCharacterParts +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes all added character parts, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes all added character parts, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "RemoveAllCharacterParts", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execRemoveAllCharacterParts) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAllCharacterParts(); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function RemoveAllCharacterParts + +// Begin Class ULyraControllerComponent_CharacterParts Function RemoveCharacterPart +struct Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics +{ + struct LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms + { + FLyraCharacterPart PartToRemove; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a previously added character part from the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a previously added character part from the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartToRemove_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PartToRemove; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_PartToRemove = { "PartToRemove", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms, PartToRemove), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartToRemove_MetaData), NewProp_PartToRemove_MetaData) }; // 2027995414 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_PartToRemove, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraControllerComponent_CharacterParts, nullptr, "RemoveCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::LyraControllerComponent_CharacterParts_eventRemoveCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraControllerComponent_CharacterParts::execRemoveCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_PartToRemove); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveCharacterPart(Z_Param_Out_PartToRemove); + P_NATIVE_END; +} +// End Class ULyraControllerComponent_CharacterParts Function RemoveCharacterPart + +// Begin Class ULyraControllerComponent_CharacterParts +void ULyraControllerComponent_CharacterParts::StaticRegisterNativesULyraControllerComponent_CharacterParts() +{ + UClass* Class = ULyraControllerComponent_CharacterParts::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraControllerComponent_CharacterParts::execAddCharacterPart }, + { "OnPossessedPawnChanged", &ULyraControllerComponent_CharacterParts::execOnPossessedPawnChanged }, + { "RemoveAllCharacterParts", &ULyraControllerComponent_CharacterParts::execRemoveAllCharacterParts }, + { "RemoveCharacterPart", &ULyraControllerComponent_CharacterParts::execRemoveCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraControllerComponent_CharacterParts); +UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts_NoRegister() +{ + return ULyraControllerComponent_CharacterParts::StaticClass(); +} +struct Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A component that configure what cosmetic actors to spawn for the owning controller when it possesses a pawn\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A component that configure what cosmetic actors to spawn for the owning controller when it possesses a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CharacterParts_MetaData[] = { + { "Category", "Cosmetics" }, + { "ModuleRelativePath", "Cosmetics/LyraControllerComponent_CharacterParts.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CharacterParts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CharacterParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_AddCharacterPart, "AddCharacterPart" }, // 2651924071 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_OnPossessedPawnChanged, "OnPossessedPawnChanged" }, // 2452039108 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveAllCharacterParts, "RemoveAllCharacterParts" }, // 2269004447 + { &Z_Construct_UFunction_ULyraControllerComponent_CharacterParts_RemoveCharacterPart, "RemoveCharacterPart" }, // 2814330132 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts_Inner = { "CharacterParts", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry, METADATA_PARAMS(0, nullptr) }; // 3833958016 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts = { "CharacterParts", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerComponent_CharacterParts, CharacterParts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CharacterParts_MetaData), NewProp_CharacterParts_MetaData) }; // 3833958016 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::NewProp_CharacterParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::ClassParams = { + &ULyraControllerComponent_CharacterParts::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraControllerComponent_CharacterParts() +{ + if (!Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton, Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraControllerComponent_CharacterParts::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraControllerComponent_CharacterParts); +ULyraControllerComponent_CharacterParts::~ULyraControllerComponent_CharacterParts() {} +// End Class ULyraControllerComponent_CharacterParts + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraControllerCharacterPartEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics::NewStructOps, TEXT("LyraControllerCharacterPartEntry"), &Z_Registration_Info_UScriptStruct_LyraControllerCharacterPartEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraControllerCharacterPartEntry), 3833958016U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraControllerComponent_CharacterParts, ULyraControllerComponent_CharacterParts::StaticClass, TEXT("ULyraControllerComponent_CharacterParts"), &Z_Registration_Info_UClass_ULyraControllerComponent_CharacterParts, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraControllerComponent_CharacterParts), 4235688293U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_2793586341(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h new file mode 100644 index 00000000..3a25a628 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerComponent_CharacterParts.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraControllerComponent_CharacterParts.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APawn; +struct FLyraCharacterPart; +#ifdef LYRAGAME_LyraControllerComponent_CharacterParts_generated_h +#error "LyraControllerComponent_CharacterParts.generated.h already included, missing '#pragma once' in LyraControllerComponent_CharacterParts.h" +#endif +#define LYRAGAME_LyraControllerComponent_CharacterParts_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_32_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraControllerCharacterPartEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPossessedPawnChanged); \ + DECLARE_FUNCTION(execRemoveAllCharacterParts); \ + DECLARE_FUNCTION(execRemoveCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraControllerComponent_CharacterParts(); \ + friend struct Z_Construct_UClass_ULyraControllerComponent_CharacterParts_Statics; \ +public: \ + DECLARE_CLASS(ULyraControllerComponent_CharacterParts, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraControllerComponent_CharacterParts) + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraControllerComponent_CharacterParts(ULyraControllerComponent_CharacterParts&&); \ + ULyraControllerComponent_CharacterParts(const ULyraControllerComponent_CharacterParts&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraControllerComponent_CharacterParts); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraControllerComponent_CharacterParts); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraControllerComponent_CharacterParts) \ + NO_API virtual ~ULyraControllerComponent_CharacterParts(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_52_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h_55_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraControllerComponent_CharacterParts_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp new file mode 100644 index 00000000..eb4ed54e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraControllerDisconnectedScreen.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraControllerDisconnectedScreen() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UHorizontalBox_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraControllerDisconnectedScreen +void ULyraControllerDisconnectedScreen::StaticRegisterNativesULyraControllerDisconnectedScreen() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraControllerDisconnectedScreen); +UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister() +{ + return ULyraControllerDisconnectedScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A screen to display when the user has had all of their controllers disconnected and needs to\n * re-connect them to continue playing the game.\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A screen to display when the user has had all of their controllers disconnected and needs to\nre-connect them to continue playing the game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformSupportsUserChangeTags_MetaData[] = { + { "Category", "LyraControllerDisconnectedScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Required platform traits that, when met, will display the \"Change User\" button\n\x09 * allowing the player to change what signed in user is currently mapped to an input\n\x09 * device.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Required platform traits that, when met, will display the \"Change User\" button\nallowing the player to change what signed in user is currently mapped to an input\ndevice." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HBox_SwitchUser_MetaData[] = { + { "BindWidget", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Platforms that have \"strict\" user pairing requirements may want to allow you to change your user right from\n\x09 * the in-game UI here. These platforms are tagged with \"Platform.Trait.Input.HasStrictControllerPairing\" in\n\x09 * Common UI.\n\x09 *\n\x09 * This HBox will be set to invisible if the platform you are on does NOT have that platform trait.\n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Platforms that have \"strict\" user pairing requirements may want to allow you to change your user right from\nthe in-game UI here. These platforms are tagged with \"Platform.Trait.Input.HasStrictControllerPairing\" in\nCommon UI.\n\nThis HBox will be set to invisible if the platform you are on does NOT have that platform trait." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_ChangeUser_MetaData[] = { + { "BindWidget", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* A button to handle changing the user on platforms with strict user pairing requirements.\n\x09* \n\x09* @see HBox_SwitchUser\n\x09*/" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Foundation/LyraControllerDisconnectedScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A button to handle changing the user on platforms with strict user pairing requirements.\n\n@see HBox_SwitchUser" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformSupportsUserChangeTags; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HBox_SwitchUser; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_ChangeUser; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_PlatformSupportsUserChangeTags = { "PlatformSupportsUserChangeTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, PlatformSupportsUserChangeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformSupportsUserChangeTags_MetaData), NewProp_PlatformSupportsUserChangeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_HBox_SwitchUser = { "HBox_SwitchUser", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, HBox_SwitchUser), Z_Construct_UClass_UHorizontalBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HBox_SwitchUser_MetaData), NewProp_HBox_SwitchUser_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_Button_ChangeUser = { "Button_ChangeUser", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraControllerDisconnectedScreen, Button_ChangeUser), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_ChangeUser_MetaData), NewProp_Button_ChangeUser_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_PlatformSupportsUserChangeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_HBox_SwitchUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::NewProp_Button_ChangeUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::ClassParams = { + &ULyraControllerDisconnectedScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen() +{ + if (!Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton, Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraControllerDisconnectedScreen::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraControllerDisconnectedScreen); +ULyraControllerDisconnectedScreen::~ULyraControllerDisconnectedScreen() {} +// End Class ULyraControllerDisconnectedScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraControllerDisconnectedScreen, ULyraControllerDisconnectedScreen::StaticClass, TEXT("ULyraControllerDisconnectedScreen"), &Z_Registration_Info_UClass_ULyraControllerDisconnectedScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraControllerDisconnectedScreen), 1282544126U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_140708990(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h new file mode 100644 index 00000000..a3f1d752 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraControllerDisconnectedScreen.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraControllerDisconnectedScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraControllerDisconnectedScreen_generated_h +#error "LyraControllerDisconnectedScreen.generated.h already included, missing '#pragma once' in LyraControllerDisconnectedScreen.h" +#endif +#define LYRAGAME_LyraControllerDisconnectedScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraControllerDisconnectedScreen(); \ + friend struct Z_Construct_UClass_ULyraControllerDisconnectedScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraControllerDisconnectedScreen, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraControllerDisconnectedScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraControllerDisconnectedScreen(ULyraControllerDisconnectedScreen&&); \ + ULyraControllerDisconnectedScreen(const ULyraControllerDisconnectedScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraControllerDisconnectedScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraControllerDisconnectedScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraControllerDisconnectedScreen) \ + NO_API virtual ~ULyraControllerDisconnectedScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraControllerDisconnectedScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp new file mode 100644 index 00000000..196c657f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.gen.cpp @@ -0,0 +1,394 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticAnimationTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPhysicsAsset_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USkeletalMesh_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAnimLayerSelectionEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry; +class UScriptStruct* FLyraAnimLayerSelectionEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimLayerSelectionEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimLayerSelectionEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layer_MetaData[] = { + { "Category", "LyraAnimLayerSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layer to apply if the tag matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layer to apply if the tag matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequiredTags_MetaData[] = { + { "Categories", "Cosmetic" }, + { "Category", "LyraAnimLayerSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Cosmetic tags required (all of these must be present to be considered a match)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic tags required (all of these must be present to be considered a match)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Layer; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_Layer = { "Layer", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionEntry, Layer), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layer_MetaData), NewProp_Layer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_RequiredTags = { "RequiredTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionEntry, RequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequiredTags_MetaData), NewProp_RequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_Layer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewProp_RequiredTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimLayerSelectionEntry", + Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::PropPointers), + sizeof(FLyraAnimLayerSelectionEntry), + alignof(FLyraAnimLayerSelectionEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry.InnerSingleton; +} +// End ScriptStruct FLyraAnimLayerSelectionEntry + +// Begin ScriptStruct FLyraAnimLayerSelectionSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet; +class UScriptStruct* FLyraAnimLayerSelectionSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimLayerSelectionSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimLayerSelectionSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerRules_MetaData[] = { + { "Category", "LyraAnimLayerSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of layer rules to apply, first one that matches will be used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + { "TitleProperty", "Layer" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of layer rules to apply, first one that matches will be used" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultLayer_MetaData[] = { + { "Category", "LyraAnimLayerSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to use if none of the LayerRules matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to use if none of the LayerRules matches" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LayerRules; + static const UECodeGen_Private::FClassPropertyParams NewProp_DefaultLayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules_Inner = { "LayerRules", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry, METADATA_PARAMS(0, nullptr) }; // 3711411297 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules = { "LayerRules", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionSet, LayerRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerRules_MetaData), NewProp_LayerRules_MetaData) }; // 3711411297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_DefaultLayer = { "DefaultLayer", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimLayerSelectionSet, DefaultLayer), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultLayer_MetaData), NewProp_DefaultLayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_LayerRules, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewProp_DefaultLayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimLayerSelectionSet", + Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::PropPointers), + sizeof(FLyraAnimLayerSelectionSet), + alignof(FLyraAnimLayerSelectionSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet.InnerSingleton; +} +// End ScriptStruct FLyraAnimLayerSelectionSet + +// Begin ScriptStruct FLyraAnimBodyStyleSelectionEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry; +class UScriptStruct* FLyraAnimBodyStyleSelectionEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimBodyStyleSelectionEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimBodyStyleSelectionEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Mesh_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Layer to apply if the tag matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Layer to apply if the tag matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequiredTags_MetaData[] = { + { "Categories", "Cosmetic" }, + { "Category", "LyraAnimBodyStyleSelectionEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Cosmetic tags required (all of these must be present to be considered a match)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic tags required (all of these must be present to be considered a match)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Mesh; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_Mesh = { "Mesh", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionEntry, Mesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Mesh_MetaData), NewProp_Mesh_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_RequiredTags = { "RequiredTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionEntry, RequiredTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequiredTags_MetaData), NewProp_RequiredTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_Mesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewProp_RequiredTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimBodyStyleSelectionEntry", + Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::PropPointers), + sizeof(FLyraAnimBodyStyleSelectionEntry), + alignof(FLyraAnimBodyStyleSelectionEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry.InnerSingleton; +} +// End ScriptStruct FLyraAnimBodyStyleSelectionEntry + +// Begin ScriptStruct FLyraAnimBodyStyleSelectionSet +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet; +class UScriptStruct* FLyraAnimBodyStyleSelectionSet::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAnimBodyStyleSelectionSet")); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAnimBodyStyleSelectionSet::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MeshRules_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of layer rules to apply, first one that matches will be used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, + { "TitleProperty", "Mesh" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of layer rules to apply, first one that matches will be used" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultMesh_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The layer to use if none of the LayerRules matches\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The layer to use if none of the LayerRules matches" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForcedPhysicsAsset_MetaData[] = { + { "Category", "LyraAnimBodyStyleSelectionSet" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If set, ensures this physics asset is always used\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticAnimationTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If set, ensures this physics asset is always used" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MeshRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MeshRules; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultMesh; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ForcedPhysicsAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules_Inner = { "MeshRules", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry, METADATA_PARAMS(0, nullptr) }; // 664770048 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules = { "MeshRules", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, MeshRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MeshRules_MetaData), NewProp_MeshRules_MetaData) }; // 664770048 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_DefaultMesh = { "DefaultMesh", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, DefaultMesh), Z_Construct_UClass_USkeletalMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultMesh_MetaData), NewProp_DefaultMesh_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_ForcedPhysicsAsset = { "ForcedPhysicsAsset", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAnimBodyStyleSelectionSet, ForcedPhysicsAsset), Z_Construct_UClass_UPhysicsAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForcedPhysicsAsset_MetaData), NewProp_ForcedPhysicsAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_MeshRules, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_DefaultMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewProp_ForcedPhysicsAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAnimBodyStyleSelectionSet", + Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::PropPointers), + sizeof(FLyraAnimBodyStyleSelectionSet), + alignof(FLyraAnimBodyStyleSelectionSet), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet.InnerSingleton; +} +// End ScriptStruct FLyraAnimBodyStyleSelectionSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAnimLayerSelectionEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics::NewStructOps, TEXT("LyraAnimLayerSelectionEntry"), &Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimLayerSelectionEntry), 3711411297U) }, + { FLyraAnimLayerSelectionSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics::NewStructOps, TEXT("LyraAnimLayerSelectionSet"), &Z_Registration_Info_UScriptStruct_LyraAnimLayerSelectionSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimLayerSelectionSet), 3591606580U) }, + { FLyraAnimBodyStyleSelectionEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics::NewStructOps, TEXT("LyraAnimBodyStyleSelectionEntry"), &Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimBodyStyleSelectionEntry), 664770048U) }, + { FLyraAnimBodyStyleSelectionSet::StaticStruct, Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics::NewStructOps, TEXT("LyraAnimBodyStyleSelectionSet"), &Z_Registration_Info_UScriptStruct_LyraAnimBodyStyleSelectionSet, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAnimBodyStyleSelectionSet), 181859200U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_1590159237(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h new file mode 100644 index 00000000..6e6d5070 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticAnimationTypes.generated.h @@ -0,0 +1,49 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticAnimationTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticAnimationTypes_generated_h +#error "LyraCosmeticAnimationTypes.generated.h already included, missing '#pragma once' in LyraCosmeticAnimationTypes.h" +#endif +#define LYRAGAME_LyraCosmeticAnimationTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_52_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h_66_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticAnimationTypes_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp new file mode 100644 index 00000000..e6c3116c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.gen.cpp @@ -0,0 +1,270 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraCosmeticCheats Function AddCharacterPart +struct Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics +{ + struct LyraCosmeticCheats_eventAddCharacterPart_Parms + { + FString AssetName; + bool bSuppressNaturalParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part\n" }, +#endif + { "CPP_Default_bSuppressNaturalParts", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssetName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AssetName; + static void NewProp_bSuppressNaturalParts_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressNaturalParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_AssetName = { "AssetName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCosmeticCheats_eventAddCharacterPart_Parms, AssetName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssetName_MetaData), NewProp_AssetName_MetaData) }; +void Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit(void* Obj) +{ + ((LyraCosmeticCheats_eventAddCharacterPart_Parms*)Obj)->bSuppressNaturalParts = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts = { "bSuppressNaturalParts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraCosmeticCheats_eventAddCharacterPart_Parms), &Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_AssetName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::NewProp_bSuppressNaturalParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::LyraCosmeticCheats_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::LyraCosmeticCheats_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execAddCharacterPart) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AssetName); + P_GET_UBOOL(Z_Param_bSuppressNaturalParts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddCharacterPart(Z_Param_AssetName,Z_Param_bSuppressNaturalParts); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function AddCharacterPart + +// Begin Class ULyraCosmeticCheats Function ClearCharacterPartOverrides +struct Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Clears any existing cheats\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clears any existing cheats" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "ClearCharacterPartOverrides", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execClearCharacterPartOverrides) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClearCharacterPartOverrides(); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function ClearCharacterPartOverrides + +// Begin Class ULyraCosmeticCheats Function ReplaceCharacterPart +struct Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics +{ + struct LyraCosmeticCheats_eventReplaceCharacterPart_Parms + { + FString AssetName; + bool bSuppressNaturalParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replaces previous cheat parts with a new one\n" }, +#endif + { "CPP_Default_bSuppressNaturalParts", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replaces previous cheat parts with a new one" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssetName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AssetName; + static void NewProp_bSuppressNaturalParts_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressNaturalParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_AssetName = { "AssetName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraCosmeticCheats_eventReplaceCharacterPart_Parms, AssetName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssetName_MetaData), NewProp_AssetName_MetaData) }; +void Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit(void* Obj) +{ + ((LyraCosmeticCheats_eventReplaceCharacterPart_Parms*)Obj)->bSuppressNaturalParts = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts = { "bSuppressNaturalParts", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraCosmeticCheats_eventReplaceCharacterPart_Parms), &Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_AssetName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::NewProp_bSuppressNaturalParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraCosmeticCheats, nullptr, "ReplaceCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::LyraCosmeticCheats_eventReplaceCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020605, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::LyraCosmeticCheats_eventReplaceCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraCosmeticCheats::execReplaceCharacterPart) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AssetName); + P_GET_UBOOL(Z_Param_bSuppressNaturalParts); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReplaceCharacterPart(Z_Param_AssetName,Z_Param_bSuppressNaturalParts); + P_NATIVE_END; +} +// End Class ULyraCosmeticCheats Function ReplaceCharacterPart + +// Begin Class ULyraCosmeticCheats +void ULyraCosmeticCheats::StaticRegisterNativesULyraCosmeticCheats() +{ + UClass* Class = ULyraCosmeticCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraCosmeticCheats::execAddCharacterPart }, + { "ClearCharacterPartOverrides", &ULyraCosmeticCheats::execClearCharacterPartOverrides }, + { "ReplaceCharacterPart", &ULyraCosmeticCheats::execReplaceCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCosmeticCheats); +UClass* Z_Construct_UClass_ULyraCosmeticCheats_NoRegister() +{ + return ULyraCosmeticCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraCosmeticCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to bots */" }, +#endif + { "IncludePath", "Cosmetics/LyraCosmeticCheats.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to bots" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraCosmeticCheats_AddCharacterPart, "AddCharacterPart" }, // 1878283905 + { &Z_Construct_UFunction_ULyraCosmeticCheats_ClearCharacterPartOverrides, "ClearCharacterPartOverrides" }, // 3738419877 + { &Z_Construct_UFunction_ULyraCosmeticCheats_ReplaceCharacterPart, "ReplaceCharacterPart" }, // 3408776827 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraCosmeticCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCosmeticCheats_Statics::ClassParams = { + &ULyraCosmeticCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCosmeticCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCosmeticCheats() +{ + if (!Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton, Z_Construct_UClass_ULyraCosmeticCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCosmeticCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCosmeticCheats::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCosmeticCheats); +ULyraCosmeticCheats::~ULyraCosmeticCheats() {} +// End Class ULyraCosmeticCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCosmeticCheats, ULyraCosmeticCheats::StaticClass, TEXT("ULyraCosmeticCheats"), &Z_Registration_Info_UClass_ULyraCosmeticCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCosmeticCheats), 1407295015U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_3650814609(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h new file mode 100644 index 00000000..888ea3bd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticCheats.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticCheats_generated_h +#error "LyraCosmeticCheats.generated.h already included, missing '#pragma once' in LyraCosmeticCheats.h" +#endif +#define LYRAGAME_LyraCosmeticCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execClearCharacterPartOverrides); \ + DECLARE_FUNCTION(execReplaceCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCosmeticCheats(); \ + friend struct Z_Construct_UClass_ULyraCosmeticCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraCosmeticCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraCosmeticCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCosmeticCheats(ULyraCosmeticCheats&&); \ + ULyraCosmeticCheats(const ULyraCosmeticCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCosmeticCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCosmeticCheats); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCosmeticCheats) \ + NO_API virtual ~ULyraCosmeticCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp new file mode 100644 index 00000000..120233c7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.gen.cpp @@ -0,0 +1,177 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraCosmeticDeveloperSettings.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCosmeticDeveloperSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECosmeticCheatMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECosmeticCheatMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECosmeticCheatMode; +static UEnum* ECosmeticCheatMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECosmeticCheatMode")); + } + return Z_Registration_Info_UEnum_ECosmeticCheatMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECosmeticCheatMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AddParts.Name", "ECosmeticCheatMode::AddParts" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + { "ReplaceParts.Name", "ECosmeticCheatMode::ReplaceParts" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECosmeticCheatMode::ReplaceParts", (int64)ECosmeticCheatMode::ReplaceParts }, + { "ECosmeticCheatMode::AddParts", (int64)ECosmeticCheatMode::AddParts }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECosmeticCheatMode", + "ECosmeticCheatMode", + Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECosmeticCheatMode() +{ + if (!Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ECosmeticCheatMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECosmeticCheatMode.InnerSingleton; +} +// End Enum ECosmeticCheatMode + +// Begin Class ULyraCosmeticDeveloperSettings +void ULyraCosmeticDeveloperSettings::StaticRegisterNativesULyraCosmeticDeveloperSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCosmeticDeveloperSettings); +UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings_NoRegister() +{ + return ULyraCosmeticDeveloperSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Cosmetic developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cosmetic developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatCosmeticCharacterParts_MetaData[] = { + { "Category", "LyraCosmeticDeveloperSettings" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatMode_MetaData[] = { + { "Category", "LyraCosmeticDeveloperSettings" }, + { "ModuleRelativePath", "Cosmetics/LyraCosmeticDeveloperSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CheatCosmeticCharacterParts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CheatCosmeticCharacterParts; + static const UECodeGen_Private::FIntPropertyParams NewProp_CheatMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_CheatMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts_Inner = { "CheatCosmeticCharacterParts", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(0, nullptr) }; // 2027995414 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts = { "CheatCosmeticCharacterParts", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCosmeticDeveloperSettings, CheatCosmeticCharacterParts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatCosmeticCharacterParts_MetaData), NewProp_CheatCosmeticCharacterParts_MetaData) }; // 2027995414 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode = { "CheatMode", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCosmeticDeveloperSettings, CheatMode), Z_Construct_UEnum_LyraGame_ECosmeticCheatMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatMode_MetaData), NewProp_CheatMode_MetaData) }; // 3137659677 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatCosmeticCharacterParts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::NewProp_CheatMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::ClassParams = { + &ULyraCosmeticDeveloperSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCosmeticDeveloperSettings() +{ + if (!Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton, Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraCosmeticDeveloperSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCosmeticDeveloperSettings); +ULyraCosmeticDeveloperSettings::~ULyraCosmeticDeveloperSettings() {} +// End Class ULyraCosmeticDeveloperSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECosmeticCheatMode_StaticEnum, TEXT("ECosmeticCheatMode"), &Z_Registration_Info_UEnum_ECosmeticCheatMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3137659677U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCosmeticDeveloperSettings, ULyraCosmeticDeveloperSettings::StaticClass, TEXT("ULyraCosmeticDeveloperSettings"), &Z_Registration_Info_UClass_ULyraCosmeticDeveloperSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCosmeticDeveloperSettings), 472237876U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_159793533(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h new file mode 100644 index 00000000..7dad4638 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCosmeticDeveloperSettings.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraCosmeticDeveloperSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraCosmeticDeveloperSettings_generated_h +#error "LyraCosmeticDeveloperSettings.generated.h already included, missing '#pragma once' in LyraCosmeticDeveloperSettings.h" +#endif +#define LYRAGAME_LyraCosmeticDeveloperSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCosmeticDeveloperSettings(); \ + friend struct Z_Construct_UClass_ULyraCosmeticDeveloperSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraCosmeticDeveloperSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraCosmeticDeveloperSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCosmeticDeveloperSettings(ULyraCosmeticDeveloperSettings&&); \ + ULyraCosmeticDeveloperSettings(const ULyraCosmeticDeveloperSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraCosmeticDeveloperSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCosmeticDeveloperSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraCosmeticDeveloperSettings) \ + LYRAGAME_API virtual ~ULyraCosmeticDeveloperSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraCosmeticDeveloperSettings_h + + +#define FOREACH_ENUM_ECOSMETICCHEATMODE(op) \ + op(ECosmeticCheatMode::ReplaceParts) \ + op(ECosmeticCheatMode::AddParts) + +enum class ECosmeticCheatMode; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp new file mode 100644 index 00000000..d4799cb6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Executions/LyraDamageExecution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamageExecution() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectExecutionCalculation(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageExecution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageExecution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamageExecution +void ULyraDamageExecution::StaticRegisterNativesULyraDamageExecution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamageExecution); +UClass* Z_Construct_UClass_ULyraDamageExecution_NoRegister() +{ + return ULyraDamageExecution::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamageExecution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraDamageExecution\n *\n *\x09""Execution used by gameplay effects to apply damage to the health attributes.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Executions/LyraDamageExecution.h" }, + { "ModuleRelativePath", "AbilitySystem/Executions/LyraDamageExecution.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraDamageExecution\n\n Execution used by gameplay effects to apply damage to the health attributes." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraDamageExecution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectExecutionCalculation, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageExecution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamageExecution_Statics::ClassParams = { + &ULyraDamageExecution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageExecution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamageExecution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamageExecution() +{ + if (!Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton, Z_Construct_UClass_ULyraDamageExecution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamageExecution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamageExecution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamageExecution); +ULyraDamageExecution::~ULyraDamageExecution() {} +// End Class ULyraDamageExecution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamageExecution, ULyraDamageExecution::StaticClass, TEXT("ULyraDamageExecution"), &Z_Registration_Info_UClass_ULyraDamageExecution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamageExecution), 1510166450U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_2187272732(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.generated.h new file mode 100644 index 00000000..a12214fb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageExecution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Executions/LyraDamageExecution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamageExecution_generated_h +#error "LyraDamageExecution.generated.h already included, missing '#pragma once' in LyraDamageExecution.h" +#endif +#define LYRAGAME_LyraDamageExecution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamageExecution(); \ + friend struct Z_Construct_UClass_ULyraDamageExecution_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamageExecution, UGameplayEffectExecutionCalculation, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamageExecution) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamageExecution(ULyraDamageExecution&&); \ + ULyraDamageExecution(const ULyraDamageExecution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamageExecution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamageExecution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDamageExecution) \ + NO_API virtual ~ULyraDamageExecution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraDamageExecution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp new file mode 100644 index 00000000..e10638c2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.gen.cpp @@ -0,0 +1,105 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraDamageLogDebuggerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamageLogDebuggerComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamageLogDebuggerComponent +void ULyraDamageLogDebuggerComponent::StaticRegisterNativesULyraDamageLogDebuggerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamageLogDebuggerComponent); +UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent_NoRegister() +{ + return ULyraDamageLogDebuggerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, + { "IncludePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SecondsBetweenDamageBeforeLogging_MetaData[] = { + { "Category", "LyraDamageLogDebuggerComponent" }, + { "ModuleRelativePath", "Weapons/LyraDamageLogDebuggerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_SecondsBetweenDamageBeforeLogging; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::NewProp_SecondsBetweenDamageBeforeLogging = { "SecondsBetweenDamageBeforeLogging", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamageLogDebuggerComponent, SecondsBetweenDamageBeforeLogging), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SecondsBetweenDamageBeforeLogging_MetaData), NewProp_SecondsBetweenDamageBeforeLogging_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::NewProp_SecondsBetweenDamageBeforeLogging, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::ClassParams = { + &ULyraDamageLogDebuggerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamageLogDebuggerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton, Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamageLogDebuggerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamageLogDebuggerComponent); +ULyraDamageLogDebuggerComponent::~ULyraDamageLogDebuggerComponent() {} +// End Class ULyraDamageLogDebuggerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamageLogDebuggerComponent, ULyraDamageLogDebuggerComponent::StaticClass, TEXT("ULyraDamageLogDebuggerComponent"), &Z_Registration_Info_UClass_ULyraDamageLogDebuggerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamageLogDebuggerComponent), 640374043U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_1306523471(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h new file mode 100644 index 00000000..b0f401d6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamageLogDebuggerComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraDamageLogDebuggerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamageLogDebuggerComponent_generated_h +#error "LyraDamageLogDebuggerComponent.generated.h already included, missing '#pragma once' in LyraDamageLogDebuggerComponent.h" +#endif +#define LYRAGAME_LyraDamageLogDebuggerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamageLogDebuggerComponent(); \ + friend struct Z_Construct_UClass_ULyraDamageLogDebuggerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamageLogDebuggerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamageLogDebuggerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamageLogDebuggerComponent(ULyraDamageLogDebuggerComponent&&); \ + ULyraDamageLogDebuggerComponent(const ULyraDamageLogDebuggerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamageLogDebuggerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamageLogDebuggerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDamageLogDebuggerComponent) \ + NO_API virtual ~ULyraDamageLogDebuggerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraDamageLogDebuggerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp new file mode 100644 index 00000000..6ccda47d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraDamagePopStyle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamagePopStyle() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagQuery(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamagePopStyle +void ULyraDamagePopStyle::StaticRegisterNativesULyraDamagePopStyle() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamagePopStyle); +UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister() +{ + return ULyraDamagePopStyle::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamagePopStyle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayText_MetaData[] = { + { "Category", "DamagePop" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MatchPattern_MetaData[] = { + { "Category", "DamagePop" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Color_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideColor" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CriticalColor_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideColor" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextMesh_MetaData[] = { + { "Category", "DamagePop" }, + { "EditCondition", "bOverrideMesh" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideColor_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideMesh_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyle.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DisplayText; + static const UECodeGen_Private::FStructPropertyParams NewProp_MatchPattern; + static const UECodeGen_Private::FStructPropertyParams NewProp_Color; + static const UECodeGen_Private::FStructPropertyParams NewProp_CriticalColor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextMesh; + static void NewProp_bOverrideColor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideColor; + static void NewProp_bOverrideMesh_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideMesh; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_DisplayText = { "DisplayText", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, DisplayText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayText_MetaData), NewProp_DisplayText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_MatchPattern = { "MatchPattern", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, MatchPattern), Z_Construct_UScriptStruct_FGameplayTagQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MatchPattern_MetaData), NewProp_MatchPattern_MetaData) }; // 572225232 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_Color = { "Color", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, Color), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Color_MetaData), NewProp_Color_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_CriticalColor = { "CriticalColor", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, CriticalColor), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CriticalColor_MetaData), NewProp_CriticalColor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_TextMesh = { "TextMesh", nullptr, (EPropertyFlags)0x0114000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyle, TextMesh), Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextMesh_MetaData), NewProp_TextMesh_MetaData) }; +void Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor_SetBit(void* Obj) +{ + ((ULyraDamagePopStyle*)Obj)->bOverrideColor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor = { "bOverrideColor", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDamagePopStyle), &Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideColor_MetaData), NewProp_bOverrideColor_MetaData) }; +void Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh_SetBit(void* Obj) +{ + ((ULyraDamagePopStyle*)Obj)->bOverrideMesh = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh = { "bOverrideMesh", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDamagePopStyle), &Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideMesh_MetaData), NewProp_bOverrideMesh_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_DisplayText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_MatchPattern, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_Color, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_CriticalColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_TextMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyle_Statics::NewProp_bOverrideMesh, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamagePopStyle_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamagePopStyle_Statics::ClassParams = { + &ULyraDamagePopStyle::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyle_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamagePopStyle_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamagePopStyle() +{ + if (!Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton, Z_Construct_UClass_ULyraDamagePopStyle_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamagePopStyle.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamagePopStyle::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamagePopStyle); +ULyraDamagePopStyle::~ULyraDamagePopStyle() {} +// End Class ULyraDamagePopStyle + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamagePopStyle, ULyraDamagePopStyle::StaticClass, TEXT("ULyraDamagePopStyle"), &Z_Registration_Info_UClass_ULyraDamagePopStyle, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamagePopStyle), 3693153276U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_3086197041(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h new file mode 100644 index 00000000..c88023fb --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyle.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraDamagePopStyle.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamagePopStyle_generated_h +#error "LyraDamagePopStyle.generated.h already included, missing '#pragma once' in LyraDamagePopStyle.h" +#endif +#define LYRAGAME_LyraDamagePopStyle_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamagePopStyle(); \ + friend struct Z_Construct_UClass_ULyraDamagePopStyle_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamagePopStyle, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamagePopStyle) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamagePopStyle(ULyraDamagePopStyle&&); \ + ULyraDamagePopStyle(const ULyraDamagePopStyle&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamagePopStyle); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamagePopStyle); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDamagePopStyle) \ + NO_API virtual ~ULyraDamagePopStyle(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyle_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp new file mode 100644 index 00000000..f8895b98 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraDamagePopStyleNiagara.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDamagePopStyleNiagara() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDamagePopStyleNiagara +void ULyraDamagePopStyleNiagara::StaticRegisterNativesULyraDamagePopStyleNiagara() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDamagePopStyleNiagara); +UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister() +{ + return ULyraDamagePopStyleNiagara::StaticClass(); +} +struct Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/*PopStyle is used to define what Niagara asset should be used for the Damage System representation*/" }, +#endif + { "IncludePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "PopStyle is used to define what Niagara asset should be used for the Damage System representation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraArrayName_MetaData[] = { + { "Category", "DamagePop" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Name of the Niagra Array to set the Damage informations\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the Niagra Array to set the Damage informations" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextNiagara_MetaData[] = { + { "Category", "DamagePop" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Niagara System used to display the damages\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Niagara System used to display the damages" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NiagaraArrayName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextNiagara; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_NiagaraArrayName = { "NiagaraArrayName", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyleNiagara, NiagaraArrayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraArrayName_MetaData), NewProp_NiagaraArrayName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_TextNiagara = { "TextNiagara", nullptr, (EPropertyFlags)0x0114000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDamagePopStyleNiagara, TextNiagara), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextNiagara_MetaData), NewProp_TextNiagara_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_NiagaraArrayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::NewProp_TextNiagara, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::ClassParams = { + &ULyraDamagePopStyleNiagara::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara() +{ + if (!Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton, Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDamagePopStyleNiagara::StaticClass(); +} +ULyraDamagePopStyleNiagara::ULyraDamagePopStyleNiagara(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDamagePopStyleNiagara); +ULyraDamagePopStyleNiagara::~ULyraDamagePopStyleNiagara() {} +// End Class ULyraDamagePopStyleNiagara + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDamagePopStyleNiagara, ULyraDamagePopStyleNiagara::StaticClass, TEXT("ULyraDamagePopStyleNiagara"), &Z_Registration_Info_UClass_ULyraDamagePopStyleNiagara, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDamagePopStyleNiagara), 3108807808U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_2506536618(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h new file mode 100644 index 00000000..12f30325 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraDamagePopStyleNiagara.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDamagePopStyleNiagara_generated_h +#error "LyraDamagePopStyleNiagara.generated.h already included, missing '#pragma once' in LyraDamagePopStyleNiagara.h" +#endif +#define LYRAGAME_LyraDamagePopStyleNiagara_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDamagePopStyleNiagara(); \ + friend struct Z_Construct_UClass_ULyraDamagePopStyleNiagara_Statics; \ +public: \ + DECLARE_CLASS(ULyraDamagePopStyleNiagara, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDamagePopStyleNiagara) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraDamagePopStyleNiagara(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDamagePopStyleNiagara(ULyraDamagePopStyleNiagara&&); \ + ULyraDamagePopStyleNiagara(const ULyraDamagePopStyleNiagara&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDamagePopStyleNiagara); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDamagePopStyleNiagara); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDamagePopStyleNiagara) \ + NO_API virtual ~ULyraDamagePopStyleNiagara(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraDamagePopStyleNiagara_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp new file mode 100644 index 00000000..a7a97031 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraDebugCameraController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDebugCameraController() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ADebugCameraController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraDebugCameraController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraDebugCameraController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraDebugCameraController +void ALyraDebugCameraController::StaticRegisterNativesALyraDebugCameraController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraDebugCameraController); +UClass* Z_Construct_UClass_ALyraDebugCameraController_NoRegister() +{ + return ALyraDebugCameraController::StaticClass(); +} +struct Z_Construct_UClass_ALyraDebugCameraController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraDebugCameraController\n *\n *\x09Used for controlling the debug camera when it is enabled via the cheat manager.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraDebugCameraController.h" }, + { "ModuleRelativePath", "Player/LyraDebugCameraController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraDebugCameraController\n\n Used for controlling the debug camera when it is enabled via the cheat manager." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraDebugCameraController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ADebugCameraController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraDebugCameraController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraDebugCameraController_Statics::ClassParams = { + &ALyraDebugCameraController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraDebugCameraController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraDebugCameraController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraDebugCameraController() +{ + if (!Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton, Z_Construct_UClass_ALyraDebugCameraController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraDebugCameraController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraDebugCameraController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraDebugCameraController); +ALyraDebugCameraController::~ALyraDebugCameraController() {} +// End Class ALyraDebugCameraController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraDebugCameraController, ALyraDebugCameraController::StaticClass, TEXT("ALyraDebugCameraController"), &Z_Registration_Info_UClass_ALyraDebugCameraController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraDebugCameraController), 3964773842U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_2791657467(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h new file mode 100644 index 00000000..82738b9f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDebugCameraController.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraDebugCameraController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDebugCameraController_generated_h +#error "LyraDebugCameraController.generated.h already included, missing '#pragma once' in LyraDebugCameraController.h" +#endif +#define LYRAGAME_LyraDebugCameraController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraDebugCameraController(); \ + friend struct Z_Construct_UClass_ALyraDebugCameraController_Statics; \ +public: \ + DECLARE_CLASS(ALyraDebugCameraController, ADebugCameraController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraDebugCameraController) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraDebugCameraController(ALyraDebugCameraController&&); \ + ALyraDebugCameraController(const ALyraDebugCameraController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraDebugCameraController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraDebugCameraController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraDebugCameraController) \ + NO_API virtual ~ALyraDebugCameraController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraDebugCameraController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp new file mode 100644 index 00000000..79a649d1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.gen.cpp @@ -0,0 +1,398 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraDeveloperSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDeveloperSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftObjectPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDeveloperSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ECheatExecutionTime(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCheatToRun(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ECheatExecutionTime +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECheatExecutionTime; +static UEnum* ECheatExecutionTime_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton) + { + Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ECheatExecutionTime, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ECheatExecutionTime")); + } + return Z_Registration_Info_UEnum_ECheatExecutionTime.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ECheatExecutionTime_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + { "OnCheatManagerCreated.Comment", "// When the cheat manager is created\n" }, + { "OnCheatManagerCreated.Name", "ECheatExecutionTime::OnCheatManagerCreated" }, + { "OnCheatManagerCreated.ToolTip", "When the cheat manager is created" }, + { "OnPlayerPawnPossession.Comment", "// When a pawn is possessed by a player\n" }, + { "OnPlayerPawnPossession.Name", "ECheatExecutionTime::OnPlayerPawnPossession" }, + { "OnPlayerPawnPossession.ToolTip", "When a pawn is possessed by a player" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECheatExecutionTime::OnCheatManagerCreated", (int64)ECheatExecutionTime::OnCheatManagerCreated }, + { "ECheatExecutionTime::OnPlayerPawnPossession", (int64)ECheatExecutionTime::OnPlayerPawnPossession }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ECheatExecutionTime", + "ECheatExecutionTime", + Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ECheatExecutionTime() +{ + if (!Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton, Z_Construct_UEnum_LyraGame_ECheatExecutionTime_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECheatExecutionTime.InnerSingleton; +} +// End Enum ECheatExecutionTime + +// Begin ScriptStruct FLyraCheatToRun +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCheatToRun; +class UScriptStruct* FLyraCheatToRun::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCheatToRun, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCheatToRun")); + } + return Z_Registration_Info_UScriptStruct_LyraCheatToRun.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCheatToRun::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraCheatToRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Phase_MetaData[] = { + { "Category", "LyraCheatToRun" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Cheat_MetaData[] = { + { "Category", "LyraCheatToRun" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Phase_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Phase; + static const UECodeGen_Private::FStrPropertyParams NewProp_Cheat; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCheatToRun, Phase), Z_Construct_UEnum_LyraGame_ECheatExecutionTime, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Phase_MetaData), NewProp_Phase_MetaData) }; // 1272832148 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Cheat = { "Cheat", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCheatToRun, Cheat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Cheat_MetaData), NewProp_Cheat_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Phase, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewProp_Cheat, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraCheatToRun", + Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::PropPointers), + sizeof(FLyraCheatToRun), + alignof(FLyraCheatToRun), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCheatToRun() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton, Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCheatToRun.InnerSingleton; +} +// End ScriptStruct FLyraCheatToRun + +// Begin Class ULyraDeveloperSettings +void ULyraDeveloperSettings::StaticRegisterNativesULyraDeveloperSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDeveloperSettings); +UClass* Z_Construct_UClass_ULyraDeveloperSettings_NoRegister() +{ + return ULyraDeveloperSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraDeveloperSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "Development/LyraDeveloperSettings.h" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceOverride_MetaData[] = { + { "AllowedTypes", "LyraExperienceDefinition" }, + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The experience override to use for Play in Editor (if not set, the default for the world settings of the open map will be used)\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The experience override to use for Play in Editor (if not set, the default for the world settings of the open map will be used)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideBotCount_MetaData[] = { + { "Category", "LyraBots" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverrideNumPlayerBotsToSpawn_MetaData[] = { + { "Category", "LyraBots" }, + { "EditCondition", "bOverrideBotCount" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAllowPlayerBotsToAttack_MetaData[] = { + { "Category", "LyraBots" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTestFullGameFlowInPIE_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do the full game flow when playing in the editor, or skip 'waiting for player' / etc... game phases?\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do the full game flow when playing in the editor, or skip 'waiting for player' / etc... game phases?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShouldAlwaysPlayForceFeedback_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Should force feedback effects be played, even if the last input device was not a gamepad?\n\x09* The default behavior in Lyra is to only play force feedback if the most recent input device was a gamepad.\n\x09*/" }, +#endif + { "ConsoleVariable", "LyraPC.ShouldAlwaysPlayForceFeedback" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should force feedback effects be played, even if the last input device was not a gamepad?\nThe default behavior in Lyra is to only play force feedback if the most recent input device was a gamepad." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor or skip them for iteration speed?\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor or skip them for iteration speed?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheatsToRun_MetaData[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of cheats to auto-run during 'play in editor'\n" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of cheats to auto-run during 'play in editor'" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogGameplayMessages_MetaData[] = { + { "Category", "GameplayMessages" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should messages broadcast through the gameplay message subsystem be logged?\n" }, +#endif + { "ConsoleVariable", "GameplayMessageSubsystem.LogMessages" }, + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should messages broadcast through the gameplay message subsystem be logged?" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CommonEditorMaps_MetaData[] = { + { "AllowedClasses", "/Script/Engine.World" }, + { "Category", "Maps" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A list of common maps that will be accessible via the editor detoolbar */" }, +#endif + { "ModuleRelativePath", "Development/LyraDeveloperSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A list of common maps that will be accessible via the editor detoolbar" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExperienceOverride; + static void NewProp_bOverrideBotCount_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideBotCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_OverrideNumPlayerBotsToSpawn; + static void NewProp_bAllowPlayerBotsToAttack_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAllowPlayerBotsToAttack; + static void NewProp_bTestFullGameFlowInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTestFullGameFlowInPIE; + static void NewProp_bShouldAlwaysPlayForceFeedback_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShouldAlwaysPlayForceFeedback; + static void NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSkipLoadingCosmeticBackgroundsInPIE; + static const UECodeGen_Private::FStructPropertyParams NewProp_CheatsToRun_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CheatsToRun; + static void NewProp_LogGameplayMessages_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_LogGameplayMessages; +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CommonEditorMaps_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CommonEditorMaps; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_ExperienceOverride = { "ExperienceOverride", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, ExperienceOverride), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceOverride_MetaData), NewProp_ExperienceOverride_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bOverrideBotCount = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount = { "bOverrideBotCount", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideBotCount_MetaData), NewProp_bOverrideBotCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_OverrideNumPlayerBotsToSpawn = { "OverrideNumPlayerBotsToSpawn", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, OverrideNumPlayerBotsToSpawn), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverrideNumPlayerBotsToSpawn_MetaData), NewProp_OverrideNumPlayerBotsToSpawn_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bAllowPlayerBotsToAttack = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack = { "bAllowPlayerBotsToAttack", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAllowPlayerBotsToAttack_MetaData), NewProp_bAllowPlayerBotsToAttack_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bTestFullGameFlowInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE = { "bTestFullGameFlowInPIE", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTestFullGameFlowInPIE_MetaData), NewProp_bTestFullGameFlowInPIE_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bShouldAlwaysPlayForceFeedback = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback = { "bShouldAlwaysPlayForceFeedback", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShouldAlwaysPlayForceFeedback_MetaData), NewProp_bShouldAlwaysPlayForceFeedback_MetaData) }; +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->bSkipLoadingCosmeticBackgroundsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE = { "bSkipLoadingCosmeticBackgroundsInPIE", nullptr, (EPropertyFlags)0x0010000000014015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData), NewProp_bSkipLoadingCosmeticBackgroundsInPIE_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun_Inner = { "CheatsToRun", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraCheatToRun, METADATA_PARAMS(0, nullptr) }; // 1176648613 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun = { "CheatsToRun", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, CheatsToRun), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheatsToRun_MetaData), NewProp_CheatsToRun_MetaData) }; // 1176648613 +void Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages_SetBit(void* Obj) +{ + ((ULyraDeveloperSettings*)Obj)->LogGameplayMessages = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages = { "LogGameplayMessages", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraDeveloperSettings), &Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogGameplayMessages_MetaData), NewProp_LogGameplayMessages_MetaData) }; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps_Inner = { "CommonEditorMaps", nullptr, (EPropertyFlags)0x0000000800004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FSoftObjectPath, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps = { "CommonEditorMaps", nullptr, (EPropertyFlags)0x0010000800004015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraDeveloperSettings, CommonEditorMaps), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CommonEditorMaps_MetaData), NewProp_CommonEditorMaps_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_ExperienceOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bOverrideBotCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_OverrideNumPlayerBotsToSpawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bAllowPlayerBotsToAttack, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bTestFullGameFlowInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bShouldAlwaysPlayForceFeedback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_bSkipLoadingCosmeticBackgroundsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CheatsToRun, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_LogGameplayMessages, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraDeveloperSettings_Statics::NewProp_CommonEditorMaps, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraDeveloperSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDeveloperSettings_Statics::ClassParams = { + &ULyraDeveloperSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDeveloperSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDeveloperSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDeveloperSettings() +{ + if (!Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton, Z_Construct_UClass_ULyraDeveloperSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDeveloperSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDeveloperSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDeveloperSettings); +ULyraDeveloperSettings::~ULyraDeveloperSettings() {} +// End Class ULyraDeveloperSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECheatExecutionTime_StaticEnum, TEXT("ECheatExecutionTime"), &Z_Registration_Info_UEnum_ECheatExecutionTime, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1272832148U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraCheatToRun::StaticStruct, Z_Construct_UScriptStruct_FLyraCheatToRun_Statics::NewStructOps, TEXT("LyraCheatToRun"), &Z_Registration_Info_UScriptStruct_LyraCheatToRun, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCheatToRun), 1176648613U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDeveloperSettings, ULyraDeveloperSettings::StaticClass, TEXT("ULyraDeveloperSettings"), &Z_Registration_Info_UClass_ULyraDeveloperSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDeveloperSettings), 2911190068U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_2408991893(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h new file mode 100644 index 00000000..2c82b3bc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDeveloperSettings.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraDeveloperSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDeveloperSettings_generated_h +#error "LyraDeveloperSettings.generated.h already included, missing '#pragma once' in LyraDeveloperSettings.h" +#endif +#define LYRAGAME_LyraDeveloperSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCheatToRun_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDeveloperSettings(); \ + friend struct Z_Construct_UClass_ULyraDeveloperSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraDeveloperSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraDeveloperSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDeveloperSettings(ULyraDeveloperSettings&&); \ + ULyraDeveloperSettings(const ULyraDeveloperSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraDeveloperSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDeveloperSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraDeveloperSettings) \ + LYRAGAME_API virtual ~ULyraDeveloperSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraDeveloperSettings_h + + +#define FOREACH_ENUM_ECHEATEXECUTIONTIME(op) \ + op(ECheatExecutionTime::OnCheatManagerCreated) \ + op(ECheatExecutionTime::OnPlayerPawnPossession) + +enum class ECheatExecutionTime; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp new file mode 100644 index 00000000..8d8a395c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.gen.cpp @@ -0,0 +1,264 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraDevelopmentStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraDevelopmentStatics() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDevelopmentStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDevelopmentStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraDevelopmentStatics Function CanPlayerBotsAttack +struct Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics +{ + struct LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor?\n// Will always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true\n" }, +#endif + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor?\nWill always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "CanPlayerBotsAttack", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::LyraDevelopmentStatics_eventCanPlayerBotsAttack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execCanPlayerBotsAttack) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::CanPlayerBotsAttack(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function CanPlayerBotsAttack + +// Begin Class ULyraDevelopmentStatics Function ShouldLoadCosmeticBackgrounds +struct Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics +{ + struct LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic load cosmetic backgrounds in the editor?\n// Will always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic load cosmetic backgrounds in the editor?\nWill always return true except when playing in the editor and bSkipLoadingCosmeticBackgroundsInPIE (in Lyra Developer Settings) is true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "ShouldLoadCosmeticBackgrounds", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::LyraDevelopmentStatics_eventShouldLoadCosmeticBackgrounds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execShouldLoadCosmeticBackgrounds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::ShouldLoadCosmeticBackgrounds(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function ShouldLoadCosmeticBackgrounds + +// Begin Class ULyraDevelopmentStatics Function ShouldSkipDirectlyToGameplay +struct Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics +{ + struct LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should game logic skip directly to gameplay (skipping any match warmup / waiting for players / etc... aspects)\n// Will always return false except when playing in the editor and bTestFullGameFlowInPIE (in Lyra Developer Settings) is false\n" }, +#endif + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should game logic skip directly to gameplay (skipping any match warmup / waiting for players / etc... aspects)\nWill always return false except when playing in the editor and bTestFullGameFlowInPIE (in Lyra Developer Settings) is false" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms), &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraDevelopmentStatics, nullptr, "ShouldSkipDirectlyToGameplay", nullptr, nullptr, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::LyraDevelopmentStatics_eventShouldSkipDirectlyToGameplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraDevelopmentStatics::execShouldSkipDirectlyToGameplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraDevelopmentStatics::ShouldSkipDirectlyToGameplay(); + P_NATIVE_END; +} +// End Class ULyraDevelopmentStatics Function ShouldSkipDirectlyToGameplay + +// Begin Class ULyraDevelopmentStatics +void ULyraDevelopmentStatics::StaticRegisterNativesULyraDevelopmentStatics() +{ + UClass* Class = ULyraDevelopmentStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanPlayerBotsAttack", &ULyraDevelopmentStatics::execCanPlayerBotsAttack }, + { "ShouldLoadCosmeticBackgrounds", &ULyraDevelopmentStatics::execShouldLoadCosmeticBackgrounds }, + { "ShouldSkipDirectlyToGameplay", &ULyraDevelopmentStatics::execShouldSkipDirectlyToGameplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraDevelopmentStatics); +UClass* Z_Construct_UClass_ULyraDevelopmentStatics_NoRegister() +{ + return ULyraDevelopmentStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraDevelopmentStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraDevelopmentStatics.h" }, + { "ModuleRelativePath", "System/LyraDevelopmentStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraDevelopmentStatics_CanPlayerBotsAttack, "CanPlayerBotsAttack" }, // 4103685777 + { &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldLoadCosmeticBackgrounds, "ShouldLoadCosmeticBackgrounds" }, // 3933123727 + { &Z_Construct_UFunction_ULyraDevelopmentStatics_ShouldSkipDirectlyToGameplay, "ShouldSkipDirectlyToGameplay" }, // 748154050 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraDevelopmentStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDevelopmentStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraDevelopmentStatics_Statics::ClassParams = { + &ULyraDevelopmentStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraDevelopmentStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraDevelopmentStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraDevelopmentStatics() +{ + if (!Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton, Z_Construct_UClass_ULyraDevelopmentStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraDevelopmentStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraDevelopmentStatics::StaticClass(); +} +ULyraDevelopmentStatics::ULyraDevelopmentStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraDevelopmentStatics); +ULyraDevelopmentStatics::~ULyraDevelopmentStatics() {} +// End Class ULyraDevelopmentStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraDevelopmentStatics, ULyraDevelopmentStatics::StaticClass, TEXT("ULyraDevelopmentStatics"), &Z_Registration_Info_UClass_ULyraDevelopmentStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraDevelopmentStatics), 2600899717U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_4060184328(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h new file mode 100644 index 00000000..d6856468 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDevelopmentStatics.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraDevelopmentStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraDevelopmentStatics_generated_h +#error "LyraDevelopmentStatics.generated.h already included, missing '#pragma once' in LyraDevelopmentStatics.h" +#endif +#define LYRAGAME_LyraDevelopmentStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCanPlayerBotsAttack); \ + DECLARE_FUNCTION(execShouldLoadCosmeticBackgrounds); \ + DECLARE_FUNCTION(execShouldSkipDirectlyToGameplay); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraDevelopmentStatics(); \ + friend struct Z_Construct_UClass_ULyraDevelopmentStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraDevelopmentStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraDevelopmentStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraDevelopmentStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraDevelopmentStatics(ULyraDevelopmentStatics&&); \ + ULyraDevelopmentStatics(const ULyraDevelopmentStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraDevelopmentStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraDevelopmentStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraDevelopmentStatics) \ + NO_API virtual ~ULyraDevelopmentStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_16_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraDevelopmentStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp new file mode 100644 index 00000000..ba88bd0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.gen.cpp @@ -0,0 +1,232 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FTransform(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraEquipmentActorToSpawn +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn; +class UScriptStruct* FLyraEquipmentActorToSpawn::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraEquipmentActorToSpawn")); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraEquipmentActorToSpawn::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorToSpawn_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachSocket_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AttachTransform_MetaData[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ActorToSpawn; + static const UECodeGen_Private::FNamePropertyParams NewProp_AttachSocket; + static const UECodeGen_Private::FStructPropertyParams NewProp_AttachTransform; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_ActorToSpawn = { "ActorToSpawn", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, ActorToSpawn), Z_Construct_UClass_UClass, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorToSpawn_MetaData), NewProp_ActorToSpawn_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachSocket = { "AttachSocket", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, AttachSocket), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachSocket_MetaData), NewProp_AttachSocket_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachTransform = { "AttachTransform", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentActorToSpawn, AttachTransform), Z_Construct_UScriptStruct_FTransform, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AttachTransform_MetaData), NewProp_AttachTransform_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_ActorToSpawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachSocket, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewProp_AttachTransform, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraEquipmentActorToSpawn", + Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::PropPointers), + sizeof(FLyraEquipmentActorToSpawn), + alignof(FLyraEquipmentActorToSpawn), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn.InnerSingleton; +} +// End ScriptStruct FLyraEquipmentActorToSpawn + +// Begin Class ULyraEquipmentDefinition +void ULyraEquipmentDefinition::StaticRegisterNativesULyraEquipmentDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentDefinition); +UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister() +{ + return ULyraEquipmentDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraEquipmentDefinition\n *\n * Definition of a piece of equipment that can be applied to a pawn\n */" }, +#endif + { "IncludePath", "Equipment/LyraEquipmentDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraEquipmentDefinition\n\nDefinition of a piece of equipment that can be applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstanceType_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Class to spawn\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Class to spawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySetsToGrant_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay ability sets to grant when this is equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay ability sets to grant when this is equipped" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorsToSpawn_MetaData[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Actors to spawn on the pawn when this is equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Actors to spawn on the pawn when this is equipped" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySetsToGrant_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySetsToGrant; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActorsToSpawn_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActorsToSpawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstanceType_MetaData), NewProp_InstanceType_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant_Inner = { "AbilitySetsToGrant", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant = { "AbilitySetsToGrant", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, AbilitySetsToGrant), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySetsToGrant_MetaData), NewProp_AbilitySetsToGrant_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn_Inner = { "ActorsToSpawn", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn, METADATA_PARAMS(0, nullptr) }; // 125030440 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn = { "ActorsToSpawn", nullptr, (EPropertyFlags)0x0010000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentDefinition, ActorsToSpawn), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorsToSpawn_MetaData), NewProp_ActorsToSpawn_MetaData) }; // 125030440 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_AbilitySetsToGrant, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentDefinition_Statics::NewProp_ActorsToSpawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentDefinition_Statics::ClassParams = { + &ULyraEquipmentDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::PropPointers), + 0, + 0x000100A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton, Z_Construct_UClass_ULyraEquipmentDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentDefinition); +ULyraEquipmentDefinition::~ULyraEquipmentDefinition() {} +// End Class ULyraEquipmentDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraEquipmentActorToSpawn::StaticStruct, Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics::NewStructOps, TEXT("LyraEquipmentActorToSpawn"), &Z_Registration_Info_UScriptStruct_LyraEquipmentActorToSpawn, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraEquipmentActorToSpawn), 125030440U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentDefinition, ULyraEquipmentDefinition::StaticClass, TEXT("ULyraEquipmentDefinition"), &Z_Registration_Info_UClass_ULyraEquipmentDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentDefinition), 740516705U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_1575900213(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h new file mode 100644 index 00000000..80d2b8f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentDefinition.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraEquipmentDefinition_generated_h +#error "LyraEquipmentDefinition.generated.h already included, missing '#pragma once' in LyraEquipmentDefinition.h" +#endif +#define LYRAGAME_LyraEquipmentDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraEquipmentActorToSpawn_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentDefinition(); \ + friend struct Z_Construct_UClass_ULyraEquipmentDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentDefinition, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentDefinition(ULyraEquipmentDefinition&&); \ + ULyraEquipmentDefinition(const ULyraEquipmentDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentDefinition); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentDefinition) \ + NO_API virtual ~ULyraEquipmentDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_37_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h_40_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp new file mode 100644 index 00000000..ad96d0d3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.gen.cpp @@ -0,0 +1,419 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraEquipmentInstance Function GetInstigator +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics +{ + struct LyraEquipmentInstance_eventGetInstigator_Parms + { + UObject* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UObject interface\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetInstigator_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetInstigator", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::LyraEquipmentInstance_eventGetInstigator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::LyraEquipmentInstance_eventGetInstigator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetInstigator) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UObject**)Z_Param__Result=P_THIS->GetInstigator(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetInstigator + +// Begin Class ULyraEquipmentInstance Function GetPawn +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics +{ + struct LyraEquipmentInstance_eventGetPawn_Parms + { + APawn* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetPawn_Parms, ReturnValue), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetPawn", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::LyraEquipmentInstance_eventGetPawn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::LyraEquipmentInstance_eventGetPawn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetPawn) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(APawn**)Z_Param__Result=P_THIS->GetPawn(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetPawn + +// Begin Class ULyraEquipmentInstance Function GetSpawnedActors +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics +{ + struct LyraEquipmentInstance_eventGetSpawnedActors_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetSpawnedActors_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetSpawnedActors", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::LyraEquipmentInstance_eventGetSpawnedActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::LyraEquipmentInstance_eventGetSpawnedActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetSpawnedActors) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetSpawnedActors(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetSpawnedActors + +// Begin Class ULyraEquipmentInstance Function GetTypedPawn +struct Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics +{ + struct LyraEquipmentInstance_eventGetTypedPawn_Parms + { + TSubclassOf PawnType; + APawn* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DeterminesOutputType", "PawnType" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PawnType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_PawnType = { "PawnType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetTypedPawn_Parms, PawnType), Z_Construct_UClass_UClass, Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentInstance_eventGetTypedPawn_Parms, ReturnValue), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_PawnType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "GetTypedPawn", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::LyraEquipmentInstance_eventGetTypedPawn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::LyraEquipmentInstance_eventGetTypedPawn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execGetTypedPawn) +{ + P_GET_OBJECT(UClass,Z_Param_PawnType); + P_FINISH; + P_NATIVE_BEGIN; + *(APawn**)Z_Param__Result=P_THIS->GetTypedPawn(Z_Param_PawnType); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function GetTypedPawn + +// Begin Class ULyraEquipmentInstance Function K2_OnEquipped +static const FName NAME_ULyraEquipmentInstance_K2_OnEquipped = FName(TEXT("K2_OnEquipped")); +void ULyraEquipmentInstance::K2_OnEquipped() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraEquipmentInstance_K2_OnEquipped); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DisplayName", "OnEquipped" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "K2_OnEquipped", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraEquipmentInstance Function K2_OnEquipped + +// Begin Class ULyraEquipmentInstance Function K2_OnUnequipped +static const FName NAME_ULyraEquipmentInstance_K2_OnUnequipped = FName(TEXT("K2_OnUnequipped")); +void ULyraEquipmentInstance::K2_OnUnequipped() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraEquipmentInstance_K2_OnUnequipped); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Equipment" }, + { "DisplayName", "OnUnequipped" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "K2_OnUnequipped", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraEquipmentInstance Function K2_OnUnequipped + +// Begin Class ULyraEquipmentInstance Function OnRep_Instigator +struct Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentInstance, nullptr, "OnRep_Instigator", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentInstance::execOnRep_Instigator) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Instigator(); + P_NATIVE_END; +} +// End Class ULyraEquipmentInstance Function OnRep_Instigator + +// Begin Class ULyraEquipmentInstance +void ULyraEquipmentInstance::StaticRegisterNativesULyraEquipmentInstance() +{ + UClass* Class = ULyraEquipmentInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetInstigator", &ULyraEquipmentInstance::execGetInstigator }, + { "GetPawn", &ULyraEquipmentInstance::execGetPawn }, + { "GetSpawnedActors", &ULyraEquipmentInstance::execGetSpawnedActors }, + { "GetTypedPawn", &ULyraEquipmentInstance::execGetTypedPawn }, + { "OnRep_Instigator", &ULyraEquipmentInstance::execOnRep_Instigator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentInstance); +UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister() +{ + return ULyraEquipmentInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraEquipmentInstance\n *\n * A piece of equipment spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Equipment/LyraEquipmentInstance.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraEquipmentInstance\n\nA piece of equipment spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedActors_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedActors_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SpawnedActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetInstigator, "GetInstigator" }, // 2790713788 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetPawn, "GetPawn" }, // 1192323272 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetSpawnedActors, "GetSpawnedActors" }, // 1113875159 + { &Z_Construct_UFunction_ULyraEquipmentInstance_GetTypedPawn, "GetTypedPawn" }, // 3227741586 + { &Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnEquipped, "K2_OnEquipped" }, // 2486391177 + { &Z_Construct_UFunction_ULyraEquipmentInstance_K2_OnUnequipped, "K2_OnUnequipped" }, // 2112522029 + { &Z_Construct_UFunction_ULyraEquipmentInstance_OnRep_Instigator, "OnRep_Instigator" }, // 1734193005 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_Instigator = { "Instigator", "OnRep_Instigator", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentInstance, Instigator), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors_Inner = { "SpawnedActors", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors = { "SpawnedActors", nullptr, (EPropertyFlags)0x0144000000000020, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentInstance, SpawnedActors), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedActors_MetaData), NewProp_SpawnedActors_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentInstance_Statics::NewProp_SpawnedActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentInstance_Statics::ClassParams = { + &ULyraEquipmentInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentInstance() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton, Z_Construct_UClass_ULyraEquipmentInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentInstance::StaticClass(); +} +void ULyraEquipmentInstance::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Instigator(TEXT("Instigator")); + static const FName Name_SpawnedActors(TEXT("SpawnedActors")); + const bool bIsValid = true + && Name_Instigator == ClassReps[(int32)ENetFields_Private::Instigator].Property->GetFName() + && Name_SpawnedActors == ClassReps[(int32)ENetFields_Private::SpawnedActors].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraEquipmentInstance")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentInstance); +ULyraEquipmentInstance::~ULyraEquipmentInstance() {} +// End Class ULyraEquipmentInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentInstance, ULyraEquipmentInstance::StaticClass, TEXT("ULyraEquipmentInstance"), &Z_Registration_Info_UClass_ULyraEquipmentInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentInstance), 3103249624U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_4113626647(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h new file mode 100644 index 00000000..5f9ac993 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentInstance.generated.h @@ -0,0 +1,80 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class APawn; +class UObject; +#ifdef LYRAGAME_LyraEquipmentInstance_generated_h +#error "LyraEquipmentInstance.generated.h already included, missing '#pragma once' in LyraEquipmentInstance.h" +#endif +#define LYRAGAME_LyraEquipmentInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_Instigator); \ + DECLARE_FUNCTION(execGetSpawnedActors); \ + DECLARE_FUNCTION(execGetTypedPawn); \ + DECLARE_FUNCTION(execGetPawn); \ + DECLARE_FUNCTION(execGetInstigator); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentInstance(); \ + friend struct Z_Construct_UClass_ULyraEquipmentInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentInstance) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Instigator=NETFIELD_REP_START, \ + SpawnedActors, \ + NETFIELD_REP_END=SpawnedActors }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraEquipmentInstance) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentInstance(ULyraEquipmentInstance&&); \ + ULyraEquipmentInstance(const ULyraEquipmentInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentInstance) \ + NO_API virtual ~ULyraEquipmentInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp new file mode 100644 index 00000000..19da3586 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.gen.cpp @@ -0,0 +1,522 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraEquipmentManagerComponent.h" +#include "LyraGame/AbilitySystem/LyraAbilitySet.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraEquipmentManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentList(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraAppliedEquipmentEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAppliedEquipmentEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry; +class UScriptStruct* FLyraAppliedEquipmentEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAppliedEquipmentEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAppliedEquipmentEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A single piece of applied equipment */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single piece of applied equipment" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentDefinition_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The equipment class that got equipped\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The equipment class that got equipped" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GrantedHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Authority-only list of granted handles\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Authority-only list of granted handles" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FStructPropertyParams NewProp_GrantedHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentDefinition_MetaData), NewProp_EquipmentDefinition_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, Instance), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_GrantedHandles = { "GrantedHandles", nullptr, (EPropertyFlags)0x0040008080000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedEquipmentEntry, GrantedHandles), Z_Construct_UScriptStruct_FLyraAbilitySet_GrantedHandles, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GrantedHandles_MetaData), NewProp_GrantedHandles_MetaData) }; // 3322214549 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_EquipmentDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewProp_GrantedHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraAppliedEquipmentEntry", + Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::PropPointers), + sizeof(FLyraAppliedEquipmentEntry), + alignof(FLyraAppliedEquipmentEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry.InnerSingleton; +} +// End ScriptStruct FLyraAppliedEquipmentEntry + +// Begin ScriptStruct FLyraEquipmentList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraEquipmentList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraEquipmentList; +class UScriptStruct* FLyraEquipmentList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraEquipmentList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraEquipmentList")); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraEquipmentList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraEquipmentList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraEquipmentList); +#endif +struct Z_Construct_UScriptStruct_FLyraEquipmentList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of applied equipment */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of applied equipment" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of equipment entries\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of equipment entries" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry, METADATA_PARAMS(0, nullptr) }; // 3484684559 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 3484684559 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraEquipmentList, OwnerComponent), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraEquipmentList", + Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::PropPointers), + sizeof(FLyraEquipmentList), + alignof(FLyraEquipmentList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraEquipmentList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton, Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraEquipmentList.InnerSingleton; +} +// End ScriptStruct FLyraEquipmentList + +// Begin Class ULyraEquipmentManagerComponent Function EquipItem +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics +{ + struct LyraEquipmentManagerComponent_eventEquipItem_Parms + { + TSubclassOf EquipmentDefinition; + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EquipmentDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_EquipmentDefinition = { "EquipmentDefinition", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventEquipItem_Parms, EquipmentDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventEquipItem_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_EquipmentDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "EquipItem", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::LyraEquipmentManagerComponent_eventEquipItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::LyraEquipmentManagerComponent_eventEquipItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execEquipItem) +{ + P_GET_OBJECT(UClass,Z_Param_EquipmentDefinition); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->EquipItem(Z_Param_EquipmentDefinition); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function EquipItem + +// Begin Class ULyraEquipmentManagerComponent Function GetEquipmentInstancesOfType +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics +{ + struct LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms + { + TSubclassOf InstanceType; + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns all equipped instances of a given type, or an empty array if none are found */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns all equipped instances of a given type, or an empty array if none are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "GetEquipmentInstancesOfType", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::LyraEquipmentManagerComponent_eventGetEquipmentInstancesOfType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execGetEquipmentInstancesOfType) +{ + P_GET_OBJECT(UClass,Z_Param_InstanceType); + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetEquipmentInstancesOfType(Z_Param_InstanceType); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function GetEquipmentInstancesOfType + +// Begin Class ULyraEquipmentManagerComponent Function GetFirstInstanceOfType +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics +{ + struct LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms + { + TSubclassOf InstanceType; + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the first equipped instance of a given type, or nullptr if none are found */" }, +#endif + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the first equipped instance of a given type, or nullptr if none are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InstanceType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_InstanceType = { "InstanceType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms, InstanceType), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_InstanceType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "GetFirstInstanceOfType", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::LyraEquipmentManagerComponent_eventGetFirstInstanceOfType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execGetFirstInstanceOfType) +{ + P_GET_OBJECT(UClass,Z_Param_InstanceType); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->GetFirstInstanceOfType(Z_Param_InstanceType); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function GetFirstInstanceOfType + +// Begin Class ULyraEquipmentManagerComponent Function UnequipItem +struct Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics +{ + struct LyraEquipmentManagerComponent_eventUnequipItem_Parms + { + ULyraEquipmentInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraEquipmentManagerComponent_eventUnequipItem_Parms, ItemInstance), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraEquipmentManagerComponent, nullptr, "UnequipItem", nullptr, nullptr, Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::LyraEquipmentManagerComponent_eventUnequipItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::LyraEquipmentManagerComponent_eventUnequipItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraEquipmentManagerComponent::execUnequipItem) +{ + P_GET_OBJECT(ULyraEquipmentInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnequipItem(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraEquipmentManagerComponent Function UnequipItem + +// Begin Class ULyraEquipmentManagerComponent +void ULyraEquipmentManagerComponent::StaticRegisterNativesULyraEquipmentManagerComponent() +{ + UClass* Class = ULyraEquipmentManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "EquipItem", &ULyraEquipmentManagerComponent::execEquipItem }, + { "GetEquipmentInstancesOfType", &ULyraEquipmentManagerComponent::execGetEquipmentInstancesOfType }, + { "GetFirstInstanceOfType", &ULyraEquipmentManagerComponent::execGetFirstInstanceOfType }, + { "UnequipItem", &ULyraEquipmentManagerComponent::execUnequipItem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraEquipmentManagerComponent); +UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent_NoRegister() +{ + return ULyraEquipmentManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manages equipment applied to a pawn\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Equipment/LyraEquipmentManagerComponent.h" }, + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manages equipment applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquipmentList_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraEquipmentManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EquipmentList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_EquipItem, "EquipItem" }, // 2559626297 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetEquipmentInstancesOfType, "GetEquipmentInstancesOfType" }, // 2246725947 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_GetFirstInstanceOfType, "GetFirstInstanceOfType" }, // 4237005983 + { &Z_Construct_UFunction_ULyraEquipmentManagerComponent_UnequipItem, "UnequipItem" }, // 664167058 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::NewProp_EquipmentList = { "EquipmentList", nullptr, (EPropertyFlags)0x0040008000000030, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraEquipmentManagerComponent, EquipmentList), Z_Construct_UScriptStruct_FLyraEquipmentList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquipmentList_MetaData), NewProp_EquipmentList_MetaData) }; // 1014251434 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::NewProp_EquipmentList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::ClassParams = { + &ULyraEquipmentManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::PropPointers), + 0, + 0x00B100A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraEquipmentManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraEquipmentManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraEquipmentManagerComponent::StaticClass(); +} +void ULyraEquipmentManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_EquipmentList(TEXT("EquipmentList")); + const bool bIsValid = true + && Name_EquipmentList == ClassReps[(int32)ENetFields_Private::EquipmentList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraEquipmentManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraEquipmentManagerComponent); +ULyraEquipmentManagerComponent::~ULyraEquipmentManagerComponent() {} +// End Class ULyraEquipmentManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAppliedEquipmentEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics::NewStructOps, TEXT("LyraAppliedEquipmentEntry"), &Z_Registration_Info_UScriptStruct_LyraAppliedEquipmentEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAppliedEquipmentEntry), 3484684559U) }, + { FLyraEquipmentList::StaticStruct, Z_Construct_UScriptStruct_FLyraEquipmentList_Statics::NewStructOps, TEXT("LyraEquipmentList"), &Z_Registration_Info_UScriptStruct_LyraEquipmentList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraEquipmentList), 1014251434U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraEquipmentManagerComponent, ULyraEquipmentManagerComponent::StaticClass, TEXT("ULyraEquipmentManagerComponent"), &Z_Registration_Info_UClass_ULyraEquipmentManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraEquipmentManagerComponent), 445075383U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_398427944(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h new file mode 100644 index 00000000..8c3900a0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraEquipmentManagerComponent.generated.h @@ -0,0 +1,88 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraEquipmentManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraEquipmentDefinition; +class ULyraEquipmentInstance; +#ifdef LYRAGAME_LyraEquipmentManagerComponent_generated_h +#error "LyraEquipmentManagerComponent.generated.h already included, missing '#pragma once' in LyraEquipmentManagerComponent.h" +#endif +#define LYRAGAME_LyraEquipmentManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_26_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAppliedEquipmentEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_53_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraEquipmentList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraEquipmentList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetEquipmentInstancesOfType); \ + DECLARE_FUNCTION(execGetFirstInstanceOfType); \ + DECLARE_FUNCTION(execUnequipItem); \ + DECLARE_FUNCTION(execEquipItem); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraEquipmentManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraEquipmentManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraEquipmentManagerComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraEquipmentManagerComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + EquipmentList=NETFIELD_REP_START, \ + NETFIELD_REP_END=EquipmentList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraEquipmentManagerComponent(ULyraEquipmentManagerComponent&&); \ + ULyraEquipmentManagerComponent(const ULyraEquipmentManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraEquipmentManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraEquipmentManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraEquipmentManagerComponent) \ + NO_API virtual ~ULyraEquipmentManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_112_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h_115_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraEquipmentManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp new file mode 100644 index 00000000..00f1873e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.gen.cpp @@ -0,0 +1,146 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceActionSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceActionSet() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceActionSet +void ULyraExperienceActionSet::StaticRegisterNativesULyraExperienceActionSet() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceActionSet); +UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister() +{ + return ULyraExperienceActionSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceActionSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Definition of a set of actions to perform as part of entering an experience\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceActionSet.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Definition of a set of actions to perform as part of entering an experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_Inner_MetaData[] = { + { "Category", "Actions to Perform" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_MetaData[] = { + { "Category", "Actions to Perform" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameFeaturesToEnable_MetaData[] = { + { "Category", "Feature Dependencies" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of Game Feature Plugins this experience wants to have active\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceActionSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of Game Feature Plugins this experience wants to have active" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Actions; + static const UECodeGen_Private::FStrPropertyParams NewProp_GameFeaturesToEnable_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameFeaturesToEnable; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions_Inner = { "Actions", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameFeatureAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_Inner_MetaData), NewProp_Actions_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions = { "Actions", nullptr, (EPropertyFlags)0x0114008000000009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceActionSet, Actions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_MetaData), NewProp_Actions_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable_Inner = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceActionSet, GameFeaturesToEnable), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameFeaturesToEnable_MetaData), NewProp_GameFeaturesToEnable_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_Actions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceActionSet_Statics::NewProp_GameFeaturesToEnable, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceActionSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceActionSet_Statics::ClassParams = { + &ULyraExperienceActionSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceActionSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceActionSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceActionSet() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton, Z_Construct_UClass_ULyraExperienceActionSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceActionSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceActionSet::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceActionSet); +ULyraExperienceActionSet::~ULyraExperienceActionSet() {} +// End Class ULyraExperienceActionSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceActionSet, ULyraExperienceActionSet::StaticClass, TEXT("ULyraExperienceActionSet"), &Z_Registration_Info_UClass_ULyraExperienceActionSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceActionSet), 4055757052U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_1260607070(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h new file mode 100644 index 00000000..b737299e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceActionSet.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceActionSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceActionSet_generated_h +#error "LyraExperienceActionSet.generated.h already included, missing '#pragma once' in LyraExperienceActionSet.h" +#endif +#define LYRAGAME_LyraExperienceActionSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceActionSet(); \ + friend struct Z_Construct_UClass_ULyraExperienceActionSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceActionSet, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceActionSet) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceActionSet(ULyraExperienceActionSet&&); \ + ULyraExperienceActionSet(const ULyraExperienceActionSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceActionSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceActionSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceActionSet) \ + NO_API virtual ~ULyraExperienceActionSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceActionSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp new file mode 100644 index 00000000..3fffcfbc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.gen.cpp @@ -0,0 +1,178 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceDefinition() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureAction_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceActionSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceDefinition +void ULyraExperienceDefinition::StaticRegisterNativesULyraExperienceDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceDefinition); +UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister() +{ + return ULyraExperienceDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Definition of an experience\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceDefinition.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Definition of an experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameFeaturesToEnable_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of Game Feature Plugins this experience wants to have active\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of Game Feature Plugins this experience wants to have active" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPawnData_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The default pawn class to spawn for players *///@TODO: Make soft?\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default pawn class to spawn for players //@TODO: Make soft?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_Inner_MetaData[] = { + { "Category", "Actions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actions_MetaData[] = { + { "Category", "Actions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of actions to perform as this experience is loaded/activated/deactivated/unloaded\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of actions to perform as this experience is loaded/activated/deactivated/unloaded" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionSets_MetaData[] = { + { "Category", "Gameplay" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of additional action sets to compose into this experience\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of additional action sets to compose into this experience" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_GameFeaturesToEnable_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_GameFeaturesToEnable; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultPawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Actions; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActionSets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ActionSets; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable_Inner = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable = { "GameFeaturesToEnable", nullptr, (EPropertyFlags)0x0010000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, GameFeaturesToEnable), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameFeaturesToEnable_MetaData), NewProp_GameFeaturesToEnable_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_DefaultPawnData = { "DefaultPawnData", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, DefaultPawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPawnData_MetaData), NewProp_DefaultPawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions_Inner = { "Actions", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameFeatureAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_Inner_MetaData), NewProp_Actions_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions = { "Actions", nullptr, (EPropertyFlags)0x0114008000010019, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, Actions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actions_MetaData), NewProp_Actions_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets_Inner = { "ActionSets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraExperienceActionSet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets = { "ActionSets", nullptr, (EPropertyFlags)0x0114000000010011, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceDefinition, ActionSets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionSets_MetaData), NewProp_ActionSets_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_GameFeaturesToEnable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_DefaultPawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_Actions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceDefinition_Statics::NewProp_ActionSets, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceDefinition_Statics::ClassParams = { + &ULyraExperienceDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::PropPointers), + 0, + 0x008100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton, Z_Construct_UClass_ULyraExperienceDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceDefinition); +ULyraExperienceDefinition::~ULyraExperienceDefinition() {} +// End Class ULyraExperienceDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceDefinition, ULyraExperienceDefinition::StaticClass, TEXT("ULyraExperienceDefinition"), &Z_Registration_Info_UClass_ULyraExperienceDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceDefinition), 1947259723U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_530867882(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h new file mode 100644 index 00000000..b43b15c3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceDefinition.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceDefinition_generated_h +#error "LyraExperienceDefinition.generated.h already included, missing '#pragma once' in LyraExperienceDefinition.h" +#endif +#define LYRAGAME_LyraExperienceDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceDefinition(); \ + friend struct Z_Construct_UClass_ULyraExperienceDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceDefinition, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceDefinition(ULyraExperienceDefinition&&); \ + ULyraExperienceDefinition(const ULyraExperienceDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceDefinition); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceDefinition) \ + NO_API virtual ~ULyraExperienceDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp new file mode 100644 index 00000000..757e8f2a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.gen.cpp @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UEngineSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceManager +void ULyraExperienceManager::StaticRegisterNativesULyraExperienceManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceManager); +UClass* Z_Construct_UClass_ULyraExperienceManager_NoRegister() +{ + return ULyraExperienceManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manager for experiences - primarily for arbitration between multiple PIE sessions\n */" }, +#endif + { "IncludePath", "GameModes/LyraExperienceManager.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manager for experiences - primarily for arbitration between multiple PIE sessions" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraExperienceManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEngineSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceManager_Statics::ClassParams = { + &ULyraExperienceManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceManager() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton, Z_Construct_UClass_ULyraExperienceManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceManager::StaticClass(); +} +ULyraExperienceManager::ULyraExperienceManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceManager); +ULyraExperienceManager::~ULyraExperienceManager() {} +// End Class ULyraExperienceManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceManager, ULyraExperienceManager::StaticClass, TEXT("ULyraExperienceManager"), &Z_Registration_Info_UClass_ULyraExperienceManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceManager), 3492659886U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_702102588(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.generated.h new file mode 100644 index 00000000..88453924 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceManager_generated_h +#error "LyraExperienceManager.generated.h already included, missing '#pragma once' in LyraExperienceManager.h" +#endif +#define LYRAGAME_LyraExperienceManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceManager(); \ + friend struct Z_Construct_UClass_ULyraExperienceManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceManager, UEngineSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraExperienceManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraExperienceManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceManager(ULyraExperienceManager&&); \ + ULyraExperienceManager(const ULyraExperienceManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraExperienceManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraExperienceManager) \ + LYRAGAME_API virtual ~ULyraExperienceManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp new file mode 100644 index 00000000..b4333621 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.gen.cpp @@ -0,0 +1,154 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraExperienceManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExperienceManagerComponent() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraExperienceManagerComponent Function OnRep_CurrentExperience +struct Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraExperienceManagerComponent, nullptr, "OnRep_CurrentExperience", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraExperienceManagerComponent::execOnRep_CurrentExperience) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_CurrentExperience(); + P_NATIVE_END; +} +// End Class ULyraExperienceManagerComponent Function OnRep_CurrentExperience + +// Begin Class ULyraExperienceManagerComponent +void ULyraExperienceManagerComponent::StaticRegisterNativesULyraExperienceManagerComponent() +{ + UClass* Class = ULyraExperienceManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_CurrentExperience", &ULyraExperienceManagerComponent::execOnRep_CurrentExperience }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraExperienceManagerComponent); +UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister() +{ + return ULyraExperienceManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraExperienceManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentExperience_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraExperienceManagerComponent.h" }, + { "NativeConstTemplateArg", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentExperience; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraExperienceManagerComponent_OnRep_CurrentExperience, "OnRep_CurrentExperience" }, // 4097387189 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::NewProp_CurrentExperience = { "CurrentExperience", "OnRep_CurrentExperience", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraExperienceManagerComponent, CurrentExperience), Z_Construct_UClass_ULyraExperienceDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentExperience_MetaData), NewProp_CurrentExperience_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::NewProp_CurrentExperience, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraExperienceManagerComponent, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::ClassParams = { + &ULyraExperienceManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraExperienceManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraExperienceManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraExperienceManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraExperienceManagerComponent::StaticClass(); +} +void ULyraExperienceManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_CurrentExperience(TEXT("CurrentExperience")); + const bool bIsValid = true + && Name_CurrentExperience == ClassReps[(int32)ENetFields_Private::CurrentExperience].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraExperienceManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraExperienceManagerComponent); +ULyraExperienceManagerComponent::~ULyraExperienceManagerComponent() {} +// End Class ULyraExperienceManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraExperienceManagerComponent, ULyraExperienceManagerComponent::StaticClass, TEXT("ULyraExperienceManagerComponent"), &Z_Registration_Info_UClass_ULyraExperienceManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraExperienceManagerComponent), 3363878492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_1622901189(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h new file mode 100644 index 00000000..39f5f73f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraExperienceManagerComponent.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraExperienceManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraExperienceManagerComponent_generated_h +#error "LyraExperienceManagerComponent.generated.h already included, missing '#pragma once' in LyraExperienceManagerComponent.h" +#endif +#define LYRAGAME_LyraExperienceManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_CurrentExperience); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraExperienceManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraExperienceManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraExperienceManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraExperienceManagerComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + CurrentExperience=NETFIELD_REP_START, \ + NETFIELD_REP_END=CurrentExperience }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraExperienceManagerComponent(ULyraExperienceManagerComponent&&); \ + ULyraExperienceManagerComponent(const ULyraExperienceManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraExperienceManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraExperienceManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraExperienceManagerComponent) \ + NO_API virtual ~ULyraExperienceManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_27_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraExperienceManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp new file mode 100644 index 00000000..c3e30167 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.gen.cpp @@ -0,0 +1,204 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/LyraFrontendStateComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraFrontendStateComponent() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraFrontendStateComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraFrontendStateComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraFrontendStateComponent Function OnUserInitialized +struct Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics +{ + struct LyraFrontendStateComponent_eventOnUserInitialized_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraFrontendStateComponent_eventOnUserInitialized_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraFrontendStateComponent_eventOnUserInitialized_Parms), &Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraFrontendStateComponent_eventOnUserInitialized_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraFrontendStateComponent, nullptr, "OnUserInitialized", nullptr, nullptr, Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::LyraFrontendStateComponent_eventOnUserInitialized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::LyraFrontendStateComponent_eventOnUserInitialized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraFrontendStateComponent::execOnUserInitialized) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnUserInitialized(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class ULyraFrontendStateComponent Function OnUserInitialized + +// Begin Class ULyraFrontendStateComponent +void ULyraFrontendStateComponent::StaticRegisterNativesULyraFrontendStateComponent() +{ + UClass* Class = ULyraFrontendStateComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnUserInitialized", &ULyraFrontendStateComponent::execOnUserInitialized }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraFrontendStateComponent); +UClass* Z_Construct_UClass_ULyraFrontendStateComponent_NoRegister() +{ + return ULyraFrontendStateComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraFrontendStateComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PressStartScreenClass_MetaData[] = { + { "Category", "UI" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MainScreenClass_MetaData[] = { + { "Category", "UI" }, + { "ModuleRelativePath", "UI/Frontend/LyraFrontendStateComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_PressStartScreenClass; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_MainScreenClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraFrontendStateComponent_OnUserInitialized, "OnUserInitialized" }, // 191081245 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_PressStartScreenClass = { "PressStartScreenClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraFrontendStateComponent, PressStartScreenClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PressStartScreenClass_MetaData), NewProp_PressStartScreenClass_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_MainScreenClass = { "MainScreenClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraFrontendStateComponent, MainScreenClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MainScreenClass_MetaData), NewProp_MainScreenClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_PressStartScreenClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraFrontendStateComponent_Statics::NewProp_MainScreenClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraFrontendStateComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraFrontendStateComponent, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraFrontendStateComponent_Statics::ClassParams = { + &ULyraFrontendStateComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraFrontendStateComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraFrontendStateComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraFrontendStateComponent() +{ + if (!Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton, Z_Construct_UClass_ULyraFrontendStateComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraFrontendStateComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraFrontendStateComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraFrontendStateComponent); +ULyraFrontendStateComponent::~ULyraFrontendStateComponent() {} +// End Class ULyraFrontendStateComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraFrontendStateComponent, ULyraFrontendStateComponent::StaticClass, TEXT("ULyraFrontendStateComponent"), &Z_Registration_Info_UClass_ULyraFrontendStateComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraFrontendStateComponent), 284612570U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_598321021(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h new file mode 100644 index 00000000..42e6a342 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraFrontendStateComponent.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/LyraFrontendStateComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +#ifdef LYRAGAME_LyraFrontendStateComponent_generated_h +#error "LyraFrontendStateComponent.generated.h already included, missing '#pragma once' in LyraFrontendStateComponent.h" +#endif +#define LYRAGAME_LyraFrontendStateComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnUserInitialized); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraFrontendStateComponent(); \ + friend struct Z_Construct_UClass_ULyraFrontendStateComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraFrontendStateComponent, UGameStateComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraFrontendStateComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraFrontendStateComponent(ULyraFrontendStateComponent&&); \ + ULyraFrontendStateComponent(const ULyraFrontendStateComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraFrontendStateComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraFrontendStateComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraFrontendStateComponent) \ + NO_API virtual ~ULyraFrontendStateComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraFrontendStateComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGame.init.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGame.init.gen.cpp new file mode 100644 index 00000000..250d604a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGame.init.gen.cpp @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGame_init() {} + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature(); + LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LyraGame; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LyraGame() + { + if (!Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_ExperienceReadyAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_InteractableObjectsChangedEvent__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraContextEffectLibraryLoadingComplete__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_QueryReplayAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_TeamColorObservedAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_LyraGame_TeamObservedAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/LyraGame", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xE0BE2CA1, + 0x6B9D6B2C, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_LyraGame.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LyraGame(Z_Construct_UPackage__Script_LyraGame, TEXT("/Script/LyraGame"), Z_Registration_Info_UPackage__Script_LyraGame, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE0BE2CA1, 0x6B9D6B2C)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameClasses.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.gen.cpp new file mode 100644 index 00000000..bc50764d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.gen.cpp @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameData +void ULyraGameData::StaticRegisterNativesULyraGameData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameData); +UClass* Z_Construct_UClass_ULyraGameData_NoRegister() +{ + return ULyraGameData::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameData\n *\n *\x09Non-mutable data asset that contains global game data.\n */" }, +#endif + { "DisplayName", "Lyra Game Data" }, + { "IncludePath", "System/LyraGameData.h" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, + { "ShortTooltip", "Data asset containing global game data." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameData\n\n Non-mutable data asset that contains global game data." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DamageGameplayEffect_SetByCaller_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to apply damage. Uses SetByCaller for the damage magnitude.\n" }, +#endif + { "DisplayName", "Damage Gameplay Effect (SetByCaller)" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to apply damage. Uses SetByCaller for the damage magnitude." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealGameplayEffect_SetByCaller_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to apply healing. Uses SetByCaller for the healing magnitude.\n" }, +#endif + { "DisplayName", "Heal Gameplay Effect (SetByCaller)" }, + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to apply healing. Uses SetByCaller for the healing magnitude." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DynamicTagGameplayEffect_MetaData[] = { + { "Category", "Default Gameplay Effects" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay effect used to add and remove dynamic tags.\n" }, +#endif + { "ModuleRelativePath", "System/LyraGameData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay effect used to add and remove dynamic tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DamageGameplayEffect_SetByCaller; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_HealGameplayEffect_SetByCaller; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DynamicTagGameplayEffect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_DamageGameplayEffect_SetByCaller = { "DamageGameplayEffect_SetByCaller", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, DamageGameplayEffect_SetByCaller), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DamageGameplayEffect_SetByCaller_MetaData), NewProp_DamageGameplayEffect_SetByCaller_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_HealGameplayEffect_SetByCaller = { "HealGameplayEffect_SetByCaller", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, HealGameplayEffect_SetByCaller), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealGameplayEffect_SetByCaller_MetaData), NewProp_HealGameplayEffect_SetByCaller_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameData_Statics::NewProp_DynamicTagGameplayEffect = { "DynamicTagGameplayEffect", nullptr, (EPropertyFlags)0x0014000000010011, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameData, DynamicTagGameplayEffect), Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DynamicTagGameplayEffect_MetaData), NewProp_DynamicTagGameplayEffect_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_DamageGameplayEffect_SetByCaller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_HealGameplayEffect_SetByCaller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameData_Statics::NewProp_DynamicTagGameplayEffect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameData_Statics::ClassParams = { + &ULyraGameData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameData() +{ + if (!Z_Registration_Info_UClass_ULyraGameData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameData.OuterSingleton, Z_Construct_UClass_ULyraGameData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameData); +ULyraGameData::~ULyraGameData() {} +// End Class ULyraGameData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameData, ULyraGameData::StaticClass, TEXT("ULyraGameData"), &Z_Registration_Info_UClass_ULyraGameData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameData), 953686270U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_1472322684(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.generated.h new file mode 100644 index 00000000..6788a651 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameData_generated_h +#error "LyraGameData.generated.h already included, missing '#pragma once' in LyraGameData.h" +#endif +#define LYRAGAME_LyraGameData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameData(); \ + friend struct Z_Construct_UClass_ULyraGameData_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameData) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameData(ULyraGameData&&); \ + ULyraGameData(const ULyraGameData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameData); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameData) \ + NO_API virtual ~ULyraGameData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp new file mode 100644 index 00000000..ffb05970 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameEngine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameEngine() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameEngine(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameEngine(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameEngine_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameEngine +void ULyraGameEngine::StaticRegisterNativesULyraGameEngine() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameEngine); +UClass* Z_Construct_UClass_ULyraGameEngine_NoRegister() +{ + return ULyraGameEngine::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameEngine_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraGameEngine.h" }, + { "ModuleRelativePath", "System/LyraGameEngine.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameEngine_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameEngine, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameEngine_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameEngine_Statics::ClassParams = { + &ULyraGameEngine::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000AEu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameEngine_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameEngine_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameEngine() +{ + if (!Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton, Z_Construct_UClass_ULyraGameEngine_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameEngine.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameEngine::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameEngine); +ULyraGameEngine::~ULyraGameEngine() {} +// End Class ULyraGameEngine + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameEngine, ULyraGameEngine::StaticClass, TEXT("ULyraGameEngine"), &Z_Registration_Info_UClass_ULyraGameEngine, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameEngine), 4029335229U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_3738857720(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.generated.h new file mode 100644 index 00000000..0be2dfd5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameEngine.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameEngine.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameEngine_generated_h +#error "LyraGameEngine.generated.h already included, missing '#pragma once' in LyraGameEngine.h" +#endif +#define LYRAGAME_LyraGameEngine_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameEngine(); \ + friend struct Z_Construct_UClass_ULyraGameEngine_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameEngine, UGameEngine, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameEngine) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameEngine(ULyraGameEngine&&); \ + ULyraGameEngine(const ULyraGameEngine&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameEngine); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameEngine); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameEngine) \ + NO_API virtual ~ULyraGameEngine(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameEngine_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp new file mode 100644 index 00000000..c2e89509 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.gen.cpp @@ -0,0 +1,259 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameFeatures/LyraGameFeaturePolicy.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameFeaturePolicy() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UDefaultGameFeaturesProjectPolicies(); +GAMEFEATURES_API UClass* Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeaturePolicy(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameFeaturePolicy_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameFeaturePolicy +void ULyraGameFeaturePolicy::StaticRegisterNativesULyraGameFeaturePolicy() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeaturePolicy); +UClass* Z_Construct_UClass_ULyraGameFeaturePolicy_NoRegister() +{ + return ULyraGameFeaturePolicy::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeaturePolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manager to keep track of the state machines that bring a game feature plugin into memory and active\n * This class discovers plugins either that are built-in and distributed with the game or are reported externally (i.e. by a web service or other endpoint)\n */" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manager to keep track of the state machines that bring a game feature plugin into memory and active\nThis class discovers plugins either that are built-in and distributed with the game or are reported externally (i.e. by a web service or other endpoint)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Observers_MetaData[] = { + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Observers_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Observers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers_Inner = { "Observers", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers = { "Observers", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameFeaturePolicy, Observers), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Observers_MetaData), NewProp_Observers_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::NewProp_Observers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDefaultGameFeaturesProjectPolicies, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::ClassParams = { + &ULyraGameFeaturePolicy::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeaturePolicy() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton, Z_Construct_UClass_ULyraGameFeaturePolicy_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeaturePolicy.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeaturePolicy::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeaturePolicy); +ULyraGameFeaturePolicy::~ULyraGameFeaturePolicy() {} +// End Class ULyraGameFeaturePolicy + +// Begin Class ULyraGameFeature_HotfixManager +void ULyraGameFeature_HotfixManager::StaticRegisterNativesULyraGameFeature_HotfixManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeature_HotfixManager); +UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager_NoRegister() +{ + return ULyraGameFeature_HotfixManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// checked\n" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "checked" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister, (int32)VTABLE_OFFSET(ULyraGameFeature_HotfixManager, IGameFeatureStateChangeObserver), false }, // 487324916 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::ClassParams = { + &ULyraGameFeature_HotfixManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeature_HotfixManager() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton, Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeature_HotfixManager::StaticClass(); +} +ULyraGameFeature_HotfixManager::ULyraGameFeature_HotfixManager(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeature_HotfixManager); +ULyraGameFeature_HotfixManager::~ULyraGameFeature_HotfixManager() {} +// End Class ULyraGameFeature_HotfixManager + +// Begin Class ULyraGameFeature_AddGameplayCuePaths +void ULyraGameFeature_AddGameplayCuePaths::StaticRegisterNativesULyraGameFeature_AddGameplayCuePaths() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameFeature_AddGameplayCuePaths); +UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_NoRegister() +{ + return ULyraGameFeature_AddGameplayCuePaths::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// checked\n" }, +#endif + { "IncludePath", "GameFeatures/LyraGameFeaturePolicy.h" }, + { "ModuleRelativePath", "GameFeatures/LyraGameFeaturePolicy.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "checked" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFeatureStateChangeObserver_NoRegister, (int32)VTABLE_OFFSET(ULyraGameFeature_AddGameplayCuePaths, IGameFeatureStateChangeObserver), false }, // 487324916 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::ClassParams = { + &ULyraGameFeature_AddGameplayCuePaths::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths() +{ + if (!Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton, Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameFeature_AddGameplayCuePaths::StaticClass(); +} +ULyraGameFeature_AddGameplayCuePaths::ULyraGameFeature_AddGameplayCuePaths(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameFeature_AddGameplayCuePaths); +ULyraGameFeature_AddGameplayCuePaths::~ULyraGameFeature_AddGameplayCuePaths() {} +// End Class ULyraGameFeature_AddGameplayCuePaths + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameFeaturePolicy, ULyraGameFeaturePolicy::StaticClass, TEXT("ULyraGameFeaturePolicy"), &Z_Registration_Info_UClass_ULyraGameFeaturePolicy, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeaturePolicy), 4110007641U) }, + { Z_Construct_UClass_ULyraGameFeature_HotfixManager, ULyraGameFeature_HotfixManager::StaticClass, TEXT("ULyraGameFeature_HotfixManager"), &Z_Registration_Info_UClass_ULyraGameFeature_HotfixManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeature_HotfixManager), 114562789U) }, + { Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths, ULyraGameFeature_AddGameplayCuePaths::StaticClass, TEXT("ULyraGameFeature_AddGameplayCuePaths"), &Z_Registration_Info_UClass_ULyraGameFeature_AddGameplayCuePaths, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameFeature_AddGameplayCuePaths), 65435744U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_3864838416(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h new file mode 100644 index 00000000..5b02b7b6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameFeaturePolicy.generated.h @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFeatures/LyraGameFeaturePolicy.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameFeaturePolicy_generated_h +#error "LyraGameFeaturePolicy.generated.h already included, missing '#pragma once' in LyraGameFeaturePolicy.h" +#endif +#define LYRAGAME_LyraGameFeaturePolicy_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeaturePolicy(); \ + friend struct Z_Construct_UClass_ULyraGameFeaturePolicy_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeaturePolicy, UDefaultGameFeaturesProjectPolicies, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraGameFeaturePolicy) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeaturePolicy(ULyraGameFeaturePolicy&&); \ + ULyraGameFeaturePolicy(const ULyraGameFeaturePolicy&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraGameFeaturePolicy); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeaturePolicy); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeaturePolicy) \ + LYRAGAME_API virtual ~ULyraGameFeaturePolicy(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeature_HotfixManager(); \ + friend struct Z_Construct_UClass_ULyraGameFeature_HotfixManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeature_HotfixManager, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameFeature_HotfixManager) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameFeature_HotfixManager(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeature_HotfixManager(ULyraGameFeature_HotfixManager&&); \ + ULyraGameFeature_HotfixManager(const ULyraGameFeature_HotfixManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameFeature_HotfixManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeature_HotfixManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeature_HotfixManager) \ + NO_API virtual ~ULyraGameFeature_HotfixManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameFeature_AddGameplayCuePaths(); \ + friend struct Z_Construct_UClass_ULyraGameFeature_AddGameplayCuePaths_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameFeature_AddGameplayCuePaths, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameFeature_AddGameplayCuePaths) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameFeature_AddGameplayCuePaths(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameFeature_AddGameplayCuePaths(ULyraGameFeature_AddGameplayCuePaths&&); \ + ULyraGameFeature_AddGameplayCuePaths(const ULyraGameFeature_AddGameplayCuePaths&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameFeature_AddGameplayCuePaths); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameFeature_AddGameplayCuePaths); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameFeature_AddGameplayCuePaths) \ + NO_API virtual ~ULyraGameFeature_AddGameplayCuePaths(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_55_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameFeatures_LyraGameFeaturePolicy_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp new file mode 100644 index 00000000..f6d0ba83 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameInstance() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameInstance +void ULyraGameInstance::StaticRegisterNativesULyraGameInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameInstance); +UClass* Z_Construct_UClass_ULyraGameInstance_NoRegister() +{ + return ULyraGameInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraGameInstance.h" }, + { "ModuleRelativePath", "System/LyraGameInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameInstance_Statics::ClassParams = { + &ULyraGameInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameInstance() +{ + if (!Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton, Z_Construct_UClass_ULyraGameInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameInstance); +ULyraGameInstance::~ULyraGameInstance() {} +// End Class ULyraGameInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameInstance, ULyraGameInstance::StaticClass, TEXT("ULyraGameInstance"), &Z_Registration_Info_UClass_ULyraGameInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameInstance), 3731891058U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_2251477346(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.generated.h new file mode 100644 index 00000000..c51e2dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameInstance.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameInstance_generated_h +#error "LyraGameInstance.generated.h already included, missing '#pragma once' in LyraGameInstance.h" +#endif +#define LYRAGAME_LyraGameInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameInstance(); \ + friend struct Z_Construct_UClass_ULyraGameInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameInstance, UCommonGameInstance, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameInstance) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameInstance(ULyraGameInstance&&); \ + ULyraGameInstance(const ULyraGameInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameInstance) \ + NO_API virtual ~ULyraGameInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.gen.cpp new file mode 100644 index 00000000..d27a7b9a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.gen.cpp @@ -0,0 +1,306 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraGameMode.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameMode() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameMode(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameMode Function GetPawnDataForController +struct Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics +{ + struct LyraGameMode_eventGetPawnDataForController_Parms + { + const AController* InController; + const ULyraPawnData* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InController_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_InController = { "InController", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventGetPawnDataForController_Parms, InController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InController_MetaData), NewProp_InController_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventGetPawnDataForController_Parms, ReturnValue), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_InController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "GetPawnDataForController", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::LyraGameMode_eventGetPawnDataForController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::LyraGameMode_eventGetPawnDataForController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execGetPawnDataForController) +{ + P_GET_OBJECT(AController,Z_Param_InController); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraPawnData**)Z_Param__Result=P_THIS->GetPawnDataForController(Z_Param_InController); + P_NATIVE_END; +} +// End Class ALyraGameMode Function GetPawnDataForController + +// Begin Class ALyraGameMode Function OnUserInitializedForDedicatedServer +struct Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics +{ + struct LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms), &Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "OnUserInitializedForDedicatedServer", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::LyraGameMode_eventOnUserInitializedForDedicatedServer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execOnUserInitializedForDedicatedServer) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnUserInitializedForDedicatedServer(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class ALyraGameMode Function OnUserInitializedForDedicatedServer + +// Begin Class ALyraGameMode Function RequestPlayerRestartNextFrame +struct Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics +{ + struct LyraGameMode_eventRequestPlayerRestartNextFrame_Parms + { + AController* Controller; + bool bForceReset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Restart (respawn) the specified player or bot next frame\n// - If bForceReset is true, the controller will be reset this frame (abandoning the currently possessed pawn, if any)\n" }, +#endif + { "CPP_Default_bForceReset", "false" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Restart (respawn) the specified player or bot next frame\n- If bForceReset is true, the controller will be reset this frame (abandoning the currently possessed pawn, if any)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Controller; + static void NewProp_bForceReset_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bForceReset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_Controller = { "Controller", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameMode_eventRequestPlayerRestartNextFrame_Parms, Controller), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset_SetBit(void* Obj) +{ + ((LyraGameMode_eventRequestPlayerRestartNextFrame_Parms*)Obj)->bForceReset = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset = { "bForceReset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameMode_eventRequestPlayerRestartNextFrame_Parms), &Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_Controller, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::NewProp_bForceReset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameMode, nullptr, "RequestPlayerRestartNextFrame", nullptr, nullptr, Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::LyraGameMode_eventRequestPlayerRestartNextFrame_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::LyraGameMode_eventRequestPlayerRestartNextFrame_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameMode::execRequestPlayerRestartNextFrame) +{ + P_GET_OBJECT(AController,Z_Param_Controller); + P_GET_UBOOL(Z_Param_bForceReset); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RequestPlayerRestartNextFrame(Z_Param_Controller,Z_Param_bForceReset); + P_NATIVE_END; +} +// End Class ALyraGameMode Function RequestPlayerRestartNextFrame + +// Begin Class ALyraGameMode +void ALyraGameMode::StaticRegisterNativesALyraGameMode() +{ + UClass* Class = ALyraGameMode::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPawnDataForController", &ALyraGameMode::execGetPawnDataForController }, + { "OnUserInitializedForDedicatedServer", &ALyraGameMode::execOnUserInitializedForDedicatedServer }, + { "RequestPlayerRestartNextFrame", &ALyraGameMode::execRequestPlayerRestartNextFrame }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameMode); +UClass* Z_Construct_UClass_ALyraGameMode_NoRegister() +{ + return ALyraGameMode::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraGameMode\n *\n *\x09The base game mode class used by this project.\n */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "GameModes/LyraGameMode.h" }, + { "ModuleRelativePath", "GameModes/LyraGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base game mode class used by this project." }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraGameMode\n\n The base game mode class used by this project." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraGameMode_GetPawnDataForController, "GetPawnDataForController" }, // 1357452646 + { &Z_Construct_UFunction_ALyraGameMode_OnUserInitializedForDedicatedServer, "OnUserInitializedForDedicatedServer" }, // 3591449817 + { &Z_Construct_UFunction_ALyraGameMode_RequestPlayerRestartNextFrame, "RequestPlayerRestartNextFrame" }, // 380837510 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraGameMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularGameModeBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameMode_Statics::ClassParams = { + &ALyraGameMode::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameMode_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameMode() +{ + if (!Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton, Z_Construct_UClass_ALyraGameMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameMode.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameMode); +ALyraGameMode::~ALyraGameMode() {} +// End Class ALyraGameMode + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameMode, ALyraGameMode::StaticClass, TEXT("ALyraGameMode"), &Z_Registration_Info_UClass_ALyraGameMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameMode), 2350183155U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_92523888(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.generated.h new file mode 100644 index 00000000..b566e9e1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameMode.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraGameMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class UCommonUserInfo; +class ULyraPawnData; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +#ifdef LYRAGAME_LyraGameMode_generated_h +#error "LyraGameMode.generated.h already included, missing '#pragma once' in LyraGameMode.h" +#endif +#define LYRAGAME_LyraGameMode_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnUserInitializedForDedicatedServer); \ + DECLARE_FUNCTION(execRequestPlayerRestartNextFrame); \ + DECLARE_FUNCTION(execGetPawnDataForController); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameMode(); \ + friend struct Z_Construct_UClass_ALyraGameMode_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameMode, AModularGameModeBase, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameMode) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameMode(ALyraGameMode&&); \ + ALyraGameMode(const ALyraGameMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameMode); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameMode) \ + NO_API virtual ~ALyraGameMode(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_34_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h_37_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameMode_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp new file mode 100644 index 00000000..33d8b1f0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Phases/LyraGamePhaseAbility.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGamePhaseAbility() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGamePhaseAbility +void ULyraGamePhaseAbility::StaticRegisterNativesULyraGamePhaseAbility() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGamePhaseAbility); +UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister() +{ + return ULyraGamePhaseAbility::StaticClass(); +} +struct Z_Construct_UClass_ULyraGamePhaseAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGamePhaseAbility\n *\n * The base gameplay ability for any ability that is used to change the active game phase.\n */" }, +#endif + { "HideCategories", "Input Input" }, + { "IncludePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGamePhaseAbility\n\nThe base gameplay ability for any ability that is used to change the active game phase." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamePhaseTag_MetaData[] = { + { "Category", "Lyra|Game Phase" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines the game phase that this game phase ability is part of. So for example,\n// if your game phase is GamePhase.RoundStart, then it will cancel all sibling phases.\n// So if you had a phase such as GamePhase.WaitingToStart that was active, starting\n// the ability part of RoundStart would end WaitingToStart. However to get nested behaviors\n// you can also nest the phases. So for example, GamePhase.Playing.NormalPlay, is a sub-phase\n// of the parent GamePhase.Playing, so changing the sub-phase to GamePhase.Playing.SuddenDeath,\n// would stop any ability tied to GamePhase.Playing.*, but wouldn't end any ability \n// tied to the GamePhase.Playing phase.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the game phase that this game phase ability is part of. So for example,\nif your game phase is GamePhase.RoundStart, then it will cancel all sibling phases.\nSo if you had a phase such as GamePhase.WaitingToStart that was active, starting\nthe ability part of RoundStart would end WaitingToStart. However to get nested behaviors\nyou can also nest the phases. So for example, GamePhase.Playing.NormalPlay, is a sub-phase\nof the parent GamePhase.Playing, so changing the sub-phase to GamePhase.Playing.SuddenDeath,\nwould stop any ability tied to GamePhase.Playing.*, but wouldn't end any ability\ntied to the GamePhase.Playing phase." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_GamePhaseTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGamePhaseAbility_Statics::NewProp_GamePhaseTag = { "GamePhaseTag", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGamePhaseAbility, GamePhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamePhaseTag_MetaData), NewProp_GamePhaseTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGamePhaseAbility_Statics::NewProp_GamePhaseTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGamePhaseAbility_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGamePhaseAbility_Statics::ClassParams = { + &ULyraGamePhaseAbility::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseAbility_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGamePhaseAbility_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGamePhaseAbility() +{ + if (!Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton, Z_Construct_UClass_ULyraGamePhaseAbility_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGamePhaseAbility.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGamePhaseAbility::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGamePhaseAbility); +ULyraGamePhaseAbility::~ULyraGamePhaseAbility() {} +// End Class ULyraGamePhaseAbility + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGamePhaseAbility, ULyraGamePhaseAbility::StaticClass, TEXT("ULyraGamePhaseAbility"), &Z_Registration_Info_UClass_ULyraGamePhaseAbility, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGamePhaseAbility), 615369293U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_2689296165(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h new file mode 100644 index 00000000..200ead54 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseAbility.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Phases/LyraGamePhaseAbility.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGamePhaseAbility_generated_h +#error "LyraGamePhaseAbility.generated.h already included, missing '#pragma once' in LyraGamePhaseAbility.h" +#endif +#define LYRAGAME_LyraGamePhaseAbility_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGamePhaseAbility(); \ + friend struct Z_Construct_UClass_ULyraGamePhaseAbility_Statics; \ +public: \ + DECLARE_CLASS(ULyraGamePhaseAbility, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGamePhaseAbility) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGamePhaseAbility(ULyraGamePhaseAbility&&); \ + ULyraGamePhaseAbility(const ULyraGamePhaseAbility&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGamePhaseAbility); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGamePhaseAbility); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGamePhaseAbility) \ + NO_API virtual ~ULyraGamePhaseAbility(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseAbility_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp new file mode 100644 index 00000000..d91a77b3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.gen.cpp @@ -0,0 +1,501 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Phases/LyraGamePhaseSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGamePhaseSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EPhaseTagMatchType(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraGamePhaseDynamicDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms + { + const ULyraGamePhaseAbility* Phase; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Phase_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Phase; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms, Phase), Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Phase_MetaData), NewProp_Phase_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::NewProp_Phase, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraGamePhaseDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraGamePhaseDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseDynamicDelegate, const ULyraGamePhaseAbility* Phase) +{ + struct _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms + { + const ULyraGamePhaseAbility* Phase; + }; + _Script_LyraGame_eventLyraGamePhaseDynamicDelegate_Parms Parms; + Parms.Phase=Phase; + LyraGamePhaseDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FLyraGamePhaseDynamicDelegate + +// Begin Delegate FLyraGamePhaseTagDynamicDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms + { + FGameplayTag PhaseTag; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseTag_MetaData), NewProp_PhaseTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::NewProp_PhaseTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraGamePhaseTagDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraGamePhaseTagDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseTagDynamicDelegate, FGameplayTag const& PhaseTag) +{ + struct _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms + { + FGameplayTag PhaseTag; + }; + _Script_LyraGame_eventLyraGamePhaseTagDynamicDelegate_Parms Parms; + Parms.PhaseTag=PhaseTag; + LyraGamePhaseTagDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FLyraGamePhaseTagDynamicDelegate + +// Begin Enum EPhaseTagMatchType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EPhaseTagMatchType; +static UEnum* EPhaseTagMatchType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton) + { + Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EPhaseTagMatchType")); + } + return Z_Registration_Info_UEnum_EPhaseTagMatchType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EPhaseTagMatchType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for message receivers\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive messages with exactly the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EPhaseTagMatchType::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive messages with exactly the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + { "PartialMatch.Comment", "// A partial match will receive any messages rooted in the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EPhaseTagMatchType::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any messages rooted in the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for message receivers" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EPhaseTagMatchType::ExactMatch", (int64)EPhaseTagMatchType::ExactMatch }, + { "EPhaseTagMatchType::PartialMatch", (int64)EPhaseTagMatchType::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EPhaseTagMatchType", + "EPhaseTagMatchType", + Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EPhaseTagMatchType() +{ + if (!Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton, Z_Construct_UEnum_LyraGame_EPhaseTagMatchType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EPhaseTagMatchType.InnerSingleton; +} +// End Enum EPhaseTagMatchType + +// Begin Class ULyraGamePhaseSubsystem Function IsPhaseActive +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics +{ + struct LyraGamePhaseSubsystem_eventIsPhaseActive_Parms + { + FGameplayTag PhaseTag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "PhaseTag" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventIsPhaseActive_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseTag_MetaData), NewProp_PhaseTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGamePhaseSubsystem_eventIsPhaseActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGamePhaseSubsystem_eventIsPhaseActive_Parms), &Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "IsPhaseActive", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::LyraGamePhaseSubsystem_eventIsPhaseActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::LyraGamePhaseSubsystem_eventIsPhaseActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execIsPhaseActive) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_PhaseTag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsPhaseActive(Z_Param_Out_PhaseTag); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function IsPhaseActive + +// Begin Class ULyraGamePhaseSubsystem Function K2_StartPhase +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_StartPhase_Parms + { + TSubclassOf Phase; + FScriptDelegate PhaseEnded; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "PhaseEnded" }, + { "Category", "Game Phase" }, + { "DisplayName", "Start Phase" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PhaseEnded_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Phase; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_PhaseEnded; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_Phase = { "Phase", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_StartPhase_Parms, Phase), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraGamePhaseAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_PhaseEnded = { "PhaseEnded", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_StartPhase_Parms, PhaseEnded), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseDynamicDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PhaseEnded_MetaData), NewProp_PhaseEnded_MetaData) }; // 4190339885 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_Phase, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::NewProp_PhaseEnded, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_StartPhase", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::LyraGamePhaseSubsystem_eventK2_StartPhase_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::LyraGamePhaseSubsystem_eventK2_StartPhase_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_StartPhase) +{ + P_GET_OBJECT(UClass,Z_Param_Phase); + P_GET_PROPERTY_REF(FDelegateProperty,Z_Param_Out_PhaseEnded); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_StartPhase(Z_Param_Phase,FLyraGamePhaseDynamicDelegate(Z_Param_Out_PhaseEnded)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_StartPhase + +// Begin Class ULyraGamePhaseSubsystem Function K2_WhenPhaseEnds +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms + { + FGameplayTag PhaseTag; + EPhaseTagMatchType MatchType; + FScriptDelegate WhenPhaseEnd; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "WhenPhaseEnd" }, + { "Category", "Game Phase" }, + { "DisplayName", "When Phase Ends" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_WhenPhaseEnd; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, MatchType), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, METADATA_PARAMS(0, nullptr) }; // 2047295966 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_WhenPhaseEnd = { "WhenPhaseEnd", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms, WhenPhaseEnd), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 1514117767 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::NewProp_WhenPhaseEnd, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_WhenPhaseEnds", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseEnds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_WhenPhaseEnds) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_PhaseTag); + P_GET_ENUM(EPhaseTagMatchType,Z_Param_MatchType); + P_GET_PROPERTY(FDelegateProperty,Z_Param_WhenPhaseEnd); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_WhenPhaseEnds(Z_Param_PhaseTag,EPhaseTagMatchType(Z_Param_MatchType),FLyraGamePhaseTagDynamicDelegate(Z_Param_WhenPhaseEnd)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_WhenPhaseEnds + +// Begin Class ULyraGamePhaseSubsystem Function K2_WhenPhaseStartsOrIsActive +struct Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics +{ + struct LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms + { + FGameplayTag PhaseTag; + EPhaseTagMatchType MatchType; + FScriptDelegate WhenPhaseActive; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AutoCreateRefTerm", "WhenPhaseActive" }, + { "Category", "Game Phase" }, + { "DisplayName", "When Phase Starts or Is Active" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PhaseTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_WhenPhaseActive; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_PhaseTag = { "PhaseTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, PhaseTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, MatchType), Z_Construct_UEnum_LyraGame_EPhaseTagMatchType, METADATA_PARAMS(0, nullptr) }; // 2047295966 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_WhenPhaseActive = { "WhenPhaseActive", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms, WhenPhaseActive), Z_Construct_UDelegateFunction_LyraGame_LyraGamePhaseTagDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 1514117767 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_PhaseTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::NewProp_WhenPhaseActive, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGamePhaseSubsystem, nullptr, "K2_WhenPhaseStartsOrIsActive", nullptr, nullptr, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::LyraGamePhaseSubsystem_eventK2_WhenPhaseStartsOrIsActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGamePhaseSubsystem::execK2_WhenPhaseStartsOrIsActive) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_PhaseTag); + P_GET_ENUM(EPhaseTagMatchType,Z_Param_MatchType); + P_GET_PROPERTY(FDelegateProperty,Z_Param_WhenPhaseActive); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->K2_WhenPhaseStartsOrIsActive(Z_Param_PhaseTag,EPhaseTagMatchType(Z_Param_MatchType),FLyraGamePhaseTagDynamicDelegate(Z_Param_WhenPhaseActive)); + P_NATIVE_END; +} +// End Class ULyraGamePhaseSubsystem Function K2_WhenPhaseStartsOrIsActive + +// Begin Class ULyraGamePhaseSubsystem +void ULyraGamePhaseSubsystem::StaticRegisterNativesULyraGamePhaseSubsystem() +{ + UClass* Class = ULyraGamePhaseSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsPhaseActive", &ULyraGamePhaseSubsystem::execIsPhaseActive }, + { "K2_StartPhase", &ULyraGamePhaseSubsystem::execK2_StartPhase }, + { "K2_WhenPhaseEnds", &ULyraGamePhaseSubsystem::execK2_WhenPhaseEnds }, + { "K2_WhenPhaseStartsOrIsActive", &ULyraGamePhaseSubsystem::execK2_WhenPhaseStartsOrIsActive }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGamePhaseSubsystem); +UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem_NoRegister() +{ + return ULyraGamePhaseSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Subsystem for managing Lyra's game phases using gameplay tags in a nested manner, which allows parent and child \n * phases to be active at the same time, but not sibling phases.\n * Example: Game.Playing and Game.Playing.WarmUp can coexist, but Game.Playing and Game.ShowingScore cannot. \n * When a new phase is started, any active phases that are not ancestors will be ended.\n * Example: if Game.Playing and Game.Playing.CaptureTheFlag are active when Game.Playing.PostGame is started, \n * Game.Playing will remain active, while Game.Playing.CaptureTheFlag will end.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, + { "ModuleRelativePath", "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem for managing Lyra's game phases using gameplay tags in a nested manner, which allows parent and child\nphases to be active at the same time, but not sibling phases.\nExample: Game.Playing and Game.Playing.WarmUp can coexist, but Game.Playing and Game.ShowingScore cannot.\nWhen a new phase is started, any active phases that are not ancestors will be ended.\nExample: if Game.Playing and Game.Playing.CaptureTheFlag are active when Game.Playing.PostGame is started,\n Game.Playing will remain active, while Game.Playing.CaptureTheFlag will end." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_IsPhaseActive, "IsPhaseActive" }, // 3041214234 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_StartPhase, "K2_StartPhase" }, // 3095646158 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseEnds, "K2_WhenPhaseEnds" }, // 2396743627 + { &Z_Construct_UFunction_ULyraGamePhaseSubsystem_K2_WhenPhaseStartsOrIsActive, "K2_WhenPhaseStartsOrIsActive" }, // 2236314844 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::ClassParams = { + &ULyraGamePhaseSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGamePhaseSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton, Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGamePhaseSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGamePhaseSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGamePhaseSubsystem); +ULyraGamePhaseSubsystem::~ULyraGamePhaseSubsystem() {} +// End Class ULyraGamePhaseSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EPhaseTagMatchType_StaticEnum, TEXT("EPhaseTagMatchType"), &Z_Registration_Info_UEnum_EPhaseTagMatchType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2047295966U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGamePhaseSubsystem, ULyraGamePhaseSubsystem::StaticClass, TEXT("ULyraGamePhaseSubsystem"), &Z_Registration_Info_UClass_ULyraGamePhaseSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGamePhaseSubsystem), 3229667276U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_2349810849(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h new file mode 100644 index 00000000..aa385f4e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGamePhaseSubsystem.generated.h @@ -0,0 +1,81 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Phases/LyraGamePhaseSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraGamePhaseAbility; +enum class EPhaseTagMatchType : uint8; +struct FGameplayTag; +#ifdef LYRAGAME_LyraGamePhaseSubsystem_generated_h +#error "LyraGamePhaseSubsystem.generated.h already included, missing '#pragma once' in LyraGamePhaseSubsystem.h" +#endif +#define LYRAGAME_LyraGamePhaseSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_18_DELEGATE \ +LYRAGAME_API void FLyraGamePhaseDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseDynamicDelegate, const ULyraGamePhaseAbility* Phase); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_21_DELEGATE \ +LYRAGAME_API void FLyraGamePhaseTagDynamicDelegate_DelegateWrapper(const FScriptDelegate& LyraGamePhaseTagDynamicDelegate, FGameplayTag const& PhaseTag); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execK2_WhenPhaseEnds); \ + DECLARE_FUNCTION(execK2_WhenPhaseStartsOrIsActive); \ + DECLARE_FUNCTION(execK2_StartPhase); \ + DECLARE_FUNCTION(execIsPhaseActive); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGamePhaseSubsystem(); \ + friend struct Z_Construct_UClass_ULyraGamePhaseSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraGamePhaseSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGamePhaseSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGamePhaseSubsystem(ULyraGamePhaseSubsystem&&); \ + ULyraGamePhaseSubsystem(const ULyraGamePhaseSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGamePhaseSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGamePhaseSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGamePhaseSubsystem) \ + NO_API virtual ~ULyraGamePhaseSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Phases_LyraGamePhaseSubsystem_h + + +#define FOREACH_ENUM_EPHASETAGMATCHTYPE(op) \ + op(EPhaseTagMatchType::ExactMatch) \ + op(EPhaseTagMatchType::PartialMatch) + +enum class EPhaseTagMatchType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.gen.cpp new file mode 100644 index 00000000..777fdfd4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraGameSession.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameSession() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameSession(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameSession(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameSession_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameSession +void ALyraGameSession::StaticRegisterNativesALyraGameSession() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameSession); +UClass* Z_Construct_UClass_ALyraGameSession_NoRegister() +{ + return ALyraGameSession::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameSession_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "System/LyraGameSession.h" }, + { "ModuleRelativePath", "System/LyraGameSession.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraGameSession_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameSession, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameSession_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameSession_Statics::ClassParams = { + &ALyraGameSession::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameSession_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameSession_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameSession() +{ + if (!Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton, Z_Construct_UClass_ALyraGameSession_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameSession.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameSession::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameSession); +ALyraGameSession::~ALyraGameSession() {} +// End Class ALyraGameSession + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameSession, ALyraGameSession::StaticClass, TEXT("ALyraGameSession"), &Z_Registration_Info_UClass_ALyraGameSession, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameSession), 234065977U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_752696698(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.generated.h new file mode 100644 index 00000000..7d5c150c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSession.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraGameSession.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameSession_generated_h +#error "LyraGameSession.generated.h already included, missing '#pragma once' in LyraGameSession.h" +#endif +#define LYRAGAME_LyraGameSession_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameSession(); \ + friend struct Z_Construct_UClass_ALyraGameSession_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameSession, AGameSession, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameSession) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameSession(ALyraGameSession&&); \ + ALyraGameSession(const ALyraGameSession&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameSession); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameSession); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameSession) \ + NO_API virtual ~ALyraGameSession(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraGameSession_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp new file mode 100644 index 00000000..db838dc9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.gen.cpp @@ -0,0 +1,128 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraGameSettingRegistry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameSettingRegistry() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameSettingRegistry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameSettingRegistry_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameSettingRegistry +void ULyraGameSettingRegistry::StaticRegisterNativesULyraGameSettingRegistry() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameSettingRegistry); +UClass* Z_Construct_UClass_ULyraGameSettingRegistry_NoRegister() +{ + return ULyraGameSettingRegistry::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameSettingRegistry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Settings/LyraGameSettingRegistry.h" }, + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VideoSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameplaySettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseAndKeyboardSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadSettings_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraGameSettingRegistry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VideoSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AudioSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GameplaySettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MouseAndKeyboardSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GamepadSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_VideoSettings = { "VideoSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, VideoSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VideoSettings_MetaData), NewProp_VideoSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_AudioSettings = { "AudioSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, AudioSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioSettings_MetaData), NewProp_AudioSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GameplaySettings = { "GameplaySettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, GameplaySettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameplaySettings_MetaData), NewProp_GameplaySettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_MouseAndKeyboardSettings = { "MouseAndKeyboardSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, MouseAndKeyboardSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseAndKeyboardSettings_MetaData), NewProp_MouseAndKeyboardSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GamepadSettings = { "GamepadSettings", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameSettingRegistry, GamepadSettings), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadSettings_MetaData), NewProp_GamepadSettings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_VideoSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_AudioSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GameplaySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_MouseAndKeyboardSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameSettingRegistry_Statics::NewProp_GamepadSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameSettingRegistry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingRegistry, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameSettingRegistry_Statics::ClassParams = { + &ULyraGameSettingRegistry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameSettingRegistry_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameSettingRegistry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameSettingRegistry() +{ + if (!Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton, Z_Construct_UClass_ULyraGameSettingRegistry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameSettingRegistry.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameSettingRegistry::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameSettingRegistry); +ULyraGameSettingRegistry::~ULyraGameSettingRegistry() {} +// End Class ULyraGameSettingRegistry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameSettingRegistry, ULyraGameSettingRegistry::StaticClass, TEXT("ULyraGameSettingRegistry"), &Z_Registration_Info_UClass_ULyraGameSettingRegistry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameSettingRegistry), 14763327U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_3890635981(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h new file mode 100644 index 00000000..90bdca9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameSettingRegistry.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraGameSettingRegistry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameSettingRegistry_generated_h +#error "LyraGameSettingRegistry.generated.h already included, missing '#pragma once' in LyraGameSettingRegistry.h" +#endif +#define LYRAGAME_LyraGameSettingRegistry_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameSettingRegistry(); \ + friend struct Z_Construct_UClass_ULyraGameSettingRegistry_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameSettingRegistry, UGameSettingRegistry, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameSettingRegistry) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameSettingRegistry(ULyraGameSettingRegistry&&); \ + ULyraGameSettingRegistry(const ULyraGameSettingRegistry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameSettingRegistry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameSettingRegistry); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameSettingRegistry) \ + NO_API virtual ~ULyraGameSettingRegistry(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraGameSettingRegistry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.gen.cpp new file mode 100644 index 00000000..a39fb497 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.gen.cpp @@ -0,0 +1,382 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraGameState.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameState(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraGameState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraGameState Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics +{ + struct LyraGameState_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the ability system component used for game wide things\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the ability system component used for game wide things" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::LyraGameState_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::LyraGameState_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraGameState Function GetLyraAbilitySystemComponent + +// Begin Class ALyraGameState Function MulticastMessageToClients +struct LyraGameState_eventMulticastMessageToClients_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraGameState_MulticastMessageToClients = FName(TEXT("MulticastMessageToClients")); +void ALyraGameState::MulticastMessageToClients(const FLyraVerbMessage Message) +{ + LyraGameState_eventMulticastMessageToClients_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraGameState_MulticastMessageToClients); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message that all clients will (probably) get\n// (use only for client notifications like eliminations, server join messages, etc... that can handle being lost)\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message that all clients will (probably) get\n(use only for client notifications like eliminations, server join messages, etc... that can handle being lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventMulticastMessageToClients_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "MulticastMessageToClients", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::PropPointers), sizeof(LyraGameState_eventMulticastMessageToClients_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04024C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameState_eventMulticastMessageToClients_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execMulticastMessageToClients) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->MulticastMessageToClients_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraGameState Function MulticastMessageToClients + +// Begin Class ALyraGameState Function MulticastReliableMessageToClients +struct LyraGameState_eventMulticastReliableMessageToClients_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraGameState_MulticastReliableMessageToClients = FName(TEXT("MulticastReliableMessageToClients")); +void ALyraGameState::MulticastReliableMessageToClients(const FLyraVerbMessage Message) +{ + LyraGameState_eventMulticastReliableMessageToClients_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraGameState_MulticastReliableMessageToClients); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message that all clients will be guaranteed to get\n// (use only for client notifications that cannot handle being lost)\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message that all clients will be guaranteed to get\n(use only for client notifications that cannot handle being lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameState_eventMulticastReliableMessageToClients_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "MulticastReliableMessageToClients", nullptr, nullptr, Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::PropPointers), sizeof(LyraGameState_eventMulticastReliableMessageToClients_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04024CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameState_eventMulticastReliableMessageToClients_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execMulticastReliableMessageToClients) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->MulticastReliableMessageToClients_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraGameState Function MulticastReliableMessageToClients + +// Begin Class ALyraGameState Function OnRep_RecorderPlayerState +struct Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraGameState, nullptr, "OnRep_RecorderPlayerState", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraGameState::execOnRep_RecorderPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_RecorderPlayerState(); + P_NATIVE_END; +} +// End Class ALyraGameState Function OnRep_RecorderPlayerState + +// Begin Class ALyraGameState +void ALyraGameState::StaticRegisterNativesALyraGameState() +{ + UClass* Class = ALyraGameState::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLyraAbilitySystemComponent", &ALyraGameState::execGetLyraAbilitySystemComponent }, + { "MulticastMessageToClients", &ALyraGameState::execMulticastMessageToClients }, + { "MulticastReliableMessageToClients", &ALyraGameState::execMulticastReliableMessageToClients }, + { "OnRep_RecorderPlayerState", &ALyraGameState::execOnRep_RecorderPlayerState }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraGameState); +UClass* Z_Construct_UClass_ALyraGameState_NoRegister() +{ + return ALyraGameState::StaticClass(); +} +struct Z_Construct_UClass_ALyraGameState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraGameState\n *\n *\x09The base game state class used by this project.\n */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "GameModes/LyraGameState.h" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraGameState\n\n The base game state class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceManagerComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handles loading and managing the current gameplay experience\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles loading and managing the current gameplay experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|GameState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component subobject for game-wide things (primarily gameplay cues)\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component subobject for game-wide things (primarily gameplay cues)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ServerFPS_MetaData[] = { + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RecorderPlayerState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The player state that recorded a replay, it is used to select the right pawn to follow\n// This is only set in replay streams and is not replicated normally\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraGameState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The player state that recorded a replay, it is used to select the right pawn to follow\nThis is only set in replay streams and is not replicated normally" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ExperienceManagerComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ServerFPS; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RecorderPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraGameState_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 3064388432 + { &Z_Construct_UFunction_ALyraGameState_MulticastMessageToClients, "MulticastMessageToClients" }, // 4065021098 + { &Z_Construct_UFunction_ALyraGameState_MulticastReliableMessageToClients, "MulticastReliableMessageToClients" }, // 120084616 + { &Z_Construct_UFunction_ALyraGameState_OnRep_RecorderPlayerState, "OnRep_RecorderPlayerState" }, // 1609352783 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_ExperienceManagerComponent = { "ExperienceManagerComponent", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, ExperienceManagerComponent), Z_Construct_UClass_ULyraExperienceManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceManagerComponent_MetaData), NewProp_ExperienceManagerComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_ServerFPS = { "ServerFPS", nullptr, (EPropertyFlags)0x0020080000000020, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, ServerFPS), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ServerFPS_MetaData), NewProp_ServerFPS_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraGameState_Statics::NewProp_RecorderPlayerState = { "RecorderPlayerState", "OnRep_RecorderPlayerState", (EPropertyFlags)0x0124080100002020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraGameState, RecorderPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RecorderPlayerState_MetaData), NewProp_RecorderPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraGameState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_ExperienceManagerComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_ServerFPS, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraGameState_Statics::NewProp_RecorderPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraGameState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularGameStateBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraGameState_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraGameState, IAbilitySystemInterface), false }, // 2272790346 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraGameState_Statics::ClassParams = { + &ALyraGameState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraGameState_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraGameState_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraGameState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraGameState() +{ + if (!Z_Registration_Info_UClass_ALyraGameState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraGameState.OuterSingleton, Z_Construct_UClass_ALyraGameState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraGameState.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraGameState::StaticClass(); +} +void ALyraGameState::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_ServerFPS(TEXT("ServerFPS")); + static const FName Name_RecorderPlayerState(TEXT("RecorderPlayerState")); + const bool bIsValid = true + && Name_ServerFPS == ClassReps[(int32)ENetFields_Private::ServerFPS].Property->GetFName() + && Name_RecorderPlayerState == ClassReps[(int32)ENetFields_Private::RecorderPlayerState].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraGameState")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraGameState); +ALyraGameState::~ALyraGameState() {} +// End Class ALyraGameState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraGameState, ALyraGameState::StaticClass, TEXT("ALyraGameState"), &Z_Registration_Info_UClass_ALyraGameState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraGameState), 2413448556U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_3907717568(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.generated.h new file mode 100644 index 00000000..31941ab8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameState.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraGameState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraAbilitySystemComponent; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraGameState_generated_h +#error "LyraGameState.generated.h already included, missing '#pragma once' in LyraGameState.h" +#endif +#define LYRAGAME_LyraGameState_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void MulticastReliableMessageToClients_Implementation(const FLyraVerbMessage Message); \ + virtual void MulticastMessageToClients_Implementation(const FLyraVerbMessage Message); \ + DECLARE_FUNCTION(execOnRep_RecorderPlayerState); \ + DECLARE_FUNCTION(execMulticastReliableMessageToClients); \ + DECLARE_FUNCTION(execMulticastMessageToClients); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraGameState(); \ + friend struct Z_Construct_UClass_ALyraGameState_Statics; \ +public: \ + DECLARE_CLASS(ALyraGameState, AModularGameStateBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraGameState) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + ServerFPS=NETFIELD_REP_START, \ + RecorderPlayerState, \ + NETFIELD_REP_END=RecorderPlayerState }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraGameState(ALyraGameState&&); \ + ALyraGameState(const ALyraGameState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraGameState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraGameState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraGameState) \ + NO_API virtual ~ALyraGameState(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraGameState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp new file mode 100644 index 00000000..949b1a23 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.gen.cpp @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraGameViewportClient.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameViewportClient() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonGameViewportClient(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameViewportClient(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameViewportClient_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameViewportClient +void ULyraGameViewportClient::StaticRegisterNativesULyraGameViewportClient() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameViewportClient); +UClass* Z_Construct_UClass_ULyraGameViewportClient_NoRegister() +{ + return ULyraGameViewportClient::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameViewportClient_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/LyraGameViewportClient.h" }, + { "ModuleRelativePath", "UI/LyraGameViewportClient.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameViewportClient_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonGameViewportClient, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameViewportClient_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameViewportClient_Statics::ClassParams = { + &ULyraGameViewportClient::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameViewportClient_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameViewportClient_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameViewportClient() +{ + if (!Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton, Z_Construct_UClass_ULyraGameViewportClient_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameViewportClient.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameViewportClient::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameViewportClient); +ULyraGameViewportClient::~ULyraGameViewportClient() {} +// End Class ULyraGameViewportClient + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameViewportClient, ULyraGameViewportClient::StaticClass, TEXT("ULyraGameViewportClient"), &Z_Registration_Info_UClass_ULyraGameViewportClient, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameViewportClient), 1471261696U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_1035542228(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h new file mode 100644 index 00000000..fa8b36ef --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameViewportClient.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraGameViewportClient.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameViewportClient_generated_h +#error "LyraGameViewportClient.generated.h already included, missing '#pragma once' in LyraGameViewportClient.h" +#endif +#define LYRAGAME_LyraGameViewportClient_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameViewportClient(); \ + friend struct Z_Construct_UClass_ULyraGameViewportClient_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameViewportClient, UCommonGameViewportClient, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameViewportClient) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameViewportClient(ULyraGameViewportClient&&); \ + ULyraGameViewportClient(const ULyraGameViewportClient&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameViewportClient); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameViewportClient); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGameViewportClient) \ + NO_API virtual ~ULyraGameViewportClient(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraGameViewportClient_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp new file mode 100644 index 00000000..aaf22f50 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.gen.cpp @@ -0,0 +1,1098 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAnimMontage_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraCharacter_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityCost_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraAbilityActivationPolicy +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy; +static UEnum* ELyraAbilityActivationPolicy_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityActivationPolicy")); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityActivationPolicy_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraAbilityActivationPolicy\n *\n *\x09""Defines how an ability is meant to activate.\n */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "OnInputTriggered.Comment", "// Try to activate the ability when the input is triggered.\n" }, + { "OnInputTriggered.Name", "ELyraAbilityActivationPolicy::OnInputTriggered" }, + { "OnInputTriggered.ToolTip", "Try to activate the ability when the input is triggered." }, + { "OnSpawn.Comment", "// Try to activate the ability when an avatar is assigned.\n" }, + { "OnSpawn.Name", "ELyraAbilityActivationPolicy::OnSpawn" }, + { "OnSpawn.ToolTip", "Try to activate the ability when an avatar is assigned." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraAbilityActivationPolicy\n\n Defines how an ability is meant to activate." }, +#endif + { "WhileInputActive.Comment", "// Continually try to activate the ability while the input is active.\n" }, + { "WhileInputActive.Name", "ELyraAbilityActivationPolicy::WhileInputActive" }, + { "WhileInputActive.ToolTip", "Continually try to activate the ability while the input is active." }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityActivationPolicy::OnInputTriggered", (int64)ELyraAbilityActivationPolicy::OnInputTriggered }, + { "ELyraAbilityActivationPolicy::WhileInputActive", (int64)ELyraAbilityActivationPolicy::WhileInputActive }, + { "ELyraAbilityActivationPolicy::OnSpawn", (int64)ELyraAbilityActivationPolicy::OnSpawn }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityActivationPolicy", + "ELyraAbilityActivationPolicy", + Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy.InnerSingleton; +} +// End Enum ELyraAbilityActivationPolicy + +// Begin Enum ELyraAbilityActivationGroup +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityActivationGroup; +static UEnum* ELyraAbilityActivationGroup_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityActivationGroup")); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityActivationGroup_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraAbilityActivationGroup\n *\n *\x09""Defines how an ability activates in relation to other abilities.\n */" }, +#endif + { "Exclusive_Blocking.Comment", "// Ability blocks all other exclusive abilities from activating.\n" }, + { "Exclusive_Blocking.Name", "ELyraAbilityActivationGroup::Exclusive_Blocking" }, + { "Exclusive_Blocking.ToolTip", "Ability blocks all other exclusive abilities from activating." }, + { "Exclusive_Replaceable.Comment", "// Ability is canceled and replaced by other exclusive abilities.\n" }, + { "Exclusive_Replaceable.Name", "ELyraAbilityActivationGroup::Exclusive_Replaceable" }, + { "Exclusive_Replaceable.ToolTip", "Ability is canceled and replaced by other exclusive abilities." }, + { "Independent.Comment", "// Ability runs independently of all other abilities.\n" }, + { "Independent.Name", "ELyraAbilityActivationGroup::Independent" }, + { "Independent.ToolTip", "Ability runs independently of all other abilities." }, + { "MAX.Hidden", "" }, + { "MAX.Name", "ELyraAbilityActivationGroup::MAX" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraAbilityActivationGroup\n\n Defines how an ability activates in relation to other abilities." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityActivationGroup::Independent", (int64)ELyraAbilityActivationGroup::Independent }, + { "ELyraAbilityActivationGroup::Exclusive_Replaceable", (int64)ELyraAbilityActivationGroup::Exclusive_Replaceable }, + { "ELyraAbilityActivationGroup::Exclusive_Blocking", (int64)ELyraAbilityActivationGroup::Exclusive_Blocking }, + { "ELyraAbilityActivationGroup::MAX", (int64)ELyraAbilityActivationGroup::MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityActivationGroup", + "ELyraAbilityActivationGroup", + Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityActivationGroup.InnerSingleton; +} +// End Enum ELyraAbilityActivationGroup + +// Begin ScriptStruct FLyraAbilityMontageFailureMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage; +class UScriptStruct* FLyraAbilityMontageFailureMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAbilityMontageFailureMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAbilityMontageFailureMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Failure reason that can be used to play an animation montage when a failure occurs */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Failure reason that can be used to play an animation montage when a failure occurs" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerController_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Player controller that failed to activate the ability, if the AbilitySystemComponent was player owned\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Player controller that failed to activate the ability, if the AbilitySystemComponent was player owned" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AvatarActor_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Avatar actor that failed to activate the ability\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Avatar actor that failed to activate the ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTags_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// All the reasons why this ability has failed\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "All the reasons why this ability has failed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureMontage_MetaData[] = { + { "Category", "LyraAbilityMontageFailureMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AvatarActor; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTags; + static const UECodeGen_Private::FObjectPropertyParams NewProp_FailureMontage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerController_MetaData), NewProp_PlayerController_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_AvatarActor = { "AvatarActor", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, AvatarActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AvatarActor_MetaData), NewProp_AvatarActor_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureTags = { "FailureTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, FailureTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTags_MetaData), NewProp_FailureTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureMontage = { "FailureMontage", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAbilityMontageFailureMessage, FailureMontage), Z_Construct_UClass_UAnimMontage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureMontage_MetaData), NewProp_FailureMontage_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_AvatarActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewProp_FailureMontage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraAbilityMontageFailureMessage", + Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::PropPointers), + sizeof(FLyraAbilityMontageFailureMessage), + alignof(FLyraAbilityMontageFailureMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage.InnerSingleton; +} +// End ScriptStruct FLyraAbilityMontageFailureMessage + +// Begin Class ULyraGameplayAbility Function CanChangeActivationGroup +struct Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics +{ + struct LyraGameplayAbility_eventCanChangeActivationGroup_Parms + { + ELyraAbilityActivationGroup NewGroup; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if the requested activation group is a valid transition.\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the requested activation group is a valid transition." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewGroup; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup = { "NewGroup", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventCanChangeActivationGroup_Parms, NewGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(0, nullptr) }; // 4247120011 +void Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGameplayAbility_eventCanChangeActivationGroup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameplayAbility_eventCanChangeActivationGroup_Parms), &Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_NewGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "CanChangeActivationGroup", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::LyraGameplayAbility_eventCanChangeActivationGroup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::LyraGameplayAbility_eventCanChangeActivationGroup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execCanChangeActivationGroup) +{ + P_GET_ENUM(ELyraAbilityActivationGroup,Z_Param_NewGroup); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanChangeActivationGroup(ELyraAbilityActivationGroup(Z_Param_NewGroup)); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function CanChangeActivationGroup + +// Begin Class ULyraGameplayAbility Function ChangeActivationGroup +struct Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics +{ + struct LyraGameplayAbility_eventChangeActivationGroup_Parms + { + ELyraAbilityActivationGroup NewGroup; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tries to change the activation group. Returns true if it successfully changed.\n" }, +#endif + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tries to change the activation group. Returns true if it successfully changed." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewGroup; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup = { "NewGroup", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventChangeActivationGroup_Parms, NewGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(0, nullptr) }; // 4247120011 +void Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraGameplayAbility_eventChangeActivationGroup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraGameplayAbility_eventChangeActivationGroup_Parms), &Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_NewGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ChangeActivationGroup", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::LyraGameplayAbility_eventChangeActivationGroup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::LyraGameplayAbility_eventChangeActivationGroup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execChangeActivationGroup) +{ + P_GET_ENUM(ELyraAbilityActivationGroup,Z_Param_NewGroup); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ChangeActivationGroup(ELyraAbilityActivationGroup(Z_Param_NewGroup)); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function ChangeActivationGroup + +// Begin Class ULyraGameplayAbility Function ClearCameraMode +struct Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Clears the ability's camera mode. Automatically called if needed when the ability ends.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clears the ability's camera mode. Automatically called if needed when the ability ends." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ClearCameraMode", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execClearCameraMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClearCameraMode(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function ClearCameraMode + +// Begin Class ULyraGameplayAbility Function GetControllerFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetControllerFromActorInfo_Parms + { + AController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetControllerFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetControllerFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetControllerFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetControllerFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetControllerFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(AController**)Z_Param__Result=P_THIS->GetControllerFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetControllerFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetHeroComponentFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms + { + ULyraHeroComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ULyraHeroComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetHeroComponentFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetHeroComponentFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetHeroComponentFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHeroComponent**)Z_Param__Result=P_THIS->GetHeroComponentFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetHeroComponentFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraAbilitySystemComponentFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraAbilitySystemComponentFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraAbilitySystemComponentFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraAbilitySystemComponentFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponentFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraAbilitySystemComponentFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraCharacterFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms + { + ALyraCharacter* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ALyraCharacter_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraCharacterFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraCharacterFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraCharacterFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraCharacter**)Z_Param__Result=P_THIS->GetLyraCharacterFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraCharacterFromActorInfo + +// Begin Class ULyraGameplayAbility Function GetLyraPlayerControllerFromActorInfo +struct Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics +{ + struct LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "GetLyraPlayerControllerFromActorInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::LyraGameplayAbility_eventGetLyraPlayerControllerFromActorInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execGetLyraPlayerControllerFromActorInfo) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerControllerFromActorInfo(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function GetLyraPlayerControllerFromActorInfo + +// Begin Class ULyraGameplayAbility Function K2_OnAbilityAdded +static const FName NAME_ULyraGameplayAbility_K2_OnAbilityAdded = FName(TEXT("K2_OnAbilityAdded")); +void ULyraGameplayAbility::K2_OnAbilityAdded() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnAbilityAdded); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when this ability is granted to the ability system component. */" }, +#endif + { "DisplayName", "OnAbilityAdded" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when this ability is granted to the ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnAbilityAdded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnAbilityAdded + +// Begin Class ULyraGameplayAbility Function K2_OnAbilityRemoved +static const FName NAME_ULyraGameplayAbility_K2_OnAbilityRemoved = FName(TEXT("K2_OnAbilityRemoved")); +void ULyraGameplayAbility::K2_OnAbilityRemoved() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnAbilityRemoved); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when this ability is removed from the ability system component. */" }, +#endif + { "DisplayName", "OnAbilityRemoved" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when this ability is removed from the ability system component." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnAbilityRemoved", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnAbilityRemoved + +// Begin Class ULyraGameplayAbility Function K2_OnPawnAvatarSet +static const FName NAME_ULyraGameplayAbility_K2_OnPawnAvatarSet = FName(TEXT("K2_OnPawnAvatarSet")); +void ULyraGameplayAbility::K2_OnPawnAvatarSet() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_K2_OnPawnAvatarSet); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when the ability system is initialized with a pawn avatar. */" }, +#endif + { "DisplayName", "OnPawnAvatarSet" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the ability system is initialized with a pawn avatar." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "K2_OnPawnAvatarSet", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function K2_OnPawnAvatarSet + +// Begin Class ULyraGameplayAbility Function ScriptOnAbilityFailedToActivate +struct LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms +{ + FGameplayTagContainer FailedReason; +}; +static const FName NAME_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate = FName(TEXT("ScriptOnAbilityFailedToActivate")); +void ULyraGameplayAbility::ScriptOnAbilityFailedToActivate(FGameplayTagContainer const& FailedReason) const +{ + LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms Parms; + Parms.FailedReason=FailedReason; + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate); + const_cast(this)->ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when the ability fails to activate\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when the ability fails to activate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailedReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_FailedReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::NewProp_FailedReason = { "FailedReason", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms, FailedReason), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailedReason_MetaData), NewProp_FailedReason_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::NewProp_FailedReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "ScriptOnAbilityFailedToActivate", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::PropPointers), sizeof(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x48480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameplayAbility_eventScriptOnAbilityFailedToActivate_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility Function ScriptOnAbilityFailedToActivate + +// Begin Class ULyraGameplayAbility Function SetCameraMode +struct Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics +{ + struct LyraGameplayAbility_eventSetCameraMode_Parms + { + TSubclassOf CameraMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the ability's camera mode.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the ability's camera mode." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_CameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::NewProp_CameraMode = { "CameraMode", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_eventSetCameraMode_Parms, CameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::NewProp_CameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility, nullptr, "SetCameraMode", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::LyraGameplayAbility_eventSetCameraMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::LyraGameplayAbility_eventSetCameraMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility::execSetCameraMode) +{ + P_GET_OBJECT(UClass,Z_Param_CameraMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetCameraMode(Z_Param_CameraMode); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility Function SetCameraMode + +// Begin Class ULyraGameplayAbility +void ULyraGameplayAbility::StaticRegisterNativesULyraGameplayAbility() +{ + UClass* Class = ULyraGameplayAbility::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanChangeActivationGroup", &ULyraGameplayAbility::execCanChangeActivationGroup }, + { "ChangeActivationGroup", &ULyraGameplayAbility::execChangeActivationGroup }, + { "ClearCameraMode", &ULyraGameplayAbility::execClearCameraMode }, + { "GetControllerFromActorInfo", &ULyraGameplayAbility::execGetControllerFromActorInfo }, + { "GetHeroComponentFromActorInfo", &ULyraGameplayAbility::execGetHeroComponentFromActorInfo }, + { "GetLyraAbilitySystemComponentFromActorInfo", &ULyraGameplayAbility::execGetLyraAbilitySystemComponentFromActorInfo }, + { "GetLyraCharacterFromActorInfo", &ULyraGameplayAbility::execGetLyraCharacterFromActorInfo }, + { "GetLyraPlayerControllerFromActorInfo", &ULyraGameplayAbility::execGetLyraPlayerControllerFromActorInfo }, + { "SetCameraMode", &ULyraGameplayAbility::execSetCameraMode }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility); +UClass* Z_Construct_UClass_ULyraGameplayAbility_NoRegister() +{ + return ULyraGameplayAbility::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility\n *\n *\x09The base gameplay ability class used by this project.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base gameplay ability class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility\n\n The base gameplay ability class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationPolicy_MetaData[] = { + { "Category", "Lyra|Ability Activation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines how this ability is meant to activate.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines how this ability is meant to activate." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivationGroup_MetaData[] = { + { "Category", "Lyra|Ability Activation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Defines the relationship between this ability activating and other abilities activating.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the relationship between this ability activating and other abilities activating." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalCosts_Inner_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Additional costs that must be paid to activate this ability\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Additional costs that must be paid to activate this ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalCosts_MetaData[] = { + { "Category", "Costs" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Additional costs that must be paid to activate this ability\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Additional costs that must be paid to activate this ability" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTagToUserFacingMessages_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of failure tags to simple error messages\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of failure tags to simple error messages" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FailureTagToAnimMontage_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of failure tags to anim montages that should be played with them\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of failure tags to anim montages that should be played with them" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bLogCancelation_MetaData[] = { + { "Category", "Advanced" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If true, extra information should be logged when this ability is canceled. This is temporary, used for tracking a bug.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, extra information should be logged when this ability is canceled. This is temporary, used for tracking a bug." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ActivationPolicy_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ActivationPolicy; + static const UECodeGen_Private::FBytePropertyParams NewProp_ActivationGroup_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ActivationGroup; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AdditionalCosts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AdditionalCosts; + static const UECodeGen_Private::FTextPropertyParams NewProp_FailureTagToUserFacingMessages_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTagToUserFacingMessages_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_FailureTagToUserFacingMessages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_FailureTagToAnimMontage_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_FailureTagToAnimMontage_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_FailureTagToAnimMontage; + static void NewProp_bLogCancelation_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogCancelation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_CanChangeActivationGroup, "CanChangeActivationGroup" }, // 2281971574 + { &Z_Construct_UFunction_ULyraGameplayAbility_ChangeActivationGroup, "ChangeActivationGroup" }, // 775962407 + { &Z_Construct_UFunction_ULyraGameplayAbility_ClearCameraMode, "ClearCameraMode" }, // 610189094 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetControllerFromActorInfo, "GetControllerFromActorInfo" }, // 3169612665 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetHeroComponentFromActorInfo, "GetHeroComponentFromActorInfo" }, // 3763579031 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraAbilitySystemComponentFromActorInfo, "GetLyraAbilitySystemComponentFromActorInfo" }, // 2536779444 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraCharacterFromActorInfo, "GetLyraCharacterFromActorInfo" }, // 2509278072 + { &Z_Construct_UFunction_ULyraGameplayAbility_GetLyraPlayerControllerFromActorInfo, "GetLyraPlayerControllerFromActorInfo" }, // 3171412522 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityAdded, "K2_OnAbilityAdded" }, // 2928589694 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnAbilityRemoved, "K2_OnAbilityRemoved" }, // 1723495760 + { &Z_Construct_UFunction_ULyraGameplayAbility_K2_OnPawnAvatarSet, "K2_OnPawnAvatarSet" }, // 2453556630 + { &Z_Construct_UFunction_ULyraGameplayAbility_ScriptOnAbilityFailedToActivate, "ScriptOnAbilityFailedToActivate" }, // 3900705727 + { &Z_Construct_UFunction_ULyraGameplayAbility_SetCameraMode, "SetCameraMode" }, // 2229774396 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy = { "ActivationPolicy", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, ActivationPolicy), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationPolicy, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationPolicy_MetaData), NewProp_ActivationPolicy_MetaData) }; // 2395389423 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup = { "ActivationGroup", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, ActivationGroup), Z_Construct_UEnum_LyraGame_ELyraAbilityActivationGroup, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivationGroup_MetaData), NewProp_ActivationGroup_MetaData) }; // 4247120011 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts_Inner = { "AdditionalCosts", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilityCost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalCosts_Inner_MetaData), NewProp_AdditionalCosts_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts = { "AdditionalCosts", nullptr, (EPropertyFlags)0x0124088000010009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, AdditionalCosts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalCosts_MetaData), NewProp_AdditionalCosts_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_ValueProp = { "FailureTagToUserFacingMessages", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_Key_KeyProp = { "FailureTagToUserFacingMessages_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages = { "FailureTagToUserFacingMessages", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, FailureTagToUserFacingMessages), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTagToUserFacingMessages_MetaData), NewProp_FailureTagToUserFacingMessages_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_ValueProp = { "FailureTagToAnimMontage", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UAnimMontage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_Key_KeyProp = { "FailureTagToAnimMontage_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage = { "FailureTagToAnimMontage", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility, FailureTagToAnimMontage), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FailureTagToAnimMontage_MetaData), NewProp_FailureTagToAnimMontage_MetaData) }; // 1298103297 +void Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation_SetBit(void* Obj) +{ + ((ULyraGameplayAbility*)Obj)->bLogCancelation = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation = { "bLogCancelation", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraGameplayAbility), &Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bLogCancelation_MetaData), NewProp_bLogCancelation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationPolicy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_ActivationGroup, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_AdditionalCosts, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToUserFacingMessages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_FailureTagToAnimMontage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Statics::NewProp_bLogCancelation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Statics::ClassParams = { + &ULyraGameplayAbility::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility); +ULyraGameplayAbility::~ULyraGameplayAbility() {} +// End Class ULyraGameplayAbility + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraAbilityActivationPolicy_StaticEnum, TEXT("ELyraAbilityActivationPolicy"), &Z_Registration_Info_UEnum_ELyraAbilityActivationPolicy, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2395389423U) }, + { ELyraAbilityActivationGroup_StaticEnum, TEXT("ELyraAbilityActivationGroup"), &Z_Registration_Info_UEnum_ELyraAbilityActivationGroup, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4247120011U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAbilityMontageFailureMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics::NewStructOps, TEXT("LyraAbilityMontageFailureMessage"), &Z_Registration_Info_UScriptStruct_LyraAbilityMontageFailureMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAbilityMontageFailureMessage), 2511577848U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility, ULyraGameplayAbility::StaticClass, TEXT("ULyraGameplayAbility"), &Z_Registration_Info_UClass_ULyraGameplayAbility, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility), 1109250617U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_2844354040(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h new file mode 100644 index 00000000..7e9421ca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility.generated.h @@ -0,0 +1,102 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +class ALyraCharacter; +class ALyraPlayerController; +class ULyraAbilitySystemComponent; +class ULyraCameraMode; +class ULyraHeroComponent; +enum class ELyraAbilityActivationGroup : uint8; +struct FGameplayTagContainer; +#ifdef LYRAGAME_LyraGameplayAbility_generated_h +#error "LyraGameplayAbility.generated.h already included, missing '#pragma once' in LyraGameplayAbility.h" +#endif +#define LYRAGAME_LyraGameplayAbility_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_74_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAbilityMontageFailureMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execClearCameraMode); \ + DECLARE_FUNCTION(execSetCameraMode); \ + DECLARE_FUNCTION(execChangeActivationGroup); \ + DECLARE_FUNCTION(execCanChangeActivationGroup); \ + DECLARE_FUNCTION(execGetHeroComponentFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraCharacterFromActorInfo); \ + DECLARE_FUNCTION(execGetControllerFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraPlayerControllerFromActorInfo); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponentFromActorInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility, UGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility(ULyraGameplayAbility&&); \ + ULyraGameplayAbility(const ULyraGameplayAbility&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility) \ + NO_API virtual ~ULyraGameplayAbility(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_98_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h_101_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_h + + +#define FOREACH_ENUM_ELYRAABILITYACTIVATIONPOLICY(op) \ + op(ELyraAbilityActivationPolicy::OnInputTriggered) \ + op(ELyraAbilityActivationPolicy::WhileInputActive) \ + op(ELyraAbilityActivationPolicy::OnSpawn) + +enum class ELyraAbilityActivationPolicy : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAABILITYACTIVATIONGROUP(op) \ + op(ELyraAbilityActivationGroup::Independent) \ + op(ELyraAbilityActivationGroup::Exclusive_Replaceable) \ + op(ELyraAbilityActivationGroup::Exclusive_Blocking) + +enum class ELyraAbilityActivationGroup : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp new file mode 100644 index 00000000..2b19594a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.gen.cpp @@ -0,0 +1,103 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbilityTargetData_SingleTargetHit() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetData_SingleTargetHit(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraGameplayAbilityTargetData_SingleTargetHit +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraGameplayAbilityTargetData_SingleTargetHit cannot be polymorphic unless super FGameplayAbilityTargetData_SingleTargetHit is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit; +class UScriptStruct* FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraGameplayAbilityTargetData_SingleTargetHit")); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Game-specific additions to SingleTargetHit tracking */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game-specific additions to SingleTargetHit tracking" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CartridgeID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ID to allow the identification of multiple bullets that were part of the same cartridge */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ID to allow the identification of multiple bullets that were part of the same cartridge" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_CartridgeID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewProp_CartridgeID = { "CartridgeID", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayAbilityTargetData_SingleTargetHit, CartridgeID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CartridgeID_MetaData), NewProp_CartridgeID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewProp_CartridgeID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FGameplayAbilityTargetData_SingleTargetHit, + &NewStructOps, + "LyraGameplayAbilityTargetData_SingleTargetHit", + Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::PropPointers), + sizeof(FLyraGameplayAbilityTargetData_SingleTargetHit), + alignof(FLyraGameplayAbilityTargetData_SingleTargetHit), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton, Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit.InnerSingleton; +} +// End ScriptStruct FLyraGameplayAbilityTargetData_SingleTargetHit + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraGameplayAbilityTargetData_SingleTargetHit::StaticStruct, Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics::NewStructOps, TEXT("LyraGameplayAbilityTargetData_SingleTargetHit"), &Z_Registration_Info_UScriptStruct_LyraGameplayAbilityTargetData_SingleTargetHit, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraGameplayAbilityTargetData_SingleTargetHit), 4165700736U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_4169223465(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h new file mode 100644 index 00000000..e428f84f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbilityTargetData_SingleTargetHit.generated.h @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbilityTargetData_SingleTargetHit_generated_h +#error "LyraGameplayAbilityTargetData_SingleTargetHit.generated.h already included, missing '#pragma once' in LyraGameplayAbilityTargetData_SingleTargetHit.h" +#endif +#define LYRAGAME_LyraGameplayAbilityTargetData_SingleTargetHit_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraGameplayAbilityTargetData_SingleTargetHit_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FGameplayAbilityTargetData_SingleTargetHit Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayAbilityTargetData_SingleTargetHit_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp new file mode 100644 index 00000000..adbd3607 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.gen.cpp @@ -0,0 +1,203 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Death.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Death() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Death(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Death_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Death Function FinishDeath +struct Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Finishes the death sequence.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Finishes the death sequence." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Death, nullptr, "FinishDeath", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Death::execFinishDeath) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FinishDeath(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Death Function FinishDeath + +// Begin Class ULyraGameplayAbility_Death Function StartDeath +struct Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Starts the death sequence.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the death sequence." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Death, nullptr, "StartDeath", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Death::execStartDeath) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartDeath(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Death Function StartDeath + +// Begin Class ULyraGameplayAbility_Death +void ULyraGameplayAbility_Death::StaticRegisterNativesULyraGameplayAbility_Death() +{ + UClass* Class = ULyraGameplayAbility_Death::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FinishDeath", &ULyraGameplayAbility_Death::execFinishDeath }, + { "StartDeath", &ULyraGameplayAbility_Death::execStartDeath }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Death); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Death_NoRegister() +{ + return ULyraGameplayAbility_Death::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Death_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Death\n *\n *\x09Gameplay ability used for handling death.\n *\x09""Ability is activated automatically via the \"GameplayEvent.Death\" ability trigger tag.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Death\n\n Gameplay ability used for handling death.\n Ability is activated automatically via the \"GameplayEvent.Death\" ability trigger tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAutoStartDeath_MetaData[] = { + { "Category", "Lyra|Death" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If enabled, the ability will automatically call StartDeath. FinishDeath is always called when the ability ends if the death was started.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If enabled, the ability will automatically call StartDeath. FinishDeath is always called when the ability ends if the death was started." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bAutoStartDeath_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAutoStartDeath; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Death_FinishDeath, "FinishDeath" }, // 802332818 + { &Z_Construct_UFunction_ULyraGameplayAbility_Death_StartDeath, "StartDeath" }, // 2637820104 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath_SetBit(void* Obj) +{ + ((ULyraGameplayAbility_Death*)Obj)->bAutoStartDeath = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath = { "bAutoStartDeath", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraGameplayAbility_Death), &Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAutoStartDeath_MetaData), NewProp_bAutoStartDeath_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::NewProp_bAutoStartDeath, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::ClassParams = { + &ULyraGameplayAbility_Death::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Death() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Death_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Death.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Death::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Death); +ULyraGameplayAbility_Death::~ULyraGameplayAbility_Death() {} +// End Class ULyraGameplayAbility_Death + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Death, ULyraGameplayAbility_Death::StaticClass, TEXT("ULyraGameplayAbility_Death"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Death, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Death), 1516132492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_2467541724(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h new file mode 100644 index 00000000..b3e6982e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Death.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Death.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Death_generated_h +#error "LyraGameplayAbility_Death.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Death.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Death_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFinishDeath); \ + DECLARE_FUNCTION(execStartDeath); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Death(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Death_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Death, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Death) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Death(ULyraGameplayAbility_Death&&); \ + ULyraGameplayAbility_Death(const ULyraGameplayAbility_Death&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Death); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Death); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Death) \ + NO_API virtual ~ULyraGameplayAbility_Death(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Death_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp new file mode 100644 index 00000000..695a9534 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.gen.cpp @@ -0,0 +1,195 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraGameplayAbility_FromEquipment.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_FromEquipment() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_FromEquipment Function GetAssociatedEquipment +struct Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics +{ + struct LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms + { + ULyraEquipmentInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms, ReturnValue), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, nullptr, "GetAssociatedEquipment", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedEquipment_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_FromEquipment::execGetAssociatedEquipment) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraEquipmentInstance**)Z_Param__Result=P_THIS->GetAssociatedEquipment(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_FromEquipment Function GetAssociatedEquipment + +// Begin Class ULyraGameplayAbility_FromEquipment Function GetAssociatedItem +struct Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics +{ + struct LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms + { + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, nullptr, "GetAssociatedItem", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::LyraGameplayAbility_FromEquipment_eventGetAssociatedItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_FromEquipment::execGetAssociatedItem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->GetAssociatedItem(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_FromEquipment Function GetAssociatedItem + +// Begin Class ULyraGameplayAbility_FromEquipment +void ULyraGameplayAbility_FromEquipment::StaticRegisterNativesULyraGameplayAbility_FromEquipment() +{ + UClass* Class = ULyraGameplayAbility_FromEquipment::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAssociatedEquipment", &ULyraGameplayAbility_FromEquipment::execGetAssociatedEquipment }, + { "GetAssociatedItem", &ULyraGameplayAbility_FromEquipment::execGetAssociatedItem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_FromEquipment); +UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_NoRegister() +{ + return ULyraGameplayAbility_FromEquipment::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_FromEquipment\n *\n * An ability granted by and associated with an equipment instance\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + { "ModuleRelativePath", "Equipment/LyraGameplayAbility_FromEquipment.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_FromEquipment\n\nAn ability granted by and associated with an equipment instance" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedEquipment, "GetAssociatedEquipment" }, // 1561147770 + { &Z_Construct_UFunction_ULyraGameplayAbility_FromEquipment_GetAssociatedItem, "GetAssociatedItem" }, // 3213721993 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::ClassParams = { + &ULyraGameplayAbility_FromEquipment::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_FromEquipment::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_FromEquipment); +ULyraGameplayAbility_FromEquipment::~ULyraGameplayAbility_FromEquipment() {} +// End Class ULyraGameplayAbility_FromEquipment + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, ULyraGameplayAbility_FromEquipment::StaticClass, TEXT("ULyraGameplayAbility_FromEquipment"), &Z_Registration_Info_UClass_ULyraGameplayAbility_FromEquipment, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_FromEquipment), 514303417U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_787396172(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h new file mode 100644 index 00000000..8baba1bd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_FromEquipment.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraGameplayAbility_FromEquipment.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraEquipmentInstance; +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraGameplayAbility_FromEquipment_generated_h +#error "LyraGameplayAbility_FromEquipment.generated.h already included, missing '#pragma once' in LyraGameplayAbility_FromEquipment.h" +#endif +#define LYRAGAME_LyraGameplayAbility_FromEquipment_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetAssociatedItem); \ + DECLARE_FUNCTION(execGetAssociatedEquipment); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_FromEquipment(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_FromEquipment_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_FromEquipment, ULyraGameplayAbility, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_FromEquipment) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_FromEquipment(ULyraGameplayAbility_FromEquipment&&); \ + ULyraGameplayAbility_FromEquipment(const ULyraGameplayAbility_FromEquipment&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_FromEquipment); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_FromEquipment); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_FromEquipment) \ + NO_API virtual ~ULyraGameplayAbility_FromEquipment(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraGameplayAbility_FromEquipment_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp new file mode 100644 index 00000000..99f41a9d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.gen.cpp @@ -0,0 +1,234 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/Abilities/LyraGameplayAbility_Interact.h" +#include "LyraGame/Interaction/InteractionOption.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Interact() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Interact Function TriggerInteraction +struct Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Interact, nullptr, "TriggerInteraction", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Interact::execTriggerInteraction) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->TriggerInteraction(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Interact Function TriggerInteraction + +// Begin Class ULyraGameplayAbility_Interact Function UpdateInteractions +struct Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics +{ + struct LyraGameplayAbility_Interact_eventUpdateInteractions_Parms + { + TArray InteractiveOptions; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractiveOptions_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InteractiveOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InteractiveOptions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions_Inner = { "InteractiveOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions = { "InteractiveOptions", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_Interact_eventUpdateInteractions_Parms, InteractiveOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractiveOptions_MetaData), NewProp_InteractiveOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::NewProp_InteractiveOptions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Interact, nullptr, "UpdateInteractions", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::LyraGameplayAbility_Interact_eventUpdateInteractions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::LyraGameplayAbility_Interact_eventUpdateInteractions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Interact::execUpdateInteractions) +{ + P_GET_TARRAY_REF(FInteractionOption,Z_Param_Out_InteractiveOptions); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateInteractions(Z_Param_Out_InteractiveOptions); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Interact Function UpdateInteractions + +// Begin Class ULyraGameplayAbility_Interact +void ULyraGameplayAbility_Interact::StaticRegisterNativesULyraGameplayAbility_Interact() +{ + UClass* Class = ULyraGameplayAbility_Interact::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "TriggerInteraction", &ULyraGameplayAbility_Interact::execTriggerInteraction }, + { "UpdateInteractions", &ULyraGameplayAbility_Interact::execUpdateInteractions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Interact); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact_NoRegister() +{ + return ULyraGameplayAbility_Interact::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Interact\n *\n * Gameplay ability used for character interacting\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Interact\n\nGameplay ability used for character interacting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentOptions_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicators_MetaData[] = { + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionScanRate_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InteractionScanRange_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultInteractionWidgetClass_MetaData[] = { + { "Category", "LyraGameplayAbility_Interact" }, + { "ModuleRelativePath", "Interaction/Abilities/LyraGameplayAbility_Interact.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CurrentOptions; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicators_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Indicators; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRate; + static const UECodeGen_Private::FFloatPropertyParams NewProp_InteractionScanRange; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultInteractionWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Interact_TriggerInteraction, "TriggerInteraction" }, // 913604556 + { &Z_Construct_UFunction_ULyraGameplayAbility_Interact_UpdateInteractions, "UpdateInteractions" }, // 2832937983 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions_Inner = { "CurrentOptions", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(0, nullptr) }; // 4256573821 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions = { "CurrentOptions", nullptr, (EPropertyFlags)0x0020088000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, CurrentOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentOptions_MetaData), NewProp_CurrentOptions_MetaData) }; // 4256573821 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators_Inner = { "Indicators", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators = { "Indicators", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, Indicators), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicators_MetaData), NewProp_Indicators_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRate = { "InteractionScanRate", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, InteractionScanRate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionScanRate_MetaData), NewProp_InteractionScanRate_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRange = { "InteractionScanRange", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, InteractionScanRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InteractionScanRange_MetaData), NewProp_InteractionScanRange_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_DefaultInteractionWidgetClass = { "DefaultInteractionWidgetClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayAbility_Interact, DefaultInteractionWidgetClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultInteractionWidgetClass_MetaData), NewProp_DefaultInteractionWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_CurrentOptions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_Indicators, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_InteractionScanRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::NewProp_DefaultInteractionWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::ClassParams = { + &ULyraGameplayAbility_Interact::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::PropPointers), + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Interact() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Interact.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Interact::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Interact); +ULyraGameplayAbility_Interact::~ULyraGameplayAbility_Interact() {} +// End Class ULyraGameplayAbility_Interact + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Interact, ULyraGameplayAbility_Interact::StaticClass, TEXT("ULyraGameplayAbility_Interact"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Interact, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Interact), 2312143525U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_3006297050(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h new file mode 100644 index 00000000..86f12448 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Interact.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/Abilities/LyraGameplayAbility_Interact.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FInteractionOption; +#ifdef LYRAGAME_LyraGameplayAbility_Interact_generated_h +#error "LyraGameplayAbility_Interact.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Interact.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Interact_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execTriggerInteraction); \ + DECLARE_FUNCTION(execUpdateInteractions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Interact(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Interact_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Interact, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Interact) + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Interact(ULyraGameplayAbility_Interact&&); \ + ULyraGameplayAbility_Interact(const ULyraGameplayAbility_Interact&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Interact); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Interact); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Interact) \ + NO_API virtual ~ULyraGameplayAbility_Interact(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_Abilities_LyraGameplayAbility_Interact_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp new file mode 100644 index 00000000..17ecc928 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.gen.cpp @@ -0,0 +1,169 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Jump() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Jump Function CharacterJumpStart +struct Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Jump, nullptr, "CharacterJumpStart", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Jump::execCharacterJumpStart) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CharacterJumpStart(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Jump Function CharacterJumpStart + +// Begin Class ULyraGameplayAbility_Jump Function CharacterJumpStop +struct Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_Jump, nullptr, "CharacterJumpStop", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_Jump::execCharacterJumpStop) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CharacterJumpStop(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_Jump Function CharacterJumpStop + +// Begin Class ULyraGameplayAbility_Jump +void ULyraGameplayAbility_Jump::StaticRegisterNativesULyraGameplayAbility_Jump() +{ + UClass* Class = ULyraGameplayAbility_Jump::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CharacterJumpStart", &ULyraGameplayAbility_Jump::execCharacterJumpStart }, + { "CharacterJumpStop", &ULyraGameplayAbility_Jump::execCharacterJumpStop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Jump); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump_NoRegister() +{ + return ULyraGameplayAbility_Jump::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Jump\n *\n *\x09Gameplay ability used for character jumping.\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Jump\n\n Gameplay ability used for character jumping." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStart, "CharacterJumpStart" }, // 1545979615 + { &Z_Construct_UFunction_ULyraGameplayAbility_Jump_CharacterJumpStop, "CharacterJumpStop" }, // 3062632824 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::ClassParams = { + &ULyraGameplayAbility_Jump::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Jump() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Jump.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Jump::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Jump); +ULyraGameplayAbility_Jump::~ULyraGameplayAbility_Jump() {} +// End Class ULyraGameplayAbility_Jump + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Jump, ULyraGameplayAbility_Jump::StaticClass, TEXT("ULyraGameplayAbility_Jump"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Jump, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Jump), 3887090753U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_1275472939(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h new file mode 100644 index 00000000..33bb855f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Jump.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Jump.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Jump_generated_h +#error "LyraGameplayAbility_Jump.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Jump.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Jump_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCharacterJumpStop); \ + DECLARE_FUNCTION(execCharacterJumpStart); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Jump(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Jump_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Jump, ULyraGameplayAbility, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Jump) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Jump(ULyraGameplayAbility_Jump&&); \ + ULyraGameplayAbility_Jump(const ULyraGameplayAbility_Jump&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Jump); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Jump); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Jump) \ + NO_API virtual ~ULyraGameplayAbility_Jump(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Jump_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp new file mode 100644 index 00000000..436e6477 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.gen.cpp @@ -0,0 +1,317 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraGameplayAbility_RangedWeapon.h" +#include "GameplayAbilities/Public/Abilities/GameplayAbilityTargetTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_RangedWeapon() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilityTargetDataHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_FromEquipment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraAbilityTargetingSource +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAbilityTargetingSource; +static UEnum* ELyraAbilityTargetingSource_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAbilityTargetingSource")); + } + return Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAbilityTargetingSource_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CameraTowardsFocus.Comment", "// From the player's camera towards camera focus\n" }, + { "CameraTowardsFocus.Name", "ELyraAbilityTargetingSource::CameraTowardsFocus" }, + { "CameraTowardsFocus.ToolTip", "From the player's camera towards camera focus" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines where an ability starts its trace from and where it should face */" }, +#endif + { "Custom.Comment", "// Custom blueprint-specified source location\n" }, + { "Custom.Name", "ELyraAbilityTargetingSource::Custom" }, + { "Custom.ToolTip", "Custom blueprint-specified source location" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "PawnForward.Comment", "// From the pawn's center, in the pawn's orientation\n" }, + { "PawnForward.Name", "ELyraAbilityTargetingSource::PawnForward" }, + { "PawnForward.ToolTip", "From the pawn's center, in the pawn's orientation" }, + { "PawnTowardsFocus.Comment", "// From the pawn's center, oriented towards camera focus\n" }, + { "PawnTowardsFocus.Name", "ELyraAbilityTargetingSource::PawnTowardsFocus" }, + { "PawnTowardsFocus.ToolTip", "From the pawn's center, oriented towards camera focus" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines where an ability starts its trace from and where it should face" }, +#endif + { "WeaponForward.Comment", "// From the weapon's muzzle or location, in the pawn's orientation\n" }, + { "WeaponForward.Name", "ELyraAbilityTargetingSource::WeaponForward" }, + { "WeaponForward.ToolTip", "From the weapon's muzzle or location, in the pawn's orientation" }, + { "WeaponTowardsFocus.Comment", "// From the weapon's muzzle or location, towards camera focus\n" }, + { "WeaponTowardsFocus.Name", "ELyraAbilityTargetingSource::WeaponTowardsFocus" }, + { "WeaponTowardsFocus.ToolTip", "From the weapon's muzzle or location, towards camera focus" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAbilityTargetingSource::CameraTowardsFocus", (int64)ELyraAbilityTargetingSource::CameraTowardsFocus }, + { "ELyraAbilityTargetingSource::PawnForward", (int64)ELyraAbilityTargetingSource::PawnForward }, + { "ELyraAbilityTargetingSource::PawnTowardsFocus", (int64)ELyraAbilityTargetingSource::PawnTowardsFocus }, + { "ELyraAbilityTargetingSource::WeaponForward", (int64)ELyraAbilityTargetingSource::WeaponForward }, + { "ELyraAbilityTargetingSource::WeaponTowardsFocus", (int64)ELyraAbilityTargetingSource::WeaponTowardsFocus }, + { "ELyraAbilityTargetingSource::Custom", (int64)ELyraAbilityTargetingSource::Custom }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAbilityTargetingSource", + "ELyraAbilityTargetingSource", + Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource() +{ + if (!Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAbilityTargetingSource_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAbilityTargetingSource.InnerSingleton; +} +// End Enum ELyraAbilityTargetingSource + +// Begin Class ULyraGameplayAbility_RangedWeapon Function GetWeaponInstance +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics +{ + struct LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms + { + ULyraRangedWeaponInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Ability" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms, ReturnValue), Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "GetWeaponInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::LyraGameplayAbility_RangedWeapon_eventGetWeaponInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_RangedWeapon::execGetWeaponInstance) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraRangedWeaponInstance**)Z_Param__Result=P_THIS->GetWeaponInstance(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_RangedWeapon Function GetWeaponInstance + +// Begin Class ULyraGameplayAbility_RangedWeapon Function OnRangedWeaponTargetDataReady +struct LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms +{ + FGameplayAbilityTargetDataHandle TargetData; +}; +static const FName NAME_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady = FName(TEXT("OnRangedWeaponTargetDataReady")); +void ULyraGameplayAbility_RangedWeapon::OnRangedWeaponTargetDataReady(FGameplayAbilityTargetDataHandle const& TargetData) +{ + LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms Parms; + Parms.TargetData=TargetData; + UFunction* Func = FindFunctionChecked(NAME_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Called when target data is ready\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when target data is ready" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetData_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::NewProp_TargetData = { "TargetData", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms, TargetData), Z_Construct_UScriptStruct_FGameplayAbilityTargetDataHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetData_MetaData), NewProp_TargetData_MetaData) }; // 2741862775 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::NewProp_TargetData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "OnRangedWeaponTargetDataReady", nullptr, nullptr, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::PropPointers), sizeof(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraGameplayAbility_RangedWeapon_eventOnRangedWeaponTargetDataReady_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraGameplayAbility_RangedWeapon Function OnRangedWeaponTargetDataReady + +// Begin Class ULyraGameplayAbility_RangedWeapon Function StartRangedWeaponTargeting +struct Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, nullptr, "StartRangedWeaponTargeting", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGameplayAbility_RangedWeapon::execStartRangedWeaponTargeting) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartRangedWeaponTargeting(); + P_NATIVE_END; +} +// End Class ULyraGameplayAbility_RangedWeapon Function StartRangedWeaponTargeting + +// Begin Class ULyraGameplayAbility_RangedWeapon +void ULyraGameplayAbility_RangedWeapon::StaticRegisterNativesULyraGameplayAbility_RangedWeapon() +{ + UClass* Class = ULyraGameplayAbility_RangedWeapon::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetWeaponInstance", &ULyraGameplayAbility_RangedWeapon::execGetWeaponInstance }, + { "StartRangedWeaponTargeting", &ULyraGameplayAbility_RangedWeapon::execStartRangedWeaponTargeting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_RangedWeapon); +UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_NoRegister() +{ + return ULyraGameplayAbility_RangedWeapon::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_RangedWeapon\n *\n * An ability granted by and associated with a ranged weapon instance\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "ModuleRelativePath", "Weapons/LyraGameplayAbility_RangedWeapon.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_RangedWeapon\n\nAn ability granted by and associated with a ranged weapon instance" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_GetWeaponInstance, "GetWeaponInstance" }, // 553260993 + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_OnRangedWeaponTargetDataReady, "OnRangedWeaponTargetDataReady" }, // 513777091 + { &Z_Construct_UFunction_ULyraGameplayAbility_RangedWeapon_StartRangedWeaponTargeting, "StartRangedWeaponTargeting" }, // 2328979196 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility_FromEquipment, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::ClassParams = { + &ULyraGameplayAbility_RangedWeapon::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_RangedWeapon::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_RangedWeapon); +ULyraGameplayAbility_RangedWeapon::~ULyraGameplayAbility_RangedWeapon() {} +// End Class ULyraGameplayAbility_RangedWeapon + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraAbilityTargetingSource_StaticEnum, TEXT("ELyraAbilityTargetingSource"), &Z_Registration_Info_UEnum_ELyraAbilityTargetingSource, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 941686663U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon, ULyraGameplayAbility_RangedWeapon::StaticClass, TEXT("ULyraGameplayAbility_RangedWeapon"), &Z_Registration_Info_UClass_ULyraGameplayAbility_RangedWeapon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_RangedWeapon), 1733701408U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_3643790214(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h new file mode 100644 index 00000000..1736ce35 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_RangedWeapon.generated.h @@ -0,0 +1,76 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraGameplayAbility_RangedWeapon.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraRangedWeaponInstance; +struct FGameplayAbilityTargetDataHandle; +#ifdef LYRAGAME_LyraGameplayAbility_RangedWeapon_generated_h +#error "LyraGameplayAbility_RangedWeapon.generated.h already included, missing '#pragma once' in LyraGameplayAbility_RangedWeapon.h" +#endif +#define LYRAGAME_LyraGameplayAbility_RangedWeapon_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execStartRangedWeaponTargeting); \ + DECLARE_FUNCTION(execGetWeaponInstance); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_RangedWeapon(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_RangedWeapon_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_RangedWeapon, ULyraGameplayAbility_FromEquipment, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_RangedWeapon) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_RangedWeapon(ULyraGameplayAbility_RangedWeapon&&); \ + ULyraGameplayAbility_RangedWeapon(const ULyraGameplayAbility_RangedWeapon&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_RangedWeapon); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_RangedWeapon); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_RangedWeapon) \ + NO_API virtual ~ULyraGameplayAbility_RangedWeapon(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_46_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraGameplayAbility_RangedWeapon_h + + +#define FOREACH_ENUM_ELYRAABILITYTARGETINGSOURCE(op) \ + op(ELyraAbilityTargetingSource::CameraTowardsFocus) \ + op(ELyraAbilityTargetingSource::PawnForward) \ + op(ELyraAbilityTargetingSource::PawnTowardsFocus) \ + op(ELyraAbilityTargetingSource::WeaponForward) \ + op(ELyraAbilityTargetingSource::WeaponTowardsFocus) \ + op(ELyraAbilityTargetingSource::Custom) + +enum class ELyraAbilityTargetingSource : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp new file mode 100644 index 00000000..46236c81 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.gen.cpp @@ -0,0 +1,165 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayAbility_Reset() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPlayerResetMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayAbility_Reset +void ULyraGameplayAbility_Reset::StaticRegisterNativesULyraGameplayAbility_Reset() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayAbility_Reset); +UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset_NoRegister() +{ + return ULyraGameplayAbility_Reset::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayAbility_Reset\n *\n *\x09Gameplay ability used for handling quickly resetting the player back to initial spawn state.\n *\x09""Ability is activated automatically via the \"GameplayEvent.RequestReset\" ability trigger tag (server only).\n */" }, +#endif + { "HideCategories", "Input" }, + { "IncludePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayAbility_Reset\n\n Gameplay ability used for handling quickly resetting the player back to initial spawn state.\n Ability is activated automatically via the \"GameplayEvent.RequestReset\" ability trigger tag (server only)." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraGameplayAbility, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::ClassParams = { + &ULyraGameplayAbility_Reset::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayAbility_Reset() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton, Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayAbility_Reset.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayAbility_Reset::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayAbility_Reset); +ULyraGameplayAbility_Reset::~ULyraGameplayAbility_Reset() {} +// End Class ULyraGameplayAbility_Reset + +// Begin ScriptStruct FLyraPlayerResetMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage; +class UScriptStruct* FLyraPlayerResetMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPlayerResetMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPlayerResetMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPlayerResetMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerPlayerState_MetaData[] = { + { "Category", "LyraPlayerResetMessage" }, + { "ModuleRelativePath", "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewProp_OwnerPlayerState = { "OwnerPlayerState", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPlayerResetMessage, OwnerPlayerState), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerPlayerState_MetaData), NewProp_OwnerPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewProp_OwnerPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPlayerResetMessage", + Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::PropPointers), + sizeof(FLyraPlayerResetMessage), + alignof(FLyraPlayerResetMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPlayerResetMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage.InnerSingleton; +} +// End ScriptStruct FLyraPlayerResetMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraPlayerResetMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics::NewStructOps, TEXT("LyraPlayerResetMessage"), &Z_Registration_Info_UScriptStruct_LyraPlayerResetMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPlayerResetMessage), 2171040134U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayAbility_Reset, ULyraGameplayAbility_Reset::StaticClass, TEXT("ULyraGameplayAbility_Reset"), &Z_Registration_Info_UClass_ULyraGameplayAbility_Reset, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayAbility_Reset), 3006277567U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_3711010582(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h new file mode 100644 index 00000000..603b8141 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayAbility_Reset.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Abilities/LyraGameplayAbility_Reset.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayAbility_Reset_generated_h +#error "LyraGameplayAbility_Reset.generated.h already included, missing '#pragma once' in LyraGameplayAbility_Reset.h" +#endif +#define LYRAGAME_LyraGameplayAbility_Reset_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayAbility_Reset(); \ + friend struct Z_Construct_UClass_ULyraGameplayAbility_Reset_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayAbility_Reset, ULyraGameplayAbility, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayAbility_Reset) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayAbility_Reset(ULyraGameplayAbility_Reset&&); \ + ULyraGameplayAbility_Reset(const ULyraGameplayAbility_Reset&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayAbility_Reset); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayAbility_Reset); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayAbility_Reset) \ + NO_API virtual ~ULyraGameplayAbility_Reset(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h_38_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPlayerResetMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Abilities_LyraGameplayAbility_Reset_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp new file mode 100644 index 00000000..a97c3cc9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.gen.cpp @@ -0,0 +1,133 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayCueManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayCueManager() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayCueManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayCueManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayCueManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayCueManager +void ULyraGameplayCueManager::StaticRegisterNativesULyraGameplayCueManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayCueManager); +UClass* Z_Construct_UClass_ULyraGameplayCueManager_NoRegister() +{ + return ULyraGameplayCueManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayCueManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraGameplayCueManager\n *\n * Game-specific manager for gameplay cues\n */" }, +#endif + { "IncludePath", "AbilitySystem/LyraGameplayCueManager.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraGameplayCueManager\n\nGame-specific manager for gameplay cues" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreloadedCues_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cues that were preloaded on the client due to being referenced by content\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cues that were preloaded on the client due to being referenced by content" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysLoadedCues_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cues that were preloaded on the client and will always be loaded (code referenced or explicitly always loaded)\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayCueManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cues that were preloaded on the client and will always be loaded (code referenced or explicitly always loaded)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PreloadedCues_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_PreloadedCues; + static const UECodeGen_Private::FClassPropertyParams NewProp_AlwaysLoadedCues_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_AlwaysLoadedCues; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues_ElementProp = { "PreloadedCues", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues = { "PreloadedCues", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayCueManager, PreloadedCues), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreloadedCues_MetaData), NewProp_PreloadedCues_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues_ElementProp = { "AlwaysLoadedCues", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues = { "AlwaysLoadedCues", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGameplayCueManager, AlwaysLoadedCues), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysLoadedCues_MetaData), NewProp_AlwaysLoadedCues_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_PreloadedCues, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGameplayCueManager_Statics::NewProp_AlwaysLoadedCues, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGameplayCueManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayCueManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayCueManager_Statics::ClassParams = { + &ULyraGameplayCueManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayCueManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayCueManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayCueManager() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton, Z_Construct_UClass_ULyraGameplayCueManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayCueManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayCueManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayCueManager); +ULyraGameplayCueManager::~ULyraGameplayCueManager() {} +// End Class ULyraGameplayCueManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayCueManager, ULyraGameplayCueManager::StaticClass, TEXT("ULyraGameplayCueManager"), &Z_Registration_Info_UClass_ULyraGameplayCueManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayCueManager), 3295187608U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_2131321812(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h new file mode 100644 index 00000000..4ecf8042 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayCueManager.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayCueManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayCueManager_generated_h +#error "LyraGameplayCueManager.generated.h already included, missing '#pragma once' in LyraGameplayCueManager.h" +#endif +#define LYRAGAME_LyraGameplayCueManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayCueManager(); \ + friend struct Z_Construct_UClass_ULyraGameplayCueManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayCueManager, UGameplayCueManager, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayCueManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayCueManager(ULyraGameplayCueManager&&); \ + ULyraGameplayCueManager(const ULyraGameplayCueManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayCueManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayCueManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayCueManager) \ + NO_API virtual ~ULyraGameplayCueManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayCueManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp new file mode 100644 index 00000000..2c1c223c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.gen.cpp @@ -0,0 +1,111 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGameplayEffectContext.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayEffectContext() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayEffectContext(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayEffectContext(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraGameplayEffectContext +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraGameplayEffectContext cannot be polymorphic unless super FGameplayEffectContext is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext; +class UScriptStruct* FLyraGameplayEffectContext::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraGameplayEffectContext, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraGameplayEffectContext")); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraGameplayEffectContext::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CartridgeID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ID to allow the identification of multiple bullets that were part of the same cartridge */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ID to allow the identification of multiple bullets that were part of the same cartridge" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySourceObject_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ability Source object (should implement ILyraAbilitySourceInterface). NOT replicated currently */" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraGameplayEffectContext.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability Source object (should implement ILyraAbilitySourceInterface). NOT replicated currently" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_CartridgeID; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_AbilitySourceObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_CartridgeID = { "CartridgeID", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayEffectContext, CartridgeID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CartridgeID_MetaData), NewProp_CartridgeID_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_AbilitySourceObject = { "AbilitySourceObject", nullptr, (EPropertyFlags)0x0024080000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraGameplayEffectContext, AbilitySourceObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySourceObject_MetaData), NewProp_AbilitySourceObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_CartridgeID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewProp_AbilitySourceObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FGameplayEffectContext, + &NewStructOps, + "LyraGameplayEffectContext", + Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::PropPointers), + sizeof(FLyraGameplayEffectContext), + alignof(FLyraGameplayEffectContext), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraGameplayEffectContext() +{ + if (!Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton, Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext.InnerSingleton; +} +// End ScriptStruct FLyraGameplayEffectContext + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraGameplayEffectContext::StaticStruct, Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics::NewStructOps, TEXT("LyraGameplayEffectContext"), &Z_Registration_Info_UScriptStruct_LyraGameplayEffectContext, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraGameplayEffectContext), 108798499U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_2065585915(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h new file mode 100644 index 00000000..be3f07a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayEffectContext.generated.h @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGameplayEffectContext.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayEffectContext_generated_h +#error "LyraGameplayEffectContext.generated.h already included, missing '#pragma once' in LyraGameplayEffectContext.h" +#endif +#define LYRAGAME_LyraGameplayEffectContext_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraGameplayEffectContext_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FGameplayEffectContext Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGameplayEffectContext_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp new file mode 100644 index 00000000..0619c310 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Tests/LyraGameplayRpcRegistrationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGameplayRpcRegistrationComponent() {} + +// Begin Cross Module References +EXTERNALRPCREGISTRY_API UClass* Z_Construct_UClass_UExternalRpcRegistrationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraGameplayRpcRegistrationComponent +void ULyraGameplayRpcRegistrationComponent::StaticRegisterNativesULyraGameplayRpcRegistrationComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGameplayRpcRegistrationComponent); +UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_NoRegister() +{ + return ULyraGameplayRpcRegistrationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Tests/LyraGameplayRpcRegistrationComponent.h" }, + { "ModuleRelativePath", "Tests/LyraGameplayRpcRegistrationComponent.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UExternalRpcRegistrationComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::ClassParams = { + &ULyraGameplayRpcRegistrationComponent::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton, Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGameplayRpcRegistrationComponent::StaticClass(); +} +ULyraGameplayRpcRegistrationComponent::ULyraGameplayRpcRegistrationComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGameplayRpcRegistrationComponent); +ULyraGameplayRpcRegistrationComponent::~ULyraGameplayRpcRegistrationComponent() {} +// End Class ULyraGameplayRpcRegistrationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent, ULyraGameplayRpcRegistrationComponent::StaticClass, TEXT("ULyraGameplayRpcRegistrationComponent"), &Z_Registration_Info_UClass_ULyraGameplayRpcRegistrationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGameplayRpcRegistrationComponent), 540384407U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_864919071(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h new file mode 100644 index 00000000..4120cfab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Tests/LyraGameplayRpcRegistrationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraGameplayRpcRegistrationComponent_generated_h +#error "LyraGameplayRpcRegistrationComponent.generated.h already included, missing '#pragma once' in LyraGameplayRpcRegistrationComponent.h" +#endif +#define LYRAGAME_LyraGameplayRpcRegistrationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGameplayRpcRegistrationComponent(); \ + friend struct Z_Construct_UClass_ULyraGameplayRpcRegistrationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraGameplayRpcRegistrationComponent, UExternalRpcRegistrationComponent, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGameplayRpcRegistrationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraGameplayRpcRegistrationComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGameplayRpcRegistrationComponent(ULyraGameplayRpcRegistrationComponent&&); \ + ULyraGameplayRpcRegistrationComponent(const ULyraGameplayRpcRegistrationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGameplayRpcRegistrationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGameplayRpcRegistrationComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraGameplayRpcRegistrationComponent) \ + NO_API virtual ~ULyraGameplayRpcRegistrationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Tests_LyraGameplayRpcRegistrationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp new file mode 100644 index 00000000..731706b5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.gen.cpp @@ -0,0 +1,461 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraGlobalAbilitySystem.h" +#include "GameplayAbilities/Public/ActiveGameplayEffectHandle.h" +#include "GameplayAbilities/Public/GameplayAbilitySpecHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraGlobalAbilitySystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayAbility_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffect_NoRegister(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FActiveGameplayEffectHandle(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedAbilityList(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedEffectList(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FGlobalAppliedAbilityList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList; +class UScriptStruct* FGlobalAppliedAbilityList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GlobalAppliedAbilityList")); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGlobalAppliedAbilityList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Handles_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handles_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Handles_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Handles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_ValueProp = { "Handles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayAbilitySpecHandle, METADATA_PARAMS(0, nullptr) }; // 3490030742 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_Key_KeyProp = { "Handles_Key", nullptr, (EPropertyFlags)0x0004000000080000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles = { "Handles", nullptr, (EPropertyFlags)0x0010008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGlobalAppliedAbilityList, Handles), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Handles_MetaData), NewProp_Handles_MetaData) }; // 3490030742 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewProp_Handles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GlobalAppliedAbilityList", + Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::PropPointers), + sizeof(FGlobalAppliedAbilityList), + alignof(FGlobalAppliedAbilityList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedAbilityList() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList.InnerSingleton; +} +// End ScriptStruct FGlobalAppliedAbilityList + +// Begin ScriptStruct FGlobalAppliedEffectList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList; +class UScriptStruct* FGlobalAppliedEffectList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGlobalAppliedEffectList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("GlobalAppliedEffectList")); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FGlobalAppliedEffectList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Handles_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handles_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Handles_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Handles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_ValueProp = { "Handles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FActiveGameplayEffectHandle, METADATA_PARAMS(0, nullptr) }; // 290910411 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_Key_KeyProp = { "Handles_Key", nullptr, (EPropertyFlags)0x0004000000080000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles = { "Handles", nullptr, (EPropertyFlags)0x0010008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGlobalAppliedEffectList, Handles), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Handles_MetaData), NewProp_Handles_MetaData) }; // 290910411 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewProp_Handles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "GlobalAppliedEffectList", + Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::PropPointers), + sizeof(FGlobalAppliedEffectList), + alignof(FGlobalAppliedEffectList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGlobalAppliedEffectList() +{ + if (!Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton, Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList.InnerSingleton; +} +// End ScriptStruct FGlobalAppliedEffectList + +// Begin Class ULyraGlobalAbilitySystem Function ApplyAbilityToAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics +{ + struct LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms + { + TSubclassOf Ability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::NewProp_Ability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "ApplyAbilityToAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::LyraGlobalAbilitySystem_eventApplyAbilityToAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execApplyAbilityToAll) +{ + P_GET_OBJECT(UClass,Z_Param_Ability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyAbilityToAll(Z_Param_Ability); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function ApplyAbilityToAll + +// Begin Class ULyraGlobalAbilitySystem Function ApplyEffectToAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics +{ + struct LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms + { + TSubclassOf Effect; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Effect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms, Effect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::NewProp_Effect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "ApplyEffectToAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::LyraGlobalAbilitySystem_eventApplyEffectToAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execApplyEffectToAll) +{ + P_GET_OBJECT(UClass,Z_Param_Effect); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyEffectToAll(Z_Param_Effect); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function ApplyEffectToAll + +// Begin Class ULyraGlobalAbilitySystem Function RemoveAbilityFromAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics +{ + struct LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms + { + TSubclassOf Ability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Ability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::NewProp_Ability = { "Ability", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms, Ability), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::NewProp_Ability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "RemoveAbilityFromAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveAbilityFromAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execRemoveAbilityFromAll) +{ + P_GET_OBJECT(UClass,Z_Param_Ability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAbilityFromAll(Z_Param_Ability); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function RemoveAbilityFromAll + +// Begin Class ULyraGlobalAbilitySystem Function RemoveEffectFromAll +struct Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics +{ + struct LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms + { + TSubclassOf Effect; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_Effect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::NewProp_Effect = { "Effect", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms, Effect), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::NewProp_Effect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraGlobalAbilitySystem, nullptr, "RemoveEffectFromAll", nullptr, nullptr, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::LyraGlobalAbilitySystem_eventRemoveEffectFromAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraGlobalAbilitySystem::execRemoveEffectFromAll) +{ + P_GET_OBJECT(UClass,Z_Param_Effect); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveEffectFromAll(Z_Param_Effect); + P_NATIVE_END; +} +// End Class ULyraGlobalAbilitySystem Function RemoveEffectFromAll + +// Begin Class ULyraGlobalAbilitySystem +void ULyraGlobalAbilitySystem::StaticRegisterNativesULyraGlobalAbilitySystem() +{ + UClass* Class = ULyraGlobalAbilitySystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyAbilityToAll", &ULyraGlobalAbilitySystem::execApplyAbilityToAll }, + { "ApplyEffectToAll", &ULyraGlobalAbilitySystem::execApplyEffectToAll }, + { "RemoveAbilityFromAll", &ULyraGlobalAbilitySystem::execRemoveAbilityFromAll }, + { "RemoveEffectFromAll", &ULyraGlobalAbilitySystem::execRemoveEffectFromAll }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraGlobalAbilitySystem); +UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem_NoRegister() +{ + return ULyraGlobalAbilitySystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AppliedAbilities_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AppliedEffects_MetaData[] = { + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RegisteredASCs_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "AbilitySystem/LyraGlobalAbilitySystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AppliedAbilities_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_AppliedAbilities_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AppliedAbilities; + static const UECodeGen_Private::FStructPropertyParams NewProp_AppliedEffects_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_AppliedEffects_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AppliedEffects; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RegisteredASCs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RegisteredASCs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyAbilityToAll, "ApplyAbilityToAll" }, // 1499766359 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_ApplyEffectToAll, "ApplyEffectToAll" }, // 1211284620 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveAbilityFromAll, "RemoveAbilityFromAll" }, // 728643378 + { &Z_Construct_UFunction_ULyraGlobalAbilitySystem_RemoveEffectFromAll, "RemoveEffectFromAll" }, // 3779592866 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_ValueProp = { "AppliedAbilities", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList, METADATA_PARAMS(0, nullptr) }; // 3548407565 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_Key_KeyProp = { "AppliedAbilities_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayAbility_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities = { "AppliedAbilities", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, AppliedAbilities), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AppliedAbilities_MetaData), NewProp_AppliedAbilities_MetaData) }; // 3548407565 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_ValueProp = { "AppliedEffects", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGlobalAppliedEffectList, METADATA_PARAMS(0, nullptr) }; // 467594997 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_Key_KeyProp = { "AppliedEffects_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameplayEffect_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects = { "AppliedEffects", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, AppliedEffects), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AppliedEffects_MetaData), NewProp_AppliedEffects_MetaData) }; // 467594997 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs_Inner = { "RegisteredASCs", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs = { "RegisteredASCs", nullptr, (EPropertyFlags)0x0144008000000008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraGlobalAbilitySystem, RegisteredASCs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RegisteredASCs_MetaData), NewProp_RegisteredASCs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedAbilities, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_AppliedEffects, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::NewProp_RegisteredASCs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::ClassParams = { + &ULyraGlobalAbilitySystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraGlobalAbilitySystem() +{ + if (!Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton, Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraGlobalAbilitySystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraGlobalAbilitySystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraGlobalAbilitySystem); +ULyraGlobalAbilitySystem::~ULyraGlobalAbilitySystem() {} +// End Class ULyraGlobalAbilitySystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGlobalAppliedAbilityList::StaticStruct, Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics::NewStructOps, TEXT("GlobalAppliedAbilityList"), &Z_Registration_Info_UScriptStruct_GlobalAppliedAbilityList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGlobalAppliedAbilityList), 3548407565U) }, + { FGlobalAppliedEffectList::StaticStruct, Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics::NewStructOps, TEXT("GlobalAppliedEffectList"), &Z_Registration_Info_UScriptStruct_GlobalAppliedEffectList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGlobalAppliedEffectList), 467594997U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraGlobalAbilitySystem, ULyraGlobalAbilitySystem::StaticClass, TEXT("ULyraGlobalAbilitySystem"), &Z_Registration_Info_UClass_ULyraGlobalAbilitySystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraGlobalAbilitySystem), 2558192301U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_3509633250(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h new file mode 100644 index 00000000..b5e90b34 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGlobalAbilitySystem.generated.h @@ -0,0 +1,78 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraGlobalAbilitySystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameplayAbility; +class UGameplayEffect; +#ifdef LYRAGAME_LyraGlobalAbilitySystem_generated_h +#error "LyraGlobalAbilitySystem.generated.h already included, missing '#pragma once' in LyraGlobalAbilitySystem.h" +#endif +#define LYRAGAME_LyraGlobalAbilitySystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGlobalAppliedAbilityList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_36_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGlobalAppliedEffectList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemoveEffectFromAll); \ + DECLARE_FUNCTION(execRemoveAbilityFromAll); \ + DECLARE_FUNCTION(execApplyEffectToAll); \ + DECLARE_FUNCTION(execApplyAbilityToAll); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraGlobalAbilitySystem(); \ + friend struct Z_Construct_UClass_ULyraGlobalAbilitySystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraGlobalAbilitySystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraGlobalAbilitySystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraGlobalAbilitySystem(ULyraGlobalAbilitySystem&&); \ + ULyraGlobalAbilitySystem(const ULyraGlobalAbilitySystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraGlobalAbilitySystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraGlobalAbilitySystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraGlobalAbilitySystem) \ + NO_API virtual ~ULyraGlobalAbilitySystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_46_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraGlobalAbilitySystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.gen.cpp new file mode 100644 index 00000000..39867a58 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraHUD.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHUD() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AHUD(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraHUD +void ALyraHUD::StaticRegisterNativesALyraHUD() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraHUD); +UClass* Z_Construct_UClass_ALyraHUD_NoRegister() +{ + return ALyraHUD::StaticClass(); +} +struct Z_Construct_UClass_ALyraHUD_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraHUD\n *\n * Note that you typically do not need to extend or modify this class, instead you would\n * use an \"Add Widget\" action in your experience to add a HUD layout and widgets to it\n * \n * This class exists primarily for debug rendering\n */" }, +#endif + { "HideCategories", "Rendering Actor Input Replication" }, + { "IncludePath", "UI/LyraHUD.h" }, + { "ModuleRelativePath", "UI/LyraHUD.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraHUD\n\n Note that you typically do not need to extend or modify this class, instead you would\n use an \"Add Widget\" action in your experience to add a HUD layout and widgets to it\n\n This class exists primarily for debug rendering" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraHUD_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AHUD, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraHUD_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraHUD_Statics::ClassParams = { + &ALyraHUD::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraHUD_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraHUD_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraHUD() +{ + if (!Z_Registration_Info_UClass_ALyraHUD.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraHUD.OuterSingleton, Z_Construct_UClass_ALyraHUD_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraHUD.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraHUD::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraHUD); +ALyraHUD::~ALyraHUD() {} +// End Class ALyraHUD + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraHUD, ALyraHUD::StaticClass, TEXT("ALyraHUD"), &Z_Registration_Info_UClass_ALyraHUD, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraHUD), 640045642U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_2163309064(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.generated.h new file mode 100644 index 00000000..91bbd677 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUD.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraHUD.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHUD_generated_h +#error "LyraHUD.generated.h already included, missing '#pragma once' in LyraHUD.h" +#endif +#define LYRAGAME_LyraHUD_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraHUD(); \ + friend struct Z_Construct_UClass_ALyraHUD_Statics; \ +public: \ + DECLARE_CLASS(ALyraHUD, AHUD, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraHUD) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraHUD(ALyraHUD&&); \ + ALyraHUD(const ALyraHUD&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraHUD); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraHUD); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraHUD) \ + NO_API virtual ~ALyraHUD(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUD_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp new file mode 100644 index 00000000..f6139f84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.gen.cpp @@ -0,0 +1,271 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraHUDLayout.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHUDLayout() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraActivatableWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHUDLayout(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHUDLayout_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHUDLayout Function DisplayControllerDisconnectedMenu +static const FName NAME_ULyraHUDLayout_DisplayControllerDisconnectedMenu = FName(TEXT("DisplayControllerDisconnectedMenu")); +void ULyraHUDLayout::DisplayControllerDisconnectedMenu() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraHUDLayout_DisplayControllerDisconnectedMenu); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + DisplayControllerDisconnectedMenu_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Pushes the ControllerDisconnectedMenuClass to the Menu layer (UI.Layer.Menu)\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pushes the ControllerDisconnectedMenuClass to the Menu layer (UI.Layer.Menu)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHUDLayout, nullptr, "DisplayControllerDisconnectedMenu", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHUDLayout::execDisplayControllerDisconnectedMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DisplayControllerDisconnectedMenu_Implementation(); + P_NATIVE_END; +} +// End Class ULyraHUDLayout Function DisplayControllerDisconnectedMenu + +// Begin Class ULyraHUDLayout Function HideControllerDisconnectedMenu +static const FName NAME_ULyraHUDLayout_HideControllerDisconnectedMenu = FName(TEXT("HideControllerDisconnectedMenu")); +void ULyraHUDLayout::HideControllerDisconnectedMenu() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraHUDLayout_HideControllerDisconnectedMenu); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + HideControllerDisconnectedMenu_Implementation(); + } +} +struct Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09* Hides the controller disconnected menu if it is active.\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Hides the controller disconnected menu if it is active." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHUDLayout, nullptr, "HideControllerDisconnectedMenu", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHUDLayout::execHideControllerDisconnectedMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HideControllerDisconnectedMenu_Implementation(); + P_NATIVE_END; +} +// End Class ULyraHUDLayout Function HideControllerDisconnectedMenu + +// Begin Class ULyraHUDLayout +void ULyraHUDLayout::StaticRegisterNativesULyraHUDLayout() +{ + UClass* Class = ULyraHUDLayout::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "DisplayControllerDisconnectedMenu", &ULyraHUDLayout::execDisplayControllerDisconnectedMenu }, + { "HideControllerDisconnectedMenu", &ULyraHUDLayout::execHideControllerDisconnectedMenu }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHUDLayout); +UClass* Z_Construct_UClass_ULyraHUDLayout_NoRegister() +{ + return ULyraHUDLayout::StaticClass(); +} +struct Z_Construct_UClass_ULyraHUDLayout_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Lyra|HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHUDLayout\n *\n *\x09Widget used to lay out the player's HUD (typically specified by an Add Widgets action in the experience)\n */" }, +#endif + { "DisplayName", "Lyra HUD Layout" }, + { "IncludePath", "UI/LyraHUDLayout.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHUDLayout\n\n Widget used to lay out the player's HUD (typically specified by an Add Widgets action in the experience)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EscapeMenuClass_MetaData[] = { + { "Category", "LyraHUDLayout" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The menu to be displayed when the user presses the \"Pause\" or \"Escape\" button \n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The menu to be displayed when the user presses the \"Pause\" or \"Escape\" button" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerDisconnectedScreen_MetaData[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09* The widget which should be presented to the user if all of their controllers are disconnected.\n\x09*/" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget which should be presented to the user if all of their controllers are disconnected." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformRequiresControllerDisconnectScreen_MetaData[] = { + { "Category", "Controller Disconnect Menu" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The platform tags that are required in order to show the \"Controller Disconnected\" screen.\n\x09 *\n\x09 * If these tags are not set in the INI file for this platform, then the controller disconnect screen\n\x09 * will not ever be displayed. \n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The platform tags that are required in order to show the \"Controller Disconnected\" screen.\n\nIf these tags are not set in the INI file for this platform, then the controller disconnect screen\nwill not ever be displayed." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedControllerDisconnectScreen_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pointer to the active \"Controller Disconnected\" menu if there is one. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraHUDLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointer to the active \"Controller Disconnected\" menu if there is one." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_EscapeMenuClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_ControllerDisconnectedScreen; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformRequiresControllerDisconnectScreen; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedControllerDisconnectScreen; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHUDLayout_DisplayControllerDisconnectedMenu, "DisplayControllerDisconnectedMenu" }, // 1053584253 + { &Z_Construct_UFunction_ULyraHUDLayout_HideControllerDisconnectedMenu, "HideControllerDisconnectedMenu" }, // 1544965496 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_EscapeMenuClass = { "EscapeMenuClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, EscapeMenuClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EscapeMenuClass_MetaData), NewProp_EscapeMenuClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_ControllerDisconnectedScreen = { "ControllerDisconnectedScreen", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, ControllerDisconnectedScreen), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraControllerDisconnectedScreen_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerDisconnectedScreen_MetaData), NewProp_ControllerDisconnectedScreen_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_PlatformRequiresControllerDisconnectScreen = { "PlatformRequiresControllerDisconnectScreen", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, PlatformRequiresControllerDisconnectScreen), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformRequiresControllerDisconnectScreen_MetaData), NewProp_PlatformRequiresControllerDisconnectScreen_MetaData) }; // 3352185621 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_SpawnedControllerDisconnectScreen = { "SpawnedControllerDisconnectScreen", nullptr, (EPropertyFlags)0x0124080000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHUDLayout, SpawnedControllerDisconnectScreen), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedControllerDisconnectScreen_MetaData), NewProp_SpawnedControllerDisconnectScreen_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_EscapeMenuClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_ControllerDisconnectedScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_PlatformRequiresControllerDisconnectScreen, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHUDLayout_Statics::NewProp_SpawnedControllerDisconnectScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHUDLayout_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHUDLayout_Statics::ClassParams = { + &ULyraHUDLayout::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHUDLayout_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHUDLayout_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHUDLayout() +{ + if (!Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton, Z_Construct_UClass_ULyraHUDLayout_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHUDLayout.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHUDLayout::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHUDLayout); +ULyraHUDLayout::~ULyraHUDLayout() {} +// End Class ULyraHUDLayout + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHUDLayout, ULyraHUDLayout::StaticClass, TEXT("ULyraHUDLayout"), &Z_Registration_Info_UClass_ULyraHUDLayout, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHUDLayout), 161247801U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_4192464121(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.generated.h new file mode 100644 index 00000000..cdd5862b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHUDLayout.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraHUDLayout.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHUDLayout_generated_h +#error "LyraHUDLayout.generated.h already included, missing '#pragma once' in LyraHUDLayout.h" +#endif +#define LYRAGAME_LyraHUDLayout_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void HideControllerDisconnectedMenu_Implementation(); \ + virtual void DisplayControllerDisconnectedMenu_Implementation(); \ + DECLARE_FUNCTION(execHideControllerDisconnectedMenu); \ + DECLARE_FUNCTION(execDisplayControllerDisconnectedMenu); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHUDLayout(); \ + friend struct Z_Construct_UClass_ULyraHUDLayout_Statics; \ +public: \ + DECLARE_CLASS(ULyraHUDLayout, ULyraActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHUDLayout) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHUDLayout(ULyraHUDLayout&&); \ + ULyraHUDLayout(const ULyraHUDLayout&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHUDLayout); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHUDLayout); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHUDLayout) \ + NO_API virtual ~ULyraHUDLayout(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraHUDLayout_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp new file mode 100644 index 00000000..b4a50dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Executions/LyraHealExecution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealExecution() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectExecutionCalculation(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealExecution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealExecution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHealExecution +void ULyraHealExecution::StaticRegisterNativesULyraHealExecution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealExecution); +UClass* Z_Construct_UClass_ULyraHealExecution_NoRegister() +{ + return ULyraHealExecution::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealExecution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealExecution\n *\n *\x09""Execution used by gameplay effects to apply healing to the health attributes.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Executions/LyraHealExecution.h" }, + { "ModuleRelativePath", "AbilitySystem/Executions/LyraHealExecution.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealExecution\n\n Execution used by gameplay effects to apply healing to the health attributes." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraHealExecution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectExecutionCalculation, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealExecution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealExecution_Statics::ClassParams = { + &ULyraHealExecution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealExecution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealExecution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealExecution() +{ + if (!Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton, Z_Construct_UClass_ULyraHealExecution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealExecution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealExecution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealExecution); +ULyraHealExecution::~ULyraHealExecution() {} +// End Class ULyraHealExecution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealExecution, ULyraHealExecution::StaticClass, TEXT("ULyraHealExecution"), &Z_Registration_Info_UClass_ULyraHealExecution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealExecution), 3867593513U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_2681827526(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.generated.h new file mode 100644 index 00000000..5abb5b9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealExecution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Executions/LyraHealExecution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHealExecution_generated_h +#error "LyraHealExecution.generated.h already included, missing '#pragma once' in LyraHealExecution.h" +#endif +#define LYRAGAME_LyraHealExecution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealExecution(); \ + friend struct Z_Construct_UClass_ULyraHealExecution_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealExecution, UGameplayEffectExecutionCalculation, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealExecution) + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealExecution(ULyraHealExecution&&); \ + ULyraHealExecution(const ULyraHealExecution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealExecution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealExecution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHealExecution) \ + NO_API virtual ~ULyraHealExecution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Executions_LyraHealExecution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp new file mode 100644 index 00000000..fb0f2dbd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.gen.cpp @@ -0,0 +1,834 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraHealthComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealthComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDeathState(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraHealth_DeathEvent +struct Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraHealth_DeathEvent_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_DeathEvent_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraHealth_DeathEvent__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_DeathEvent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_DeathEvent_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraHealth_DeathEvent_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_DeathEvent, AActor* OwningActor) +{ + struct _Script_LyraGame_eventLyraHealth_DeathEvent_Parms + { + AActor* OwningActor; + }; + _Script_LyraGame_eventLyraHealth_DeathEvent_Parms Parms; + Parms.OwningActor=OwningActor; + LyraHealth_DeathEvent.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraHealth_DeathEvent + +// Begin Delegate FLyraHealth_AttributeChanged +struct Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms + { + ULyraHealthComponent* HealthComponent; + float OldValue; + float NewValue; + AActor* Instigator; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthComponent; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_HealthComponent = { "HealthComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, HealthComponent), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthComponent_MetaData), NewProp_HealthComponent_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, OldValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms, Instigator), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_HealthComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_OldValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_NewValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::NewProp_Instigator, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraHealth_AttributeChanged__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraHealth_AttributeChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraHealth_AttributeChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_AttributeChanged, ULyraHealthComponent* HealthComponent, float OldValue, float NewValue, AActor* Instigator) +{ + struct _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms + { + ULyraHealthComponent* HealthComponent; + float OldValue; + float NewValue; + AActor* Instigator; + }; + _Script_LyraGame_eventLyraHealth_AttributeChanged_Parms Parms; + Parms.HealthComponent=HealthComponent; + Parms.OldValue=OldValue; + Parms.NewValue=NewValue; + Parms.Instigator=Instigator; + LyraHealth_AttributeChanged.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraHealth_AttributeChanged + +// Begin Enum ELyraDeathState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraDeathState; +static UEnum* ELyraDeathState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraDeathState, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraDeathState")); + } + return Z_Registration_Info_UEnum_ELyraDeathState.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraDeathState_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ELyraDeathState\n *\n *\x09""Defines current state of death.\n */" }, +#endif + { "DeathFinished.Name", "ELyraDeathState::DeathFinished" }, + { "DeathStarted.Name", "ELyraDeathState::DeathStarted" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "NotDead.Name", "ELyraDeathState::NotDead" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ELyraDeathState\n\n Defines current state of death." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraDeathState::NotDead", (int64)ELyraDeathState::NotDead }, + { "ELyraDeathState::DeathStarted", (int64)ELyraDeathState::DeathStarted }, + { "ELyraDeathState::DeathFinished", (int64)ELyraDeathState::DeathFinished }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraDeathState", + "ELyraDeathState", + Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraDeathState() +{ + if (!Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraDeathState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraDeathState.InnerSingleton; +} +// End Enum ELyraDeathState + +// Begin Class ULyraHealthComponent Function FindHealthComponent +struct Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics +{ + struct LyraHealthComponent_eventFindHealthComponent_Parms + { + const AActor* Actor; + ULyraHealthComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the health component if one exists on the specified actor.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the health component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventFindHealthComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventFindHealthComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraHealthComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "FindHealthComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::LyraHealthComponent_eventFindHealthComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::LyraHealthComponent_eventFindHealthComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execFindHealthComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHealthComponent**)Z_Param__Result=ULyraHealthComponent::FindHealthComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function FindHealthComponent + +// Begin Class ULyraHealthComponent Function GetDeathState +struct Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics +{ + struct LyraHealthComponent_eventGetDeathState_Parms + { + ELyraDeathState ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetDeathState_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(0, nullptr) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetDeathState", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::LyraHealthComponent_eventGetDeathState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::LyraHealthComponent_eventGetDeathState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetDeathState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetDeathState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetDeathState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraDeathState*)Z_Param__Result=P_THIS->GetDeathState(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetDeathState + +// Begin Class ULyraHealthComponent Function GetHealth +struct Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics +{ + struct LyraHealthComponent_eventGetHealth_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current health value.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current health value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetHealth_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::LyraHealthComponent_eventGetHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::LyraHealthComponent_eventGetHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetHealth) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetHealth(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetHealth + +// Begin Class ULyraHealthComponent Function GetHealthNormalized +struct Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics +{ + struct LyraHealthComponent_eventGetHealthNormalized_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current health in the range [0.0, 1.0].\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current health in the range [0.0, 1.0]." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetHealthNormalized_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetHealthNormalized", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::LyraHealthComponent_eventGetHealthNormalized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::LyraHealthComponent_eventGetHealthNormalized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetHealthNormalized) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetHealthNormalized(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetHealthNormalized + +// Begin Class ULyraHealthComponent Function GetMaxHealth +struct Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics +{ + struct LyraHealthComponent_eventGetMaxHealth_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the current maximum health value.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current maximum health value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventGetMaxHealth_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "GetMaxHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::LyraHealthComponent_eventGetMaxHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::LyraHealthComponent_eventGetMaxHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execGetMaxHealth) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetMaxHealth(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function GetMaxHealth + +// Begin Class ULyraHealthComponent Function InitializeWithAbilitySystem +struct Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics +{ + struct LyraHealthComponent_eventInitializeWithAbilitySystem_Parms + { + ULyraAbilitySystemComponent* InASC; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Initialize the component using an ability system component.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Initialize the component using an ability system component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InASC_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InASC; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::NewProp_InASC = { "InASC", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventInitializeWithAbilitySystem_Parms, InASC), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InASC_MetaData), NewProp_InASC_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::NewProp_InASC, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "InitializeWithAbilitySystem", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::LyraHealthComponent_eventInitializeWithAbilitySystem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::LyraHealthComponent_eventInitializeWithAbilitySystem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execInitializeWithAbilitySystem) +{ + P_GET_OBJECT(ULyraAbilitySystemComponent,Z_Param_InASC); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InitializeWithAbilitySystem(Z_Param_InASC); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function InitializeWithAbilitySystem + +// Begin Class ULyraHealthComponent Function IsDeadOrDying +struct Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics +{ + struct LyraHealthComponent_eventIsDeadOrDying_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, + { "ExpandBoolAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraHealthComponent_eventIsDeadOrDying_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraHealthComponent_eventIsDeadOrDying_Parms), &Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "IsDeadOrDying", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::LyraHealthComponent_eventIsDeadOrDying_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::LyraHealthComponent_eventIsDeadOrDying_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execIsDeadOrDying) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsDeadOrDying(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function IsDeadOrDying + +// Begin Class ULyraHealthComponent Function OnRep_DeathState +struct Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics +{ + struct LyraHealthComponent_eventOnRep_DeathState_Parms + { + ELyraDeathState OldDeathState; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OldDeathState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldDeathState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState = { "OldDeathState", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthComponent_eventOnRep_DeathState_Parms, OldDeathState), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(0, nullptr) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::NewProp_OldDeathState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "OnRep_DeathState", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::LyraHealthComponent_eventOnRep_DeathState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::LyraHealthComponent_eventOnRep_DeathState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execOnRep_DeathState) +{ + P_GET_ENUM(ELyraDeathState,Z_Param_OldDeathState); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_DeathState(ELyraDeathState(Z_Param_OldDeathState)); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function OnRep_DeathState + +// Begin Class ULyraHealthComponent Function UninitializeFromAbilitySystem +struct Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Uninitialize the component, clearing any references to the ability system.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Uninitialize the component, clearing any references to the ability system." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthComponent, nullptr, "UninitializeFromAbilitySystem", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthComponent::execUninitializeFromAbilitySystem) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UninitializeFromAbilitySystem(); + P_NATIVE_END; +} +// End Class ULyraHealthComponent Function UninitializeFromAbilitySystem + +// Begin Class ULyraHealthComponent +void ULyraHealthComponent::StaticRegisterNativesULyraHealthComponent() +{ + UClass* Class = ULyraHealthComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindHealthComponent", &ULyraHealthComponent::execFindHealthComponent }, + { "GetDeathState", &ULyraHealthComponent::execGetDeathState }, + { "GetHealth", &ULyraHealthComponent::execGetHealth }, + { "GetHealthNormalized", &ULyraHealthComponent::execGetHealthNormalized }, + { "GetMaxHealth", &ULyraHealthComponent::execGetMaxHealth }, + { "InitializeWithAbilitySystem", &ULyraHealthComponent::execInitializeWithAbilitySystem }, + { "IsDeadOrDying", &ULyraHealthComponent::execIsDeadOrDying }, + { "OnRep_DeathState", &ULyraHealthComponent::execOnRep_DeathState }, + { "UninitializeFromAbilitySystem", &ULyraHealthComponent::execUninitializeFromAbilitySystem }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealthComponent); +UClass* Z_Construct_UClass_ULyraHealthComponent_NoRegister() +{ + return ULyraHealthComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealthComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealthComponent\n *\n *\x09""An actor component used to handle anything related to health.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraHealthComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealthComponent\n\n An actor component used to handle anything related to health." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnHealthChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the health value has changed. This is called on the client but the instigator may not be valid\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the health value has changed. This is called on the client but the instigator may not be valid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnMaxHealthChanged_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the max health value has changed. This is called on the client but the instigator may not be valid\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the max health value has changed. This is called on the client but the instigator may not be valid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnDeathStarted_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the death sequence has started.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the death sequence has started." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnDeathFinished_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate fired when the death sequence has finished.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate fired when the death sequence has finished." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability system used by this component.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability system used by this component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health set used by this component.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health set used by this component." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeathState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated state used to handle dying.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraHealthComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated state used to handle dying." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnHealthChanged; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnMaxHealthChanged; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnDeathStarted; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnDeathFinished; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FBytePropertyParams NewProp_DeathState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DeathState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHealthComponent_FindHealthComponent, "FindHealthComponent" }, // 1897155955 + { &Z_Construct_UFunction_ULyraHealthComponent_GetDeathState, "GetDeathState" }, // 1952650617 + { &Z_Construct_UFunction_ULyraHealthComponent_GetHealth, "GetHealth" }, // 1653434200 + { &Z_Construct_UFunction_ULyraHealthComponent_GetHealthNormalized, "GetHealthNormalized" }, // 513986809 + { &Z_Construct_UFunction_ULyraHealthComponent_GetMaxHealth, "GetMaxHealth" }, // 2487856545 + { &Z_Construct_UFunction_ULyraHealthComponent_InitializeWithAbilitySystem, "InitializeWithAbilitySystem" }, // 4252823002 + { &Z_Construct_UFunction_ULyraHealthComponent_IsDeadOrDying, "IsDeadOrDying" }, // 2768371454 + { &Z_Construct_UFunction_ULyraHealthComponent_OnRep_DeathState, "OnRep_DeathState" }, // 3603482237 + { &Z_Construct_UFunction_ULyraHealthComponent_UninitializeFromAbilitySystem, "UninitializeFromAbilitySystem" }, // 2511624743 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnHealthChanged = { "OnHealthChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnHealthChanged), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnHealthChanged_MetaData), NewProp_OnHealthChanged_MetaData) }; // 2134901530 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnMaxHealthChanged = { "OnMaxHealthChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnMaxHealthChanged), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_AttributeChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnMaxHealthChanged_MetaData), NewProp_OnMaxHealthChanged_MetaData) }; // 2134901530 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathStarted = { "OnDeathStarted", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnDeathStarted), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnDeathStarted_MetaData), NewProp_OnDeathStarted_MetaData) }; // 3162790194 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathFinished = { "OnDeathFinished", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, OnDeathFinished), Z_Construct_UDelegateFunction_LyraGame_LyraHealth_DeathEvent__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnDeathFinished_MetaData), NewProp_OnDeathFinished_MetaData) }; // 3162790194 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0124080000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState = { "DeathState", "OnRep_DeathState", (EPropertyFlags)0x0020080100000020, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthComponent, DeathState), Z_Construct_UEnum_LyraGame_ELyraDeathState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeathState_MetaData), NewProp_DeathState_MetaData) }; // 1910665219 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnHealthChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnMaxHealthChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathStarted, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_OnDeathFinished, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthComponent_Statics::NewProp_DeathState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHealthComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameFrameworkComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealthComponent_Statics::ClassParams = { + &ULyraHealthComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealthComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealthComponent() +{ + if (!Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton, Z_Construct_UClass_ULyraHealthComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealthComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealthComponent::StaticClass(); +} +void ULyraHealthComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_DeathState(TEXT("DeathState")); + const bool bIsValid = true + && Name_DeathState == ClassReps[(int32)ENetFields_Private::DeathState].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraHealthComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealthComponent); +ULyraHealthComponent::~ULyraHealthComponent() {} +// End Class ULyraHealthComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraDeathState_StaticEnum, TEXT("ELyraDeathState"), &Z_Registration_Info_UEnum_ELyraDeathState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1910665219U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealthComponent, ULyraHealthComponent::StaticClass, TEXT("ULyraHealthComponent"), &Z_Registration_Info_UClass_ULyraHealthComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealthComponent), 2508419166U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_2564252272(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.generated.h new file mode 100644 index 00000000..0efe4008 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthComponent.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraHealthComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraAbilitySystemComponent; +class ULyraHealthComponent; +enum class ELyraDeathState : uint8; +#ifdef LYRAGAME_LyraHealthComponent_generated_h +#error "LyraHealthComponent.generated.h already included, missing '#pragma once' in LyraHealthComponent.h" +#endif +#define LYRAGAME_LyraHealthComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_17_DELEGATE \ +LYRAGAME_API void FLyraHealth_DeathEvent_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_DeathEvent, AActor* OwningActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_18_DELEGATE \ +LYRAGAME_API void FLyraHealth_AttributeChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraHealth_AttributeChanged, ULyraHealthComponent* HealthComponent, float OldValue, float NewValue, AActor* Instigator); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_DeathState); \ + DECLARE_FUNCTION(execIsDeadOrDying); \ + DECLARE_FUNCTION(execGetDeathState); \ + DECLARE_FUNCTION(execGetHealthNormalized); \ + DECLARE_FUNCTION(execGetMaxHealth); \ + DECLARE_FUNCTION(execGetHealth); \ + DECLARE_FUNCTION(execUninitializeFromAbilitySystem); \ + DECLARE_FUNCTION(execInitializeWithAbilitySystem); \ + DECLARE_FUNCTION(execFindHealthComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealthComponent(); \ + friend struct Z_Construct_UClass_ULyraHealthComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealthComponent, UGameFrameworkComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealthComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + DeathState=NETFIELD_REP_START, \ + NETFIELD_REP_END=DeathState }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealthComponent(ULyraHealthComponent&&); \ + ULyraHealthComponent(const ULyraHealthComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealthComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealthComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHealthComponent) \ + NO_API virtual ~ULyraHealthComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_39_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h_42_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraHealthComponent_h + + +#define FOREACH_ENUM_ELYRADEATHSTATE(op) \ + op(ELyraDeathState::NotDead) \ + op(ELyraDeathState::DeathStarted) \ + op(ELyraDeathState::DeathFinished) + +enum class ELyraDeathState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp new file mode 100644 index 00000000..6c61b62a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.gen.cpp @@ -0,0 +1,271 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/Attributes/LyraHealthSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHealthSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHealthSet Function OnRep_Health +struct Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics +{ + struct LyraHealthSet_eventOnRep_Health_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthSet_eventOnRep_Health_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthSet, nullptr, "OnRep_Health", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::LyraHealthSet_eventOnRep_Health_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::LyraHealthSet_eventOnRep_Health_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthSet_OnRep_Health() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthSet_OnRep_Health_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthSet::execOnRep_Health) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Health(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraHealthSet Function OnRep_Health + +// Begin Class ULyraHealthSet Function OnRep_MaxHealth +struct Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics +{ + struct LyraHealthSet_eventOnRep_MaxHealth_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHealthSet_eventOnRep_MaxHealth_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHealthSet, nullptr, "OnRep_MaxHealth", nullptr, nullptr, Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::LyraHealthSet_eventOnRep_MaxHealth_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::LyraHealthSet_eventOnRep_MaxHealth_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHealthSet::execOnRep_MaxHealth) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MaxHealth(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class ULyraHealthSet Function OnRep_MaxHealth + +// Begin Class ULyraHealthSet +void ULyraHealthSet::StaticRegisterNativesULyraHealthSet() +{ + UClass* Class = ULyraHealthSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_Health", &ULyraHealthSet::execOnRep_Health }, + { "OnRep_MaxHealth", &ULyraHealthSet::execOnRep_MaxHealth }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHealthSet); +UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister() +{ + return ULyraHealthSet::StaticClass(); +} +struct Z_Construct_UClass_ULyraHealthSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraHealthSet\n *\n *\x09""Class that defines attributes that are necessary for taking damage.\n *\x09""Attribute examples include: health, shields, and resistances.\n */" }, +#endif + { "IncludePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraHealthSet\n\n Class that defines attributes that are necessary for taking damage.\n Attribute examples include: health, shields, and resistances." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Health_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current health attribute. The health will be capped by the max health attribute. Health is hidden from modifiers so only executions can modify it.\n" }, +#endif + { "HideFromModifiers", "" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current health attribute. The health will be capped by the max health attribute. Health is hidden from modifiers so only executions can modify it." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxHealth_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current max health attribute. Max health is an attribute since gameplay effects can modify it.\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current max health attribute. Max health is an attribute since gameplay effects can modify it." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Healing_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Incoming healing. This is mapped directly to +Health\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Incoming healing. This is mapped directly to +Health" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Damage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Lyra|Health" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Incoming damage. This is mapped directly to -Health\n" }, +#endif + { "HideFromModifiers", "" }, + { "ModuleRelativePath", "AbilitySystem/Attributes/LyraHealthSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Incoming damage. This is mapped directly to -Health" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Health; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaxHealth; + static const UECodeGen_Private::FStructPropertyParams NewProp_Healing; + static const UECodeGen_Private::FStructPropertyParams NewProp_Damage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHealthSet_OnRep_Health, "OnRep_Health" }, // 3019174776 + { &Z_Construct_UFunction_ULyraHealthSet_OnRep_MaxHealth, "OnRep_MaxHealth" }, // 727151021 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Health = { "Health", "OnRep_Health", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Health), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Health_MetaData), NewProp_Health_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_MaxHealth = { "MaxHealth", "OnRep_MaxHealth", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, MaxHealth), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxHealth_MetaData), NewProp_MaxHealth_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Healing = { "Healing", nullptr, (EPropertyFlags)0x0040000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Healing), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Healing_MetaData), NewProp_Healing_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Damage = { "Damage", nullptr, (EPropertyFlags)0x0040000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHealthSet, Damage), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Damage_MetaData), NewProp_Damage_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Health, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_MaxHealth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Healing, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHealthSet_Statics::NewProp_Damage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHealthSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHealthSet_Statics::ClassParams = { + &ULyraHealthSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::PropPointers), + 0, + 0x003000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHealthSet_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHealthSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHealthSet() +{ + if (!Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton, Z_Construct_UClass_ULyraHealthSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHealthSet.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHealthSet::StaticClass(); +} +void ULyraHealthSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Health(TEXT("Health")); + static const FName Name_MaxHealth(TEXT("MaxHealth")); + const bool bIsValid = true + && Name_Health == ClassReps[(int32)ENetFields_Private::Health].Property->GetFName() + && Name_MaxHealth == ClassReps[(int32)ENetFields_Private::MaxHealth].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraHealthSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHealthSet); +ULyraHealthSet::~ULyraHealthSet() {} +// End Class ULyraHealthSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHealthSet, ULyraHealthSet::StaticClass, TEXT("ULyraHealthSet"), &Z_Registration_Info_UClass_ULyraHealthSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHealthSet), 293291445U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_3569779746(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.generated.h new file mode 100644 index 00000000..9894d35d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHealthSet.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/Attributes/LyraHealthSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef LYRAGAME_LyraHealthSet_generated_h +#error "LyraHealthSet.generated.h already included, missing '#pragma once' in LyraHealthSet.h" +#endif +#define LYRAGAME_LyraHealthSet_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MaxHealth); \ + DECLARE_FUNCTION(execOnRep_Health); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHealthSet(); \ + friend struct Z_Construct_UClass_ULyraHealthSet_Statics; \ +public: \ + DECLARE_CLASS(ULyraHealthSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHealthSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Health=NETFIELD_REP_START, \ + MaxHealth, \ + NETFIELD_REP_END=MaxHealth }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraHealthSet) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHealthSet(ULyraHealthSet&&); \ + ULyraHealthSet(const ULyraHealthSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHealthSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHealthSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHealthSet) \ + NO_API virtual ~ULyraHealthSet(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h_32_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_Attributes_LyraHealthSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp new file mode 100644 index 00000000..5179218a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.gen.cpp @@ -0,0 +1,205 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraHeroComponent.h" +#include "LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHeroComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInputMappingContextAndPriority(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHeroComponent Function FindHeroComponent +struct Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics +{ + struct LyraHeroComponent_eventFindHeroComponent_Parms + { + const AActor* Actor; + ULyraHeroComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Hero" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the hero component if one exists on the specified actor. */" }, +#endif + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the hero component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHeroComponent_eventFindHeroComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraHeroComponent_eventFindHeroComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraHeroComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraHeroComponent, nullptr, "FindHeroComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::LyraHeroComponent_eventFindHeroComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::LyraHeroComponent_eventFindHeroComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraHeroComponent::execFindHeroComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraHeroComponent**)Z_Param__Result=ULyraHeroComponent::FindHeroComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraHeroComponent Function FindHeroComponent + +// Begin Class ULyraHeroComponent +void ULyraHeroComponent::StaticRegisterNativesULyraHeroComponent() +{ + UClass* Class = ULyraHeroComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindHeroComponent", &ULyraHeroComponent::execFindHeroComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHeroComponent); +UClass* Z_Construct_UClass_ULyraHeroComponent_NoRegister() +{ + return ULyraHeroComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraHeroComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Component that sets up input and camera handling for player controlled pawns (or bots that simulate players).\n * This depends on a PawnExtensionComponent to coordinate initialization.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraHeroComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Component that sets up input and camera handling for player controlled pawns (or bots that simulate players).\nThis depends on a PawnExtensionComponent to coordinate initialization." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultInputMappings_MetaData[] = { + { "Category", "LyraHeroComponent" }, + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityCameraMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Camera mode set by an ability. */" }, +#endif + { "ModuleRelativePath", "Character/LyraHeroComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Camera mode set by an ability." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultInputMappings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DefaultInputMappings; + static const UECodeGen_Private::FClassPropertyParams NewProp_AbilityCameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraHeroComponent_FindHeroComponent, "FindHeroComponent" }, // 2285230326 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings_Inner = { "DefaultInputMappings", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputMappingContextAndPriority, METADATA_PARAMS(0, nullptr) }; // 1299260669 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings = { "DefaultInputMappings", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHeroComponent, DefaultInputMappings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultInputMappings_MetaData), NewProp_DefaultInputMappings_MetaData) }; // 1299260669 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_AbilityCameraMode = { "AbilityCameraMode", nullptr, (EPropertyFlags)0x0024080000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraHeroComponent, AbilityCameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityCameraMode_MetaData), NewProp_AbilityCameraMode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_DefaultInputMappings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraHeroComponent_Statics::NewProp_AbilityCameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraHeroComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraHeroComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraHeroComponent, IGameFrameworkInitStateInterface), false }, // 363983679 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHeroComponent_Statics::ClassParams = { + &ULyraHeroComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHeroComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHeroComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHeroComponent() +{ + if (!Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton, Z_Construct_UClass_ULyraHeroComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHeroComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHeroComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHeroComponent); +ULyraHeroComponent::~ULyraHeroComponent() {} +// End Class ULyraHeroComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHeroComponent, ULyraHeroComponent::StaticClass, TEXT("ULyraHeroComponent"), &Z_Registration_Info_UClass_ULyraHeroComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHeroComponent), 4045578168U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_4197183927(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.generated.h new file mode 100644 index 00000000..8a929861 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHeroComponent.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraHeroComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraHeroComponent; +#ifdef LYRAGAME_LyraHeroComponent_generated_h +#error "LyraHeroComponent.generated.h already included, missing '#pragma once' in LyraHeroComponent.h" +#endif +#define LYRAGAME_LyraHeroComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindHeroComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHeroComponent(); \ + friend struct Z_Construct_UClass_ULyraHeroComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraHeroComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHeroComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHeroComponent(ULyraHeroComponent&&); \ + ULyraHeroComponent(const ULyraHeroComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHeroComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHeroComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraHeroComponent) \ + NO_API virtual ~ULyraHeroComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_29_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h_32_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraHeroComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp new file mode 100644 index 00000000..3c4ef996 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.gen.cpp @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraHotfixManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraHotfixManager() {} + +// Begin Cross Module References +HOTFIX_API UClass* Z_Construct_UClass_UOnlineHotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHotfixManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHotfixManager_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraHotfixManager +void ULyraHotfixManager::StaticRegisterNativesULyraHotfixManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraHotfixManager); +UClass* Z_Construct_UClass_ULyraHotfixManager_NoRegister() +{ + return ULyraHotfixManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraHotfixManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Hotfix/LyraHotfixManager.h" }, + { "ModuleRelativePath", "Hotfix/LyraHotfixManager.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraHotfixManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UOnlineHotfixManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHotfixManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraHotfixManager_Statics::ClassParams = { + &ULyraHotfixManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraHotfixManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraHotfixManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraHotfixManager() +{ + if (!Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton, Z_Construct_UClass_ULyraHotfixManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraHotfixManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraHotfixManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraHotfixManager); +// End Class ULyraHotfixManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraHotfixManager, ULyraHotfixManager::StaticClass, TEXT("ULyraHotfixManager"), &Z_Registration_Info_UClass_ULyraHotfixManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraHotfixManager), 3421603915U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_2693062744(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.generated.h new file mode 100644 index 00000000..55b1e161 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraHotfixManager.generated.h @@ -0,0 +1,53 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraHotfixManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraHotfixManager_generated_h +#error "LyraHotfixManager.generated.h already included, missing '#pragma once' in LyraHotfixManager.h" +#endif +#define LYRAGAME_LyraHotfixManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraHotfixManager(); \ + friend struct Z_Construct_UClass_ULyraHotfixManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraHotfixManager, UOnlineHotfixManager, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraHotfixManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraHotfixManager(ULyraHotfixManager&&); \ + ULyraHotfixManager(const ULyraHotfixManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraHotfixManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraHotfixManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraHotfixManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_10_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h_13_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraHotfixManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp new file mode 100644 index 00000000..04d67894 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.gen.cpp @@ -0,0 +1,211 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/IndicatorSystem/LyraIndicatorManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraIndicatorManagerComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_UIndicatorDescriptor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraIndicatorManagerComponent Function AddIndicator +struct Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics +{ + struct LyraIndicatorManagerComponent_eventAddIndicator_Parms + { + UIndicatorDescriptor* IndicatorDescriptor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_IndicatorDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::NewProp_IndicatorDescriptor = { "IndicatorDescriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraIndicatorManagerComponent_eventAddIndicator_Parms, IndicatorDescriptor), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::NewProp_IndicatorDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraIndicatorManagerComponent, nullptr, "AddIndicator", nullptr, nullptr, Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::LyraIndicatorManagerComponent_eventAddIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::LyraIndicatorManagerComponent_eventAddIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraIndicatorManagerComponent::execAddIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_IndicatorDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddIndicator(Z_Param_IndicatorDescriptor); + P_NATIVE_END; +} +// End Class ULyraIndicatorManagerComponent Function AddIndicator + +// Begin Class ULyraIndicatorManagerComponent Function RemoveIndicator +struct Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics +{ + struct LyraIndicatorManagerComponent_eventRemoveIndicator_Parms + { + UIndicatorDescriptor* IndicatorDescriptor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Indicator" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_IndicatorDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::NewProp_IndicatorDescriptor = { "IndicatorDescriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraIndicatorManagerComponent_eventRemoveIndicator_Parms, IndicatorDescriptor), Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::NewProp_IndicatorDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraIndicatorManagerComponent, nullptr, "RemoveIndicator", nullptr, nullptr, Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::LyraIndicatorManagerComponent_eventRemoveIndicator_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::LyraIndicatorManagerComponent_eventRemoveIndicator_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraIndicatorManagerComponent::execRemoveIndicator) +{ + P_GET_OBJECT(UIndicatorDescriptor,Z_Param_IndicatorDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveIndicator(Z_Param_IndicatorDescriptor); + P_NATIVE_END; +} +// End Class ULyraIndicatorManagerComponent Function RemoveIndicator + +// Begin Class ULyraIndicatorManagerComponent +void ULyraIndicatorManagerComponent::StaticRegisterNativesULyraIndicatorManagerComponent() +{ + UClass* Class = ULyraIndicatorManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddIndicator", &ULyraIndicatorManagerComponent::execAddIndicator }, + { "RemoveIndicator", &ULyraIndicatorManagerComponent::execRemoveIndicator }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraIndicatorManagerComponent); +UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent_NoRegister() +{ + return ULyraIndicatorManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * @class ULyraIndicatorManagerComponent\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@class ULyraIndicatorManagerComponent" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Indicators_MetaData[] = { + { "ModuleRelativePath", "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Indicators_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Indicators; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraIndicatorManagerComponent_AddIndicator, "AddIndicator" }, // 928547484 + { &Z_Construct_UFunction_ULyraIndicatorManagerComponent_RemoveIndicator, "RemoveIndicator" }, // 2490811903 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators_Inner = { "Indicators", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UIndicatorDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators = { "Indicators", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraIndicatorManagerComponent, Indicators), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Indicators_MetaData), NewProp_Indicators_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::NewProp_Indicators, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::ClassParams = { + &ULyraIndicatorManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraIndicatorManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraIndicatorManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraIndicatorManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraIndicatorManagerComponent); +ULyraIndicatorManagerComponent::~ULyraIndicatorManagerComponent() {} +// End Class ULyraIndicatorManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraIndicatorManagerComponent, ULyraIndicatorManagerComponent::StaticClass, TEXT("ULyraIndicatorManagerComponent"), &Z_Registration_Info_UClass_ULyraIndicatorManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraIndicatorManagerComponent), 2434299181U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_1784138061(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h new file mode 100644 index 00000000..7e5c6a2b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraIndicatorManagerComponent.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/IndicatorSystem/LyraIndicatorManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UIndicatorDescriptor; +#ifdef LYRAGAME_LyraIndicatorManagerComponent_generated_h +#error "LyraIndicatorManagerComponent.generated.h already included, missing '#pragma once' in LyraIndicatorManagerComponent.h" +#endif +#define LYRAGAME_LyraIndicatorManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRemoveIndicator); \ + DECLARE_FUNCTION(execAddIndicator); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraIndicatorManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraIndicatorManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraIndicatorManagerComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraIndicatorManagerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraIndicatorManagerComponent(ULyraIndicatorManagerComponent&&); \ + ULyraIndicatorManagerComponent(const ULyraIndicatorManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraIndicatorManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraIndicatorManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraIndicatorManagerComponent) \ + NO_API virtual ~ULyraIndicatorManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_IndicatorSystem_LyraIndicatorManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp new file mode 100644 index 00000000..99007afd --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.gen.cpp @@ -0,0 +1,98 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputComponent() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInputComponent +void ULyraInputComponent::StaticRegisterNativesULyraInputComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputComponent); +UClass* Z_Construct_UClass_ULyraInputComponent_NoRegister() +{ + return ULyraInputComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInputComponent\n *\n *\x09""Component used to manage input mappings and bindings using an input config data asset.\n */" }, +#endif + { "HideCategories", "Activation Components|Activation Activation Components|Activation" }, + { "IncludePath", "Input/LyraInputComponent.h" }, + { "ModuleRelativePath", "Input/LyraInputComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInputComponent\n\n Component used to manage input mappings and bindings using an input config data asset." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedInputComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputComponent_Statics::ClassParams = { + &ULyraInputComponent::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputComponent() +{ + if (!Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton, Z_Construct_UClass_ULyraInputComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputComponent); +ULyraInputComponent::~ULyraInputComponent() {} +// End Class ULyraInputComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputComponent, ULyraInputComponent::StaticClass, TEXT("ULyraInputComponent"), &Z_Registration_Info_UClass_ULyraInputComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputComponent), 4289628356U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_4023734558(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.generated.h new file mode 100644 index 00000000..16d1fe8c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputComponent_generated_h +#error "LyraInputComponent.generated.h already included, missing '#pragma once' in LyraInputComponent.h" +#endif +#define LYRAGAME_LyraInputComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputComponent(); \ + friend struct Z_Construct_UClass_ULyraInputComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputComponent, UEnhancedInputComponent, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputComponent(ULyraInputComponent&&); \ + ULyraInputComponent(const ULyraInputComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputComponent) \ + NO_API virtual ~ULyraInputComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp new file mode 100644 index 00000000..0f362556 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.gen.cpp @@ -0,0 +1,359 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputConfig.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputConfig() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInputAction(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInputAction +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInputAction; +class UScriptStruct* FLyraInputAction::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInputAction, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInputAction")); + } + return Z_Registration_Info_UScriptStruct_LyraInputAction.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInputAction::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInputAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * FLyraInputAction\n *\n *\x09Struct used to map a input action to a gameplay input tag.\n */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FLyraInputAction\n\n Struct used to map a input action to a gameplay input tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputAction_MetaData[] = { + { "Category", "LyraInputAction" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "Categories", "InputTag" }, + { "Category", "LyraInputAction" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputAction; + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputAction = { "InputAction", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInputAction, InputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputAction_MetaData), NewProp_InputAction_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInputAction, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewProp_InputTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInputAction_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInputAction", + Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::PropPointers), + sizeof(FLyraInputAction), + alignof(FLyraInputAction), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInputAction_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInputAction_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInputAction() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton, Z_Construct_UScriptStruct_FLyraInputAction_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInputAction.InnerSingleton; +} +// End ScriptStruct FLyraInputAction + +// Begin Class ULyraInputConfig Function FindAbilityInputActionForTag +struct Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics +{ + struct LyraInputConfig_eventFindAbilityInputActionForTag_Parms + { + FGameplayTag InputTag; + bool bLogNotFound; + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "CPP_Default_bLogNotFound", "true" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static void NewProp_bLogNotFound_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogNotFound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindAbilityInputActionForTag_Parms, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound_SetBit(void* Obj) +{ + ((LyraInputConfig_eventFindAbilityInputActionForTag_Parms*)Obj)->bLogNotFound = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound = { "bLogNotFound", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInputConfig_eventFindAbilityInputActionForTag_Parms), &Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindAbilityInputActionForTag_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_InputTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_bLogNotFound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInputConfig, nullptr, "FindAbilityInputActionForTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::LyraInputConfig_eventFindAbilityInputActionForTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::LyraInputConfig_eventFindAbilityInputActionForTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInputConfig::execFindAbilityInputActionForTag) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_InputTag); + P_GET_UBOOL(Z_Param_bLogNotFound); + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->FindAbilityInputActionForTag(Z_Param_Out_InputTag,Z_Param_bLogNotFound); + P_NATIVE_END; +} +// End Class ULyraInputConfig Function FindAbilityInputActionForTag + +// Begin Class ULyraInputConfig Function FindNativeInputActionForTag +struct Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics +{ + struct LyraInputConfig_eventFindNativeInputActionForTag_Parms + { + FGameplayTag InputTag; + bool bLogNotFound; + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, + { "CPP_Default_bLogNotFound", "true" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTag_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputTag; + static void NewProp_bLogNotFound_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogNotFound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_InputTag = { "InputTag", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindNativeInputActionForTag_Parms, InputTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTag_MetaData), NewProp_InputTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound_SetBit(void* Obj) +{ + ((LyraInputConfig_eventFindNativeInputActionForTag_Parms*)Obj)->bLogNotFound = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound = { "bLogNotFound", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInputConfig_eventFindNativeInputActionForTag_Parms), &Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInputConfig_eventFindNativeInputActionForTag_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_InputTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_bLogNotFound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInputConfig, nullptr, "FindNativeInputActionForTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::LyraInputConfig_eventFindNativeInputActionForTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::LyraInputConfig_eventFindNativeInputActionForTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInputConfig::execFindNativeInputActionForTag) +{ + P_GET_STRUCT_REF(FGameplayTag,Z_Param_Out_InputTag); + P_GET_UBOOL(Z_Param_bLogNotFound); + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->FindNativeInputActionForTag(Z_Param_Out_InputTag,Z_Param_bLogNotFound); + P_NATIVE_END; +} +// End Class ULyraInputConfig Function FindNativeInputActionForTag + +// Begin Class ULyraInputConfig +void ULyraInputConfig::StaticRegisterNativesULyraInputConfig() +{ + UClass* Class = ULyraInputConfig::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindAbilityInputActionForTag", &ULyraInputConfig::execFindAbilityInputActionForTag }, + { "FindNativeInputActionForTag", &ULyraInputConfig::execFindNativeInputActionForTag }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputConfig); +UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister() +{ + return ULyraInputConfig::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInputConfig\n *\n *\x09Non-mutable data asset that contains input configuration properties.\n */" }, +#endif + { "IncludePath", "Input/LyraInputConfig.h" }, + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInputConfig\n\n Non-mutable data asset that contains input configuration properties." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NativeInputActions_MetaData[] = { + { "Category", "LyraInputConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of input actions used by the owner. These input actions are mapped to a gameplay tag and must be manually bound.\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "TitleProperty", "InputAction" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of input actions used by the owner. These input actions are mapped to a gameplay tag and must be manually bound." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilityInputActions_MetaData[] = { + { "Category", "LyraInputConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of input actions used by the owner. These input actions are mapped to a gameplay tag and are automatically bound to abilities with matching input tags.\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputConfig.h" }, + { "TitleProperty", "InputAction" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of input actions used by the owner. These input actions are mapped to a gameplay tag and are automatically bound to abilities with matching input tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NativeInputActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NativeInputActions; + static const UECodeGen_Private::FStructPropertyParams NewProp_AbilityInputActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilityInputActions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInputConfig_FindAbilityInputActionForTag, "FindAbilityInputActionForTag" }, // 1734908005 + { &Z_Construct_UFunction_ULyraInputConfig_FindNativeInputActionForTag, "FindNativeInputActionForTag" }, // 2340640036 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions_Inner = { "NativeInputActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInputAction, METADATA_PARAMS(0, nullptr) }; // 46609985 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions = { "NativeInputActions", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputConfig, NativeInputActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NativeInputActions_MetaData), NewProp_NativeInputActions_MetaData) }; // 46609985 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions_Inner = { "AbilityInputActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInputAction, METADATA_PARAMS(0, nullptr) }; // 46609985 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions = { "AbilityInputActions", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputConfig, AbilityInputActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilityInputActions_MetaData), NewProp_AbilityInputActions_MetaData) }; // 46609985 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_NativeInputActions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputConfig_Statics::NewProp_AbilityInputActions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputConfig_Statics::ClassParams = { + &ULyraInputConfig::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::PropPointers), + 0, + 0x000100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputConfig() +{ + if (!Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton, Z_Construct_UClass_ULyraInputConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputConfig::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputConfig); +ULyraInputConfig::~ULyraInputConfig() {} +// End Class ULyraInputConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInputAction::StaticStruct, Z_Construct_UScriptStruct_FLyraInputAction_Statics::NewStructOps, TEXT("LyraInputAction"), &Z_Registration_Info_UScriptStruct_LyraInputAction, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInputAction), 46609985U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputConfig, ULyraInputConfig::StaticClass, TEXT("ULyraInputConfig"), &Z_Registration_Info_UClass_ULyraInputConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputConfig), 2797413737U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_1596402001(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.generated.h new file mode 100644 index 00000000..0c279573 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputConfig.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UInputAction; +struct FGameplayTag; +#ifdef LYRAGAME_LyraInputConfig_generated_h +#error "LyraInputConfig.generated.h already included, missing '#pragma once' in LyraInputConfig.h" +#endif +#define LYRAGAME_LyraInputConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_22_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInputAction_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindAbilityInputActionForTag); \ + DECLARE_FUNCTION(execFindNativeInputActionForTag); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputConfig(); \ + friend struct Z_Construct_UClass_ULyraInputConfig_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputConfig, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputConfig) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputConfig(ULyraInputConfig&&); \ + ULyraInputConfig(const ULyraInputConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputConfig) \ + NO_API virtual ~ULyraInputConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_38_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h_41_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp new file mode 100644 index 00000000..51b8d30d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.gen.cpp @@ -0,0 +1,590 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputModifiers.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputModifiers() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputModifier(); +ENHANCEDINPUT_API UEnum* Z_Construct_UEnum_EnhancedInput_EDeadZoneType(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierAimInversion(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierAimInversion_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierDeadZone(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierDeadZone_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingBasedScalar(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingBasedScalar_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EDeadzoneStick(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingBasedScalar +void ULyraSettingBasedScalar::StaticRegisterNativesULyraSettingBasedScalar() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingBasedScalar); +UClass* Z_Construct_UClass_ULyraSettingBasedScalar_NoRegister() +{ + return ULyraSettingBasedScalar::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingBasedScalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n* Scales input basedon a double property in the SharedUserSettings\n*/" }, +#endif + { "DisplayName", "Setting Based Scalar" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scales input basedon a double property in the SharedUserSettings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_XAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the X Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the X Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_YAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the Y Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the Y Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ZAxisScalarSettingName_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Name of the property that will be used to clamp the Z Axis of this value */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the property that will be used to clamp the Z Axis of this value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxValueClamp_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the maximium value of this setting on each axis. */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the maximium value of this setting on each axis." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MinValueClamp_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the minimum value of this setting on each axis. */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the minimum value of this setting on each axis." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_XAxisScalarSettingName; + static const UECodeGen_Private::FNamePropertyParams NewProp_YAxisScalarSettingName; + static const UECodeGen_Private::FNamePropertyParams NewProp_ZAxisScalarSettingName; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaxValueClamp; + static const UECodeGen_Private::FStructPropertyParams NewProp_MinValueClamp; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_XAxisScalarSettingName = { "XAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, XAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_XAxisScalarSettingName_MetaData), NewProp_XAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_YAxisScalarSettingName = { "YAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, YAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_YAxisScalarSettingName_MetaData), NewProp_YAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_ZAxisScalarSettingName = { "ZAxisScalarSettingName", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, ZAxisScalarSettingName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ZAxisScalarSettingName_MetaData), NewProp_ZAxisScalarSettingName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MaxValueClamp = { "MaxValueClamp", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, MaxValueClamp), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxValueClamp_MetaData), NewProp_MaxValueClamp_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MinValueClamp = { "MinValueClamp", nullptr, (EPropertyFlags)0x0010000000000805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingBasedScalar, MinValueClamp), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MinValueClamp_MetaData), NewProp_MinValueClamp_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_XAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_YAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_ZAxisScalarSettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MaxValueClamp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingBasedScalar_Statics::NewProp_MinValueClamp, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingBasedScalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingBasedScalar_Statics::ClassParams = { + &ULyraSettingBasedScalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::PropPointers), + 0, + 0x400830A2u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingBasedScalar_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingBasedScalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingBasedScalar() +{ + if (!Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton, Z_Construct_UClass_ULyraSettingBasedScalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingBasedScalar.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingBasedScalar::StaticClass(); +} +ULyraSettingBasedScalar::ULyraSettingBasedScalar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingBasedScalar); +ULyraSettingBasedScalar::~ULyraSettingBasedScalar() {} +// End Class ULyraSettingBasedScalar + +// Begin Enum EDeadzoneStick +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EDeadzoneStick; +static UEnum* EDeadzoneStick_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton) + { + Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EDeadzoneStick, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EDeadzoneStick")); + } + return Z_Registration_Info_UEnum_EDeadzoneStick.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EDeadzoneStick_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Represents which stick that this deadzone is for, either the move or the look stick */" }, +#endif + { "LookStick.Comment", "/** Deadzone for the looking stick */" }, + { "LookStick.Name", "EDeadzoneStick::LookStick" }, + { "LookStick.ToolTip", "Deadzone for the looking stick" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "MoveStick.Comment", "/** Deadzone for the movement stick */" }, + { "MoveStick.Name", "EDeadzoneStick::MoveStick" }, + { "MoveStick.ToolTip", "Deadzone for the movement stick" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents which stick that this deadzone is for, either the move or the look stick" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EDeadzoneStick::MoveStick", (int64)EDeadzoneStick::MoveStick }, + { "EDeadzoneStick::LookStick", (int64)EDeadzoneStick::LookStick }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EDeadzoneStick", + "EDeadzoneStick", + Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EDeadzoneStick() +{ + if (!Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton, Z_Construct_UEnum_LyraGame_EDeadzoneStick_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EDeadzoneStick.InnerSingleton; +} +// End Enum EDeadzoneStick + +// Begin Class ULyraInputModifierDeadZone +void ULyraInputModifierDeadZone::StaticRegisterNativesULyraInputModifierDeadZone() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierDeadZone); +UClass* Z_Construct_UClass_ULyraInputModifierDeadZone_NoRegister() +{ + return ULyraInputModifierDeadZone::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierDeadZone_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This is a deadzone input modifier that will have it's thresholds driven by what is in the Lyra Shared game settings. \n */" }, +#endif + { "DisplayName", "Lyra Settings Driven Dead Zone" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a deadzone input modifier that will have it's thresholds driven by what is in the Lyra Shared game settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Type_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UpperThreshold_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Threshold above which input is clamped to 1\n" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Threshold above which input is clamped to 1" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeadzoneStick_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Which stick this deadzone is for. This controls which setting will be used when calculating the deadzone */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Which stick this deadzone is for. This controls which setting will be used when calculating the deadzone" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Type_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Type; + static const UECodeGen_Private::FFloatPropertyParams NewProp_UpperThreshold; + static const UECodeGen_Private::FBytePropertyParams NewProp_DeadzoneStick_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DeadzoneStick; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type = { "Type", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, Type), Z_Construct_UEnum_EnhancedInput_EDeadZoneType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Type_MetaData), NewProp_Type_MetaData) }; // 4170391957 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_UpperThreshold = { "UpperThreshold", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, UpperThreshold), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UpperThreshold_MetaData), NewProp_UpperThreshold_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick = { "DeadzoneStick", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierDeadZone, DeadzoneStick), Z_Construct_UEnum_LyraGame_EDeadzoneStick, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeadzoneStick_MetaData), NewProp_DeadzoneStick_MetaData) }; // 2169288601 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_Type, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_UpperThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::NewProp_DeadzoneStick, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::ClassParams = { + &ULyraInputModifierDeadZone::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::PropPointers), + 0, + 0x400830A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierDeadZone() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton, Z_Construct_UClass_ULyraInputModifierDeadZone_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierDeadZone.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierDeadZone::StaticClass(); +} +ULyraInputModifierDeadZone::ULyraInputModifierDeadZone(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierDeadZone); +ULyraInputModifierDeadZone::~ULyraInputModifierDeadZone() {} +// End Class ULyraInputModifierDeadZone + +// Begin Enum ELyraTargetingType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraTargetingType; +static UEnum* ELyraTargetingType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraTargetingType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraTargetingType")); + } + return Z_Registration_Info_UEnum_ELyraTargetingType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraTargetingType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ADS.Comment", "/** The sensitivity that should be applied while Aiming Down Sights */" }, + { "ADS.Name", "ELyraTargetingType::ADS" }, + { "ADS.ToolTip", "The sensitivity that should be applied while Aiming Down Sights" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting sensitity that should be considered */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "Normal.Comment", "/** Sensitivity to be applied why normally looking around */" }, + { "Normal.Name", "ELyraTargetingType::Normal" }, + { "Normal.ToolTip", "Sensitivity to be applied why normally looking around" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting sensitity that should be considered" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraTargetingType::Normal", (int64)ELyraTargetingType::Normal }, + { "ELyraTargetingType::ADS", (int64)ELyraTargetingType::ADS }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraTargetingType", + "ELyraTargetingType", + Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType() +{ + if (!Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraTargetingType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraTargetingType.InnerSingleton; +} +// End Enum ELyraTargetingType + +// Begin Class ULyraInputModifierGamepadSensitivity +void ULyraInputModifierGamepadSensitivity::StaticRegisterNativesULyraInputModifierGamepadSensitivity() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierGamepadSensitivity); +UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_NoRegister() +{ + return ULyraInputModifierGamepadSensitivity::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Applies a scalar modifier based on the current gamepad settings in Lyra Shared game settings. */" }, +#endif + { "DisplayName", "Lyra Gamepad Sensitivity" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies a scalar modifier based on the current gamepad settings in Lyra Shared game settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingType_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting to use for this Sensitivity */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting to use for this Sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityLevelTable_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "LyraInputModifierGamepadSensitivity" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Asset that gives us access to the float scalar value being used for sensitivty */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asset that gives us access to the float scalar value being used for sensitivty" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_TargetingType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_TargetingType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SensitivityLevelTable; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType = { "TargetingType", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierGamepadSensitivity, TargetingType), Z_Construct_UEnum_LyraGame_ELyraTargetingType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingType_MetaData), NewProp_TargetingType_MetaData) }; // 667227071 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_SensitivityLevelTable = { "SensitivityLevelTable", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInputModifierGamepadSensitivity, SensitivityLevelTable), Z_Construct_UClass_ULyraAimSensitivityData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityLevelTable_MetaData), NewProp_SensitivityLevelTable_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_TargetingType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::NewProp_SensitivityLevelTable, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::ClassParams = { + &ULyraInputModifierGamepadSensitivity::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::PropPointers), + 0, + 0x400830A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierGamepadSensitivity() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton, Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierGamepadSensitivity::StaticClass(); +} +ULyraInputModifierGamepadSensitivity::ULyraInputModifierGamepadSensitivity(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierGamepadSensitivity); +ULyraInputModifierGamepadSensitivity::~ULyraInputModifierGamepadSensitivity() {} +// End Class ULyraInputModifierGamepadSensitivity + +// Begin Class ULyraInputModifierAimInversion +void ULyraInputModifierAimInversion::StaticRegisterNativesULyraInputModifierAimInversion() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputModifierAimInversion); +UClass* Z_Construct_UClass_ULyraInputModifierAimInversion_NoRegister() +{ + return ULyraInputModifierAimInversion::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputModifierAimInversion_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Applies an inversion of axis values based on a setting in the Lyra Shared game settings */" }, +#endif + { "DisplayName", "Lyra Aim Inversion Setting" }, + { "IncludePath", "Input/LyraInputModifiers.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Input/LyraInputModifiers.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Applies an inversion of axis values based on a setting in the Lyra Shared game settings" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::ClassParams = { + &ULyraInputModifierAimInversion::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x400830A2u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputModifierAimInversion() +{ + if (!Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton, Z_Construct_UClass_ULyraInputModifierAimInversion_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputModifierAimInversion.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputModifierAimInversion::StaticClass(); +} +ULyraInputModifierAimInversion::ULyraInputModifierAimInversion(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputModifierAimInversion); +ULyraInputModifierAimInversion::~ULyraInputModifierAimInversion() {} +// End Class ULyraInputModifierAimInversion + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EDeadzoneStick_StaticEnum, TEXT("EDeadzoneStick"), &Z_Registration_Info_UEnum_EDeadzoneStick, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2169288601U) }, + { ELyraTargetingType_StaticEnum, TEXT("ELyraTargetingType"), &Z_Registration_Info_UEnum_ELyraTargetingType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 667227071U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingBasedScalar, ULyraSettingBasedScalar::StaticClass, TEXT("ULyraSettingBasedScalar"), &Z_Registration_Info_UClass_ULyraSettingBasedScalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingBasedScalar), 1309995525U) }, + { Z_Construct_UClass_ULyraInputModifierDeadZone, ULyraInputModifierDeadZone::StaticClass, TEXT("ULyraInputModifierDeadZone"), &Z_Registration_Info_UClass_ULyraInputModifierDeadZone, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierDeadZone), 781816133U) }, + { Z_Construct_UClass_ULyraInputModifierGamepadSensitivity, ULyraInputModifierGamepadSensitivity::StaticClass, TEXT("ULyraInputModifierGamepadSensitivity"), &Z_Registration_Info_UClass_ULyraInputModifierGamepadSensitivity, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierGamepadSensitivity), 3129653212U) }, + { Z_Construct_UClass_ULyraInputModifierAimInversion, ULyraInputModifierAimInversion::StaticClass, TEXT("ULyraInputModifierAimInversion"), &Z_Registration_Info_UClass_ULyraInputModifierAimInversion, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputModifierAimInversion), 1499972857U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_1267794667(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.generated.h new file mode 100644 index 00000000..c6f5e4ab --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputModifiers.generated.h @@ -0,0 +1,177 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputModifiers.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputModifiers_generated_h +#error "LyraInputModifiers.generated.h already included, missing '#pragma once' in LyraInputModifiers.h" +#endif +#define LYRAGAME_LyraInputModifiers_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingBasedScalar(); \ + friend struct Z_Construct_UClass_ULyraSettingBasedScalar_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingBasedScalar, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraSettingBasedScalar) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraSettingBasedScalar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingBasedScalar(ULyraSettingBasedScalar&&); \ + ULyraSettingBasedScalar(const ULyraSettingBasedScalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraSettingBasedScalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingBasedScalar); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingBasedScalar) \ + LYRAGAME_API virtual ~ULyraSettingBasedScalar(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierDeadZone(); \ + friend struct Z_Construct_UClass_ULyraInputModifierDeadZone_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierDeadZone, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierDeadZone) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierDeadZone(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierDeadZone(ULyraInputModifierDeadZone&&); \ + ULyraInputModifierDeadZone(const ULyraInputModifierDeadZone&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierDeadZone); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierDeadZone); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierDeadZone) \ + LYRAGAME_API virtual ~ULyraInputModifierDeadZone(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_68_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_71_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierGamepadSensitivity(); \ + friend struct Z_Construct_UClass_ULyraInputModifierGamepadSensitivity_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierGamepadSensitivity, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierGamepadSensitivity) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierGamepadSensitivity(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierGamepadSensitivity(ULyraInputModifierGamepadSensitivity&&); \ + ULyraInputModifierGamepadSensitivity(const ULyraInputModifierGamepadSensitivity&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierGamepadSensitivity); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierGamepadSensitivity); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierGamepadSensitivity) \ + LYRAGAME_API virtual ~ULyraInputModifierGamepadSensitivity(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_106_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_109_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputModifierAimInversion(); \ + friend struct Z_Construct_UClass_ULyraInputModifierAimInversion_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputModifierAimInversion, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraInputModifierAimInversion) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraInputModifierAimInversion(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputModifierAimInversion(ULyraInputModifierAimInversion&&); \ + ULyraInputModifierAimInversion(const ULyraInputModifierAimInversion&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraInputModifierAimInversion); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputModifierAimInversion); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputModifierAimInversion) \ + LYRAGAME_API virtual ~ULyraInputModifierAimInversion(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_125_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h_128_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputModifiers_h + + +#define FOREACH_ENUM_EDEADZONESTICK(op) \ + op(EDeadzoneStick::MoveStick) \ + op(EDeadzoneStick::LookStick) + +enum class EDeadzoneStick : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRATARGETINGTYPE(op) \ + op(ELyraTargetingType::Normal) \ + op(ELyraTargetingType::ADS) + +enum class ELyraTargetingType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp new file mode 100644 index 00000000..d4231d7a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp @@ -0,0 +1,185 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraInputUserSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInputUserSettings() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputUserSettings(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UPlayerMappableKeySettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputUserSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputUserSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInputUserSettings +void ULyraInputUserSettings::StaticRegisterNativesULyraInputUserSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInputUserSettings); +UClass* Z_Construct_UClass_ULyraInputUserSettings_NoRegister() +{ + return ULyraInputUserSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraInputUserSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Custom settings class for any input related settings for the Lyra game.\n * This will be serialized out at the same time as the Lyra Shared Settings and is\n * compatible with cloud saves through by calling the \"Serialize\" function.\n */" }, +#endif + { "IncludePath", "Input/LyraInputUserSettings.h" }, + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Custom settings class for any input related settings for the Lyra game.\nThis will be serialized out at the same time as the Lyra Shared Settings and is\ncompatible with cloud saves through by calling the \"Serialize\" function." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInputUserSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedInputUserSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputUserSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInputUserSettings_Statics::ClassParams = { + &ULyraInputUserSettings::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInputUserSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInputUserSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInputUserSettings() +{ + if (!Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton, Z_Construct_UClass_ULyraInputUserSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInputUserSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInputUserSettings::StaticClass(); +} +ULyraInputUserSettings::ULyraInputUserSettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInputUserSettings); +ULyraInputUserSettings::~ULyraInputUserSettings() {} +// End Class ULyraInputUserSettings + +// Begin Class ULyraPlayerMappableKeySettings +void ULyraPlayerMappableKeySettings::StaticRegisterNativesULyraPlayerMappableKeySettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerMappableKeySettings); +UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings_NoRegister() +{ + return ULyraPlayerMappableKeySettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Player Mappable Key settings are settings that are accessible per-action key mapping.\n * This is where you could place additional metadata that may be used by your settings UI,\n * input triggers, or other places where you want to know about a key setting.\n */" }, +#endif + { "IncludePath", "Input/LyraInputUserSettings.h" }, + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Player Mappable Key settings are settings that are accessible per-action key mapping.\nThis is where you could place additional metadata that may be used by your settings UI,\ninput triggers, or other places where you want to know about a key setting." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tooltip_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tooltip that should be associated with this action when displayed on the settings screen */" }, +#endif + { "ModuleRelativePath", "Input/LyraInputUserSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tooltip that should be associated with this action when displayed on the settings screen" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Tooltip; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::NewProp_Tooltip = { "Tooltip", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlayerMappableKeySettings, Tooltip), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tooltip_MetaData), NewProp_Tooltip_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::NewProp_Tooltip, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPlayerMappableKeySettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::ClassParams = { + &ULyraPlayerMappableKeySettings::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::PropPointers), + 0, + 0x003010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerMappableKeySettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton, Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerMappableKeySettings::StaticClass(); +} +ULyraPlayerMappableKeySettings::ULyraPlayerMappableKeySettings(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerMappableKeySettings); +ULyraPlayerMappableKeySettings::~ULyraPlayerMappableKeySettings() {} +// End Class ULyraPlayerMappableKeySettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInputUserSettings, ULyraInputUserSettings::StaticClass, TEXT("ULyraInputUserSettings"), &Z_Registration_Info_UClass_ULyraInputUserSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInputUserSettings), 1645180660U) }, + { Z_Construct_UClass_ULyraPlayerMappableKeySettings, ULyraPlayerMappableKeySettings::StaticClass, TEXT("ULyraPlayerMappableKeySettings"), &Z_Registration_Info_UClass_ULyraPlayerMappableKeySettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerMappableKeySettings), 1891548204U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_833077401(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h new file mode 100644 index 00000000..1803cf79 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraInputUserSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInputUserSettings_generated_h +#error "LyraInputUserSettings.generated.h already included, missing '#pragma once' in LyraInputUserSettings.h" +#endif +#define LYRAGAME_LyraInputUserSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInputUserSettings(); \ + friend struct Z_Construct_UClass_ULyraInputUserSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraInputUserSettings, UEnhancedInputUserSettings, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInputUserSettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInputUserSettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInputUserSettings(ULyraInputUserSettings&&); \ + ULyraInputUserSettings(const ULyraInputUserSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInputUserSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInputUserSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInputUserSettings) \ + NO_API virtual ~ULyraInputUserSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerMappableKeySettings(); \ + friend struct Z_Construct_UClass_ULyraPlayerMappableKeySettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerMappableKeySettings, UPlayerMappableKeySettings, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerMappableKeySettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPlayerMappableKeySettings(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerMappableKeySettings(ULyraPlayerMappableKeySettings&&); \ + ULyraPlayerMappableKeySettings(const ULyraPlayerMappableKeySettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerMappableKeySettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerMappableKeySettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerMappableKeySettings) \ + NO_API virtual ~ULyraPlayerMappableKeySettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_40_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h_43_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraInputUserSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp new file mode 100644 index 00000000..e4452754 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp @@ -0,0 +1,99 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Interaction/LyraInteractionDurationMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInteractionDurationMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInteractionDurationMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInteractionDurationMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage; +class UScriptStruct* FLyraInteractionDurationMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInteractionDurationMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInteractionDurationMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "Category", "LyraInteractionDurationMessage" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Duration_MetaData[] = { + { "Category", "LyraInteractionDurationMessage" }, + { "ModuleRelativePath", "Interaction/LyraInteractionDurationMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Duration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInteractionDurationMessage, Instigator), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Duration = { "Duration", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInteractionDurationMessage, Duration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Duration_MetaData), NewProp_Duration_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewProp_Duration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInteractionDurationMessage", + Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::PropPointers), + sizeof(FLyraInteractionDurationMessage), + alignof(FLyraInteractionDurationMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInteractionDurationMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage.InnerSingleton; +} +// End ScriptStruct FLyraInteractionDurationMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInteractionDurationMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics::NewStructOps, TEXT("LyraInteractionDurationMessage"), &Z_Registration_Info_UScriptStruct_LyraInteractionDurationMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInteractionDurationMessage), 3510813716U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_1764469930(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h new file mode 100644 index 00000000..602e15f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Interaction/LyraInteractionDurationMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraInteractionDurationMessage_generated_h +#error "LyraInteractionDurationMessage.generated.h already included, missing '#pragma once' in LyraInteractionDurationMessage.h" +#endif +#define LYRAGAME_LyraInteractionDurationMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInteractionDurationMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Interaction_LyraInteractionDurationMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp new file mode 100644 index 00000000..b5854317 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.gen.cpp @@ -0,0 +1,331 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryItemDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryItemDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInventoryItemFragment +void ULyraInventoryItemFragment::StaticRegisterNativesULyraInventoryItemFragment() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemFragment); +UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister() +{ + return ULyraInventoryItemFragment::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemFragment_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents a fragment of an item definition\n" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a fragment of an item definition" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInventoryItemFragment_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemFragment_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemFragment_Statics::ClassParams = { + &ULyraInventoryItemFragment::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x003010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemFragment_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemFragment_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemFragment() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemFragment_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemFragment.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemFragment::StaticClass(); +} +ULyraInventoryItemFragment::ULyraInventoryItemFragment(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemFragment); +ULyraInventoryItemFragment::~ULyraInventoryItemFragment() {} +// End Class ULyraInventoryItemFragment + +// Begin Class ULyraInventoryItemDefinition +void ULyraInventoryItemDefinition::StaticRegisterNativesULyraInventoryItemDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemDefinition); +UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister() +{ + return ULyraInventoryItemDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInventoryItemDefinition\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInventoryItemDefinition" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "Display" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Fragments_Inner_MetaData[] = { + { "Category", "Display" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Fragments_MetaData[] = { + { "Category", "Display" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Fragments_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Fragments; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemDefinition, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments_Inner = { "Fragments", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Fragments_Inner_MetaData), NewProp_Fragments_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments = { "Fragments", nullptr, (EPropertyFlags)0x011400800001001d, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemDefinition, Fragments), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Fragments_MetaData), NewProp_Fragments_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::NewProp_Fragments, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::ClassParams = { + &ULyraInventoryItemDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::PropPointers), + 0, + 0x008100A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemDefinition::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemDefinition); +ULyraInventoryItemDefinition::~ULyraInventoryItemDefinition() {} +// End Class ULyraInventoryItemDefinition + +// Begin Class ULyraInventoryFunctionLibrary Function FindItemDefinitionFragment +struct Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics +{ + struct LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms + { + TSubclassOf ItemDef; + TSubclassOf FragmentClass; + const ULyraInventoryItemFragment* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DeterminesOutputType", "FragmentClass" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FClassPropertyParams NewProp_FragmentClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_FragmentClass = { "FragmentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, FragmentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x001000000008058a, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_FragmentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryFunctionLibrary, nullptr, "FindItemDefinitionFragment", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04042401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::LyraInventoryFunctionLibrary_eventFindItemDefinitionFragment_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryFunctionLibrary::execFindItemDefinitionFragment) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_OBJECT(UClass,Z_Param_FragmentClass); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraInventoryItemFragment**)Z_Param__Result=ULyraInventoryFunctionLibrary::FindItemDefinitionFragment(Z_Param_ItemDef,Z_Param_FragmentClass); + P_NATIVE_END; +} +// End Class ULyraInventoryFunctionLibrary Function FindItemDefinitionFragment + +// Begin Class ULyraInventoryFunctionLibrary +void ULyraInventoryFunctionLibrary::StaticRegisterNativesULyraInventoryFunctionLibrary() +{ + UClass* Class = ULyraInventoryFunctionLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindItemDefinitionFragment", &ULyraInventoryFunctionLibrary::execFindItemDefinitionFragment }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryFunctionLibrary); +UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary_NoRegister() +{ + return ULyraInventoryFunctionLibrary::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//@TODO: Make into a subsystem instead?\n" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemDefinition.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@TODO: Make into a subsystem instead?" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryFunctionLibrary_FindItemDefinitionFragment, "FindItemDefinitionFragment" }, // 4202061973 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::ClassParams = { + &ULyraInventoryFunctionLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryFunctionLibrary() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton, Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryFunctionLibrary::StaticClass(); +} +ULyraInventoryFunctionLibrary::ULyraInventoryFunctionLibrary(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryFunctionLibrary); +ULyraInventoryFunctionLibrary::~ULyraInventoryFunctionLibrary() {} +// End Class ULyraInventoryFunctionLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryItemFragment, ULyraInventoryItemFragment::StaticClass, TEXT("ULyraInventoryItemFragment"), &Z_Registration_Info_UClass_ULyraInventoryItemFragment, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemFragment), 937772045U) }, + { Z_Construct_UClass_ULyraInventoryItemDefinition, ULyraInventoryItemDefinition::StaticClass, TEXT("ULyraInventoryItemDefinition"), &Z_Registration_Info_UClass_ULyraInventoryItemDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemDefinition), 2166324033U) }, + { Z_Construct_UClass_ULyraInventoryFunctionLibrary, ULyraInventoryFunctionLibrary::StaticClass, TEXT("ULyraInventoryFunctionLibrary"), &Z_Registration_Info_UClass_ULyraInventoryFunctionLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryFunctionLibrary), 507560405U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_2972630360(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h new file mode 100644 index 00000000..58da99b9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemDefinition.generated.h @@ -0,0 +1,131 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryItemDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemDefinition; +class ULyraInventoryItemFragment; +#ifdef LYRAGAME_LyraInventoryItemDefinition_generated_h +#error "LyraInventoryItemDefinition.generated.h already included, missing '#pragma once' in LyraInventoryItemDefinition.h" +#endif +#define LYRAGAME_LyraInventoryItemDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemFragment(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemFragment_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemFragment, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemFragment) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInventoryItemFragment(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemFragment(ULyraInventoryItemFragment&&); \ + ULyraInventoryItemFragment(const ULyraInventoryItemFragment&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemFragment); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemFragment); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemFragment) \ + NO_API virtual ~ULyraInventoryItemFragment(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemDefinition(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemDefinition, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemDefinition(ULyraInventoryItemDefinition&&); \ + ULyraInventoryItemDefinition(const ULyraInventoryItemDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemDefinition); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemDefinition) \ + NO_API virtual ~ULyraInventoryItemDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_31_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_34_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindItemDefinitionFragment); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryFunctionLibrary(); \ + friend struct Z_Construct_UClass_ULyraInventoryFunctionLibrary_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryFunctionLibrary, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryFunctionLibrary) + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraInventoryFunctionLibrary(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryFunctionLibrary(ULyraInventoryFunctionLibrary&&); \ + ULyraInventoryFunctionLibrary(const ULyraInventoryFunctionLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryFunctionLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryFunctionLibrary); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryFunctionLibrary) \ + NO_API virtual ~ULyraInventoryFunctionLibrary(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_50_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h_53_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp new file mode 100644 index 00000000..7fcf3c18 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.gen.cpp @@ -0,0 +1,423 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryItemInstance.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryItemInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraInventoryItemInstance Function AddStatTagStack +struct Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics +{ + struct LyraInventoryItemInstance_eventAddStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventAddStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventAddStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "AddStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::LyraInventoryItemInstance_eventAddStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::LyraInventoryItemInstance_eventAddStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execAddStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function AddStatTagStack + +// Begin Class ULyraInventoryItemInstance Function FindFragmentByClass +struct Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics +{ + struct LyraInventoryItemInstance_eventFindFragmentByClass_Parms + { + TSubclassOf FragmentClass; + const ULyraInventoryItemFragment* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DeterminesOutputType", "FragmentClass" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_FragmentClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_FragmentClass = { "FragmentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventFindFragmentByClass_Parms, FragmentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x001000000008058a, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventFindFragmentByClass_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemFragment_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_FragmentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "FindFragmentByClass", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::LyraInventoryItemInstance_eventFindFragmentByClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::LyraInventoryItemInstance_eventFindFragmentByClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execFindFragmentByClass) +{ + P_GET_OBJECT(UClass,Z_Param_FragmentClass); + P_FINISH; + P_NATIVE_BEGIN; + *(const ULyraInventoryItemFragment**)Z_Param__Result=P_THIS->FindFragmentByClass(Z_Param_FragmentClass); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function FindFragmentByClass + +// Begin Class ULyraInventoryItemInstance Function GetStatTagStackCount +struct Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics +{ + struct LyraInventoryItemInstance_eventGetStatTagStackCount_Parms + { + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventGetStatTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventGetStatTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "GetStatTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::LyraInventoryItemInstance_eventGetStatTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::LyraInventoryItemInstance_eventGetStatTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execGetStatTagStackCount) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetStatTagStackCount(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function GetStatTagStackCount + +// Begin Class ULyraInventoryItemInstance Function HasStatTag +struct Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics +{ + struct LyraInventoryItemInstance_eventHasStatTag_Parms + { + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventHasStatTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraInventoryItemInstance_eventHasStatTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInventoryItemInstance_eventHasStatTag_Parms), &Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "HasStatTag", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::LyraInventoryItemInstance_eventHasStatTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::LyraInventoryItemInstance_eventHasStatTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execHasStatTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasStatTag(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function HasStatTag + +// Begin Class ULyraInventoryItemInstance Function RemoveStatTagStack +struct Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics +{ + struct LyraInventoryItemInstance_eventRemoveStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventRemoveStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryItemInstance_eventRemoveStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryItemInstance, nullptr, "RemoveStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::LyraInventoryItemInstance_eventRemoveStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::LyraInventoryItemInstance_eventRemoveStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryItemInstance::execRemoveStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryItemInstance Function RemoveStatTagStack + +// Begin Class ULyraInventoryItemInstance +void ULyraInventoryItemInstance::StaticRegisterNativesULyraInventoryItemInstance() +{ + UClass* Class = ULyraInventoryItemInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddStatTagStack", &ULyraInventoryItemInstance::execAddStatTagStack }, + { "FindFragmentByClass", &ULyraInventoryItemInstance::execFindFragmentByClass }, + { "GetStatTagStackCount", &ULyraInventoryItemInstance::execGetStatTagStackCount }, + { "HasStatTag", &ULyraInventoryItemInstance::execHasStatTag }, + { "RemoveStatTagStack", &ULyraInventoryItemInstance::execRemoveStatTagStack }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryItemInstance); +UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister() +{ + return ULyraInventoryItemInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryItemInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraInventoryItemInstance\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryItemInstance.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraInventoryItemInstance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatTags_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ItemDef_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The item definition\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryItemInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The item definition" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTags; + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryItemInstance_AddStatTagStack, "AddStatTagStack" }, // 196181504 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_FindFragmentByClass, "FindFragmentByClass" }, // 1722664729 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_GetStatTagStackCount, "GetStatTagStackCount" }, // 4193754830 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_HasStatTag, "HasStatTag" }, // 2598682131 + { &Z_Construct_UFunction_ULyraInventoryItemInstance_RemoveStatTagStack, "RemoveStatTagStack" }, // 3359208670 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_StatTags = { "StatTags", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemInstance, StatTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatTags_MetaData), NewProp_StatTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0044000000000020, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryItemInstance, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ItemDef_MetaData), NewProp_ItemDef_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_StatTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryItemInstance_Statics::NewProp_ItemDef, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryItemInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryItemInstance_Statics::ClassParams = { + &ULyraInventoryItemInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryItemInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryItemInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryItemInstance() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton, Z_Construct_UClass_ULyraInventoryItemInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryItemInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryItemInstance::StaticClass(); +} +void ULyraInventoryItemInstance::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_StatTags(TEXT("StatTags")); + static const FName Name_ItemDef(TEXT("ItemDef")); + const bool bIsValid = true + && Name_StatTags == ClassReps[(int32)ENetFields_Private::StatTags].Property->GetFName() + && Name_ItemDef == ClassReps[(int32)ENetFields_Private::ItemDef].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraInventoryItemInstance")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryItemInstance); +ULyraInventoryItemInstance::~ULyraInventoryItemInstance() {} +// End Class ULyraInventoryItemInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryItemInstance, ULyraInventoryItemInstance::StaticClass, TEXT("ULyraInventoryItemInstance"), &Z_Registration_Info_UClass_ULyraInventoryItemInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryItemInstance), 2390782932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_2796688837(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h new file mode 100644 index 00000000..6a3ec6b6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryItemInstance.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryItemInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemFragment; +struct FGameplayTag; +#ifdef LYRAGAME_LyraInventoryItemInstance_generated_h +#error "LyraInventoryItemInstance.generated.h already included, missing '#pragma once' in LyraInventoryItemInstance.h" +#endif +#define LYRAGAME_LyraInventoryItemInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindFragmentByClass); \ + DECLARE_FUNCTION(execHasStatTag); \ + DECLARE_FUNCTION(execGetStatTagStackCount); \ + DECLARE_FUNCTION(execRemoveStatTagStack); \ + DECLARE_FUNCTION(execAddStatTagStack); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryItemInstance(); \ + friend struct Z_Construct_UClass_ULyraInventoryItemInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryItemInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryItemInstance) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + StatTags=NETFIELD_REP_START, \ + ItemDef, \ + NETFIELD_REP_END=ItemDef }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(ULyraInventoryItemInstance) \ +public: + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryItemInstance(ULyraInventoryItemInstance&&); \ + ULyraInventoryItemInstance(const ULyraInventoryItemInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryItemInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryItemInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryItemInstance) \ + NO_API virtual ~ULyraInventoryItemInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryItemInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp new file mode 100644 index 00000000..dbd14fa6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.gen.cpp @@ -0,0 +1,703 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Inventory/LyraInventoryManagerComponent.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraInventoryManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryChangeMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryList(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraInventoryChangeMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage; +class UScriptStruct* FLyraInventoryChangeMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryChangeMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryChangeMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A message when an item is added to the inventory */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A message when an item is added to the inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryOwner_MetaData[] = { + { "Category", "Inventory" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//@TODO: Tag based names+owning actors for inventories instead of directly exposing the component?\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@TODO: Tag based names+owning actors for inventories instead of directly exposing the component?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewCount_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Delta_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryOwner; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_Delta; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_InventoryOwner = { "InventoryOwner", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, InventoryOwner), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryOwner_MetaData), NewProp_InventoryOwner_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, Instance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_NewCount = { "NewCount", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, NewCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewCount_MetaData), NewProp_NewCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Delta = { "Delta", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryChangeMessage, Delta), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Delta_MetaData), NewProp_Delta_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_InventoryOwner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_NewCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewProp_Delta, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraInventoryChangeMessage", + Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::PropPointers), + sizeof(FLyraInventoryChangeMessage), + alignof(FLyraInventoryChangeMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryChangeMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage.InnerSingleton; +} +// End ScriptStruct FLyraInventoryChangeMessage + +// Begin ScriptStruct FLyraInventoryEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraInventoryEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryEntry; +class UScriptStruct* FLyraInventoryEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A single entry in an inventory */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single entry in an inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instance_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StackCount_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastObservedCount_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instance; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_LastObservedCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_Instance = { "Instance", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, Instance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instance_MetaData), NewProp_Instance_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, StackCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StackCount_MetaData), NewProp_StackCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_LastObservedCount = { "LastObservedCount", nullptr, (EPropertyFlags)0x0040000080000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryEntry, LastObservedCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastObservedCount_MetaData), NewProp_LastObservedCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_Instance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewProp_LastObservedCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraInventoryEntry", + Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::PropPointers), + sizeof(FLyraInventoryEntry), + alignof(FLyraInventoryEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryEntry.InnerSingleton; +} +// End ScriptStruct FLyraInventoryEntry + +// Begin ScriptStruct FLyraInventoryList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraInventoryList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraInventoryList; +class UScriptStruct* FLyraInventoryList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraInventoryList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraInventoryList")); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraInventoryList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraInventoryList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraInventoryList); +#endif +struct Z_Construct_UScriptStruct_FLyraInventoryList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of inventory items */" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of inventory items" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of items\n" }, +#endif + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of items" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraInventoryEntry, METADATA_PARAMS(0, nullptr) }; // 2762558394 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 2762558394 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraInventoryList, OwnerComponent), Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraInventoryList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraInventoryList", + Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::PropPointers), + sizeof(FLyraInventoryList), + alignof(FLyraInventoryList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraInventoryList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraInventoryList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraInventoryList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton, Z_Construct_UScriptStruct_FLyraInventoryList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraInventoryList.InnerSingleton; +} +// End ScriptStruct FLyraInventoryList + +// Begin Class ULyraInventoryManagerComponent Function AddItemDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventAddItemDefinition_Parms + { + TSubclassOf ItemDef; + int32 StackCount; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "CPP_Default_StackCount", "1" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemDefinition_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "AddItemDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::LyraInventoryManagerComponent_eventAddItemDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::LyraInventoryManagerComponent_eventAddItemDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execAddItemDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->AddItemDefinition(Z_Param_ItemDef,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function AddItemDefinition + +// Begin Class ULyraInventoryManagerComponent Function AddItemInstance +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics +{ + struct LyraInventoryManagerComponent_eventAddItemInstance_Parms + { + ULyraInventoryItemInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventAddItemInstance_Parms, ItemInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "AddItemInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::LyraInventoryManagerComponent_eventAddItemInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::LyraInventoryManagerComponent_eventAddItemInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execAddItemInstance) +{ + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddItemInstance(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function AddItemInstance + +// Begin Class ULyraInventoryManagerComponent Function CanAddItemDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms + { + TSubclassOf ItemDef; + int32 StackCount; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "CPP_Default_StackCount", "1" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms), &Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_StackCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "CanAddItemDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::LyraInventoryManagerComponent_eventCanAddItemDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execCanAddItemDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanAddItemDefinition(Z_Param_ItemDef,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function CanAddItemDefinition + +// Begin Class ULyraInventoryManagerComponent Function FindFirstItemStackByDefinition +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics +{ + struct LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms + { + TSubclassOf ItemDef; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ItemDef; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ItemDef = { "ItemDef", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms, ItemDef), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ItemDef, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "FindFirstItemStackByDefinition", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::LyraInventoryManagerComponent_eventFindFirstItemStackByDefinition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execFindFirstItemStackByDefinition) +{ + P_GET_OBJECT(UClass,Z_Param_ItemDef); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->FindFirstItemStackByDefinition(Z_Param_ItemDef); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function FindFirstItemStackByDefinition + +// Begin Class ULyraInventoryManagerComponent Function GetAllItems +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics +{ + struct LyraInventoryManagerComponent_eventGetAllItems_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventGetAllItems_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "GetAllItems", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::LyraInventoryManagerComponent_eventGetAllItems_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::LyraInventoryManagerComponent_eventGetAllItems_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execGetAllItems) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetAllItems(); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function GetAllItems + +// Begin Class ULyraInventoryManagerComponent Function RemoveItemInstance +struct Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics +{ + struct LyraInventoryManagerComponent_eventRemoveItemInstance_Parms + { + ULyraInventoryItemInstance* ItemInstance; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ItemInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::NewProp_ItemInstance = { "ItemInstance", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraInventoryManagerComponent_eventRemoveItemInstance_Parms, ItemInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::NewProp_ItemInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraInventoryManagerComponent, nullptr, "RemoveItemInstance", nullptr, nullptr, Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::LyraInventoryManagerComponent_eventRemoveItemInstance_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::LyraInventoryManagerComponent_eventRemoveItemInstance_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraInventoryManagerComponent::execRemoveItemInstance) +{ + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_ItemInstance); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveItemInstance(Z_Param_ItemInstance); + P_NATIVE_END; +} +// End Class ULyraInventoryManagerComponent Function RemoveItemInstance + +// Begin Class ULyraInventoryManagerComponent +void ULyraInventoryManagerComponent::StaticRegisterNativesULyraInventoryManagerComponent() +{ + UClass* Class = ULyraInventoryManagerComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddItemDefinition", &ULyraInventoryManagerComponent::execAddItemDefinition }, + { "AddItemInstance", &ULyraInventoryManagerComponent::execAddItemInstance }, + { "CanAddItemDefinition", &ULyraInventoryManagerComponent::execCanAddItemDefinition }, + { "FindFirstItemStackByDefinition", &ULyraInventoryManagerComponent::execFindFirstItemStackByDefinition }, + { "GetAllItems", &ULyraInventoryManagerComponent::execGetAllItems }, + { "RemoveItemInstance", &ULyraInventoryManagerComponent::execRemoveItemInstance }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraInventoryManagerComponent); +UClass* Z_Construct_UClass_ULyraInventoryManagerComponent_NoRegister() +{ + return ULyraInventoryManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraInventoryManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Manages an inventory\n */" }, +#endif + { "IncludePath", "Inventory/LyraInventoryManagerComponent.h" }, + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Manages an inventory" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryList_MetaData[] = { + { "ModuleRelativePath", "Inventory/LyraInventoryManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InventoryList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemDefinition, "AddItemDefinition" }, // 940893233 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_AddItemInstance, "AddItemInstance" }, // 2139561162 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_CanAddItemDefinition, "CanAddItemDefinition" }, // 732182595 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_FindFirstItemStackByDefinition, "FindFirstItemStackByDefinition" }, // 2009381956 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_GetAllItems, "GetAllItems" }, // 231367481 + { &Z_Construct_UFunction_ULyraInventoryManagerComponent_RemoveItemInstance, "RemoveItemInstance" }, // 92560425 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::NewProp_InventoryList = { "InventoryList", nullptr, (EPropertyFlags)0x0040008000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraInventoryManagerComponent, InventoryList), Z_Construct_UScriptStruct_FLyraInventoryList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryList_MetaData), NewProp_InventoryList_MetaData) }; // 3911428757 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::NewProp_InventoryList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::ClassParams = { + &ULyraInventoryManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraInventoryManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraInventoryManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraInventoryManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraInventoryManagerComponent::StaticClass(); +} +void ULyraInventoryManagerComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_InventoryList(TEXT("InventoryList")); + const bool bIsValid = true + && Name_InventoryList == ClassReps[(int32)ENetFields_Private::InventoryList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraInventoryManagerComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraInventoryManagerComponent); +ULyraInventoryManagerComponent::~ULyraInventoryManagerComponent() {} +// End Class ULyraInventoryManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraInventoryChangeMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics::NewStructOps, TEXT("LyraInventoryChangeMessage"), &Z_Registration_Info_UScriptStruct_LyraInventoryChangeMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryChangeMessage), 385530698U) }, + { FLyraInventoryEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics::NewStructOps, TEXT("LyraInventoryEntry"), &Z_Registration_Info_UScriptStruct_LyraInventoryEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryEntry), 2762558394U) }, + { FLyraInventoryList::StaticStruct, Z_Construct_UScriptStruct_FLyraInventoryList_Statics::NewStructOps, TEXT("LyraInventoryList"), &Z_Registration_Info_UScriptStruct_LyraInventoryList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraInventoryList), 3911428757U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraInventoryManagerComponent, ULyraInventoryManagerComponent::StaticClass, TEXT("ULyraInventoryManagerComponent"), &Z_Registration_Info_UClass_ULyraInventoryManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraInventoryManagerComponent), 1171517227U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_70412829(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h new file mode 100644 index 00000000..a3f1232f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInventoryManagerComponent.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Inventory/LyraInventoryManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemDefinition; +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraInventoryManagerComponent_generated_h +#error "LyraInventoryManagerComponent.generated.h already included, missing '#pragma once' in LyraInventoryManagerComponent.h" +#endif +#define LYRAGAME_LyraInventoryManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryChangeMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_43_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_68_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraInventoryList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraInventoryList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindFirstItemStackByDefinition); \ + DECLARE_FUNCTION(execGetAllItems); \ + DECLARE_FUNCTION(execRemoveItemInstance); \ + DECLARE_FUNCTION(execAddItemInstance); \ + DECLARE_FUNCTION(execAddItemDefinition); \ + DECLARE_FUNCTION(execCanAddItemDefinition); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraInventoryManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraInventoryManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraInventoryManagerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraInventoryManagerComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + InventoryList=NETFIELD_REP_START, \ + NETFIELD_REP_END=InventoryList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraInventoryManagerComponent(ULyraInventoryManagerComponent&&); \ + ULyraInventoryManagerComponent(const ULyraInventoryManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraInventoryManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraInventoryManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraInventoryManagerComponent) \ + NO_API virtual ~ULyraInventoryManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_132_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h_135_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Inventory_LyraInventoryManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp new file mode 100644 index 00000000..3c030096 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.gen.cpp @@ -0,0 +1,183 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraJoystickWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraJoystickWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraJoystickWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraJoystickWidget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +UMG_API UClass* Z_Construct_UClass_UImage_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraJoystickWidget +void ULyraJoystickWidget::StaticRegisterNativesULyraJoystickWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraJoystickWidget); +UClass* Z_Construct_UClass_ULyraJoystickWidget_NoRegister() +{ + return ULyraJoystickWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraJoystickWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A UMG wrapper for the lyra virtual joystick.\n *\n * This will calculate a 2D vector clamped between -1 and 1\n * to input as a key value to the player, simulating a gamepad analog stick.\n *\n * This is intended for use with and Enhanced Input player.\n */" }, +#endif + { "DisplayName", "Lyra Joystick" }, + { "IncludePath", "UI/LyraJoystickWidget.h" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A UMG wrapper for the lyra virtual joystick.\n\nThis will calculate a 2D vector clamped between -1 and 1\nto input as a key value to the player, simulating a gamepad analog stick.\n\nThis is intended for use with and Enhanced Input player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StickRange_MetaData[] = { + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How far can the inner image of the joystick be moved? */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How far can the inner image of the joystick be moved?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_JoystickBackground_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Image to be used as the background of the joystick */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Image to be used as the background of the joystick" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_JoystickForeground_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Image to be used as the foreground of the joystick */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Image to be used as the foreground of the joystick" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bNegateYAxis_MetaData[] = { + { "Category", "LyraJoystickWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Should we negate the Y-axis value of the joystick? This is common for \"movement\" sticks */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we negate the Y-axis value of the joystick? This is common for \"movement\" sticks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TouchOrigin_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The origin of the touch. Set on NativeOnTouchStarted */" }, +#endif + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The origin of the touch. Set on NativeOnTouchStarted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StickVector_MetaData[] = { + { "ModuleRelativePath", "UI/LyraJoystickWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_StickRange; + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoystickBackground; + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoystickForeground; + static void NewProp_bNegateYAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bNegateYAxis; + static const UECodeGen_Private::FStructPropertyParams NewProp_TouchOrigin; + static const UECodeGen_Private::FStructPropertyParams NewProp_StickVector; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickRange = { "StickRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, StickRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StickRange_MetaData), NewProp_StickRange_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickBackground = { "JoystickBackground", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, JoystickBackground), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_JoystickBackground_MetaData), NewProp_JoystickBackground_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickForeground = { "JoystickForeground", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, JoystickForeground), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_JoystickForeground_MetaData), NewProp_JoystickForeground_MetaData) }; +void Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis_SetBit(void* Obj) +{ + ((ULyraJoystickWidget*)Obj)->bNegateYAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis = { "bNegateYAxis", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraJoystickWidget), &Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bNegateYAxis_MetaData), NewProp_bNegateYAxis_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_TouchOrigin = { "TouchOrigin", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, TouchOrigin), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TouchOrigin_MetaData), NewProp_TouchOrigin_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickVector = { "StickVector", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraJoystickWidget, StickVector), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StickVector_MetaData), NewProp_StickVector_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_JoystickForeground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_bNegateYAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_TouchOrigin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraJoystickWidget_Statics::NewProp_StickVector, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraJoystickWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraSimulatedInputWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraJoystickWidget_Statics::ClassParams = { + &ULyraJoystickWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::PropPointers), + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraJoystickWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraJoystickWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraJoystickWidget() +{ + if (!Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton, Z_Construct_UClass_ULyraJoystickWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraJoystickWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraJoystickWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraJoystickWidget); +ULyraJoystickWidget::~ULyraJoystickWidget() {} +// End Class ULyraJoystickWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraJoystickWidget, ULyraJoystickWidget::StaticClass, TEXT("ULyraJoystickWidget"), &Z_Registration_Info_UClass_ULyraJoystickWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraJoystickWidget), 616353682U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_2979251625(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h new file mode 100644 index 00000000..655d0c97 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraJoystickWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraJoystickWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraJoystickWidget_generated_h +#error "LyraJoystickWidget.generated.h already included, missing '#pragma once' in LyraJoystickWidget.h" +#endif +#define LYRAGAME_LyraJoystickWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraJoystickWidget(); \ + friend struct Z_Construct_UClass_ULyraJoystickWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraJoystickWidget, ULyraSimulatedInputWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraJoystickWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraJoystickWidget(ULyraJoystickWidget&&); \ + ULyraJoystickWidget(const ULyraJoystickWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraJoystickWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraJoystickWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraJoystickWidget) \ + NO_API virtual ~ULyraJoystickWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraJoystickWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.gen.cpp new file mode 100644 index 00000000..f45e4c7c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.gen.cpp @@ -0,0 +1,113 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraListView.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraListView() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonListView(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraListView(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraListView_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraListView +void ULyraListView::StaticRegisterNativesULyraListView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraListView); +UClass* Z_Construct_UClass_ULyraListView_NoRegister() +{ + return ULyraListView::StaticClass(); +} +struct Z_Construct_UClass_ULyraListView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraListView.h" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FactoryRules_Inner_MetaData[] = { + { "Category", "Entry Creation" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FactoryRules_MetaData[] = { + { "Category", "Entry Creation" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraListView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_FactoryRules_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_FactoryRules; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules_Inner = { "FactoryRules", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraWidgetFactory_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FactoryRules_Inner_MetaData), NewProp_FactoryRules_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules = { "FactoryRules", nullptr, (EPropertyFlags)0x0124088000000009, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraListView, FactoryRules), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FactoryRules_MetaData), NewProp_FactoryRules_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraListView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraListView_Statics::NewProp_FactoryRules, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraListView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonListView, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraListView_Statics::ClassParams = { + &ULyraListView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraListView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraListView_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraListView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraListView() +{ + if (!Z_Registration_Info_UClass_ULyraListView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraListView.OuterSingleton, Z_Construct_UClass_ULyraListView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraListView.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraListView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraListView); +ULyraListView::~ULyraListView() {} +// End Class ULyraListView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraListView, ULyraListView::StaticClass, TEXT("ULyraListView"), &Z_Registration_Info_UClass_ULyraListView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraListView), 2760010003U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_3255114841(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.generated.h new file mode 100644 index 00000000..7639d518 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraListView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraListView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraListView_generated_h +#error "LyraListView.generated.h already included, missing '#pragma once' in LyraListView.h" +#endif +#define LYRAGAME_LyraListView_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraListView(); \ + friend struct Z_Construct_UClass_ULyraListView_Statics; \ +public: \ + DECLARE_CLASS(ULyraListView, UCommonListView, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraListView) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraListView(ULyraListView&&); \ + ULyraListView(const ULyraListView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraListView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraListView); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraListView) \ + NO_API virtual ~ULyraListView(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraListView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp new file mode 100644 index 00000000..8d56b1ec --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.gen.cpp @@ -0,0 +1,267 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Foundation/LyraLoadingScreenSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLoadingScreenSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLoadingScreenWidgetChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms + { + TSubclassOf NewWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_NewWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::NewProp_NewWidgetClass = { "NewWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms, NewWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::NewProp_NewWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LoadingScreenWidgetChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLoadingScreenWidgetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& LoadingScreenWidgetChangedDelegate, TSubclassOf NewWidgetClass) +{ + struct _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms + { + TSubclassOf NewWidgetClass; + }; + _Script_LyraGame_eventLoadingScreenWidgetChangedDelegate_Parms Parms; + Parms.NewWidgetClass=NewWidgetClass; + LoadingScreenWidgetChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLoadingScreenWidgetChangedDelegate + +// Begin Class ULyraLoadingScreenSubsystem Function GetLoadingScreenContentWidget +struct Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics +{ + struct LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms + { + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the last set loading screen widget class to display inside of the loading screen widget host\n" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the last set loading screen widget class to display inside of the loading screen widget host" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLoadingScreenSubsystem, nullptr, "GetLoadingScreenContentWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventGetLoadingScreenContentWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLoadingScreenSubsystem::execGetLoadingScreenContentWidget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->GetLoadingScreenContentWidget(); + P_NATIVE_END; +} +// End Class ULyraLoadingScreenSubsystem Function GetLoadingScreenContentWidget + +// Begin Class ULyraLoadingScreenSubsystem Function SetLoadingScreenContentWidget +struct Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics +{ + struct LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms + { + TSubclassOf NewWidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the loading screen widget class to display inside of the loading screen widget host\n" }, +#endif + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the loading screen widget class to display inside of the loading screen widget host" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_NewWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::NewProp_NewWidgetClass = { "NewWidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms, NewWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::NewProp_NewWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLoadingScreenSubsystem, nullptr, "SetLoadingScreenContentWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::LyraLoadingScreenSubsystem_eventSetLoadingScreenContentWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLoadingScreenSubsystem::execSetLoadingScreenContentWidget) +{ + P_GET_OBJECT(UClass,Z_Param_NewWidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetLoadingScreenContentWidget(Z_Param_NewWidgetClass); + P_NATIVE_END; +} +// End Class ULyraLoadingScreenSubsystem Function SetLoadingScreenContentWidget + +// Begin Class ULyraLoadingScreenSubsystem +void ULyraLoadingScreenSubsystem::StaticRegisterNativesULyraLoadingScreenSubsystem() +{ + UClass* Class = ULyraLoadingScreenSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLoadingScreenContentWidget", &ULyraLoadingScreenSubsystem::execGetLoadingScreenContentWidget }, + { "SetLoadingScreenContentWidget", &ULyraLoadingScreenSubsystem::execSetLoadingScreenContentWidget }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLoadingScreenSubsystem); +UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem_NoRegister() +{ + return ULyraLoadingScreenSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Tracks/stores the current loading screen configuration in a place\n * that persists across map transitions\n */" }, +#endif + { "IncludePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks/stores the current loading screen configuration in a place\nthat persists across map transitions" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnLoadingScreenWidgetChanged_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidgetClass_MetaData[] = { + { "ModuleRelativePath", "UI/Foundation/LyraLoadingScreenSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnLoadingScreenWidgetChanged; + static const UECodeGen_Private::FClassPropertyParams NewProp_LoadingScreenWidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraLoadingScreenSubsystem_GetLoadingScreenContentWidget, "GetLoadingScreenContentWidget" }, // 250376568 + { &Z_Construct_UFunction_ULyraLoadingScreenSubsystem_SetLoadingScreenContentWidget, "SetLoadingScreenContentWidget" }, // 607494212 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_OnLoadingScreenWidgetChanged = { "OnLoadingScreenWidgetChanged", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLoadingScreenSubsystem, OnLoadingScreenWidgetChanged), Z_Construct_UDelegateFunction_LyraGame_LoadingScreenWidgetChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnLoadingScreenWidgetChanged_MetaData), NewProp_OnLoadingScreenWidgetChanged_MetaData) }; // 1120714707 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_LoadingScreenWidgetClass = { "LoadingScreenWidgetClass", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLoadingScreenSubsystem, LoadingScreenWidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidgetClass_MetaData), NewProp_LoadingScreenWidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_OnLoadingScreenWidgetChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::NewProp_LoadingScreenWidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::ClassParams = { + &ULyraLoadingScreenSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLoadingScreenSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton, Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLoadingScreenSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLoadingScreenSubsystem); +ULyraLoadingScreenSubsystem::~ULyraLoadingScreenSubsystem() {} +// End Class ULyraLoadingScreenSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLoadingScreenSubsystem, ULyraLoadingScreenSubsystem::StaticClass, TEXT("ULyraLoadingScreenSubsystem"), &Z_Registration_Info_UClass_ULyraLoadingScreenSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLoadingScreenSubsystem), 4138788381U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_3089691389(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h new file mode 100644 index 00000000..91a59a0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLoadingScreenSubsystem.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Foundation/LyraLoadingScreenSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UUserWidget; +#ifdef LYRAGAME_LyraLoadingScreenSubsystem_generated_h +#error "LyraLoadingScreenSubsystem.generated.h already included, missing '#pragma once' in LyraLoadingScreenSubsystem.h" +#endif +#define LYRAGAME_LyraLoadingScreenSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_15_DELEGATE \ +LYRAGAME_API void FLoadingScreenWidgetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& LoadingScreenWidgetChangedDelegate, TSubclassOf NewWidgetClass); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetLoadingScreenContentWidget); \ + DECLARE_FUNCTION(execSetLoadingScreenContentWidget); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLoadingScreenSubsystem(); \ + friend struct Z_Construct_UClass_ULyraLoadingScreenSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraLoadingScreenSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraLoadingScreenSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLoadingScreenSubsystem(ULyraLoadingScreenSubsystem&&); \ + ULyraLoadingScreenSubsystem(const ULyraLoadingScreenSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraLoadingScreenSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLoadingScreenSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraLoadingScreenSubsystem) \ + NO_API virtual ~ULyraLoadingScreenSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Foundation_LyraLoadingScreenSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp new file mode 100644 index 00000000..8d4ee3e4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.gen.cpp @@ -0,0 +1,109 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Frontend/LyraLobbyBackground.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLobbyBackground() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLobbyBackground(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLobbyBackground_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraLobbyBackground +void ULyraLobbyBackground::StaticRegisterNativesULyraLobbyBackground() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLobbyBackground); +UClass* Z_Construct_UClass_ULyraLobbyBackground_NoRegister() +{ + return ULyraLobbyBackground::StaticClass(); +} +struct Z_Construct_UClass_ULyraLobbyBackground_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer settings / editor cheats\n */" }, +#endif + { "IncludePath", "UI/Frontend/LyraLobbyBackground.h" }, + { "ModuleRelativePath", "UI/Frontend/LyraLobbyBackground.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer settings / editor cheats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackgroundLevel_MetaData[] = { + { "Category", "LyraLobbyBackground" }, + { "ModuleRelativePath", "UI/Frontend/LyraLobbyBackground.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_BackgroundLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_ULyraLobbyBackground_Statics::NewProp_BackgroundLevel = { "BackgroundLevel", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLobbyBackground, BackgroundLevel), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackgroundLevel_MetaData), NewProp_BackgroundLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLobbyBackground_Statics::NewProp_BackgroundLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLobbyBackground_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLobbyBackground_Statics::ClassParams = { + &ULyraLobbyBackground::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::PropPointers), + 0, + 0x000800A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLobbyBackground_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLobbyBackground_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLobbyBackground() +{ + if (!Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton, Z_Construct_UClass_ULyraLobbyBackground_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLobbyBackground.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLobbyBackground::StaticClass(); +} +ULyraLobbyBackground::ULyraLobbyBackground(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLobbyBackground); +ULyraLobbyBackground::~ULyraLobbyBackground() {} +// End Class ULyraLobbyBackground + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLobbyBackground, ULyraLobbyBackground::StaticClass, TEXT("ULyraLobbyBackground"), &Z_Registration_Info_UClass_ULyraLobbyBackground, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLobbyBackground), 3695837610U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_3086208806(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h new file mode 100644 index 00000000..586c43f4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLobbyBackground.generated.h @@ -0,0 +1,58 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Frontend/LyraLobbyBackground.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraLobbyBackground_generated_h +#error "LyraLobbyBackground.generated.h already included, missing '#pragma once' in LyraLobbyBackground.h" +#endif +#define LYRAGAME_LyraLobbyBackground_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLobbyBackground(); \ + friend struct Z_Construct_UClass_ULyraLobbyBackground_Statics; \ +public: \ + DECLARE_CLASS(ULyraLobbyBackground, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraLobbyBackground) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + LYRAGAME_API ULyraLobbyBackground(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLobbyBackground(ULyraLobbyBackground&&); \ + ULyraLobbyBackground(const ULyraLobbyBackground&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraLobbyBackground); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLobbyBackground); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraLobbyBackground) \ + LYRAGAME_API virtual ~ULyraLobbyBackground(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Frontend_LyraLobbyBackground_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp new file mode 100644 index 00000000..82af9898 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.gen.cpp @@ -0,0 +1,345 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraLocalPlayer.h" +#include "Runtime/AudioMixer/Public/AudioMixerBlueprintLibrary.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraLocalPlayer() {} + +// Begin Cross Module References +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FSwapAudioOutputResult(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputMappingContext_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLocalPlayer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraLocalPlayer_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraLocalPlayer Function GetLocalSettings +struct Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics +{ + struct LyraLocalPlayer_eventGetLocalSettings_Parms + { + ULyraSettingsLocal* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the local settings for this player, this is read from config files at process startup and is always valid */" }, +#endif + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the local settings for this player, this is read from config files at process startup and is always valid" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventGetLocalSettings_Parms, ReturnValue), Z_Construct_UClass_ULyraSettingsLocal_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "GetLocalSettings", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::LyraLocalPlayer_eventGetLocalSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::LyraLocalPlayer_eventGetLocalSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execGetLocalSettings) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraSettingsLocal**)Z_Param__Result=P_THIS->GetLocalSettings(); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function GetLocalSettings + +// Begin Class ULyraLocalPlayer Function GetSharedSettings +struct Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics +{ + struct LyraLocalPlayer_eventGetSharedSettings_Parms + { + ULyraSettingsShared* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the shared setting for this player, this is read using the save game system so may not be correct until after user login */" }, +#endif + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the shared setting for this player, this is read using the save game system so may not be correct until after user login" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventGetSharedSettings_Parms, ReturnValue), Z_Construct_UClass_ULyraSettingsShared_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "GetSharedSettings", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::LyraLocalPlayer_eventGetSharedSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::LyraLocalPlayer_eventGetSharedSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execGetSharedSettings) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraSettingsShared**)Z_Param__Result=P_THIS->GetSharedSettings(); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function GetSharedSettings + +// Begin Class ULyraLocalPlayer Function OnCompletedAudioDeviceSwap +struct Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics +{ + struct LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms + { + FSwapAudioOutputResult SwapResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SwapResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SwapResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::NewProp_SwapResult = { "SwapResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms, SwapResult), Z_Construct_UScriptStruct_FSwapAudioOutputResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SwapResult_MetaData), NewProp_SwapResult_MetaData) }; // 556524030 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::NewProp_SwapResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "OnCompletedAudioDeviceSwap", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::LyraLocalPlayer_eventOnCompletedAudioDeviceSwap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execOnCompletedAudioDeviceSwap) +{ + P_GET_STRUCT_REF(FSwapAudioOutputResult,Z_Param_Out_SwapResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCompletedAudioDeviceSwap(Z_Param_Out_SwapResult); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function OnCompletedAudioDeviceSwap + +// Begin Class ULyraLocalPlayer Function OnControllerChangedTeam +struct Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics +{ + struct LyraLocalPlayer_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraLocalPlayer_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraLocalPlayer, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::LyraLocalPlayer_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::LyraLocalPlayer_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraLocalPlayer::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ULyraLocalPlayer Function OnControllerChangedTeam + +// Begin Class ULyraLocalPlayer +void ULyraLocalPlayer::StaticRegisterNativesULyraLocalPlayer() +{ + UClass* Class = ULyraLocalPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLocalSettings", &ULyraLocalPlayer::execGetLocalSettings }, + { "GetSharedSettings", &ULyraLocalPlayer::execGetSharedSettings }, + { "OnCompletedAudioDeviceSwap", &ULyraLocalPlayer::execOnCompletedAudioDeviceSwap }, + { "OnControllerChangedTeam", &ULyraLocalPlayer::execOnControllerChangedTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraLocalPlayer); +UClass* Z_Construct_UClass_ULyraLocalPlayer_NoRegister() +{ + return ULyraLocalPlayer::StaticClass(); +} +struct Z_Construct_UClass_ULyraLocalPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraLocalPlayer\n */" }, +#endif + { "IncludePath", "Player/LyraLocalPlayer.h" }, + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraLocalPlayer" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SharedSettings_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputMappingContext_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastBoundPC_MetaData[] = { + { "ModuleRelativePath", "Player/LyraLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SharedSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputMappingContext; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_LastBoundPC; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraLocalPlayer_GetLocalSettings, "GetLocalSettings" }, // 4080809430 + { &Z_Construct_UFunction_ULyraLocalPlayer_GetSharedSettings, "GetSharedSettings" }, // 1141656685 + { &Z_Construct_UFunction_ULyraLocalPlayer_OnCompletedAudioDeviceSwap, "OnCompletedAudioDeviceSwap" }, // 3600377280 + { &Z_Construct_UFunction_ULyraLocalPlayer_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 204567769 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_SharedSettings = { "SharedSettings", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, SharedSettings), Z_Construct_UClass_ULyraSettingsShared_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SharedSettings_MetaData), NewProp_SharedSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_InputMappingContext = { "InputMappingContext", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, InputMappingContext), Z_Construct_UClass_UInputMappingContext_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputMappingContext_MetaData), NewProp_InputMappingContext_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_LastBoundPC = { "LastBoundPC", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraLocalPlayer, LastBoundPC), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastBoundPC_MetaData), NewProp_LastBoundPC_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_SharedSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_InputMappingContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraLocalPlayer_Statics::NewProp_LastBoundPC, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraLocalPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonLocalPlayer, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraLocalPlayer_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraLocalPlayer, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraLocalPlayer_Statics::ClassParams = { + &ULyraLocalPlayer::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraLocalPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraLocalPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraLocalPlayer() +{ + if (!Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton, Z_Construct_UClass_ULyraLocalPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraLocalPlayer.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraLocalPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraLocalPlayer); +ULyraLocalPlayer::~ULyraLocalPlayer() {} +// End Class ULyraLocalPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraLocalPlayer, ULyraLocalPlayer::StaticClass, TEXT("ULyraLocalPlayer"), &Z_Registration_Info_UClass_ULyraLocalPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraLocalPlayer), 2833856415U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_2774431117(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h new file mode 100644 index 00000000..907af9b8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraLocalPlayer.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraLocalPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraSettingsLocal; +class ULyraSettingsShared; +class UObject; +struct FSwapAudioOutputResult; +#ifdef LYRAGAME_LyraLocalPlayer_generated_h +#error "LyraLocalPlayer.generated.h already included, missing '#pragma once' in LyraLocalPlayer.h" +#endif +#define LYRAGAME_LyraLocalPlayer_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnControllerChangedTeam); \ + DECLARE_FUNCTION(execOnCompletedAudioDeviceSwap); \ + DECLARE_FUNCTION(execGetSharedSettings); \ + DECLARE_FUNCTION(execGetLocalSettings); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraLocalPlayer(); \ + friend struct Z_Construct_UClass_ULyraLocalPlayer_Statics; \ +public: \ + DECLARE_CLASS(ULyraLocalPlayer, UCommonLocalPlayer, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraLocalPlayer) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraLocalPlayer(ULyraLocalPlayer&&); \ + ULyraLocalPlayer(const ULyraLocalPlayer&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraLocalPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraLocalPlayer); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraLocalPlayer) \ + NO_API virtual ~ULyraLocalPlayer(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraLocalPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp new file mode 100644 index 00000000..298fb2d5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraNotificationMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNotificationMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraNotificationMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraNotificationMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraNotificationMessage; +class UScriptStruct* FLyraNotificationMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraNotificationMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraNotificationMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraNotificationMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraNotificationMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A message destined for a transient log (e.g., an elimination feed or inventory pickup stream)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A message destined for a transient log (e.g., an elimination feed or inventory pickup stream)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetChannel_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The destination channel\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The destination channel" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetPlayer_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The target player (if none is set then it will display for all local players)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The target player (if none is set then it will display for all local players)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadMessage_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The message to display\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadTag_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Extra payload specific to the target channel (e.g., a style or definition asset)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra payload specific to the target channel (e.g., a style or definition asset)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PayloadObject_MetaData[] = { + { "Category", "Notification" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Extra payload specific to the target channel (e.g., a style or definition asset)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraNotificationMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra payload specific to the target channel (e.g., a style or definition asset)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetChannel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetPlayer; + static const UECodeGen_Private::FTextPropertyParams NewProp_PayloadMessage; + static const UECodeGen_Private::FStructPropertyParams NewProp_PayloadTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PayloadObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetChannel = { "TargetChannel", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, TargetChannel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetChannel_MetaData), NewProp_TargetChannel_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetPlayer = { "TargetPlayer", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, TargetPlayer), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetPlayer_MetaData), NewProp_TargetPlayer_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadMessage = { "PayloadMessage", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadMessage), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadMessage_MetaData), NewProp_PayloadMessage_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadTag = { "PayloadTag", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadTag_MetaData), NewProp_PayloadTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadObject = { "PayloadObject", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNotificationMessage, PayloadObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PayloadObject_MetaData), NewProp_PayloadObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetChannel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_TargetPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewProp_PayloadObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraNotificationMessage", + Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::PropPointers), + sizeof(FLyraNotificationMessage), + alignof(FLyraNotificationMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraNotificationMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraNotificationMessage.InnerSingleton; +} +// End ScriptStruct FLyraNotificationMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraNotificationMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics::NewStructOps, TEXT("LyraNotificationMessage"), &Z_Registration_Info_UScriptStruct_LyraNotificationMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraNotificationMessage), 3955234826U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_2969197401(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h new file mode 100644 index 00000000..6391d592 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNotificationMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraNotificationMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNotificationMessage_generated_h +#error "LyraNotificationMessage.generated.h already included, missing '#pragma once' in LyraNotificationMessage.h" +#endif +#define LYRAGAME_LyraNotificationMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraNotificationMessage_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraNotificationMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp new file mode 100644 index 00000000..6cf77e55 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.gen.cpp @@ -0,0 +1,285 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraNumberPopRequest(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraNumberPopRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraNumberPopRequest; +class UScriptStruct* FLyraNumberPopRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraNumberPopRequest, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraNumberPopRequest")); + } + return Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraNumberPopRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldLocation_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The world location to create the number pop at\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The world location to create the number pop at" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SourceTags_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags related to the source/cause of the number pop (for determining a style)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags related to the source/cause of the number pop (for determining a style)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetTags_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags related to the target of the number pop (for determining a style)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags related to the target of the number pop (for determining a style)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberToDisplay_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The number to display\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsCriticalDamage_MetaData[] = { + { "Category", "Lyra|Number Pops" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Whether the number is 'critical' or not (@TODO: move to a tag)\n" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether the number is 'critical' or not (@TODO: move to a tag)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_WorldLocation; + static const UECodeGen_Private::FStructPropertyParams NewProp_SourceTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumberToDisplay; + static void NewProp_bIsCriticalDamage_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsCriticalDamage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_WorldLocation = { "WorldLocation", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, WorldLocation), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldLocation_MetaData), NewProp_WorldLocation_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_SourceTags = { "SourceTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, SourceTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SourceTags_MetaData), NewProp_SourceTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_TargetTags = { "TargetTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, TargetTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetTags_MetaData), NewProp_TargetTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_NumberToDisplay = { "NumberToDisplay", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraNumberPopRequest, NumberToDisplay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberToDisplay_MetaData), NewProp_NumberToDisplay_MetaData) }; +void Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage_SetBit(void* Obj) +{ + ((FLyraNumberPopRequest*)Obj)->bIsCriticalDamage = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage = { "bIsCriticalDamage", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraNumberPopRequest), &Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsCriticalDamage_MetaData), NewProp_bIsCriticalDamage_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_WorldLocation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_SourceTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_TargetTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_NumberToDisplay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewProp_bIsCriticalDamage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraNumberPopRequest", + Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::PropPointers), + sizeof(FLyraNumberPopRequest), + alignof(FLyraNumberPopRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraNumberPopRequest() +{ + if (!Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton, Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraNumberPopRequest.InnerSingleton; +} +// End ScriptStruct FLyraNumberPopRequest + +// Begin Class ULyraNumberPopComponent Function AddNumberPop +struct Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics +{ + struct LyraNumberPopComponent_eventAddNumberPop_Parms + { + FLyraNumberPopRequest NewRequest; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Foo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Adds a damage number to the damage number list for visualization */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a damage number to the damage number list for visualization" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewRequest_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewRequest; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::NewProp_NewRequest = { "NewRequest", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraNumberPopComponent_eventAddNumberPop_Parms, NewRequest), Z_Construct_UScriptStruct_FLyraNumberPopRequest, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewRequest_MetaData), NewProp_NewRequest_MetaData) }; // 863183318 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::NewProp_NewRequest, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraNumberPopComponent, nullptr, "AddNumberPop", nullptr, nullptr, Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::LyraNumberPopComponent_eventAddNumberPop_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::LyraNumberPopComponent_eventAddNumberPop_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraNumberPopComponent::execAddNumberPop) +{ + P_GET_STRUCT_REF(FLyraNumberPopRequest,Z_Param_Out_NewRequest); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddNumberPop(Z_Param_Out_NewRequest); + P_NATIVE_END; +} +// End Class ULyraNumberPopComponent Function AddNumberPop + +// Begin Class ULyraNumberPopComponent +void ULyraNumberPopComponent::StaticRegisterNativesULyraNumberPopComponent() +{ + UClass* Class = ULyraNumberPopComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddNumberPop", &ULyraNumberPopComponent::execAddNumberPop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NoRegister() +{ + return ULyraNumberPopComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraNumberPopComponent_AddNumberPop, "AddNumberPop" }, // 1554478480 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_Statics::ClassParams = { + &ULyraNumberPopComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent); +ULyraNumberPopComponent::~ULyraNumberPopComponent() {} +// End Class ULyraNumberPopComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraNumberPopRequest::StaticStruct, Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics::NewStructOps, TEXT("LyraNumberPopRequest"), &Z_Registration_Info_UScriptStruct_LyraNumberPopRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraNumberPopRequest), 863183318U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent, ULyraNumberPopComponent::StaticClass, TEXT("ULyraNumberPopComponent"), &Z_Registration_Info_UClass_ULyraNumberPopComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent), 2015523977U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_519760600(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h new file mode 100644 index 00000000..59a8094f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraNumberPopRequest; +#ifdef LYRAGAME_LyraNumberPopComponent_generated_h +#error "LyraNumberPopComponent.generated.h already included, missing '#pragma once' in LyraNumberPopComponent.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_16_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraNumberPopRequest_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAddNumberPop); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent, UControllerComponent, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent(ULyraNumberPopComponent&&); \ + ULyraNumberPopComponent(const ULyraNumberPopComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent) \ + NO_API virtual ~ULyraNumberPopComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_45_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp new file mode 100644 index 00000000..f8a8ae28 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.gen.cpp @@ -0,0 +1,395 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent_MeshText() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyle_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLiveNumberPopEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FPooledNumberPopComponentList(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FPooledNumberPopComponentList +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList; +class UScriptStruct* FPooledNumberPopComponentList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPooledNumberPopComponentList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("PooledNumberPopComponentList")); + } + return Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FPooledNumberPopComponentList::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Components_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Components_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Components; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components_Inner = { "Components", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components = { "Components", nullptr, (EPropertyFlags)0x0114008000002008, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPooledNumberPopComponentList, Components), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Components_MetaData), NewProp_Components_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewProp_Components, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "PooledNumberPopComponentList", + Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::PropPointers), + sizeof(FPooledNumberPopComponentList), + alignof(FPooledNumberPopComponentList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPooledNumberPopComponentList() +{ + if (!Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton, Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList.InnerSingleton; +} +// End ScriptStruct FPooledNumberPopComponentList + +// Begin ScriptStruct FLiveNumberPopEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LiveNumberPopEntry; +class UScriptStruct* FLiveNumberPopEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLiveNumberPopEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LiveNumberPopEntry")); + } + return Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLiveNumberPopEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Component_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The component that is currently live */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The component that is currently live" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Component; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewProp_Component = { "Component", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLiveNumberPopEntry, Component), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Component_MetaData), NewProp_Component_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewProp_Component, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LiveNumberPopEntry", + Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::PropPointers), + sizeof(FLiveNumberPopEntry), + alignof(FLiveNumberPopEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLiveNumberPopEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton, Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LiveNumberPopEntry.InnerSingleton; +} +// End ScriptStruct FLiveNumberPopEntry + +// Begin Class ULyraNumberPopComponent_MeshText +void ULyraNumberPopComponent_MeshText::StaticRegisterNativesULyraNumberPopComponent_MeshText() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent_MeshText); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText_NoRegister() +{ + return ULyraNumberPopComponent_MeshText::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Styles_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Style patterns to attempt to apply to the incoming number pops */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Style patterns to attempt to apply to the incoming number pops" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentLifespan_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DistanceFromCameraBeforeDoublingSize_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CriticalHitSizeMultiplier_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FontXSize_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FontYSize_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpacingPercentageForOnes_MetaData[] = { + { "Category", "Number Pop|Font" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberOfNumberRotations_MetaData[] = { + { "Category", "Number Pop|Style" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SignDigitParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AnimationLifespanParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IsCriticalHitParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MoveToCameraParameterName_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Damage numbers by default are given a depth close to the camera in the material to make sure they are never occluded. This can be toggled off here, should only be 0/1. */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Damage numbers by default are given a depth close to the camera in the material to make sure they are never occluded. This can be toggled off here, should only be 0/1." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PositionParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScaleRotationAngleParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DurationParameterNames_MetaData[] = { + { "Category", "Number Pop|Material Bindings" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PooledComponentMap_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LiveComponents_MetaData[] = { + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Styles_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Styles; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ComponentLifespan; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DistanceFromCameraBeforeDoublingSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CriticalHitSizeMultiplier; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FontXSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FontYSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpacingPercentageForOnes; + static const UECodeGen_Private::FFloatPropertyParams NewProp_NumberOfNumberRotations; + static const UECodeGen_Private::FNamePropertyParams NewProp_SignDigitParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_ColorParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_AnimationLifespanParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_IsCriticalHitParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_MoveToCameraParameterName; + static const UECodeGen_Private::FNamePropertyParams NewProp_PositionParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PositionParameterNames; + static const UECodeGen_Private::FNamePropertyParams NewProp_ScaleRotationAngleParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ScaleRotationAngleParameterNames; + static const UECodeGen_Private::FNamePropertyParams NewProp_DurationParameterNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DurationParameterNames; + static const UECodeGen_Private::FStructPropertyParams NewProp_PooledComponentMap_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PooledComponentMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PooledComponentMap; + static const UECodeGen_Private::FStructPropertyParams NewProp_LiveComponents_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_LiveComponents; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles_Inner = { "Styles", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraDamagePopStyle_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles = { "Styles", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, Styles), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Styles_MetaData), NewProp_Styles_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ComponentLifespan = { "ComponentLifespan", nullptr, (EPropertyFlags)0x0020080000010005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ComponentLifespan), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentLifespan_MetaData), NewProp_ComponentLifespan_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DistanceFromCameraBeforeDoublingSize = { "DistanceFromCameraBeforeDoublingSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, DistanceFromCameraBeforeDoublingSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DistanceFromCameraBeforeDoublingSize_MetaData), NewProp_DistanceFromCameraBeforeDoublingSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_CriticalHitSizeMultiplier = { "CriticalHitSizeMultiplier", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, CriticalHitSizeMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CriticalHitSizeMultiplier_MetaData), NewProp_CriticalHitSizeMultiplier_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontXSize = { "FontXSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, FontXSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FontXSize_MetaData), NewProp_FontXSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontYSize = { "FontYSize", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, FontYSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FontYSize_MetaData), NewProp_FontYSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SpacingPercentageForOnes = { "SpacingPercentageForOnes", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, SpacingPercentageForOnes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpacingPercentageForOnes_MetaData), NewProp_SpacingPercentageForOnes_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_NumberOfNumberRotations = { "NumberOfNumberRotations", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, NumberOfNumberRotations), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberOfNumberRotations_MetaData), NewProp_NumberOfNumberRotations_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SignDigitParameterName = { "SignDigitParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, SignDigitParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SignDigitParameterName_MetaData), NewProp_SignDigitParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ColorParameterName = { "ColorParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ColorParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorParameterName_MetaData), NewProp_ColorParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_AnimationLifespanParameterName = { "AnimationLifespanParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, AnimationLifespanParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AnimationLifespanParameterName_MetaData), NewProp_AnimationLifespanParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_IsCriticalHitParameterName = { "IsCriticalHitParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, IsCriticalHitParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IsCriticalHitParameterName_MetaData), NewProp_IsCriticalHitParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_MoveToCameraParameterName = { "MoveToCameraParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, MoveToCameraParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MoveToCameraParameterName_MetaData), NewProp_MoveToCameraParameterName_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames_Inner = { "PositionParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames = { "PositionParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, PositionParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PositionParameterNames_MetaData), NewProp_PositionParameterNames_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames_Inner = { "ScaleRotationAngleParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames = { "ScaleRotationAngleParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, ScaleRotationAngleParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScaleRotationAngleParameterNames_MetaData), NewProp_ScaleRotationAngleParameterNames_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames_Inner = { "DurationParameterNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames = { "DurationParameterNames", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, DurationParameterNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DurationParameterNames_MetaData), NewProp_DurationParameterNames_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_ValueProp = { "PooledComponentMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPooledNumberPopComponentList, METADATA_PARAMS(0, nullptr) }; // 1625704582 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_Key_KeyProp = { "PooledComponentMap_Key", nullptr, (EPropertyFlags)0x0004008000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap = { "PooledComponentMap", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, PooledComponentMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PooledComponentMap_MetaData), NewProp_PooledComponentMap_MetaData) }; // 1625704582 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents_Inner = { "LiveComponents", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLiveNumberPopEntry, METADATA_PARAMS(0, nullptr) }; // 1937162421 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents = { "LiveComponents", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_MeshText, LiveComponents), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LiveComponents_MetaData), NewProp_LiveComponents_MetaData) }; // 1937162421 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_Styles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ComponentLifespan, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DistanceFromCameraBeforeDoublingSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_CriticalHitSizeMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontXSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_FontYSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SpacingPercentageForOnes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_NumberOfNumberRotations, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_SignDigitParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ColorParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_AnimationLifespanParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_IsCriticalHitParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_MoveToCameraParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PositionParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_ScaleRotationAngleParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_DurationParameterNames, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_PooledComponentMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::NewProp_LiveComponents, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraNumberPopComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::ClassParams = { + &ULyraNumberPopComponent_MeshText::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent_MeshText() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent_MeshText::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent_MeshText); +ULyraNumberPopComponent_MeshText::~ULyraNumberPopComponent_MeshText() {} +// End Class ULyraNumberPopComponent_MeshText + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPooledNumberPopComponentList::StaticStruct, Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics::NewStructOps, TEXT("PooledNumberPopComponentList"), &Z_Registration_Info_UScriptStruct_PooledNumberPopComponentList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPooledNumberPopComponentList), 1625704582U) }, + { FLiveNumberPopEntry::StaticStruct, Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics::NewStructOps, TEXT("LiveNumberPopEntry"), &Z_Registration_Info_UScriptStruct_LiveNumberPopEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLiveNumberPopEntry), 1937162421U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent_MeshText, ULyraNumberPopComponent_MeshText::StaticClass, TEXT("ULyraNumberPopComponent_MeshText"), &Z_Registration_Info_UClass_ULyraNumberPopComponent_MeshText, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent_MeshText), 469462504U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_4255662648(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h new file mode 100644 index 00000000..9e18af5c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_MeshText.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent_MeshText.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNumberPopComponent_MeshText_generated_h +#error "LyraNumberPopComponent_MeshText.generated.h already included, missing '#pragma once' in LyraNumberPopComponent_MeshText.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_MeshText_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPooledNumberPopComponentList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLiveNumberPopEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent_MeshText(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_MeshText_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent_MeshText, ULyraNumberPopComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent_MeshText) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent_MeshText(ULyraNumberPopComponent_MeshText&&); \ + ULyraNumberPopComponent_MeshText(const ULyraNumberPopComponent_MeshText&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent_MeshText); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent_MeshText); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent_MeshText) \ + NO_API virtual ~ULyraNumberPopComponent_MeshText(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_60_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h_63_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_MeshText_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp new file mode 100644 index 00000000..8cfbc7f9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.gen.cpp @@ -0,0 +1,127 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraNumberPopComponent_NiagaraText() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraNumberPopComponent_NiagaraText +void ULyraNumberPopComponent_NiagaraText::StaticRegisterNativesULyraNumberPopComponent_NiagaraText() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraNumberPopComponent_NiagaraText); +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_NoRegister() +{ + return ULyraNumberPopComponent_NiagaraText::StaticClass(); +} +struct Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Style_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Style patterns to attempt to apply to the incoming number pops */" }, +#endif + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Style patterns to attempt to apply to the incoming number pops" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraComp_MetaData[] = { + { "Category", "Number Pop|Style" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Niagara Component used to display the damage\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Niagara Component used to display the damage" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Style; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraComp; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_Style = { "Style", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_NiagaraText, Style), Z_Construct_UClass_ULyraDamagePopStyleNiagara_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Style_MetaData), NewProp_Style_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_NiagaraComp = { "NiagaraComp", nullptr, (EPropertyFlags)0x0124080000090009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraNumberPopComponent_NiagaraText, NiagaraComp), Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraComp_MetaData), NewProp_NiagaraComp_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_Style, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::NewProp_NiagaraComp, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraNumberPopComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::ClassParams = { + &ULyraNumberPopComponent_NiagaraText::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText() +{ + if (!Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton, Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraNumberPopComponent_NiagaraText::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraNumberPopComponent_NiagaraText); +ULyraNumberPopComponent_NiagaraText::~ULyraNumberPopComponent_NiagaraText() {} +// End Class ULyraNumberPopComponent_NiagaraText + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText, ULyraNumberPopComponent_NiagaraText::StaticClass, TEXT("ULyraNumberPopComponent_NiagaraText"), &Z_Registration_Info_UClass_ULyraNumberPopComponent_NiagaraText, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraNumberPopComponent_NiagaraText), 375475042U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_801455616(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h new file mode 100644 index 00000000..158c71f3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraNumberPopComponent_NiagaraText.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraNumberPopComponent_NiagaraText_generated_h +#error "LyraNumberPopComponent_NiagaraText.generated.h already included, missing '#pragma once' in LyraNumberPopComponent_NiagaraText.h" +#endif +#define LYRAGAME_LyraNumberPopComponent_NiagaraText_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraNumberPopComponent_NiagaraText(); \ + friend struct Z_Construct_UClass_ULyraNumberPopComponent_NiagaraText_Statics; \ +public: \ + DECLARE_CLASS(ULyraNumberPopComponent_NiagaraText, ULyraNumberPopComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraNumberPopComponent_NiagaraText) + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraNumberPopComponent_NiagaraText(ULyraNumberPopComponent_NiagaraText&&); \ + ULyraNumberPopComponent_NiagaraText(const ULyraNumberPopComponent_NiagaraText&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraNumberPopComponent_NiagaraText); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraNumberPopComponent_NiagaraText); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraNumberPopComponent_NiagaraText) \ + NO_API virtual ~ULyraNumberPopComponent_NiagaraText(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Feedback_NumberPops_LyraNumberPopComponent_NiagaraText_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.gen.cpp new file mode 100644 index 00000000..fca074a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.gen.cpp @@ -0,0 +1,235 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawn.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawn() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPawn(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPawn_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPawn Function OnControllerChangedTeam +struct Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics +{ + struct LyraPawn_eventOnControllerChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnControllerChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPawn, nullptr, "OnControllerChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::LyraPawn_eventOnControllerChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::LyraPawn_eventOnControllerChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPawn::execOnControllerChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControllerChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPawn Function OnControllerChangedTeam + +// Begin Class ALyraPawn Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics +{ + struct LyraPawn_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawn_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPawn, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::LyraPawn_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::LyraPawn_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPawn::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraPawn Function OnRep_MyTeamID + +// Begin Class ALyraPawn +void ALyraPawn::StaticRegisterNativesALyraPawn() +{ + UClass* Class = ALyraPawn::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnControllerChangedTeam", &ALyraPawn::execOnControllerChangedTeam }, + { "OnRep_MyTeamID", &ALyraPawn::execOnRep_MyTeamID }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPawn); +UClass* Z_Construct_UClass_ALyraPawn_NoRegister() +{ + return ALyraPawn::StaticClass(); +} +struct Z_Construct_UClass_ALyraPawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPawn\n */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "Character/LyraPawn.h" }, + { "ModuleRelativePath", "Character/LyraPawn.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Character/LyraPawn.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPawn_OnControllerChangedTeam, "OnControllerChangedTeam" }, // 3185344502 + { &Z_Construct_UFunction_ALyraPawn_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 1608443107 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPawn_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPawn, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPawn_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPawn, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPawn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPawn_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPawn_Statics::NewProp_OnTeamChangedDelegate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPawn_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPawn, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPawn_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPawn, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPawn_Statics::ClassParams = { + &ALyraPawn::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPawn_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPawn_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPawn_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPawn() +{ + if (!Z_Registration_Info_UClass_ALyraPawn.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPawn.OuterSingleton, Z_Construct_UClass_ALyraPawn_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPawn.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPawn::StaticClass(); +} +void ALyraPawn::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_MyTeamID(TEXT("MyTeamID")); + const bool bIsValid = true + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraPawn")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPawn); +ALyraPawn::~ALyraPawn() {} +// End Class ALyraPawn + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPawn, ALyraPawn::StaticClass, TEXT("ALyraPawn"), &Z_Registration_Info_UClass_ALyraPawn, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPawn), 3547856983U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_2250276092(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.generated.h new file mode 100644 index 00000000..2d8be76f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawn.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawn.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +struct FGenericTeamId; +#ifdef LYRAGAME_LyraPawn_generated_h +#error "LyraPawn.generated.h already included, missing '#pragma once' in LyraPawn.h" +#endif +#define LYRAGAME_LyraPawn_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnControllerChangedTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPawn(); \ + friend struct Z_Construct_UClass_ALyraPawn_Statics; \ +public: \ + DECLARE_CLASS(ALyraPawn, AModularPawn, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPawn) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + MyTeamID=NETFIELD_REP_START, \ + NETFIELD_REP_END=MyTeamID }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPawn(ALyraPawn&&); \ + ALyraPawn(const ALyraPawn&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPawn); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPawn); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPawn) \ + NO_API virtual ~ALyraPawn(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawn_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp new file mode 100644 index 00000000..247cc45e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.gen.cpp @@ -0,0 +1,670 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Cosmetics/LyraPawnComponent_CharacterParts.h" +#include "LyraGame/Cosmetics/LyraCharacterPartTypes.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnComponent_CharacterParts() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UChildActorComponent_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPart(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartHandle(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartList(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FLyraSpawnedCharacterPartsChanged +struct Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms + { + ULyraPawnComponent_CharacterParts* ComponentWithChangedParts; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ComponentWithChangedParts_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ComponentWithChangedParts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::NewProp_ComponentWithChangedParts = { "ComponentWithChangedParts", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms, ComponentWithChangedParts), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ComponentWithChangedParts_MetaData), NewProp_ComponentWithChangedParts_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::NewProp_ComponentWithChangedParts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "LyraSpawnedCharacterPartsChanged__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::_Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FLyraSpawnedCharacterPartsChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraSpawnedCharacterPartsChanged, ULyraPawnComponent_CharacterParts* ComponentWithChangedParts) +{ + struct _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms + { + ULyraPawnComponent_CharacterParts* ComponentWithChangedParts; + }; + _Script_LyraGame_eventLyraSpawnedCharacterPartsChanged_Parms Parms; + Parms.ComponentWithChangedParts=ComponentWithChangedParts; + LyraSpawnedCharacterPartsChanged.ProcessMulticastDelegate(&Parms); +} +// End Delegate FLyraSpawnedCharacterPartsChanged + +// Begin ScriptStruct FLyraAppliedCharacterPartEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAppliedCharacterPartEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry; +class UScriptStruct* FLyraAppliedCharacterPartEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraAppliedCharacterPartEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraAppliedCharacterPartEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A single applied character part\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A single applied character part" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Part_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The character part being represented\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The character part being represented" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PartHandle_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Handle index we returned to the user (server only)\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handle index we returned to the user (server only)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnedComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The spawned actor instance (client only)\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The spawned actor instance (client only)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Part; + static const UECodeGen_Private::FIntPropertyParams NewProp_PartHandle; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SpawnedComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_Part = { "Part", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, Part), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Part_MetaData), NewProp_Part_MetaData) }; // 2027995414 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_PartHandle = { "PartHandle", nullptr, (EPropertyFlags)0x0040000080000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, PartHandle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PartHandle_MetaData), NewProp_PartHandle_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_SpawnedComponent = { "SpawnedComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAppliedCharacterPartEntry, SpawnedComponent), Z_Construct_UClass_UChildActorComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnedComponent_MetaData), NewProp_SpawnedComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_Part, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_PartHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewProp_SpawnedComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraAppliedCharacterPartEntry", + Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::PropPointers), + sizeof(FLyraAppliedCharacterPartEntry), + alignof(FLyraAppliedCharacterPartEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry.InnerSingleton; +} +// End ScriptStruct FLyraAppliedCharacterPartEntry + +// Begin ScriptStruct FLyraCharacterPartList +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraCharacterPartList cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraCharacterPartList; +class UScriptStruct* FLyraCharacterPartList::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraCharacterPartList, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraCharacterPartList")); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartList.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraCharacterPartList::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraCharacterPartList); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraCharacterPartList); +#endif +struct Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of applied character parts\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of applied character parts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entries_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of equipment entries\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of equipment entries" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The component that contains this list\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The component that contains this list" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entries_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Entries; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwnerComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries_Inner = { "Entries", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry, METADATA_PARAMS(0, nullptr) }; // 1881465708 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries = { "Entries", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartList, Entries), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entries_MetaData), NewProp_Entries_MetaData) }; // 1881465708 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_OwnerComponent = { "OwnerComponent", nullptr, (EPropertyFlags)0x0144000080080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraCharacterPartList, OwnerComponent), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerComponent_MetaData), NewProp_OwnerComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_Entries, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewProp_OwnerComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraCharacterPartList", + Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::PropPointers), + sizeof(FLyraCharacterPartList), + alignof(FLyraCharacterPartList), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraCharacterPartList() +{ + if (!Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton, Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraCharacterPartList.InnerSingleton; +} +// End ScriptStruct FLyraCharacterPartList + +// Begin Class ULyraPawnComponent_CharacterParts Function AddCharacterPart +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics +{ + struct LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms + { + FLyraCharacterPart NewPart; + FLyraCharacterPartHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a character part to the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a character part to the actor that owns this customization component, should be called on the authority only" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewPart_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewPart; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart = { "NewPart", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms, NewPart), Z_Construct_UScriptStruct_FLyraCharacterPart, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewPart_MetaData), NewProp_NewPart_MetaData) }; // 2027995414 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraCharacterPartHandle, METADATA_PARAMS(0, nullptr) }; // 1063436802 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_NewPart, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "AddCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventAddCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execAddCharacterPart) +{ + P_GET_STRUCT_REF(FLyraCharacterPart,Z_Param_Out_NewPart); + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraCharacterPartHandle*)Z_Param__Result=P_THIS->AddCharacterPart(Z_Param_Out_NewPart); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function AddCharacterPart + +// Begin Class ULyraPawnComponent_CharacterParts Function GetCharacterPartActors +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics +{ + struct LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the list of all spawned character parts from this component\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the list of all spawned character parts from this component" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "GetCharacterPartActors", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::LyraPawnComponent_CharacterParts_eventGetCharacterPartActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execGetCharacterPartActors) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetCharacterPartActors(); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function GetCharacterPartActors + +// Begin Class ULyraPawnComponent_CharacterParts Function GetCombinedTags +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics +{ + struct LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms + { + FGameplayTag RequiredPrefix; + FGameplayTagContainer ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the set of combined gameplay tags from attached character parts, optionally filtered to only tags that start with the specified root\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the set of combined gameplay tags from attached character parts, optionally filtered to only tags that start with the specified root" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_RequiredPrefix; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_RequiredPrefix = { "RequiredPrefix", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms, RequiredPrefix), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(0, nullptr) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_RequiredPrefix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "GetCombinedTags", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::LyraPawnComponent_CharacterParts_eventGetCombinedTags_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execGetCombinedTags) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_RequiredPrefix); + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayTagContainer*)Z_Param__Result=P_THIS->GetCombinedTags(Z_Param_RequiredPrefix); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function GetCombinedTags + +// Begin Class ULyraPawnComponent_CharacterParts Function RemoveAllCharacterParts +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes all added character parts, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes all added character parts, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "RemoveAllCharacterParts", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execRemoveAllCharacterParts) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveAllCharacterParts(); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function RemoveAllCharacterParts + +// Begin Class ULyraPawnComponent_CharacterParts Function RemoveCharacterPart +struct Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics +{ + struct LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms + { + FLyraCharacterPartHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a previously added character part from the actor that owns this customization component, should be called on the authority only\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a previously added character part from the actor that owns this customization component, should be called on the authority only" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms, Handle), Z_Construct_UScriptStruct_FLyraCharacterPartHandle, METADATA_PARAMS(0, nullptr) }; // 1063436802 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnComponent_CharacterParts, nullptr, "RemoveCharacterPart", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::LyraPawnComponent_CharacterParts_eventRemoveCharacterPart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnComponent_CharacterParts::execRemoveCharacterPart) +{ + P_GET_STRUCT(FLyraCharacterPartHandle,Z_Param_Handle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveCharacterPart(Z_Param_Handle); + P_NATIVE_END; +} +// End Class ULyraPawnComponent_CharacterParts Function RemoveCharacterPart + +// Begin Class ULyraPawnComponent_CharacterParts +void ULyraPawnComponent_CharacterParts::StaticRegisterNativesULyraPawnComponent_CharacterParts() +{ + UClass* Class = ULyraPawnComponent_CharacterParts::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddCharacterPart", &ULyraPawnComponent_CharacterParts::execAddCharacterPart }, + { "GetCharacterPartActors", &ULyraPawnComponent_CharacterParts::execGetCharacterPartActors }, + { "GetCombinedTags", &ULyraPawnComponent_CharacterParts::execGetCombinedTags }, + { "RemoveAllCharacterParts", &ULyraPawnComponent_CharacterParts::execRemoveAllCharacterParts }, + { "RemoveCharacterPart", &ULyraPawnComponent_CharacterParts::execRemoveCharacterPart }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnComponent_CharacterParts); +UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts_NoRegister() +{ + return ULyraPawnComponent_CharacterParts::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A component that handles spawning cosmetic actors attached to the owner pawn on all clients\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A component that handles spawning cosmetic actors attached to the owner pawn on all clients" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnCharacterPartsChanged_MetaData[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Delegate that will be called when the list of spawned character parts has changed\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate that will be called when the list of spawned character parts has changed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CharacterPartList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of character parts\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of character parts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BodyMeshes_MetaData[] = { + { "Category", "Cosmetics" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rules for how to pick a body style mesh for animation to play on, based on character part cosmetics tags\n" }, +#endif + { "ModuleRelativePath", "Cosmetics/LyraPawnComponent_CharacterParts.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rules for how to pick a body style mesh for animation to play on, based on character part cosmetics tags" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnCharacterPartsChanged; + static const UECodeGen_Private::FStructPropertyParams NewProp_CharacterPartList; + static const UECodeGen_Private::FStructPropertyParams NewProp_BodyMeshes; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_AddCharacterPart, "AddCharacterPart" }, // 3331098824 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCharacterPartActors, "GetCharacterPartActors" }, // 1116947398 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_GetCombinedTags, "GetCombinedTags" }, // 1781304781 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveAllCharacterParts, "RemoveAllCharacterParts" }, // 111002439 + { &Z_Construct_UFunction_ULyraPawnComponent_CharacterParts_RemoveCharacterPart, "RemoveCharacterPart" }, // 903131853 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_OnCharacterPartsChanged = { "OnCharacterPartsChanged", nullptr, (EPropertyFlags)0x0010100010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, OnCharacterPartsChanged), Z_Construct_UDelegateFunction_LyraGame_LyraSpawnedCharacterPartsChanged__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnCharacterPartsChanged_MetaData), NewProp_OnCharacterPartsChanged_MetaData) }; // 3545841739 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_CharacterPartList = { "CharacterPartList", nullptr, (EPropertyFlags)0x0040008000002020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, CharacterPartList), Z_Construct_UScriptStruct_FLyraCharacterPartList, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CharacterPartList_MetaData), NewProp_CharacterPartList_MetaData) }; // 1027002543 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_BodyMeshes = { "BodyMeshes", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnComponent_CharacterParts, BodyMeshes), Z_Construct_UScriptStruct_FLyraAnimBodyStyleSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BodyMeshes_MetaData), NewProp_BodyMeshes_MetaData) }; // 181859200 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_OnCharacterPartsChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_CharacterPartList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::NewProp_BodyMeshes, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::ClassParams = { + &ULyraPawnComponent_CharacterParts::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnComponent_CharacterParts() +{ + if (!Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton, Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnComponent_CharacterParts::StaticClass(); +} +void ULyraPawnComponent_CharacterParts::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_CharacterPartList(TEXT("CharacterPartList")); + const bool bIsValid = true + && Name_CharacterPartList == ClassReps[(int32)ENetFields_Private::CharacterPartList].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraPawnComponent_CharacterParts")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnComponent_CharacterParts); +ULyraPawnComponent_CharacterParts::~ULyraPawnComponent_CharacterParts() {} +// End Class ULyraPawnComponent_CharacterParts + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAppliedCharacterPartEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics::NewStructOps, TEXT("LyraAppliedCharacterPartEntry"), &Z_Registration_Info_UScriptStruct_LyraAppliedCharacterPartEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAppliedCharacterPartEntry), 1881465708U) }, + { FLyraCharacterPartList::StaticStruct, Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics::NewStructOps, TEXT("LyraCharacterPartList"), &Z_Registration_Info_UScriptStruct_LyraCharacterPartList, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraCharacterPartList), 1027002543U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnComponent_CharacterParts, ULyraPawnComponent_CharacterParts::StaticClass, TEXT("ULyraPawnComponent_CharacterParts"), &Z_Registration_Info_UClass_ULyraPawnComponent_CharacterParts, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnComponent_CharacterParts), 361170492U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_665526194(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h new file mode 100644 index 00000000..4630a70c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnComponent_CharacterParts.generated.h @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Cosmetics/LyraPawnComponent_CharacterParts.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraPawnComponent_CharacterParts; +struct FGameplayTag; +struct FGameplayTagContainer; +struct FLyraCharacterPart; +struct FLyraCharacterPartHandle; +#ifdef LYRAGAME_LyraPawnComponent_CharacterParts_generated_h +#error "LyraPawnComponent_CharacterParts.generated.h already included, missing '#pragma once' in LyraPawnComponent_CharacterParts.h" +#endif +#define LYRAGAME_LyraPawnComponent_CharacterParts_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_25_DELEGATE \ +LYRAGAME_API void FLyraSpawnedCharacterPartsChanged_DelegateWrapper(const FMulticastScriptDelegate& LyraSpawnedCharacterPartsChanged, ULyraPawnComponent_CharacterParts* ComponentWithChangedParts); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAppliedCharacterPartEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_64_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraCharacterPartList_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraCharacterPartList, Entries, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetCombinedTags); \ + DECLARE_FUNCTION(execGetCharacterPartActors); \ + DECLARE_FUNCTION(execRemoveAllCharacterParts); \ + DECLARE_FUNCTION(execRemoveCharacterPart); \ + DECLARE_FUNCTION(execAddCharacterPart); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnComponent_CharacterParts(); \ + friend struct Z_Construct_UClass_ULyraPawnComponent_CharacterParts_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnComponent_CharacterParts, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnComponent_CharacterParts) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + CharacterPartList=NETFIELD_REP_START, \ + NETFIELD_REP_END=CharacterPartList }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnComponent_CharacterParts(ULyraPawnComponent_CharacterParts&&); \ + ULyraPawnComponent_CharacterParts(const ULyraPawnComponent_CharacterParts&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnComponent_CharacterParts); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnComponent_CharacterParts); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnComponent_CharacterParts) \ + NO_API virtual ~ULyraPawnComponent_CharacterParts(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_122_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h_125_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Cosmetics_LyraPawnComponent_CharacterParts_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.gen.cpp new file mode 100644 index 00000000..077d8146 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.gen.cpp @@ -0,0 +1,178 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawnData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnData() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInputConfig_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPawnData +void ULyraPawnData::StaticRegisterNativesULyraPawnData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnData); +UClass* Z_Construct_UClass_ULyraPawnData_NoRegister() +{ + return ULyraPawnData::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPawnData\n *\n *\x09Non-mutable data asset that contains properties used to define a pawn.\n */" }, +#endif + { "DisplayName", "Lyra Pawn Data" }, + { "IncludePath", "Character/LyraPawnData.h" }, + { "ModuleRelativePath", "Character/LyraPawnData.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "Data asset used to define a Pawn." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPawnData\n\n Non-mutable data asset that contains properties used to define a pawn." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnClass_MetaData[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Class to instantiate for this pawn (should usually derive from ALyraPawn or ALyraCharacter).\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Class to instantiate for this pawn (should usually derive from ALyraPawn or ALyraCharacter)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySets_MetaData[] = { + { "Category", "Lyra|Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Ability sets to grant to this pawn's ability system.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ability sets to grant to this pawn's ability system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TagRelationshipMapping_MetaData[] = { + { "Category", "Lyra|Abilities" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// What mapping of ability tags to use for actions taking by this pawn\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What mapping of ability tags to use for actions taking by this pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfig_MetaData[] = { + { "Category", "Lyra|Input" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Input configuration used by player controlled pawns to create input mappings and bind input actions.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Input configuration used by player controlled pawns to create input mappings and bind input actions." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultCameraMode_MetaData[] = { + { "Category", "Lyra|Camera" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Default camera mode used by player controlled pawns.\n" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default camera mode used by player controlled pawns." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PawnClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySets_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AbilitySets; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TagRelationshipMapping; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InputConfig; + static const UECodeGen_Private::FClassPropertyParams NewProp_DefaultCameraMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_PawnClass = { "PawnClass", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, PawnClass), Z_Construct_UClass_UClass, Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnClass_MetaData), NewProp_PawnClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets_Inner = { "AbilitySets", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraAbilitySet_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets = { "AbilitySets", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, AbilitySets), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySets_MetaData), NewProp_AbilitySets_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_TagRelationshipMapping = { "TagRelationshipMapping", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, TagRelationshipMapping), Z_Construct_UClass_ULyraAbilityTagRelationshipMapping_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TagRelationshipMapping_MetaData), NewProp_TagRelationshipMapping_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_InputConfig = { "InputConfig", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, InputConfig), Z_Construct_UClass_ULyraInputConfig_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfig_MetaData), NewProp_InputConfig_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPawnData_Statics::NewProp_DefaultCameraMode = { "DefaultCameraMode", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnData, DefaultCameraMode), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraCameraMode_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultCameraMode_MetaData), NewProp_DefaultCameraMode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_PawnClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_AbilitySets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_TagRelationshipMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_InputConfig, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnData_Statics::NewProp_DefaultCameraMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnData_Statics::ClassParams = { + &ULyraPawnData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPawnData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnData_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnData() +{ + if (!Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton, Z_Construct_UClass_ULyraPawnData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnData.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnData::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnData); +ULyraPawnData::~ULyraPawnData() {} +// End Class ULyraPawnData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnData, ULyraPawnData::StaticClass, TEXT("ULyraPawnData"), &Z_Registration_Info_UClass_ULyraPawnData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnData), 4054653562U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_1703379645(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.generated.h new file mode 100644 index 00000000..247ea728 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnData.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawnData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPawnData_generated_h +#error "LyraPawnData.generated.h already included, missing '#pragma once' in LyraPawnData.h" +#endif +#define LYRAGAME_LyraPawnData_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnData(); \ + friend struct Z_Construct_UClass_ULyraPawnData_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnData, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnData) + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnData(ULyraPawnData&&); \ + ULyraPawnData(const ULyraPawnData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnData) \ + NO_API virtual ~ULyraPawnData(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp new file mode 100644 index 00000000..6f4e40c5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.gen.cpp @@ -0,0 +1,296 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Character/LyraPawnExtensionComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPawnExtensionComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UPawnComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPawnExtensionComponent Function FindPawnExtensionComponent +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics +{ + struct LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms + { + const AActor* Actor; + ULyraPawnExtensionComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the pawn extension component if one exists on the specified actor. */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the pawn extension component if one exists on the specified actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Actor_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Actor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_Actor = { "Actor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms, Actor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Actor_MetaData), NewProp_Actor_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_Actor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "FindPawnExtensionComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::LyraPawnExtensionComponent_eventFindPawnExtensionComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execFindPawnExtensionComponent) +{ + P_GET_OBJECT(AActor,Z_Param_Actor); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraPawnExtensionComponent**)Z_Param__Result=ULyraPawnExtensionComponent::FindPawnExtensionComponent(Z_Param_Actor); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function FindPawnExtensionComponent + +// Begin Class ULyraPawnExtensionComponent Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the current ability system component, which may be owned by a different actor */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the current ability system component, which may be owned by a different actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::LyraPawnExtensionComponent_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function GetLyraAbilitySystemComponent + +// Begin Class ULyraPawnExtensionComponent Function OnRep_PawnData +struct Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPawnExtensionComponent, nullptr, "OnRep_PawnData", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPawnExtensionComponent::execOnRep_PawnData) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_PawnData(); + P_NATIVE_END; +} +// End Class ULyraPawnExtensionComponent Function OnRep_PawnData + +// Begin Class ULyraPawnExtensionComponent +void ULyraPawnExtensionComponent::StaticRegisterNativesULyraPawnExtensionComponent() +{ + UClass* Class = ULyraPawnExtensionComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindPawnExtensionComponent", &ULyraPawnExtensionComponent::execFindPawnExtensionComponent }, + { "GetLyraAbilitySystemComponent", &ULyraPawnExtensionComponent::execGetLyraAbilitySystemComponent }, + { "OnRep_PawnData", &ULyraPawnExtensionComponent::execOnRep_PawnData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPawnExtensionComponent); +UClass* Z_Construct_UClass_ULyraPawnExtensionComponent_NoRegister() +{ + return ULyraPawnExtensionComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraPawnExtensionComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Component that adds functionality to all Pawn classes so it can be used for characters/vehicles/etc.\n * This coordinates the initialization of other components.\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Character/LyraPawnExtensionComponent.h" }, + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Component that adds functionality to all Pawn classes so it can be used for characters/vehicles/etc.\nThis coordinates the initialization of other components." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnData_MetaData[] = { + { "Category", "Lyra|Pawn" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pawn data used to create the pawn. Specified from a spawn function or on a placed instance. */" }, +#endif + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pawn data used to create the pawn. Specified from a spawn function or on a placed instance." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pointer to the ability system component that is cached for convenience. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Character/LyraPawnExtensionComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pointer to the ability system component that is cached for convenience." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_FindPawnExtensionComponent, "FindPawnExtensionComponent" }, // 3080013759 + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1953023408 + { &Z_Construct_UFunction_ULyraPawnExtensionComponent_OnRep_PawnData, "OnRep_PawnData" }, // 1628551529 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_PawnData = { "PawnData", "OnRep_PawnData", (EPropertyFlags)0x0124080100000821, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnExtensionComponent, PawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnData_MetaData), NewProp_PawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x0124080000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPawnExtensionComponent, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_PawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::NewProp_AbilitySystemComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPawnComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameFrameworkInitStateInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraPawnExtensionComponent, IGameFrameworkInitStateInterface), false }, // 363983679 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::ClassParams = { + &ULyraPawnExtensionComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPawnExtensionComponent() +{ + if (!Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton, Z_Construct_UClass_ULyraPawnExtensionComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPawnExtensionComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPawnExtensionComponent::StaticClass(); +} +void ULyraPawnExtensionComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_PawnData(TEXT("PawnData")); + const bool bIsValid = true + && Name_PawnData == ClassReps[(int32)ENetFields_Private::PawnData].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraPawnExtensionComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPawnExtensionComponent); +ULyraPawnExtensionComponent::~ULyraPawnExtensionComponent() {} +// End Class ULyraPawnExtensionComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPawnExtensionComponent, ULyraPawnExtensionComponent::StaticClass, TEXT("ULyraPawnExtensionComponent"), &Z_Registration_Info_UClass_ULyraPawnExtensionComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPawnExtensionComponent), 3185851217U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_1046472736(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h new file mode 100644 index 00000000..180df457 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPawnExtensionComponent.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Character/LyraPawnExtensionComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class ULyraAbilitySystemComponent; +class ULyraPawnExtensionComponent; +#ifdef LYRAGAME_LyraPawnExtensionComponent_generated_h +#error "LyraPawnExtensionComponent.generated.h already included, missing '#pragma once' in LyraPawnExtensionComponent.h" +#endif +#define LYRAGAME_LyraPawnExtensionComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_PawnData); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execFindPawnExtensionComponent); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPawnExtensionComponent(); \ + friend struct Z_Construct_UClass_ULyraPawnExtensionComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraPawnExtensionComponent, UPawnComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPawnExtensionComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + PawnData=NETFIELD_REP_START, \ + NETFIELD_REP_END=PawnData }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPawnExtensionComponent(ULyraPawnExtensionComponent&&); \ + ULyraPawnExtensionComponent(const ULyraPawnExtensionComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPawnExtensionComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPawnExtensionComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPawnExtensionComponent) \ + NO_API virtual ~ULyraPawnExtensionComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Character_LyraPawnExtensionComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp new file mode 100644 index 00000000..be07bb21 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp @@ -0,0 +1,167 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraPenetrationAvoidanceFeeler.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPenetrationAvoidanceFeeler() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraPenetrationAvoidanceFeeler +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler; +class UScriptStruct* FLyraPenetrationAvoidanceFeeler::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPenetrationAvoidanceFeeler")); + } + return Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPenetrationAvoidanceFeeler::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Struct defining a feeler ray used for camera penetration avoidance.\n */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Struct defining a feeler ray used for camera penetration avoidance." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdjustmentRot_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** FRotator describing deviance from main ray */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "FRotator describing deviance from main ray" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldWeight_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** how much this feeler affects the final position if it hits the world */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "how much this feeler affects the final position if it hits the world" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnWeight_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** how much this feeler affects the final position if it hits a APawn (setting to 0 will not attempt to collide with pawns at all) */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "how much this feeler affects the final position if it hits a APawn (setting to 0 will not attempt to collide with pawns at all)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extent_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** extent to use for collision when tracing this feeler */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "extent to use for collision when tracing this feeler" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraceInterval_MetaData[] = { + { "Category", "PenetrationAvoidanceFeeler" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** minimum frame interval between traces with this feeler if nothing was hit last frame */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "minimum frame interval between traces with this feeler if nothing was hit last frame" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FramesUntilNextTrace_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** number of frames since this feeler was used */" }, +#endif + { "ModuleRelativePath", "Camera/LyraPenetrationAvoidanceFeeler.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "number of frames since this feeler was used" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AdjustmentRot; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WorldWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_PawnWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Extent; + static const UECodeGen_Private::FIntPropertyParams NewProp_TraceInterval; + static const UECodeGen_Private::FIntPropertyParams NewProp_FramesUntilNextTrace; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_AdjustmentRot = { "AdjustmentRot", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, AdjustmentRot), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdjustmentRot_MetaData), NewProp_AdjustmentRot_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_WorldWeight = { "WorldWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, WorldWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldWeight_MetaData), NewProp_WorldWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_PawnWeight = { "PawnWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, PawnWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnWeight_MetaData), NewProp_PawnWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_Extent = { "Extent", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, Extent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extent_MetaData), NewProp_Extent_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_TraceInterval = { "TraceInterval", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, TraceInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraceInterval_MetaData), NewProp_TraceInterval_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_FramesUntilNextTrace = { "FramesUntilNextTrace", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPenetrationAvoidanceFeeler, FramesUntilNextTrace), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FramesUntilNextTrace_MetaData), NewProp_FramesUntilNextTrace_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_AdjustmentRot, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_WorldWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_PawnWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_Extent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_TraceInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewProp_FramesUntilNextTrace, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPenetrationAvoidanceFeeler", + Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::PropPointers), + sizeof(FLyraPenetrationAvoidanceFeeler), + alignof(FLyraPenetrationAvoidanceFeeler), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler.InnerSingleton; +} +// End ScriptStruct FLyraPenetrationAvoidanceFeeler + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraPenetrationAvoidanceFeeler::StaticStruct, Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics::NewStructOps, TEXT("LyraPenetrationAvoidanceFeeler"), &Z_Registration_Info_UScriptStruct_LyraPenetrationAvoidanceFeeler, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPenetrationAvoidanceFeeler), 2900195724U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_4124090625(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h new file mode 100644 index 00000000..6cf0ea7b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraPenetrationAvoidanceFeeler.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPenetrationAvoidanceFeeler_generated_h +#error "LyraPenetrationAvoidanceFeeler.generated.h already included, missing '#pragma once' in LyraPenetrationAvoidanceFeeler.h" +#endif +#define LYRAGAME_LyraPenetrationAvoidanceFeeler_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h_15_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPenetrationAvoidanceFeeler_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPenetrationAvoidanceFeeler_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp new file mode 100644 index 00000000..0e056ee2 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.gen.cpp @@ -0,0 +1,159 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/PerformanceStats/LyraPerfStatContainerBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerfStatContainerBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatContainerBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatContainerBase_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerfStatContainerBase Function UpdateVisibilityOfChildren +struct Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatContainerBase, nullptr, "UpdateVisibilityOfChildren", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatContainerBase::execUpdateVisibilityOfChildren) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateVisibilityOfChildren(); + P_NATIVE_END; +} +// End Class ULyraPerfStatContainerBase Function UpdateVisibilityOfChildren + +// Begin Class ULyraPerfStatContainerBase +void ULyraPerfStatContainerBase::StaticRegisterNativesULyraPerfStatContainerBase() +{ + UClass* Class = ULyraPerfStatContainerBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "UpdateVisibilityOfChildren", &ULyraPerfStatContainerBase::execUpdateVisibilityOfChildren }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerfStatContainerBase); +UClass* Z_Construct_UClass_ULyraPerfStatContainerBase_NoRegister() +{ + return ULyraPerfStatContainerBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerfStatContainerBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPerfStatsContainerBase\n *\n * Panel that contains a set of ULyraPerfStatWidgetBase widgets and manages\n * their visibility based on user settings.\n */" }, +#endif + { "IncludePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPerfStatsContainerBase\n\nPanel that contains a set of ULyraPerfStatWidgetBase widgets and manages\ntheir visibility based on user settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatDisplayModeFilter_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Are we showing text or graph stats?\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatContainerBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Are we showing text or graph stats?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_StatDisplayModeFilter_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_StatDisplayModeFilter; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerfStatContainerBase_UpdateVisibilityOfChildren, "UpdateVisibilityOfChildren" }, // 3585891793 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter = { "StatDisplayModeFilter", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatContainerBase, StatDisplayModeFilter), Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatDisplayModeFilter_MetaData), NewProp_StatDisplayModeFilter_MetaData) }; // 3127134116 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::NewProp_StatDisplayModeFilter, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::ClassParams = { + &ULyraPerfStatContainerBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerfStatContainerBase() +{ + if (!Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton, Z_Construct_UClass_ULyraPerfStatContainerBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerfStatContainerBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerfStatContainerBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerfStatContainerBase); +ULyraPerfStatContainerBase::~ULyraPerfStatContainerBase() {} +// End Class ULyraPerfStatContainerBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerfStatContainerBase, ULyraPerfStatContainerBase::StaticClass, TEXT("ULyraPerfStatContainerBase"), &Z_Registration_Info_UClass_ULyraPerfStatContainerBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerfStatContainerBase), 4136689824U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_1464097075(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h new file mode 100644 index 00000000..72a14728 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatContainerBase.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/PerformanceStats/LyraPerfStatContainerBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerfStatContainerBase_generated_h +#error "LyraPerfStatContainerBase.generated.h already included, missing '#pragma once' in LyraPerfStatContainerBase.h" +#endif +#define LYRAGAME_LyraPerfStatContainerBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execUpdateVisibilityOfChildren); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerfStatContainerBase(); \ + friend struct Z_Construct_UClass_ULyraPerfStatContainerBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerfStatContainerBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerfStatContainerBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerfStatContainerBase(ULyraPerfStatContainerBase&&); \ + ULyraPerfStatContainerBase(const ULyraPerfStatContainerBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerfStatContainerBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerfStatContainerBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPerfStatContainerBase) \ + NO_API virtual ~ULyraPerfStatContainerBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h_25_ENHANCED_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatContainerBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp new file mode 100644 index 00000000..04a72ff7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.gen.cpp @@ -0,0 +1,239 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/PerformanceStats/LyraPerfStatWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerfStatWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerfStatWidgetBase Function FetchStatValue +struct Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics +{ + struct LyraPerfStatWidgetBase_eventFetchStatValue_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Polls for the value of this stat (unscaled)\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Polls for the value of this stat (unscaled)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerfStatWidgetBase_eventFetchStatValue_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatWidgetBase, nullptr, "FetchStatValue", nullptr, nullptr, Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::LyraPerfStatWidgetBase_eventFetchStatValue_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::LyraPerfStatWidgetBase_eventFetchStatValue_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatWidgetBase::execFetchStatValue) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->FetchStatValue(); + P_NATIVE_END; +} +// End Class ULyraPerfStatWidgetBase Function FetchStatValue + +// Begin Class ULyraPerfStatWidgetBase Function GetStatToDisplay +struct Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics +{ + struct LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms + { + ELyraDisplayablePerformanceStat ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stat this widget is supposed to display\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stat this widget is supposed to display" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerfStatWidgetBase, nullptr, "GetStatToDisplay", nullptr, nullptr, Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::LyraPerfStatWidgetBase_eventGetStatToDisplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerfStatWidgetBase::execGetStatToDisplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraDisplayablePerformanceStat*)Z_Param__Result=P_THIS->GetStatToDisplay(); + P_NATIVE_END; +} +// End Class ULyraPerfStatWidgetBase Function GetStatToDisplay + +// Begin Class ULyraPerfStatWidgetBase +void ULyraPerfStatWidgetBase::StaticRegisterNativesULyraPerfStatWidgetBase() +{ + UClass* Class = ULyraPerfStatWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FetchStatValue", &ULyraPerfStatWidgetBase::execFetchStatValue }, + { "GetStatToDisplay", &ULyraPerfStatWidgetBase::execGetStatToDisplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerfStatWidgetBase); +UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase_NoRegister() +{ + return ULyraPerfStatWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraPerfStatWidgetBase\n *\n * Base class for a widget that displays a single stat, e.g., FPS, ping, etc...\n */" }, +#endif + { "IncludePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraPerfStatWidgetBase\n\nBase class for a widget that displays a single stat, e.g., FPS, ping, etc..." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedStatSubsystem_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Cached subsystem pointer\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cached subsystem pointer" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatToDisplay_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The stat to display\n" }, +#endif + { "ModuleRelativePath", "UI/PerformanceStats/LyraPerfStatWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The stat to display" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CachedStatSubsystem; + static const UECodeGen_Private::FBytePropertyParams NewProp_StatToDisplay_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_StatToDisplay; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerfStatWidgetBase_FetchStatValue, "FetchStatValue" }, // 304981349 + { &Z_Construct_UFunction_ULyraPerfStatWidgetBase_GetStatToDisplay, "GetStatToDisplay" }, // 3136888021 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_CachedStatSubsystem = { "CachedStatSubsystem", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatWidgetBase, CachedStatSubsystem), Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedStatSubsystem_MetaData), NewProp_CachedStatSubsystem_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay = { "StatToDisplay", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerfStatWidgetBase, StatToDisplay), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatToDisplay_MetaData), NewProp_StatToDisplay_MetaData) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_CachedStatSubsystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::NewProp_StatToDisplay, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::ClassParams = { + &ULyraPerfStatWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerfStatWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerfStatWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerfStatWidgetBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerfStatWidgetBase); +ULyraPerfStatWidgetBase::~ULyraPerfStatWidgetBase() {} +// End Class ULyraPerfStatWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerfStatWidgetBase, ULyraPerfStatWidgetBase::StaticClass, TEXT("ULyraPerfStatWidgetBase"), &Z_Registration_Info_UClass_ULyraPerfStatWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerfStatWidgetBase), 1979326582U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_1468331206(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h new file mode 100644 index 00000000..333d7d6f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerfStatWidgetBase.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/PerformanceStats/LyraPerfStatWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ELyraDisplayablePerformanceStat : uint8; +#ifdef LYRAGAME_LyraPerfStatWidgetBase_generated_h +#error "LyraPerfStatWidgetBase.generated.h already included, missing '#pragma once' in LyraPerfStatWidgetBase.h" +#endif +#define LYRAGAME_LyraPerfStatWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFetchStatValue); \ + DECLARE_FUNCTION(execGetStatToDisplay); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerfStatWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraPerfStatWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerfStatWidgetBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerfStatWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerfStatWidgetBase(ULyraPerfStatWidgetBase&&); \ + ULyraPerfStatWidgetBase(const ULyraPerfStatWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerfStatWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerfStatWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPerfStatWidgetBase) \ + NO_API virtual ~ULyraPerfStatWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_20_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h_26_ENHANCED_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_PerformanceStats_LyraPerfStatWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp new file mode 100644 index 00000000..2e41618e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.gen.cpp @@ -0,0 +1,585 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceSettings.h" +#include "Runtime/DeveloperSettings/Public/Engine/PlatformSettings.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UPlatformSettings(); +DEVELOPERSETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FPerPlatformSettings(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagQuery(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraFramePacingMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraPerformanceStatGroup(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraQualityDeviceProfileVariant +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant; +class UScriptStruct* FLyraQualityDeviceProfileVariant::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQualityDeviceProfileVariant")); + } + return Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQualityDeviceProfileVariant::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Describes one platform-specific device profile variant that the user can choose from in the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes one platform-specific device profile variant that the user can choose from in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The display name for this device profile variant (visible in the options screen)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The display name for this device profile variant (visible in the options screen)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeviceProfileSuffix_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The suffix to append to the base device profile name for the current platform\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The suffix to append to the base device profile name for the current platform" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MinRefreshRate_MetaData[] = { + { "Category", "LyraQualityDeviceProfileVariant" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The minimum required refresh rate to enable this mode\n// (e.g., if this is set to 120 Hz and the device is connected\n// to a 60 Hz display, it won't be available)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The minimum required refresh rate to enable this mode\n(e.g., if this is set to 120 Hz and the device is connected\nto a 60 Hz display, it won't be available)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceProfileSuffix; + static const UECodeGen_Private::FIntPropertyParams NewProp_MinRefreshRate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DeviceProfileSuffix = { "DeviceProfileSuffix", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, DeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeviceProfileSuffix_MetaData), NewProp_DeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_MinRefreshRate = { "MinRefreshRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQualityDeviceProfileVariant, MinRefreshRate), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MinRefreshRate_MetaData), NewProp_MinRefreshRate_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_DeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewProp_MinRefreshRate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQualityDeviceProfileVariant", + Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::PropPointers), + sizeof(FLyraQualityDeviceProfileVariant), + alignof(FLyraQualityDeviceProfileVariant), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant.InnerSingleton; +} +// End ScriptStruct FLyraQualityDeviceProfileVariant + +// Begin ScriptStruct FLyraPerformanceStatGroup +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup; +class UScriptStruct* FLyraPerformanceStatGroup::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraPerformanceStatGroup")); + } + return Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraPerformanceStatGroup::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Describes a set of performance stats that the user can enable in settings,\n// predicated on passing a visibility query on platform traits\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Describes a set of performance stats that the user can enable in settings,\npredicated on passing a visibility query on platform traits" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisibilityQuery_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "LyraPerformanceStatGroup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A query on platform traits to determine whether or not it will be possible\n// to show a set of stats\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A query on platform traits to determine whether or not it will be possible\nto show a set of stats" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowedStats_MetaData[] = { + { "Category", "LyraPerformanceStatGroup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The set of stats to allow if the query passes\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The set of stats to allow if the query passes" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_VisibilityQuery; + static const UECodeGen_Private::FBytePropertyParams NewProp_AllowedStats_ElementProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_AllowedStats_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_AllowedStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_VisibilityQuery = { "VisibilityQuery", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPerformanceStatGroup, VisibilityQuery), Z_Construct_UScriptStruct_FGameplayTagQuery, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisibilityQuery_MetaData), NewProp_VisibilityQuery_MetaData) }; // 572225232 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp = { "AllowedStats", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FSetPropertyParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats = { "AllowedStats", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraPerformanceStatGroup, AllowedStats), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowedStats_MetaData), NewProp_AllowedStats_MetaData) }; // 3286822108 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_VisibilityQuery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewProp_AllowedStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraPerformanceStatGroup", + Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::PropPointers), + sizeof(FLyraPerformanceStatGroup), + alignof(FLyraPerformanceStatGroup), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraPerformanceStatGroup() +{ + if (!Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup.InnerSingleton; +} +// End ScriptStruct FLyraPerformanceStatGroup + +// Begin Enum ELyraFramePacingMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraFramePacingMode; +static UEnum* ELyraFramePacingMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraFramePacingMode")); + } + return Z_Registration_Info_UEnum_ELyraFramePacingMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraFramePacingMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// How hare frame pacing and overall graphics settings controlled/exposed for the platform?\n" }, +#endif + { "ConsoleStyle.Comment", "// Limits handled by choosing present intervals driven by device profiles\n" }, + { "ConsoleStyle.Name", "ELyraFramePacingMode::ConsoleStyle" }, + { "ConsoleStyle.ToolTip", "Limits handled by choosing present intervals driven by device profiles" }, + { "DesktopStyle.Comment", "// Manual frame rate limits, user is allowed to choose whether or not to lock to vsync\n" }, + { "DesktopStyle.Name", "ELyraFramePacingMode::DesktopStyle" }, + { "DesktopStyle.ToolTip", "Manual frame rate limits, user is allowed to choose whether or not to lock to vsync" }, + { "MobileStyle.Comment", "// Limits handled by a user-facing choice of frame rate from among ones allowed by device profiles for the specific device\n" }, + { "MobileStyle.Name", "ELyraFramePacingMode::MobileStyle" }, + { "MobileStyle.ToolTip", "Limits handled by a user-facing choice of frame rate from among ones allowed by device profiles for the specific device" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How hare frame pacing and overall graphics settings controlled/exposed for the platform?" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraFramePacingMode::DesktopStyle", (int64)ELyraFramePacingMode::DesktopStyle }, + { "ELyraFramePacingMode::ConsoleStyle", (int64)ELyraFramePacingMode::ConsoleStyle }, + { "ELyraFramePacingMode::MobileStyle", (int64)ELyraFramePacingMode::MobileStyle }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraFramePacingMode", + "ELyraFramePacingMode", + Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraFramePacingMode() +{ + if (!Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraFramePacingMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraFramePacingMode.InnerSingleton; +} +// End Enum ELyraFramePacingMode + +// Begin Class ULyraPlatformSpecificRenderingSettings +void ULyraPlatformSpecificRenderingSettings::StaticRegisterNativesULyraPlatformSpecificRenderingSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlatformSpecificRenderingSettings); +UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_NoRegister() +{ + return ULyraPlatformSpecificRenderingSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Performance/LyraPerformanceSettings.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultDeviceProfileSuffix_MetaData[] = { + { "Category", "DeviceProfiles" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The default variant suffix to append, should typically be a member of\n// UserFacingDeviceProfileOptions unless there is only one for the current platform\n//\n// Note that this will usually be set from platform-specific ini files, not via the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default variant suffix to append, should typically be a member of\nUserFacingDeviceProfileOptions unless there is only one for the current platform\n\nNote that this will usually be set from platform-specific ini files, not via the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingDeviceProfileOptions_MetaData[] = { + { "Category", "DeviceProfiles" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of device profile variations to allow users to choose from in settings\n//\n// These should be sorted from slowest to fastest by target frame rate:\n// If the current display doesn't support a user chosen refresh rate, we'll try\n// previous entries until we find one that works\n//\n// Note that this will usually be set from platform-specific ini files, not via the UI\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of device profile variations to allow users to choose from in settings\n\nThese should be sorted from slowest to fastest by target frame rate:\n If the current display doesn't support a user chosen refresh rate, we'll try\n previous entries until we find one that works\n\nNote that this will usually be set from platform-specific ini files, not via the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSupportsGranularVideoQualitySettings_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Does the platform support granular video quality settings?\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the platform support granular video quality settings?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Does the platform support running the automatic quality benchmark (typically this should only be true if bSupportsGranularVideoQualitySettings is also true)\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the platform support running the automatic quality benchmark (typically this should only be true if bSupportsGranularVideoQualitySettings is also true)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FramePacingMode_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How is frame pacing controlled\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How is frame pacing controlled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MobileFrameRateLimits_MetaData[] = { + { "Category", "VideoSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Potential frame rates to display for mobile\n// Note: This is further limited by Lyra.DeviceProfile.Mobile.MaxFrameRate from the\n// platform-specific device profile and what the platform frame pacer reports as supported\n" }, +#endif + { "EditCondition", "FramePacingMode==ELyraFramePacingMode::MobileStyle" }, + { "ForceUnits", "Hz" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Potential frame rates to display for mobile\nNote: This is further limited by Lyra.DeviceProfile.Mobile.MaxFrameRate from the\nplatform-specific device profile and what the platform frame pacer reports as supported" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DefaultDeviceProfileSuffix; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserFacingDeviceProfileOptions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_UserFacingDeviceProfileOptions; + static void NewProp_bSupportsGranularVideoQualitySettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSupportsGranularVideoQualitySettings; + static void NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSupportsAutomaticVideoQualityBenchmark; + static const UECodeGen_Private::FBytePropertyParams NewProp_FramePacingMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_FramePacingMode; + static const UECodeGen_Private::FIntPropertyParams NewProp_MobileFrameRateLimits_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_MobileFrameRateLimits; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_DefaultDeviceProfileSuffix = { "DefaultDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, DefaultDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultDeviceProfileSuffix_MetaData), NewProp_DefaultDeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions_Inner = { "UserFacingDeviceProfileOptions", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant, METADATA_PARAMS(0, nullptr) }; // 3049904619 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions = { "UserFacingDeviceProfileOptions", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, UserFacingDeviceProfileOptions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingDeviceProfileOptions_MetaData), NewProp_UserFacingDeviceProfileOptions_MetaData) }; // 3049904619 +void Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings_SetBit(void* Obj) +{ + ((ULyraPlatformSpecificRenderingSettings*)Obj)->bSupportsGranularVideoQualitySettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings = { "bSupportsGranularVideoQualitySettings", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformSpecificRenderingSettings), &Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSupportsGranularVideoQualitySettings_MetaData), NewProp_bSupportsGranularVideoQualitySettings_MetaData) }; +void Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit(void* Obj) +{ + ((ULyraPlatformSpecificRenderingSettings*)Obj)->bSupportsAutomaticVideoQualityBenchmark = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark = { "bSupportsAutomaticVideoQualityBenchmark", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformSpecificRenderingSettings), &Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData), NewProp_bSupportsAutomaticVideoQualityBenchmark_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode = { "FramePacingMode", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, FramePacingMode), Z_Construct_UEnum_LyraGame_ELyraFramePacingMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FramePacingMode_MetaData), NewProp_FramePacingMode_MetaData) }; // 4252330403 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits_Inner = { "MobileFrameRateLimits", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits = { "MobileFrameRateLimits", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformSpecificRenderingSettings, MobileFrameRateLimits), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MobileFrameRateLimits_MetaData), NewProp_MobileFrameRateLimits_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_DefaultDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_UserFacingDeviceProfileOptions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsGranularVideoQualitySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_bSupportsAutomaticVideoQualityBenchmark, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_FramePacingMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::NewProp_MobileFrameRateLimits, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPlatformSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::ClassParams = { + &ULyraPlatformSpecificRenderingSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::PropPointers), + 0, + 0x000004A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton, Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlatformSpecificRenderingSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlatformSpecificRenderingSettings); +ULyraPlatformSpecificRenderingSettings::~ULyraPlatformSpecificRenderingSettings() {} +// End Class ULyraPlatformSpecificRenderingSettings + +// Begin Class ULyraPerformanceSettings +void ULyraPerformanceSettings::StaticRegisterNativesULyraPerformanceSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerformanceSettings); +UClass* Z_Construct_UClass_ULyraPerformanceSettings_NoRegister() +{ + return ULyraPerformanceSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerformanceSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Project-specific performance profile settings.\n */" }, +#endif + { "DisplayName", "Lyra Performance Settings" }, + { "IncludePath", "Performance/LyraPerformanceSettings.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Project-specific performance profile settings." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PerPlatformSettings_MetaData[] = { + { "Category", "PlatformSpecific" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// This is a special helper to expose the per-platform settings so they can be edited in the project settings\n// It never needs to be directly accessed\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a special helper to expose the per-platform settings so they can be edited in the project settings\nIt never needs to be directly accessed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesktopFrameRateLimits_MetaData[] = { + { "Category", "Performance" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of frame rates to allow users to choose from in the various\n// \"frame rate limit\" video settings on desktop platforms\n" }, +#endif + { "ForceUnits", "Hz" }, + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of frame rates to allow users to choose from in the various\n\"frame rate limit\" video settings on desktop platforms" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserFacingPerformanceStats_MetaData[] = { + { "Category", "Stats" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of performance stats that can be enabled in Options by the user\n" }, +#endif + { "ModuleRelativePath", "Performance/LyraPerformanceSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of performance stats that can be enabled in Options by the user" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PerPlatformSettings; + static const UECodeGen_Private::FIntPropertyParams NewProp_DesktopFrameRateLimits_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DesktopFrameRateLimits; + static const UECodeGen_Private::FStructPropertyParams NewProp_UserFacingPerformanceStats_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_UserFacingPerformanceStats; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_PerPlatformSettings = { "PerPlatformSettings", nullptr, (EPropertyFlags)0x0040008000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, PerPlatformSettings), Z_Construct_UScriptStruct_FPerPlatformSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PerPlatformSettings_MetaData), NewProp_PerPlatformSettings_MetaData) }; // 1467854229 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits_Inner = { "DesktopFrameRateLimits", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits = { "DesktopFrameRateLimits", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, DesktopFrameRateLimits), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesktopFrameRateLimits_MetaData), NewProp_DesktopFrameRateLimits_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats_Inner = { "UserFacingPerformanceStats", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup, METADATA_PARAMS(0, nullptr) }; // 4124904340 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats = { "UserFacingPerformanceStats", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPerformanceSettings, UserFacingPerformanceStats), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserFacingPerformanceStats_MetaData), NewProp_UserFacingPerformanceStats_MetaData) }; // 4124904340 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_PerPlatformSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_DesktopFrameRateLimits, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPerformanceSettings_Statics::NewProp_UserFacingPerformanceStats, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPerformanceSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerformanceSettings_Statics::ClassParams = { + &ULyraPerformanceSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::PropPointers), + 0, + 0x008000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerformanceSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerformanceSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton, Z_Construct_UClass_ULyraPerformanceSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerformanceSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerformanceSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerformanceSettings); +ULyraPerformanceSettings::~ULyraPerformanceSettings() {} +// End Class ULyraPerformanceSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraFramePacingMode_StaticEnum, TEXT("ELyraFramePacingMode"), &Z_Registration_Info_UEnum_ELyraFramePacingMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4252330403U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraQualityDeviceProfileVariant::StaticStruct, Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics::NewStructOps, TEXT("LyraQualityDeviceProfileVariant"), &Z_Registration_Info_UScriptStruct_LyraQualityDeviceProfileVariant, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQualityDeviceProfileVariant), 3049904619U) }, + { FLyraPerformanceStatGroup::StaticStruct, Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics::NewStructOps, TEXT("LyraPerformanceStatGroup"), &Z_Registration_Info_UScriptStruct_LyraPerformanceStatGroup, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraPerformanceStatGroup), 4124904340U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings, ULyraPlatformSpecificRenderingSettings::StaticClass, TEXT("ULyraPlatformSpecificRenderingSettings"), &Z_Registration_Info_UClass_ULyraPlatformSpecificRenderingSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlatformSpecificRenderingSettings), 1550424330U) }, + { Z_Construct_UClass_ULyraPerformanceSettings, ULyraPerformanceSettings::StaticClass, TEXT("ULyraPerformanceSettings"), &Z_Registration_Info_UClass_ULyraPerformanceSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerformanceSettings), 4020946163U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_2357513266(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h new file mode 100644 index 00000000..3507f6f1 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceSettings.generated.h @@ -0,0 +1,114 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerformanceSettings_generated_h +#error "LyraPerformanceSettings.generated.h already included, missing '#pragma once' in LyraPerformanceSettings.h" +#endif +#define LYRAGAME_LyraPerformanceSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQualityDeviceProfileVariant_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_41_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraPerformanceStatGroup_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlatformSpecificRenderingSettings(); \ + friend struct Z_Construct_UClass_ULyraPlatformSpecificRenderingSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlatformSpecificRenderingSettings, UPlatformSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlatformSpecificRenderingSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlatformSpecificRenderingSettings(ULyraPlatformSpecificRenderingSettings&&); \ + ULyraPlatformSpecificRenderingSettings(const ULyraPlatformSpecificRenderingSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlatformSpecificRenderingSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlatformSpecificRenderingSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPlatformSpecificRenderingSettings) \ + NO_API virtual ~ULyraPlatformSpecificRenderingSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_67_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_70_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerformanceSettings(); \ + friend struct Z_Construct_UClass_ULyraPerformanceSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerformanceSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerformanceSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerformanceSettings(ULyraPerformanceSettings&&); \ + ULyraPerformanceSettings(const ULyraPerformanceSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerformanceSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerformanceSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPerformanceSettings) \ + NO_API virtual ~ULyraPerformanceSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_120_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h_123_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceSettings_h + + +#define FOREACH_ENUM_ELYRAFRAMEPACINGMODE(op) \ + op(ELyraFramePacingMode::DesktopStyle) \ + op(ELyraFramePacingMode::ConsoleStyle) \ + op(ELyraFramePacingMode::MobileStyle) + +enum class ELyraFramePacingMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp new file mode 100644 index 00000000..30ae4029 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceStatSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceStatSubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPerformanceStatSubsystem Function GetCachedStat +struct Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics +{ + struct LyraPerformanceStatSubsystem_eventGetCachedStat_Parms + { + ELyraDisplayablePerformanceStat Stat; + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Performance/LyraPerformanceStatSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Stat_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Stat; + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat = { "Stat", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerformanceStatSubsystem_eventGetCachedStat_Parms, Stat), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPerformanceStatSubsystem_eventGetCachedStat_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_Stat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPerformanceStatSubsystem, nullptr, "GetCachedStat", nullptr, nullptr, Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::LyraPerformanceStatSubsystem_eventGetCachedStat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::LyraPerformanceStatSubsystem_eventGetCachedStat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPerformanceStatSubsystem::execGetCachedStat) +{ + P_GET_ENUM(ELyraDisplayablePerformanceStat,Z_Param_Stat); + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetCachedStat(ELyraDisplayablePerformanceStat(Z_Param_Stat)); + P_NATIVE_END; +} +// End Class ULyraPerformanceStatSubsystem Function GetCachedStat + +// Begin Class ULyraPerformanceStatSubsystem +void ULyraPerformanceStatSubsystem::StaticRegisterNativesULyraPerformanceStatSubsystem() +{ + UClass* Class = ULyraPerformanceStatSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetCachedStat", &ULyraPerformanceStatSubsystem::execGetCachedStat }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPerformanceStatSubsystem); +UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem_NoRegister() +{ + return ULyraPerformanceStatSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Subsystem to allow access to performance stats for display purposes\n" }, +#endif + { "IncludePath", "Performance/LyraPerformanceStatSubsystem.h" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem to allow access to performance stats for display purposes" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPerformanceStatSubsystem_GetCachedStat, "GetCachedStat" }, // 2755960125 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::ClassParams = { + &ULyraPerformanceStatSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPerformanceStatSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton, Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPerformanceStatSubsystem::StaticClass(); +} +ULyraPerformanceStatSubsystem::ULyraPerformanceStatSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPerformanceStatSubsystem); +ULyraPerformanceStatSubsystem::~ULyraPerformanceStatSubsystem() {} +// End Class ULyraPerformanceStatSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPerformanceStatSubsystem, ULyraPerformanceStatSubsystem::StaticClass, TEXT("ULyraPerformanceStatSubsystem"), &Z_Registration_Info_UClass_ULyraPerformanceStatSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPerformanceStatSubsystem), 38366342U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_67258682(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h new file mode 100644 index 00000000..4a562b78 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatSubsystem.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceStatSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ELyraDisplayablePerformanceStat : uint8; +#ifdef LYRAGAME_LyraPerformanceStatSubsystem_generated_h +#error "LyraPerformanceStatSubsystem.generated.h already included, missing '#pragma once' in LyraPerformanceStatSubsystem.h" +#endif +#define LYRAGAME_LyraPerformanceStatSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetCachedStat); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPerformanceStatSubsystem(); \ + friend struct Z_Construct_UClass_ULyraPerformanceStatSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraPerformanceStatSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPerformanceStatSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPerformanceStatSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPerformanceStatSubsystem(ULyraPerformanceStatSubsystem&&); \ + ULyraPerformanceStatSubsystem(const ULyraPerformanceStatSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPerformanceStatSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPerformanceStatSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPerformanceStatSubsystem) \ + NO_API virtual ~ULyraPerformanceStatSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_53_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp new file mode 100644 index 00000000..1f61f7e0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp @@ -0,0 +1,220 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Performance/LyraPerformanceStatTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPerformanceStatTypes() {} + +// Begin Cross Module References +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraStatDisplayMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraStatDisplayMode; +static UEnum* ELyraStatDisplayMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraStatDisplayMode")); + } + return Z_Registration_Info_UEnum_ELyraStatDisplayMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraStatDisplayMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Way to display the stat\n" }, +#endif + { "GraphOnly.Comment", "// Show this stat in graph form\n" }, + { "GraphOnly.Name", "ELyraStatDisplayMode::GraphOnly" }, + { "GraphOnly.ToolTip", "Show this stat in graph form" }, + { "Hidden.Comment", "// Don't show this stat\n" }, + { "Hidden.Name", "ELyraStatDisplayMode::Hidden" }, + { "Hidden.ToolTip", "Don't show this stat" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatTypes.h" }, + { "TextAndGraph.Comment", "// Show this stat as both text and graph\n" }, + { "TextAndGraph.Name", "ELyraStatDisplayMode::TextAndGraph" }, + { "TextAndGraph.ToolTip", "Show this stat as both text and graph" }, + { "TextOnly.Comment", "// Show this stat in text form\n" }, + { "TextOnly.Name", "ELyraStatDisplayMode::TextOnly" }, + { "TextOnly.ToolTip", "Show this stat in text form" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Way to display the stat" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraStatDisplayMode::Hidden", (int64)ELyraStatDisplayMode::Hidden }, + { "ELyraStatDisplayMode::TextOnly", (int64)ELyraStatDisplayMode::TextOnly }, + { "ELyraStatDisplayMode::GraphOnly", (int64)ELyraStatDisplayMode::GraphOnly }, + { "ELyraStatDisplayMode::TextAndGraph", (int64)ELyraStatDisplayMode::TextAndGraph }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraStatDisplayMode", + "ELyraStatDisplayMode", + Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode() +{ + if (!Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraStatDisplayMode.InnerSingleton; +} +// End Enum ELyraStatDisplayMode + +// Begin Enum ELyraDisplayablePerformanceStat +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat; +static UEnum* ELyraDisplayablePerformanceStat_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraDisplayablePerformanceStat")); + } + return Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraDisplayablePerformanceStat_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ClientFPS.Comment", "// stat fps (in Hz)\n" }, + { "ClientFPS.Name", "ELyraDisplayablePerformanceStat::ClientFPS" }, + { "ClientFPS.ToolTip", "stat fps (in Hz)" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Different kinds of stats that can be displayed on-screen\n" }, +#endif + { "Count.Comment", "// New stats should go above here\n" }, + { "Count.Hidden", "" }, + { "Count.Name", "ELyraDisplayablePerformanceStat::Count" }, + { "Count.ToolTip", "New stats should go above here" }, + { "FrameTime.Comment", "// Stat unit overall (in seconds)\n" }, + { "FrameTime.Name", "ELyraDisplayablePerformanceStat::FrameTime" }, + { "FrameTime.ToolTip", "Stat unit overall (in seconds)" }, + { "FrameTime_GameThread.Comment", "// Stat unit (game thread, in seconds)\n" }, + { "FrameTime_GameThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_GameThread" }, + { "FrameTime_GameThread.ToolTip", "Stat unit (game thread, in seconds)" }, + { "FrameTime_GPU.Comment", "// Stat unit (inferred GPU time, in seconds)\n" }, + { "FrameTime_GPU.Name", "ELyraDisplayablePerformanceStat::FrameTime_GPU" }, + { "FrameTime_GPU.ToolTip", "Stat unit (inferred GPU time, in seconds)" }, + { "FrameTime_RenderThread.Comment", "// Stat unit (render thread, in seconds)\n" }, + { "FrameTime_RenderThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_RenderThread" }, + { "FrameTime_RenderThread.ToolTip", "Stat unit (render thread, in seconds)" }, + { "FrameTime_RHIThread.Comment", "// Stat unit (RHI thread, in seconds)\n" }, + { "FrameTime_RHIThread.Name", "ELyraDisplayablePerformanceStat::FrameTime_RHIThread" }, + { "FrameTime_RHIThread.ToolTip", "Stat unit (RHI thread, in seconds)" }, + { "IdleTime.Comment", "// idle time spent waiting for vsync or frame rate limit (in seconds)\n" }, + { "IdleTime.Name", "ELyraDisplayablePerformanceStat::IdleTime" }, + { "IdleTime.ToolTip", "idle time spent waiting for vsync or frame rate limit (in seconds)" }, + { "ModuleRelativePath", "Performance/LyraPerformanceStatTypes.h" }, + { "PacketLoss_Incoming.Comment", "// The incoming packet loss percentage (%)\n" }, + { "PacketLoss_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketLoss_Incoming" }, + { "PacketLoss_Incoming.ToolTip", "The incoming packet loss percentage (%)" }, + { "PacketLoss_Outgoing.Comment", "// The outgoing packet loss percentage (%)\n" }, + { "PacketLoss_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketLoss_Outgoing" }, + { "PacketLoss_Outgoing.ToolTip", "The outgoing packet loss percentage (%)" }, + { "PacketRate_Incoming.Comment", "// The number of packets received in the last second\n" }, + { "PacketRate_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketRate_Incoming" }, + { "PacketRate_Incoming.ToolTip", "The number of packets received in the last second" }, + { "PacketRate_Outgoing.Comment", "// The number of packets sent in the past second\n" }, + { "PacketRate_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketRate_Outgoing" }, + { "PacketRate_Outgoing.ToolTip", "The number of packets sent in the past second" }, + { "PacketSize_Incoming.Comment", "// The avg. size (in bytes) of packets received\n" }, + { "PacketSize_Incoming.Name", "ELyraDisplayablePerformanceStat::PacketSize_Incoming" }, + { "PacketSize_Incoming.ToolTip", "The avg. size (in bytes) of packets received" }, + { "PacketSize_Outgoing.Comment", "// The avg. size (in bytes) of packets sent\n" }, + { "PacketSize_Outgoing.Name", "ELyraDisplayablePerformanceStat::PacketSize_Outgoing" }, + { "PacketSize_Outgoing.ToolTip", "The avg. size (in bytes) of packets sent" }, + { "Ping.Comment", "// Network ping (in ms)\n" }, + { "Ping.Name", "ELyraDisplayablePerformanceStat::Ping" }, + { "Ping.ToolTip", "Network ping (in ms)" }, + { "ServerFPS.Comment", "// server tick rate (in Hz)\n" }, + { "ServerFPS.Name", "ELyraDisplayablePerformanceStat::ServerFPS" }, + { "ServerFPS.ToolTip", "server tick rate (in Hz)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Different kinds of stats that can be displayed on-screen" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraDisplayablePerformanceStat::ClientFPS", (int64)ELyraDisplayablePerformanceStat::ClientFPS }, + { "ELyraDisplayablePerformanceStat::ServerFPS", (int64)ELyraDisplayablePerformanceStat::ServerFPS }, + { "ELyraDisplayablePerformanceStat::IdleTime", (int64)ELyraDisplayablePerformanceStat::IdleTime }, + { "ELyraDisplayablePerformanceStat::FrameTime", (int64)ELyraDisplayablePerformanceStat::FrameTime }, + { "ELyraDisplayablePerformanceStat::FrameTime_GameThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_GameThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_RenderThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_RenderThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_RHIThread", (int64)ELyraDisplayablePerformanceStat::FrameTime_RHIThread }, + { "ELyraDisplayablePerformanceStat::FrameTime_GPU", (int64)ELyraDisplayablePerformanceStat::FrameTime_GPU }, + { "ELyraDisplayablePerformanceStat::Ping", (int64)ELyraDisplayablePerformanceStat::Ping }, + { "ELyraDisplayablePerformanceStat::PacketLoss_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketLoss_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketLoss_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketLoss_Outgoing }, + { "ELyraDisplayablePerformanceStat::PacketRate_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketRate_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketRate_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketRate_Outgoing }, + { "ELyraDisplayablePerformanceStat::PacketSize_Incoming", (int64)ELyraDisplayablePerformanceStat::PacketSize_Incoming }, + { "ELyraDisplayablePerformanceStat::PacketSize_Outgoing", (int64)ELyraDisplayablePerformanceStat::PacketSize_Outgoing }, + { "ELyraDisplayablePerformanceStat::Count", (int64)ELyraDisplayablePerformanceStat::Count }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraDisplayablePerformanceStat", + "ELyraDisplayablePerformanceStat", + Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat() +{ + if (!Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat.InnerSingleton; +} +// End Enum ELyraDisplayablePerformanceStat + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraStatDisplayMode_StaticEnum, TEXT("ELyraStatDisplayMode"), &Z_Registration_Info_UEnum_ELyraStatDisplayMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3127134116U) }, + { ELyraDisplayablePerformanceStat_StaticEnum, TEXT("ELyraDisplayablePerformanceStat"), &Z_Registration_Info_UEnum_ELyraDisplayablePerformanceStat, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3286822108U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_725886397(TEXT("/Script/LyraGame"), + nullptr, 0, + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h new file mode 100644 index 00000000..4693fee0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Performance/LyraPerformanceStatTypes.h" +#include "Templates/IsUEnumClass.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ReflectedTypeAccessors.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPerformanceStatTypes_generated_h +#error "LyraPerformanceStatTypes.generated.h already included, missing '#pragma once' in LyraPerformanceStatTypes.h" +#endif +#define LYRAGAME_LyraPerformanceStatTypes_generated_h + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Performance_LyraPerformanceStatTypes_h + + +#define FOREACH_ENUM_ELYRASTATDISPLAYMODE(op) \ + op(ELyraStatDisplayMode::Hidden) \ + op(ELyraStatDisplayMode::TextOnly) \ + op(ELyraStatDisplayMode::GraphOnly) \ + op(ELyraStatDisplayMode::TextAndGraph) + +enum class ELyraStatDisplayMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRADISPLAYABLEPERFORMANCESTAT(op) \ + op(ELyraDisplayablePerformanceStat::ClientFPS) \ + op(ELyraDisplayablePerformanceStat::ServerFPS) \ + op(ELyraDisplayablePerformanceStat::IdleTime) \ + op(ELyraDisplayablePerformanceStat::FrameTime) \ + op(ELyraDisplayablePerformanceStat::FrameTime_GameThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_RenderThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_RHIThread) \ + op(ELyraDisplayablePerformanceStat::FrameTime_GPU) \ + op(ELyraDisplayablePerformanceStat::Ping) \ + op(ELyraDisplayablePerformanceStat::PacketLoss_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketLoss_Outgoing) \ + op(ELyraDisplayablePerformanceStat::PacketRate_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketRate_Outgoing) \ + op(ELyraDisplayablePerformanceStat::PacketSize_Incoming) \ + op(ELyraDisplayablePerformanceStat::PacketSize_Outgoing) \ + op(ELyraDisplayablePerformanceStat::Count) + +enum class ELyraDisplayablePerformanceStat : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp new file mode 100644 index 00000000..d0e23dad --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.gen.cpp @@ -0,0 +1,296 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraPickupDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPickupDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPickupDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPickupDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPickupDefinition +void ULyraPickupDefinition::StaticRegisterNativesULyraPickupDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPickupDefinition); +UClass* Z_Construct_UClass_ULyraPickupDefinition_NoRegister() +{ + return ULyraPickupDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraPickupDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisplayName", "Lyra Pickup Data" }, + { "IncludePath", "Equipment/LyraPickupDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, + { "ShortTooltip", "Data asset used to configure a pickup." }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryItemDefinition_MetaData[] = { + { "Category", "Lyra|Pickup|Equipment" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Defines the pickup's actors to spawn, abilities to grant, and tags to add\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the pickup's actors to spawn, abilities to grant, and tags to add" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayMesh_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Visual representation of the pickup\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Visual representation of the pickup" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpawnCoolDownSeconds_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Cool down time between pickups in seconds\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cool down time between pickups in seconds" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickedUpSound_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sound to play when picked up\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sound to play when picked up" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RespawnedSound_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sound to play when pickup is respawned\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sound to play when pickup is respawned" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickedUpEffect_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Particle FX to play when picked up\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Particle FX to play when picked up" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RespawnedEffect_MetaData[] = { + { "Category", "Lyra|Pickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Particle FX to play when pickup is respawned\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Particle FX to play when pickup is respawned" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_InventoryItemDefinition; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayMesh; + static const UECodeGen_Private::FIntPropertyParams NewProp_SpawnCoolDownSeconds; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickedUpSound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RespawnedSound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickedUpEffect; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RespawnedEffect; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_InventoryItemDefinition = { "InventoryItemDefinition", nullptr, (EPropertyFlags)0x0014000000010015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, InventoryItemDefinition), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryItemDefinition_MetaData), NewProp_InventoryItemDefinition_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_DisplayMesh = { "DisplayMesh", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, DisplayMesh), Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayMesh_MetaData), NewProp_DisplayMesh_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_SpawnCoolDownSeconds = { "SpawnCoolDownSeconds", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, SpawnCoolDownSeconds), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpawnCoolDownSeconds_MetaData), NewProp_SpawnCoolDownSeconds_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpSound = { "PickedUpSound", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, PickedUpSound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickedUpSound_MetaData), NewProp_PickedUpSound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedSound = { "RespawnedSound", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, RespawnedSound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RespawnedSound_MetaData), NewProp_RespawnedSound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpEffect = { "PickedUpEffect", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, PickedUpEffect), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickedUpEffect_MetaData), NewProp_PickedUpEffect_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedEffect = { "RespawnedEffect", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPickupDefinition, RespawnedEffect), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RespawnedEffect_MetaData), NewProp_RespawnedEffect_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_InventoryItemDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_DisplayMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_SpawnCoolDownSeconds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpSound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedSound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_PickedUpEffect, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPickupDefinition_Statics::NewProp_RespawnedEffect, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPickupDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPickupDefinition_Statics::ClassParams = { + &ULyraPickupDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPickupDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPickupDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPickupDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton, Z_Construct_UClass_ULyraPickupDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPickupDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPickupDefinition::StaticClass(); +} +ULyraPickupDefinition::ULyraPickupDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPickupDefinition); +ULyraPickupDefinition::~ULyraPickupDefinition() {} +// End Class ULyraPickupDefinition + +// Begin Class ULyraWeaponPickupDefinition +void ULyraWeaponPickupDefinition::StaticRegisterNativesULyraWeaponPickupDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponPickupDefinition); +UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister() +{ + return ULyraWeaponPickupDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisplayName", "Lyra Weapon Pickup Data" }, + { "IncludePath", "Equipment/LyraPickupDefinition.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, + { "ShortTooltip", "Data asset used to configure a weapon pickup." }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshOffset_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sets the height of the display mesh above the Weapon spawner\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the height of the display mesh above the Weapon spawner" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshScale_MetaData[] = { + { "Category", "Lyra|Pickup|Mesh" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Sets the height of the display mesh above the Weapon spawner\n" }, +#endif + { "ModuleRelativePath", "Equipment/LyraPickupDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the height of the display mesh above the Weapon spawner" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_WeaponMeshOffset; + static const UECodeGen_Private::FStructPropertyParams NewProp_WeaponMeshScale; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshOffset = { "WeaponMeshOffset", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponPickupDefinition, WeaponMeshOffset), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshOffset_MetaData), NewProp_WeaponMeshOffset_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshScale = { "WeaponMeshScale", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponPickupDefinition, WeaponMeshScale), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshScale_MetaData), NewProp_WeaponMeshScale_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::NewProp_WeaponMeshScale, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraPickupDefinition, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::ClassParams = { + &ULyraWeaponPickupDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::PropPointers), + 0, + 0x001100A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton, Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponPickupDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponPickupDefinition::StaticClass(); +} +ULyraWeaponPickupDefinition::ULyraWeaponPickupDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponPickupDefinition); +ULyraWeaponPickupDefinition::~ULyraWeaponPickupDefinition() {} +// End Class ULyraWeaponPickupDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPickupDefinition, ULyraPickupDefinition::StaticClass, TEXT("ULyraPickupDefinition"), &Z_Registration_Info_UClass_ULyraPickupDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPickupDefinition), 3945233359U) }, + { Z_Construct_UClass_ULyraWeaponPickupDefinition, ULyraWeaponPickupDefinition::StaticClass, TEXT("ULyraWeaponPickupDefinition"), &Z_Registration_Info_UClass_ULyraWeaponPickupDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponPickupDefinition), 3890692470U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_3611235018(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h new file mode 100644 index 00000000..da3e6d0b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPickupDefinition.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraPickupDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPickupDefinition_generated_h +#error "LyraPickupDefinition.generated.h already included, missing '#pragma once' in LyraPickupDefinition.h" +#endif +#define LYRAGAME_LyraPickupDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPickupDefinition(); \ + friend struct Z_Construct_UClass_ULyraPickupDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraPickupDefinition, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPickupDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPickupDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPickupDefinition(ULyraPickupDefinition&&); \ + ULyraPickupDefinition(const ULyraPickupDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPickupDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPickupDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPickupDefinition) \ + NO_API virtual ~ULyraPickupDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponPickupDefinition(); \ + friend struct Z_Construct_UClass_ULyraWeaponPickupDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponPickupDefinition, ULyraPickupDefinition, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponPickupDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraWeaponPickupDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponPickupDefinition(ULyraWeaponPickupDefinition&&); \ + ULyraWeaponPickupDefinition(const ULyraWeaponPickupDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponPickupDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponPickupDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponPickupDefinition) \ + NO_API virtual ~ULyraWeaponPickupDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_55_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraPickupDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp new file mode 100644 index 00000000..fa03e8c8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.gen.cpp @@ -0,0 +1,298 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Development/LyraPlatformEmulationSettings.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlatformEmulationSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlatformEmulationSettings Function GetKnownDeviceProfiles +struct Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics +{ + struct LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlatformEmulationSettings, nullptr, "GetKnownDeviceProfiles", nullptr, nullptr, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::LyraPlatformEmulationSettings_eventGetKnownDeviceProfiles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPlatformEmulationSettings::execGetKnownDeviceProfiles) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetKnownDeviceProfiles(); + P_NATIVE_END; +} +// End Class ULyraPlatformEmulationSettings Function GetKnownDeviceProfiles + +// Begin Class ULyraPlatformEmulationSettings Function GetKnownPlatformIds +struct Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics +{ + struct LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlatformEmulationSettings, nullptr, "GetKnownPlatformIds", nullptr, nullptr, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::LyraPlatformEmulationSettings_eventGetKnownPlatformIds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraPlatformEmulationSettings::execGetKnownPlatformIds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetKnownPlatformIds(); + P_NATIVE_END; +} +// End Class ULyraPlatformEmulationSettings Function GetKnownPlatformIds + +// Begin Class ULyraPlatformEmulationSettings +void ULyraPlatformEmulationSettings::StaticRegisterNativesULyraPlatformEmulationSettings() +{ + UClass* Class = ULyraPlatformEmulationSettings::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetKnownDeviceProfiles", &ULyraPlatformEmulationSettings::execGetKnownDeviceProfiles }, + { "GetKnownPlatformIds", &ULyraPlatformEmulationSettings::execGetKnownPlatformIds }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlatformEmulationSettings); +UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings_NoRegister() +{ + return ULyraPlatformEmulationSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Platform emulation settings\n */" }, +#endif + { "IncludePath", "Development/LyraPlatformEmulationSettings.h" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Platform emulation settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalPlatformTraitsToEnable_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "PlatformEmulation" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdditionalPlatformTraitsToSuppress_MetaData[] = { + { "Categories", "Input,Platform.Trait" }, + { "Category", "PlatformEmulation" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PretendPlatform_MetaData[] = { + { "Category", "PlatformEmulation" }, + { "GetOptions", "GetKnownPlatformIds" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PretendBaseDeviceProfile_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The base device profile to pretend we are using when emulating device-specific device profiles applied from ULyraSettingsLocal\n" }, +#endif + { "EditCondition", "bApplyDeviceProfilesInPIE" }, + { "GetOptions", "GetKnownDeviceProfiles" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base device profile to pretend we are using when emulating device-specific device profiles applied from ULyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyFrameRateSettingsInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do we apply desktop-style frame rate settings in PIE?\n// (frame rate limits are an engine-wide setting so it's not always desirable to have enabled in the editor)\n// You may also want to disable the editor preference \"Use Less CPU when in Background\" if testing background frame rate limits\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyFrameRateSettingsInPIE" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do we apply desktop-style frame rate settings in PIE?\n(frame rate limits are an engine-wide setting so it's not always desirable to have enabled in the editor)\nYou may also want to disable the editor preference \"Use Less CPU when in Background\" if testing background frame rate limits" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Do we apply front-end specific performance options in PIE?\n// Most engine performance/scalability settings they drive are global, so if one PIE window\n// is in the front-end and the other is in-game one will win and the other gets stuck with those settings\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyFrontEndPerformanceOptionsInPIE" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Do we apply front-end specific performance options in PIE?\nMost engine performance/scalability settings they drive are global, so if one PIE window\nis in the front-end and the other is in-game one will win and the other gets stuck with those settings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyDeviceProfilesInPIE_MetaData[] = { + { "Category", "PlatformEmulation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply experience/platform emulated device profiles in PIE?\n" }, +#endif + { "ConsoleVariable", "Lyra.Settings.ApplyDeviceProfilesInPIE" }, + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "Development/LyraPlatformEmulationSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply experience/platform emulated device profiles in PIE?" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AdditionalPlatformTraitsToEnable; + static const UECodeGen_Private::FStructPropertyParams NewProp_AdditionalPlatformTraitsToSuppress; + static const UECodeGen_Private::FNamePropertyParams NewProp_PretendPlatform; + static const UECodeGen_Private::FNamePropertyParams NewProp_PretendBaseDeviceProfile; + static void NewProp_bApplyFrameRateSettingsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyFrameRateSettingsInPIE; + static void NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyFrontEndPerformanceOptionsInPIE; + static void NewProp_bApplyDeviceProfilesInPIE_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyDeviceProfilesInPIE; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownDeviceProfiles, "GetKnownDeviceProfiles" }, // 4002859016 + { &Z_Construct_UFunction_ULyraPlatformEmulationSettings_GetKnownPlatformIds, "GetKnownPlatformIds" }, // 1561589300 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToEnable = { "AdditionalPlatformTraitsToEnable", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, AdditionalPlatformTraitsToEnable), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalPlatformTraitsToEnable_MetaData), NewProp_AdditionalPlatformTraitsToEnable_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToSuppress = { "AdditionalPlatformTraitsToSuppress", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, AdditionalPlatformTraitsToSuppress), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdditionalPlatformTraitsToSuppress_MetaData), NewProp_AdditionalPlatformTraitsToSuppress_MetaData) }; // 3352185621 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendPlatform = { "PretendPlatform", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, PretendPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PretendPlatform_MetaData), NewProp_PretendPlatform_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendBaseDeviceProfile = { "PretendBaseDeviceProfile", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlatformEmulationSettings, PretendBaseDeviceProfile), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PretendBaseDeviceProfile_MetaData), NewProp_PretendBaseDeviceProfile_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyFrameRateSettingsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE = { "bApplyFrameRateSettingsInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyFrameRateSettingsInPIE_MetaData), NewProp_bApplyFrameRateSettingsInPIE_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyFrontEndPerformanceOptionsInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE = { "bApplyFrontEndPerformanceOptionsInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData), NewProp_bApplyFrontEndPerformanceOptionsInPIE_MetaData) }; +void Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE_SetBit(void* Obj) +{ + ((ULyraPlatformEmulationSettings*)Obj)->bApplyDeviceProfilesInPIE = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE = { "bApplyDeviceProfilesInPIE", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraPlatformEmulationSettings), &Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyDeviceProfilesInPIE_MetaData), NewProp_bApplyDeviceProfilesInPIE_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToEnable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_AdditionalPlatformTraitsToSuppress, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendPlatform, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_PretendBaseDeviceProfile, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrameRateSettingsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyFrontEndPerformanceOptionsInPIE, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::NewProp_bApplyDeviceProfilesInPIE, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::ClassParams = { + &ULyraPlatformEmulationSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlatformEmulationSettings() +{ + if (!Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton, Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlatformEmulationSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlatformEmulationSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlatformEmulationSettings); +ULyraPlatformEmulationSettings::~ULyraPlatformEmulationSettings() {} +// End Class ULyraPlatformEmulationSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlatformEmulationSettings, ULyraPlatformEmulationSettings::StaticClass, TEXT("ULyraPlatformEmulationSettings"), &Z_Registration_Info_UClass_ULyraPlatformEmulationSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlatformEmulationSettings), 1106005283U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_1497237824(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h new file mode 100644 index 00000000..116c282f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlatformEmulationSettings.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Development/LyraPlatformEmulationSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlatformEmulationSettings_generated_h +#error "LyraPlatformEmulationSettings.generated.h already included, missing '#pragma once' in LyraPlatformEmulationSettings.h" +#endif +#define LYRAGAME_LyraPlatformEmulationSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetKnownDeviceProfiles); \ + DECLARE_FUNCTION(execGetKnownPlatformIds); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlatformEmulationSettings(); \ + friend struct Z_Construct_UClass_ULyraPlatformEmulationSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlatformEmulationSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraPlatformEmulationSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlatformEmulationSettings(ULyraPlatformEmulationSettings&&); \ + ULyraPlatformEmulationSettings(const ULyraPlatformEmulationSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraPlatformEmulationSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlatformEmulationSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraPlatformEmulationSettings) \ + LYRAGAME_API virtual ~ULyraPlatformEmulationSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Development_LyraPlatformEmulationSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp new file mode 100644 index 00000000..58a61478 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.gen.cpp @@ -0,0 +1,240 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerBotController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerBotController() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_UAIPerceptionComponent_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerBotController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerBotController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerBotController Function OnPlayerStateChangedTeam +struct Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics +{ + struct LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerBotController, nullptr, "OnPlayerStateChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::LyraPlayerBotController_eventOnPlayerStateChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerBotController::execOnPlayerStateChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStateChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPlayerBotController Function OnPlayerStateChangedTeam + +// Begin Class ALyraPlayerBotController Function UpdateTeamAttitude +struct Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics +{ + struct LyraPlayerBotController_eventUpdateTeamAttitude_Parms + { + UAIPerceptionComponent* AIPerception; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra AI Player Controller" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Update Team Attitude for the AI\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Update Team Attitude for the AI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AIPerception_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AIPerception; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::NewProp_AIPerception = { "AIPerception", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerBotController_eventUpdateTeamAttitude_Parms, AIPerception), Z_Construct_UClass_UAIPerceptionComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AIPerception_MetaData), NewProp_AIPerception_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::NewProp_AIPerception, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerBotController, nullptr, "UpdateTeamAttitude", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::LyraPlayerBotController_eventUpdateTeamAttitude_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::LyraPlayerBotController_eventUpdateTeamAttitude_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerBotController::execUpdateTeamAttitude) +{ + P_GET_OBJECT(UAIPerceptionComponent,Z_Param_AIPerception); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateTeamAttitude(Z_Param_AIPerception); + P_NATIVE_END; +} +// End Class ALyraPlayerBotController Function UpdateTeamAttitude + +// Begin Class ALyraPlayerBotController +void ALyraPlayerBotController::StaticRegisterNativesALyraPlayerBotController() +{ + UClass* Class = ALyraPlayerBotController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnPlayerStateChangedTeam", &ALyraPlayerBotController::execOnPlayerStateChangedTeam }, + { "UpdateTeamAttitude", &ALyraPlayerBotController::execUpdateTeamAttitude }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerBotController); +UClass* Z_Construct_UClass_ALyraPlayerBotController_NoRegister() +{ + return ALyraPlayerBotController::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerBotController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerBotController\n *\n *\x09The controller class used by player bots in this project.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerBotController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerBotController\n\n The controller class used by player bots in this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastSeenPlayerState_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerBotController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastSeenPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerBotController_OnPlayerStateChangedTeam, "OnPlayerStateChangedTeam" }, // 119575124 + { &Z_Construct_UFunction_ALyraPlayerBotController_UpdateTeamAttitude, "UpdateTeamAttitude" }, // 1094566476 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerBotController, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_LastSeenPlayerState = { "LastSeenPlayerState", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerBotController, LastSeenPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastSeenPlayerState_MetaData), NewProp_LastSeenPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerBotController_Statics::NewProp_LastSeenPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerBotController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularAIController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerBotController_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerBotController, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerBotController_Statics::ClassParams = { + &ALyraPlayerBotController::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerBotController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerBotController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerBotController() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton, Z_Construct_UClass_ALyraPlayerBotController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerBotController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerBotController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerBotController); +ALyraPlayerBotController::~ALyraPlayerBotController() {} +// End Class ALyraPlayerBotController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerBotController, ALyraPlayerBotController::StaticClass, TEXT("ALyraPlayerBotController"), &Z_Registration_Info_UClass_ALyraPlayerBotController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerBotController), 3169243225U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_4249794595(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h new file mode 100644 index 00000000..6ec4554e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerBotController.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerBotController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAIPerceptionComponent; +class UObject; +#ifdef LYRAGAME_LyraPlayerBotController_generated_h +#error "LyraPlayerBotController.generated.h already included, missing '#pragma once' in LyraPlayerBotController.h" +#endif +#define LYRAGAME_LyraPlayerBotController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPlayerStateChangedTeam); \ + DECLARE_FUNCTION(execUpdateTeamAttitude); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerBotController(); \ + friend struct Z_Construct_UClass_ALyraPlayerBotController_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerBotController, AModularAIController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerBotController) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerBotController(ALyraPlayerBotController&&); \ + ALyraPlayerBotController(const ALyraPlayerBotController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerBotController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerBotController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerBotController) \ + NO_API virtual ~ALyraPlayerBotController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_23_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerBotController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp new file mode 100644 index 00000000..6e6b4dd4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraPlayerCameraManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerCameraManager() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerCameraManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerCameraManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerCameraManager_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerCameraManager +void ALyraPlayerCameraManager::StaticRegisterNativesALyraPlayerCameraManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerCameraManager); +UClass* Z_Construct_UClass_ALyraPlayerCameraManager_NoRegister() +{ + return ALyraPlayerCameraManager::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerCameraManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerCameraManager\n *\n *\x09The base player camera manager class used by this project.\n */" }, +#endif + { "IncludePath", "Camera/LyraPlayerCameraManager.h" }, + { "ModuleRelativePath", "Camera/LyraPlayerCameraManager.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerCameraManager\n\n The base player camera manager class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UICamera_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The UI Camera Component, controls the camera when UI is doing something important that gameplay doesn't get priority over. */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Camera/LyraPlayerCameraManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The UI Camera Component, controls the camera when UI is doing something important that gameplay doesn't get priority over." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UICamera; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerCameraManager_Statics::NewProp_UICamera = { "UICamera", nullptr, (EPropertyFlags)0x0144000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerCameraManager, UICamera), Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UICamera_MetaData), NewProp_UICamera_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerCameraManager_Statics::NewProp_UICamera, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerCameraManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerCameraManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerCameraManager_Statics::ClassParams = { + &ALyraPlayerCameraManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::PropPointers), + 0, + 0x008802ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerCameraManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerCameraManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerCameraManager() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton, Z_Construct_UClass_ALyraPlayerCameraManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerCameraManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerCameraManager::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerCameraManager); +ALyraPlayerCameraManager::~ALyraPlayerCameraManager() {} +// End Class ALyraPlayerCameraManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerCameraManager, ALyraPlayerCameraManager::StaticClass, TEXT("ALyraPlayerCameraManager"), &Z_Registration_Info_UClass_ALyraPlayerCameraManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerCameraManager), 2658804671U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_3056504763(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h new file mode 100644 index 00000000..0fa5e5ca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerCameraManager.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraPlayerCameraManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerCameraManager_generated_h +#error "LyraPlayerCameraManager.generated.h already included, missing '#pragma once' in LyraPlayerCameraManager.h" +#endif +#define LYRAGAME_LyraPlayerCameraManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerCameraManager(); \ + friend struct Z_Construct_UClass_ALyraPlayerCameraManager_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerCameraManager, APlayerCameraManager, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ALyraPlayerCameraManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerCameraManager(ALyraPlayerCameraManager&&); \ + ALyraPlayerCameraManager(const ALyraPlayerCameraManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ALyraPlayerCameraManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerCameraManager); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerCameraManager) \ + LYRAGAME_API virtual ~ALyraPlayerCameraManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraPlayerCameraManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp new file mode 100644 index 00000000..b787c5cc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.gen.cpp @@ -0,0 +1,831 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerController.h" +#include "UObject/CoreNet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerController() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraHUD_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraReplayPlayerController(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraReplayPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerController Function GetIsAutoRunning +struct Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics +{ + struct LyraPlayerController_eventGetIsAutoRunning_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerController_eventGetIsAutoRunning_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventGetIsAutoRunning_Parms), &Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetIsAutoRunning", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::LyraPlayerController_eventGetIsAutoRunning_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::LyraPlayerController_eventGetIsAutoRunning_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetIsAutoRunning) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsAutoRunning(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetIsAutoRunning + +// Begin Class ALyraPlayerController Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::LyraPlayerController_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraAbilitySystemComponent + +// Begin Class ALyraPlayerController Function GetLyraHUD +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics +{ + struct LyraPlayerController_eventGetLyraHUD_Parms + { + ALyraHUD* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraHUD_Parms, ReturnValue), Z_Construct_UClass_ALyraHUD_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraHUD", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::LyraPlayerController_eventGetLyraHUD_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::LyraPlayerController_eventGetLyraHUD_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraHUD) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraHUD**)Z_Param__Result=P_THIS->GetLyraHUD(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraHUD + +// Begin Class ALyraPlayerController Function GetLyraPlayerState +struct Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics +{ + struct LyraPlayerController_eventGetLyraPlayerState_Parms + { + ALyraPlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventGetLyraPlayerState_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "GetLyraPlayerState", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::LyraPlayerController_eventGetLyraPlayerState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::LyraPlayerController_eventGetLyraPlayerState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execGetLyraPlayerState) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerState**)Z_Param__Result=P_THIS->GetLyraPlayerState(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function GetLyraPlayerState + +// Begin Class ALyraPlayerController Function K2_OnEndAutoRun +static const FName NAME_ALyraPlayerController_K2_OnEndAutoRun = FName(TEXT("K2_OnEndAutoRun")); +void ALyraPlayerController::K2_OnEndAutoRun() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_K2_OnEndAutoRun); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnEndAutoRun" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "K2_OnEndAutoRun", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraPlayerController Function K2_OnEndAutoRun + +// Begin Class ALyraPlayerController Function K2_OnStartAutoRun +static const FName NAME_ALyraPlayerController_K2_OnStartAutoRun = FName(TEXT("K2_OnStartAutoRun")); +void ALyraPlayerController::K2_OnStartAutoRun() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_K2_OnStartAutoRun); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnStartAutoRun" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "K2_OnStartAutoRun", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraPlayerController Function K2_OnStartAutoRun + +// Begin Class ALyraPlayerController Function OnPlayerStateChangedTeam +struct Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics +{ + struct LyraPlayerController_eventOnPlayerStateChangedTeam_Parms + { + UObject* TeamAgent; + int32 OldTeam; + int32 NewTeam; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamAgent; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeam; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent = { "TeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, TeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam = { "OldTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, OldTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam = { "NewTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventOnPlayerStateChangedTeam_Parms, NewTeam), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_TeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_OldTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::NewProp_NewTeam, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "OnPlayerStateChangedTeam", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::LyraPlayerController_eventOnPlayerStateChangedTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::LyraPlayerController_eventOnPlayerStateChangedTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execOnPlayerStateChangedTeam) +{ + P_GET_OBJECT(UObject,Z_Param_TeamAgent); + P_GET_PROPERTY(FIntProperty,Z_Param_OldTeam); + P_GET_PROPERTY(FIntProperty,Z_Param_NewTeam); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStateChangedTeam(Z_Param_TeamAgent,Z_Param_OldTeam,Z_Param_NewTeam); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function OnPlayerStateChangedTeam + +// Begin Class ALyraPlayerController Function ServerCheat +struct LyraPlayerController_eventServerCheat_Parms +{ + FString Msg; +}; +static const FName NAME_ALyraPlayerController_ServerCheat = FName(TEXT("ServerCheat")); +void ALyraPlayerController::ServerCheat(const FString& Msg) +{ + LyraPlayerController_eventServerCheat_Parms Parms; + Parms.Msg=Msg; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_ServerCheat); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Run a cheat command on the server.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run a cheat command on the server." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventServerCheat_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "ServerCheat", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::PropPointers), sizeof(LyraPlayerController_eventServerCheat_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x80220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerController_eventServerCheat_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_ServerCheat() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_ServerCheat_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execServerCheat) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + if (!P_THIS->ServerCheat_Validate(Z_Param_Msg)) + { + RPC_ValidateFailed(TEXT("ServerCheat_Validate")); + return; + } + P_THIS->ServerCheat_Implementation(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function ServerCheat + +// Begin Class ALyraPlayerController Function ServerCheatAll +struct LyraPlayerController_eventServerCheatAll_Parms +{ + FString Msg; +}; +static const FName NAME_ALyraPlayerController_ServerCheatAll = FName(TEXT("ServerCheatAll")); +void ALyraPlayerController::ServerCheatAll(const FString& Msg) +{ + LyraPlayerController_eventServerCheatAll_Parms Parms; + Parms.Msg=Msg; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerController_ServerCheatAll); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Run a cheat command on the server for all players.\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run a cheat command on the server for all players." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Msg_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_Msg; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::NewProp_Msg = { "Msg", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerController_eventServerCheatAll_Parms, Msg), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Msg_MetaData), NewProp_Msg_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::NewProp_Msg, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "ServerCheatAll", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::PropPointers), sizeof(LyraPlayerController_eventServerCheatAll_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x80220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerController_eventServerCheatAll_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execServerCheatAll) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_Msg); + P_FINISH; + P_NATIVE_BEGIN; + if (!P_THIS->ServerCheatAll_Validate(Z_Param_Msg)) + { + RPC_ValidateFailed(TEXT("ServerCheatAll_Validate")); + return; + } + P_THIS->ServerCheatAll_Implementation(Z_Param_Msg); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function ServerCheatAll + +// Begin Class ALyraPlayerController Function SetIsAutoRunning +struct Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics +{ + struct LyraPlayerController_eventSetIsAutoRunning_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|Character" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of ILyraTeamAgentInterface interface\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnabled_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraPlayerController_eventSetIsAutoRunning_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventSetIsAutoRunning_Parms), &Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnabled_MetaData), NewProp_bEnabled_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "SetIsAutoRunning", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::LyraPlayerController_eventSetIsAutoRunning_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::LyraPlayerController_eventSetIsAutoRunning_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execSetIsAutoRunning) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetIsAutoRunning(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function SetIsAutoRunning + +// Begin Class ALyraPlayerController Function TryToRecordClientReplay +struct Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics +{ + struct LyraPlayerController_eventTryToRecordClientReplay_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerController" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Call from game state logic to start recording an automatic client replay if ShouldRecordClientReplay returns true\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Call from game state logic to start recording an automatic client replay if ShouldRecordClientReplay returns true" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerController_eventTryToRecordClientReplay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerController_eventTryToRecordClientReplay_Parms), &Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerController, nullptr, "TryToRecordClientReplay", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::LyraPlayerController_eventTryToRecordClientReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::LyraPlayerController_eventTryToRecordClientReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerController::execTryToRecordClientReplay) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToRecordClientReplay(); + P_NATIVE_END; +} +// End Class ALyraPlayerController Function TryToRecordClientReplay + +// Begin Class ALyraPlayerController +void ALyraPlayerController::StaticRegisterNativesALyraPlayerController() +{ + UClass* Class = ALyraPlayerController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetIsAutoRunning", &ALyraPlayerController::execGetIsAutoRunning }, + { "GetLyraAbilitySystemComponent", &ALyraPlayerController::execGetLyraAbilitySystemComponent }, + { "GetLyraHUD", &ALyraPlayerController::execGetLyraHUD }, + { "GetLyraPlayerState", &ALyraPlayerController::execGetLyraPlayerState }, + { "OnPlayerStateChangedTeam", &ALyraPlayerController::execOnPlayerStateChangedTeam }, + { "ServerCheat", &ALyraPlayerController::execServerCheat }, + { "ServerCheatAll", &ALyraPlayerController::execServerCheatAll }, + { "SetIsAutoRunning", &ALyraPlayerController::execSetIsAutoRunning }, + { "TryToRecordClientReplay", &ALyraPlayerController::execTryToRecordClientReplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerController); +UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister() +{ + return ALyraPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerController\n *\n *\x09The base player controller class used by this project.\n */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerController.h" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShortTooltip", "The base player controller class used by this project." }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerController\n\n The base player controller class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastSeenPlayerState_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastSeenPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerController_GetIsAutoRunning, "GetIsAutoRunning" }, // 10190977 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 3394155914 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraHUD, "GetLyraHUD" }, // 3482722933 + { &Z_Construct_UFunction_ALyraPlayerController_GetLyraPlayerState, "GetLyraPlayerState" }, // 1768294287 + { &Z_Construct_UFunction_ALyraPlayerController_K2_OnEndAutoRun, "K2_OnEndAutoRun" }, // 2856380040 + { &Z_Construct_UFunction_ALyraPlayerController_K2_OnStartAutoRun, "K2_OnStartAutoRun" }, // 2009592095 + { &Z_Construct_UFunction_ALyraPlayerController_OnPlayerStateChangedTeam, "OnPlayerStateChangedTeam" }, // 1100513108 + { &Z_Construct_UFunction_ALyraPlayerController_ServerCheat, "ServerCheat" }, // 3532662300 + { &Z_Construct_UFunction_ALyraPlayerController_ServerCheatAll, "ServerCheatAll" }, // 3042442008 + { &Z_Construct_UFunction_ALyraPlayerController_SetIsAutoRunning, "SetIsAutoRunning" }, // 1749401899 + { &Z_Construct_UFunction_ALyraPlayerController_TryToRecordClientReplay, "TryToRecordClientReplay" }, // 515405888 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerController, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_LastSeenPlayerState = { "LastSeenPlayerState", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerController, LastSeenPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastSeenPlayerState_MetaData), NewProp_LastSeenPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerController_Statics::NewProp_LastSeenPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ACommonPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerController_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraCameraAssistInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerController, ILyraCameraAssistInterface), false }, // 1786343506 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerController, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerController_Statics::ClassParams = { + &ALyraPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerController() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton, Z_Construct_UClass_ALyraPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerController); +ALyraPlayerController::~ALyraPlayerController() {} +// End Class ALyraPlayerController + +// Begin Class ALyraReplayPlayerController Function OnPlayerStatePawnSet +struct Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics +{ + struct LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms + { + APlayerState* ChangedPlayerState; + APawn* NewPlayerPawn; + APawn* OldPlayerPawn; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Callback for when the followed player state changes pawn\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Callback for when the followed player state changes pawn" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ChangedPlayerState; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewPlayerPawn; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldPlayerPawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_ChangedPlayerState = { "ChangedPlayerState", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, ChangedPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_NewPlayerPawn = { "NewPlayerPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, NewPlayerPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_OldPlayerPawn = { "OldPlayerPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms, OldPlayerPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_ChangedPlayerState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_NewPlayerPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::NewProp_OldPlayerPawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraReplayPlayerController, nullptr, "OnPlayerStatePawnSet", nullptr, nullptr, Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::LyraReplayPlayerController_eventOnPlayerStatePawnSet_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraReplayPlayerController::execOnPlayerStatePawnSet) +{ + P_GET_OBJECT(APlayerState,Z_Param_ChangedPlayerState); + P_GET_OBJECT(APawn,Z_Param_NewPlayerPawn); + P_GET_OBJECT(APawn,Z_Param_OldPlayerPawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnPlayerStatePawnSet(Z_Param_ChangedPlayerState,Z_Param_NewPlayerPawn,Z_Param_OldPlayerPawn); + P_NATIVE_END; +} +// End Class ALyraReplayPlayerController Function OnPlayerStatePawnSet + +// Begin Class ALyraReplayPlayerController +void ALyraReplayPlayerController::StaticRegisterNativesALyraReplayPlayerController() +{ + UClass* Class = ALyraReplayPlayerController::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnPlayerStatePawnSet", &ALyraReplayPlayerController::execOnPlayerStatePawnSet }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraReplayPlayerController); +UClass* Z_Construct_UClass_ALyraReplayPlayerController_NoRegister() +{ + return ALyraReplayPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ALyraReplayPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// A player controller used for replay capture and playback\n" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "Player/LyraPlayerController.h" }, + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A player controller used for replay capture and playback" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FollowedPlayerState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// The player state we are currently following */\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The player state we are currently following */" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_FollowedPlayerState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraReplayPlayerController_OnPlayerStatePawnSet, "OnPlayerStatePawnSet" }, // 2894763820 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraReplayPlayerController_Statics::NewProp_FollowedPlayerState = { "FollowedPlayerState", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraReplayPlayerController, FollowedPlayerState), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FollowedPlayerState_MetaData), NewProp_FollowedPlayerState_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraReplayPlayerController_Statics::NewProp_FollowedPlayerState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraReplayPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraReplayPlayerController_Statics::ClassParams = { + &ALyraReplayPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::PropPointers), + 0, + 0x008002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraReplayPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraReplayPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraReplayPlayerController() +{ + if (!Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton, Z_Construct_UClass_ALyraReplayPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraReplayPlayerController.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraReplayPlayerController::StaticClass(); +} +ALyraReplayPlayerController::ALyraReplayPlayerController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraReplayPlayerController); +ALyraReplayPlayerController::~ALyraReplayPlayerController() {} +// End Class ALyraReplayPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerController, ALyraPlayerController::StaticClass, TEXT("ALyraPlayerController"), &Z_Registration_Info_UClass_ALyraPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerController), 937311333U) }, + { Z_Construct_UClass_ALyraReplayPlayerController, ALyraReplayPlayerController::StaticClass, TEXT("ALyraReplayPlayerController"), &Z_Registration_Info_UClass_ALyraReplayPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraReplayPlayerController), 3465251294U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_3057073065(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.generated.h new file mode 100644 index 00000000..0984f42c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerController.generated.h @@ -0,0 +1,120 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ALyraHUD; +class ALyraPlayerState; +class APawn; +class APlayerState; +class ULyraAbilitySystemComponent; +class UObject; +#ifdef LYRAGAME_LyraPlayerController_generated_h +#error "LyraPlayerController.generated.h already included, missing '#pragma once' in LyraPlayerController.h" +#endif +#define LYRAGAME_LyraPlayerController_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual bool ServerCheatAll_Validate(const FString& ); \ + virtual void ServerCheatAll_Implementation(const FString& Msg); \ + virtual bool ServerCheat_Validate(const FString& ); \ + virtual void ServerCheat_Implementation(const FString& Msg); \ + DECLARE_FUNCTION(execOnPlayerStateChangedTeam); \ + DECLARE_FUNCTION(execGetIsAutoRunning); \ + DECLARE_FUNCTION(execSetIsAutoRunning); \ + DECLARE_FUNCTION(execServerCheatAll); \ + DECLARE_FUNCTION(execServerCheat); \ + DECLARE_FUNCTION(execTryToRecordClientReplay); \ + DECLARE_FUNCTION(execGetLyraHUD); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerState); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerController(); \ + friend struct Z_Construct_UClass_ALyraPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerController, ACommonPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerController) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerController(ALyraPlayerController&&); \ + ALyraPlayerController(const ALyraPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerController) \ + NO_API virtual ~ALyraPlayerController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_30_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_33_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnPlayerStatePawnSet); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraReplayPlayerController(); \ + friend struct Z_Construct_UClass_ALyraReplayPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ALyraReplayPlayerController, ALyraPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraReplayPlayerController) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ALyraReplayPlayerController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraReplayPlayerController(ALyraReplayPlayerController&&); \ + ALyraReplayPlayerController(const ALyraReplayPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraReplayPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraReplayPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraReplayPlayerController) \ + NO_API virtual ~ALyraReplayPlayerController(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_145_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h_148_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp new file mode 100644 index 00000000..a5537c45 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Input/LyraPlayerMappableKeyProfile.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerMappableKeyProfile() {} + +// Begin Cross Module References +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedPlayerMappableKeyProfile(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlayerMappableKeyProfile +void ULyraPlayerMappableKeyProfile::StaticRegisterNativesULyraPlayerMappableKeyProfile() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerMappableKeyProfile); +UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile_NoRegister() +{ + return ULyraPlayerMappableKeyProfile::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Input/LyraPlayerMappableKeyProfile.h" }, + { "ModuleRelativePath", "Input/LyraPlayerMappableKeyProfile.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UEnhancedPlayerMappableKeyProfile, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::ClassParams = { + &ULyraPlayerMappableKeyProfile::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerMappableKeyProfile() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton, Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerMappableKeyProfile::StaticClass(); +} +ULyraPlayerMappableKeyProfile::ULyraPlayerMappableKeyProfile(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerMappableKeyProfile); +ULyraPlayerMappableKeyProfile::~ULyraPlayerMappableKeyProfile() {} +// End Class ULyraPlayerMappableKeyProfile + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlayerMappableKeyProfile, ULyraPlayerMappableKeyProfile::StaticClass, TEXT("ULyraPlayerMappableKeyProfile"), &Z_Registration_Info_UClass_ULyraPlayerMappableKeyProfile, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerMappableKeyProfile), 2587236365U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_444754908(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h new file mode 100644 index 00000000..9485f566 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/LyraPlayerMappableKeyProfile.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerMappableKeyProfile_generated_h +#error "LyraPlayerMappableKeyProfile.generated.h already included, missing '#pragma once' in LyraPlayerMappableKeyProfile.h" +#endif +#define LYRAGAME_LyraPlayerMappableKeyProfile_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerMappableKeyProfile(); \ + friend struct Z_Construct_UClass_ULyraPlayerMappableKeyProfile_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerMappableKeyProfile, UEnhancedPlayerMappableKeyProfile, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerMappableKeyProfile) + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraPlayerMappableKeyProfile(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerMappableKeyProfile(ULyraPlayerMappableKeyProfile&&); \ + ULyraPlayerMappableKeyProfile(const ULyraPlayerMappableKeyProfile&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerMappableKeyProfile); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerMappableKeyProfile); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerMappableKeyProfile) \ + NO_API virtual ~ULyraPlayerMappableKeyProfile(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_9_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h_12_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Input_LyraPlayerMappableKeyProfile_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp new file mode 100644 index 00000000..a2b369e3 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerSpawningManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerSpawningManagerComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraPlayerSpawningManagerComponent Function K2_OnFinishRestartPlayer +struct LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms +{ + AController* Player; + FRotator StartRotation; +}; +static const FName NAME_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer = FName(TEXT("K2_OnFinishRestartPlayer")); +void ULyraPlayerSpawningManagerComponent::K2_OnFinishRestartPlayer(AController* Player, FRotator const& StartRotation) +{ + LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms Parms; + Parms.Player=Player; + Parms.StartRotation=StartRotation; + UFunction* Func = FindFunctionChecked(NAME_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "DisplayName", "OnFinishRestartPlayer" }, + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartRotation_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Player; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartRotation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_Player = { "Player", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms, Player), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_StartRotation = { "StartRotation", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms, StartRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartRotation_MetaData), NewProp_StartRotation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_Player, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::NewProp_StartRotation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, nullptr, "K2_OnFinishRestartPlayer", nullptr, nullptr, Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::PropPointers), sizeof(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08C80800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerSpawningManagerComponent_eventK2_OnFinishRestartPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraPlayerSpawningManagerComponent Function K2_OnFinishRestartPlayer + +// Begin Class ULyraPlayerSpawningManagerComponent +void ULyraPlayerSpawningManagerComponent::StaticRegisterNativesULyraPlayerSpawningManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraPlayerSpawningManagerComponent); +UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_NoRegister() +{ + return ULyraPlayerSpawningManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * @class ULyraPlayerSpawningManagerComponent\n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "@class ULyraPlayerSpawningManagerComponent" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedPlayerStarts_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** ~ALyraGameMode */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerSpawningManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "~ALyraGameMode" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_CachedPlayerStarts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CachedPlayerStarts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraPlayerSpawningManagerComponent_K2_OnFinishRestartPlayer, "K2_OnFinishRestartPlayer" }, // 488054649 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts_Inner = { "CachedPlayerStarts", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ALyraPlayerStart_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts = { "CachedPlayerStarts", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraPlayerSpawningManagerComponent, CachedPlayerStarts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedPlayerStarts_MetaData), NewProp_CachedPlayerStarts_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::NewProp_CachedPlayerStarts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::ClassParams = { + &ULyraPlayerSpawningManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::PropPointers), + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraPlayerSpawningManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraPlayerSpawningManagerComponent); +ULyraPlayerSpawningManagerComponent::~ULyraPlayerSpawningManagerComponent() {} +// End Class ULyraPlayerSpawningManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, ULyraPlayerSpawningManagerComponent::StaticClass, TEXT("ULyraPlayerSpawningManagerComponent"), &Z_Registration_Info_UClass_ULyraPlayerSpawningManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraPlayerSpawningManagerComponent), 83959197U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_2675890202(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h new file mode 100644 index 00000000..b0ccac4d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerSpawningManagerComponent.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerSpawningManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AController; +#ifdef LYRAGAME_LyraPlayerSpawningManagerComponent_generated_h +#error "LyraPlayerSpawningManagerComponent.generated.h already included, missing '#pragma once' in LyraPlayerSpawningManagerComponent.h" +#endif +#define LYRAGAME_LyraPlayerSpawningManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraPlayerSpawningManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraPlayerSpawningManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraPlayerSpawningManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraPlayerSpawningManagerComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraPlayerSpawningManagerComponent(ULyraPlayerSpawningManagerComponent&&); \ + ULyraPlayerSpawningManagerComponent(const ULyraPlayerSpawningManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraPlayerSpawningManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraPlayerSpawningManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraPlayerSpawningManagerComponent) \ + NO_API virtual ~ULyraPlayerSpawningManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerSpawningManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp new file mode 100644 index 00000000..9bf55b51 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerStart.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerStart() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerStart(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraPlayerStart +void ALyraPlayerStart::StaticRegisterNativesALyraPlayerStart() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerStart); +UClass* Z_Construct_UClass_ALyraPlayerStart_NoRegister() +{ + return ALyraPlayerStart::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerStart_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerStart\n * \n * Base player starts that can be used by a lot of modes.\n */" }, +#endif + { "HideCategories", "Collision Lighting LightColor Force" }, + { "IncludePath", "Player/LyraPlayerStart.h" }, + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerStart\n\nBase player starts that can be used by a lot of modes." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClaimingController_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The controller that claimed this PlayerStart */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The controller that claimed this PlayerStart" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExpirationCheckInterval_MetaData[] = { + { "Category", "Player Start Claiming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Interval in which we'll check if this player start is not colliding with anyone anymore */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Interval in which we'll check if this player start is not colliding with anyone anymore" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StartPointTags_MetaData[] = { + { "Category", "LyraPlayerStart" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Tags to identify this player start */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerStart.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags to identify this player start" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ClaimingController; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ExpirationCheckInterval; + static const UECodeGen_Private::FStructPropertyParams NewProp_StartPointTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ClaimingController = { "ClaimingController", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, ClaimingController), Z_Construct_UClass_AController_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClaimingController_MetaData), NewProp_ClaimingController_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ExpirationCheckInterval = { "ExpirationCheckInterval", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, ExpirationCheckInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExpirationCheckInterval_MetaData), NewProp_ExpirationCheckInterval_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_StartPointTags = { "StartPointTags", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerStart, StartPointTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StartPointTags_MetaData), NewProp_StartPointTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ClaimingController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_ExpirationCheckInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerStart_Statics::NewProp_StartPointTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerStart_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerStart, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerStart_Statics::ClassParams = { + &ALyraPlayerStart::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerStart_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerStart_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerStart() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton, Z_Construct_UClass_ALyraPlayerStart_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerStart.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerStart::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerStart); +ALyraPlayerStart::~ALyraPlayerStart() {} +// End Class ALyraPlayerStart + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerStart, ALyraPlayerStart::StaticClass, TEXT("ALyraPlayerStart"), &Z_Registration_Info_UClass_ALyraPlayerStart, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerStart), 3216506585U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_2900205955(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.generated.h new file mode 100644 index 00000000..4b914785 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerStart.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerStart.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraPlayerStart_generated_h +#error "LyraPlayerStart.generated.h already included, missing '#pragma once' in LyraPlayerStart.h" +#endif +#define LYRAGAME_LyraPlayerStart_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerStart(); \ + friend struct Z_Construct_UClass_ALyraPlayerStart_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerStart, APlayerStart, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerStart) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerStart(ALyraPlayerStart&&); \ + ALyraPlayerStart(const ALyraPlayerStart&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerStart); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerStart); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerStart) \ + NO_API virtual ~ALyraPlayerStart(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerStart_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp new file mode 100644 index 00000000..3e479b62 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.gen.cpp @@ -0,0 +1,894 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Player/LyraPlayerState.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "LyraGame/System/GameplayTagStack.h" +#include "Runtime/AIModule/Classes/GenericTeamAgentInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraPlayerState() {} + +// Begin Cross Module References +AIMODULE_API UScriptStruct* Z_Construct_UScriptStruct_FGenericTeamId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UAbilitySystemInterface_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerController_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCombatSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraHealthSet_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPawnData_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum ELyraPlayerConnectionType +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraPlayerConnectionType; +static UEnum* ELyraPlayerConnectionType_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraPlayerConnectionType")); + } + return Z_Registration_Info_UEnum_ELyraPlayerConnectionType.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraPlayerConnectionType_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Defines the types of client connected */" }, +#endif + { "InactivePlayer.Comment", "// A deactivated player (disconnected)\n" }, + { "InactivePlayer.Name", "ELyraPlayerConnectionType::InactivePlayer" }, + { "InactivePlayer.ToolTip", "A deactivated player (disconnected)" }, + { "LiveSpectator.Comment", "// Spectator connected to a running game\n" }, + { "LiveSpectator.Name", "ELyraPlayerConnectionType::LiveSpectator" }, + { "LiveSpectator.ToolTip", "Spectator connected to a running game" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "Player.Comment", "// An active player\n" }, + { "Player.Name", "ELyraPlayerConnectionType::Player" }, + { "Player.ToolTip", "An active player" }, + { "ReplaySpectator.Comment", "// Spectating a demo recording offline\n" }, + { "ReplaySpectator.Name", "ELyraPlayerConnectionType::ReplaySpectator" }, + { "ReplaySpectator.ToolTip", "Spectating a demo recording offline" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Defines the types of client connected" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraPlayerConnectionType::Player", (int64)ELyraPlayerConnectionType::Player }, + { "ELyraPlayerConnectionType::LiveSpectator", (int64)ELyraPlayerConnectionType::LiveSpectator }, + { "ELyraPlayerConnectionType::ReplaySpectator", (int64)ELyraPlayerConnectionType::ReplaySpectator }, + { "ELyraPlayerConnectionType::InactivePlayer", (int64)ELyraPlayerConnectionType::InactivePlayer }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraPlayerConnectionType", + "ELyraPlayerConnectionType", + Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType() +{ + if (!Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraPlayerConnectionType.InnerSingleton; +} +// End Enum ELyraPlayerConnectionType + +// Begin Class ALyraPlayerState Function AddStatTagStack +struct Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics +{ + struct LyraPlayerState_eventAddStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventAddStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventAddStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "AddStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::LyraPlayerState_eventAddStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::LyraPlayerState_eventAddStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execAddStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function AddStatTagStack + +// Begin Class ALyraPlayerState Function ClientBroadcastMessage +struct LyraPlayerState_eventClientBroadcastMessage_Parms +{ + FLyraVerbMessage Message; +}; +static const FName NAME_ALyraPlayerState_ClientBroadcastMessage = FName(TEXT("ClientBroadcastMessage")); +void ALyraPlayerState::ClientBroadcastMessage(const FLyraVerbMessage Message) +{ + LyraPlayerState_eventClientBroadcastMessage_Parms Parms; + Parms.Message=Message; + UFunction* Func = FindFunctionChecked(NAME_ALyraPlayerState_ClientBroadcastMessage); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Send a message to just this player\n// (use only for client notifications like accolades, quest toasts, etc... that can handle being occasionally lost)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a message to just this player\n(use only for client notifications like accolades, quest toasts, etc... that can handle being occasionally lost)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventClientBroadcastMessage_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "ClientBroadcastMessage", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::PropPointers), sizeof(LyraPlayerState_eventClientBroadcastMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x05020C40, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraPlayerState_eventClientBroadcastMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execClientBroadcastMessage) +{ + P_GET_STRUCT(FLyraVerbMessage,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientBroadcastMessage_Implementation(Z_Param_Message); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function ClientBroadcastMessage + +// Begin Class ALyraPlayerState Function GetLyraAbilitySystemComponent +struct Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics +{ + struct LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms + { + ULyraAbilitySystemComponent* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms, ReturnValue), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetLyraAbilitySystemComponent", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::LyraPlayerState_eventGetLyraAbilitySystemComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetLyraAbilitySystemComponent) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraAbilitySystemComponent**)Z_Param__Result=P_THIS->GetLyraAbilitySystemComponent(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetLyraAbilitySystemComponent + +// Begin Class ALyraPlayerState Function GetLyraPlayerController +struct Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics +{ + struct LyraPlayerState_eventGetLyraPlayerController_Parms + { + ALyraPlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|PlayerState" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetLyraPlayerController_Parms, ReturnValue), Z_Construct_UClass_ALyraPlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetLyraPlayerController", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::LyraPlayerState_eventGetLyraPlayerController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::LyraPlayerState_eventGetLyraPlayerController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetLyraPlayerController) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ALyraPlayerController**)Z_Param__Result=P_THIS->GetLyraPlayerController(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetLyraPlayerController + +// Begin Class ALyraPlayerState Function GetSquadId +struct Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics +{ + struct LyraPlayerState_eventGetSquadId_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the Squad ID of the squad the player belongs to. */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the Squad ID of the squad the player belongs to." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetSquadId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetSquadId", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::LyraPlayerState_eventGetSquadId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::LyraPlayerState_eventGetSquadId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetSquadId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetSquadId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetSquadId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetSquadId(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetSquadId + +// Begin Class ALyraPlayerState Function GetStatTagStackCount +struct Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics +{ + struct LyraPlayerState_eventGetStatTagStackCount_Parms + { + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetStatTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetStatTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetStatTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::LyraPlayerState_eventGetStatTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::LyraPlayerState_eventGetStatTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetStatTagStackCount) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetStatTagStackCount(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetStatTagStackCount + +// Begin Class ALyraPlayerState Function GetTeamId +struct Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics +{ + struct LyraPlayerState_eventGetTeamId_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the Team ID of the team the player belongs to. */" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the Team ID of the team the player belongs to." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventGetTeamId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "GetTeamId", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::LyraPlayerState_eventGetTeamId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::LyraPlayerState_eventGetTeamId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_GetTeamId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_GetTeamId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execGetTeamId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetTeamId(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function GetTeamId + +// Begin Class ALyraPlayerState Function HasStatTag +struct Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics +{ + struct LyraPlayerState_eventHasStatTag_Parms + { + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventHasStatTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraPlayerState_eventHasStatTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraPlayerState_eventHasStatTag_Parms), &Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "HasStatTag", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::LyraPlayerState_eventHasStatTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::LyraPlayerState_eventHasStatTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_HasStatTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_HasStatTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execHasStatTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasStatTag(Z_Param_Tag); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function HasStatTag + +// Begin Class ALyraPlayerState Function OnRep_MySquadID +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_MySquadID", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_MySquadID) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MySquadID(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_MySquadID + +// Begin Class ALyraPlayerState Function OnRep_MyTeamID +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics +{ + struct LyraPlayerState_eventOnRep_MyTeamID_Parms + { + FGenericTeamId OldTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventOnRep_MyTeamID_Parms, OldTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(0, nullptr) }; // 3379033268 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::NewProp_OldTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_MyTeamID", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::LyraPlayerState_eventOnRep_MyTeamID_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::LyraPlayerState_eventOnRep_MyTeamID_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_MyTeamID) +{ + P_GET_STRUCT(FGenericTeamId,Z_Param_OldTeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MyTeamID(Z_Param_OldTeamID); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_MyTeamID + +// Begin Class ALyraPlayerState Function OnRep_PawnData +struct Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "OnRep_PawnData", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execOnRep_PawnData) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_PawnData(); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function OnRep_PawnData + +// Begin Class ALyraPlayerState Function RemoveStatTagStack +struct Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics +{ + struct LyraPlayerState_eventRemoveStatTagStack_Parms + { + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventRemoveStatTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraPlayerState_eventRemoveStatTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraPlayerState, nullptr, "RemoveStatTagStack", nullptr, nullptr, Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::LyraPlayerState_eventRemoveStatTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::LyraPlayerState_eventRemoveStatTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraPlayerState::execRemoveStatTagStack) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveStatTagStack(Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ALyraPlayerState Function RemoveStatTagStack + +// Begin Class ALyraPlayerState +void ALyraPlayerState::StaticRegisterNativesALyraPlayerState() +{ + UClass* Class = ALyraPlayerState::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddStatTagStack", &ALyraPlayerState::execAddStatTagStack }, + { "ClientBroadcastMessage", &ALyraPlayerState::execClientBroadcastMessage }, + { "GetLyraAbilitySystemComponent", &ALyraPlayerState::execGetLyraAbilitySystemComponent }, + { "GetLyraPlayerController", &ALyraPlayerState::execGetLyraPlayerController }, + { "GetSquadId", &ALyraPlayerState::execGetSquadId }, + { "GetStatTagStackCount", &ALyraPlayerState::execGetStatTagStackCount }, + { "GetTeamId", &ALyraPlayerState::execGetTeamId }, + { "HasStatTag", &ALyraPlayerState::execHasStatTag }, + { "OnRep_MySquadID", &ALyraPlayerState::execOnRep_MySquadID }, + { "OnRep_MyTeamID", &ALyraPlayerState::execOnRep_MyTeamID }, + { "OnRep_PawnData", &ALyraPlayerState::execOnRep_PawnData }, + { "RemoveStatTagStack", &ALyraPlayerState::execRemoveStatTagStack }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraPlayerState); +UClass* Z_Construct_UClass_ALyraPlayerState_NoRegister() +{ + return ALyraPlayerState::StaticClass(); +} +struct Z_Construct_UClass_ALyraPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ALyraPlayerState\n *\n *\x09""Base player state class used by this project.\n */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Player/LyraPlayerState.h" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ALyraPlayerState\n\n Base player state class used by this project." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PawnData_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AbilitySystemComponent_MetaData[] = { + { "Category", "Lyra|PlayerState" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The ability system component sub-object used by player characters.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The ability system component sub-object used by player characters." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HealthSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Health attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Health attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CombatSet_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Combat attribute set used by this actor.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Combat attribute set used by this actor." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyPlayerConnectionType_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamChangedDelegate_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MyTeamID_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MySquadID_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StatTags_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReplicatedViewRotation_MetaData[] = { + { "ModuleRelativePath", "Player/LyraPlayerState.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PawnData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AbilitySystemComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_HealthSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CombatSet; + static const UECodeGen_Private::FBytePropertyParams NewProp_MyPlayerConnectionType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MyPlayerConnectionType; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamChangedDelegate; + static const UECodeGen_Private::FStructPropertyParams NewProp_MyTeamID; + static const UECodeGen_Private::FIntPropertyParams NewProp_MySquadID; + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReplicatedViewRotation; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraPlayerState_AddStatTagStack, "AddStatTagStack" }, // 2640783317 + { &Z_Construct_UFunction_ALyraPlayerState_ClientBroadcastMessage, "ClientBroadcastMessage" }, // 279005051 + { &Z_Construct_UFunction_ALyraPlayerState_GetLyraAbilitySystemComponent, "GetLyraAbilitySystemComponent" }, // 1921172123 + { &Z_Construct_UFunction_ALyraPlayerState_GetLyraPlayerController, "GetLyraPlayerController" }, // 2986415204 + { &Z_Construct_UFunction_ALyraPlayerState_GetSquadId, "GetSquadId" }, // 3939414160 + { &Z_Construct_UFunction_ALyraPlayerState_GetStatTagStackCount, "GetStatTagStackCount" }, // 966768117 + { &Z_Construct_UFunction_ALyraPlayerState_GetTeamId, "GetTeamId" }, // 3923204237 + { &Z_Construct_UFunction_ALyraPlayerState_HasStatTag, "HasStatTag" }, // 1855966748 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_MySquadID, "OnRep_MySquadID" }, // 2685631945 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_MyTeamID, "OnRep_MyTeamID" }, // 1268254998 + { &Z_Construct_UFunction_ALyraPlayerState_OnRep_PawnData, "OnRep_PawnData" }, // 724973030 + { &Z_Construct_UFunction_ALyraPlayerState_RemoveStatTagStack, "RemoveStatTagStack" }, // 1559879148 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_PawnData = { "PawnData", "OnRep_PawnData", (EPropertyFlags)0x0124080100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, PawnData), Z_Construct_UClass_ULyraPawnData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PawnData_MetaData), NewProp_PawnData_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_AbilitySystemComponent = { "AbilitySystemComponent", nullptr, (EPropertyFlags)0x01440000000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, AbilitySystemComponent), Z_Construct_UClass_ULyraAbilitySystemComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AbilitySystemComponent_MetaData), NewProp_AbilitySystemComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_HealthSet = { "HealthSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, HealthSet), Z_Construct_UClass_ULyraHealthSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HealthSet_MetaData), NewProp_HealthSet_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_CombatSet = { "CombatSet", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, CombatSet), Z_Construct_UClass_ULyraCombatSet_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CombatSet_MetaData), NewProp_CombatSet_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType = { "MyPlayerConnectionType", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MyPlayerConnectionType), Z_Construct_UEnum_LyraGame_ELyraPlayerConnectionType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyPlayerConnectionType_MetaData), NewProp_MyPlayerConnectionType_MetaData) }; // 1972617869 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_OnTeamChangedDelegate = { "OnTeamChangedDelegate", nullptr, (EPropertyFlags)0x0040000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, OnTeamChangedDelegate), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamChangedDelegate_MetaData), NewProp_OnTeamChangedDelegate_MetaData) }; // 1518443978 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyTeamID = { "MyTeamID", "OnRep_MyTeamID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MyTeamID), Z_Construct_UScriptStruct_FGenericTeamId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MyTeamID_MetaData), NewProp_MyTeamID_MetaData) }; // 3379033268 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MySquadID = { "MySquadID", "OnRep_MySquadID", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, MySquadID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MySquadID_MetaData), NewProp_MySquadID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_StatTags = { "StatTags", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, StatTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StatTags_MetaData), NewProp_StatTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_ReplicatedViewRotation = { "ReplicatedViewRotation", nullptr, (EPropertyFlags)0x0040000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraPlayerState, ReplicatedViewRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReplicatedViewRotation_MetaData), NewProp_ReplicatedViewRotation_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_PawnData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_AbilitySystemComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_HealthSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_CombatSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyPlayerConnectionType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_OnTeamChangedDelegate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MyTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_MySquadID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_StatTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraPlayerState_Statics::NewProp_ReplicatedViewRotation, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraPlayerState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPlayerState, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraPlayerState_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAbilitySystemInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerState, IAbilitySystemInterface), false }, // 2272790346 + { Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraPlayerState, ILyraTeamAgentInterface), false }, // 361203859 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraPlayerState_Statics::ClassParams = { + &ALyraPlayerState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraPlayerState_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraPlayerState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraPlayerState() +{ + if (!Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton, Z_Construct_UClass_ALyraPlayerState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraPlayerState.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraPlayerState::StaticClass(); +} +void ALyraPlayerState::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_PawnData(TEXT("PawnData")); + static const FName Name_MyPlayerConnectionType(TEXT("MyPlayerConnectionType")); + static const FName Name_MyTeamID(TEXT("MyTeamID")); + static const FName Name_MySquadID(TEXT("MySquadID")); + static const FName Name_StatTags(TEXT("StatTags")); + static const FName Name_ReplicatedViewRotation(TEXT("ReplicatedViewRotation")); + const bool bIsValid = true + && Name_PawnData == ClassReps[(int32)ENetFields_Private::PawnData].Property->GetFName() + && Name_MyPlayerConnectionType == ClassReps[(int32)ENetFields_Private::MyPlayerConnectionType].Property->GetFName() + && Name_MyTeamID == ClassReps[(int32)ENetFields_Private::MyTeamID].Property->GetFName() + && Name_MySquadID == ClassReps[(int32)ENetFields_Private::MySquadID].Property->GetFName() + && Name_StatTags == ClassReps[(int32)ENetFields_Private::StatTags].Property->GetFName() + && Name_ReplicatedViewRotation == ClassReps[(int32)ENetFields_Private::ReplicatedViewRotation].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraPlayerState")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraPlayerState); +ALyraPlayerState::~ALyraPlayerState() {} +// End Class ALyraPlayerState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraPlayerConnectionType_StaticEnum, TEXT("ELyraPlayerConnectionType"), &Z_Registration_Info_UEnum_ELyraPlayerConnectionType, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1972617869U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraPlayerState, ALyraPlayerState::StaticClass, TEXT("ALyraPlayerState"), &Z_Registration_Info_UClass_ALyraPlayerState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraPlayerState), 179740478U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_4042952888(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.generated.h new file mode 100644 index 00000000..ef89f449 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerState.generated.h @@ -0,0 +1,103 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Player/LyraPlayerState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ALyraPlayerController; +class ULyraAbilitySystemComponent; +struct FGameplayTag; +struct FGenericTeamId; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraPlayerState_generated_h +#error "LyraPlayerState.generated.h already included, missing '#pragma once' in LyraPlayerState.h" +#endif +#define LYRAGAME_LyraPlayerState_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientBroadcastMessage_Implementation(const FLyraVerbMessage Message); \ + DECLARE_FUNCTION(execOnRep_MySquadID); \ + DECLARE_FUNCTION(execOnRep_MyTeamID); \ + DECLARE_FUNCTION(execOnRep_PawnData); \ + DECLARE_FUNCTION(execClientBroadcastMessage); \ + DECLARE_FUNCTION(execHasStatTag); \ + DECLARE_FUNCTION(execGetStatTagStackCount); \ + DECLARE_FUNCTION(execRemoveStatTagStack); \ + DECLARE_FUNCTION(execAddStatTagStack); \ + DECLARE_FUNCTION(execGetTeamId); \ + DECLARE_FUNCTION(execGetSquadId); \ + DECLARE_FUNCTION(execGetLyraAbilitySystemComponent); \ + DECLARE_FUNCTION(execGetLyraPlayerController); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraPlayerState(); \ + friend struct Z_Construct_UClass_ALyraPlayerState_Statics; \ +public: \ + DECLARE_CLASS(ALyraPlayerState, AModularPlayerState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraPlayerState) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + \ + virtual UObject* _getUObject() const override { return const_cast(this); } \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + PawnData=NETFIELD_REP_START, \ + MyPlayerConnectionType, \ + MyTeamID, \ + MySquadID, \ + StatTags, \ + ReplicatedViewRotation, \ + NETFIELD_REP_END=ReplicatedViewRotation }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraPlayerState(ALyraPlayerState&&); \ + ALyraPlayerState(const ALyraPlayerState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraPlayerState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraPlayerState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraPlayerState) \ + NO_API virtual ~ALyraPlayerState(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_48_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h_51_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Player_LyraPlayerState_h + + +#define FOREACH_ENUM_ELYRAPLAYERCONNECTIONTYPE(op) \ + op(ELyraPlayerConnectionType::Player) \ + op(ELyraPlayerConnectionType::LiveSpectator) \ + op(ELyraPlayerConnectionType::ReplaySpectator) \ + op(ELyraPlayerConnectionType::InactivePlayer) + +enum class ELyraPlayerConnectionType : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp new file mode 100644 index 00000000..78d9e4df --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.gen.cpp @@ -0,0 +1,743 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Equipment/LyraQuickBarComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraQuickBarComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraQuickBarComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraQuickBarComponent_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraQuickBarComponent Function AddItemToSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics +{ + struct LyraQuickBarComponent_eventAddItemToSlot_Parms + { + int32 SlotIndex; + ULyraInventoryItemInstance* Item; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_SlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Item; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_SlotIndex = { "SlotIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventAddItemToSlot_Parms, SlotIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_Item = { "Item", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventAddItemToSlot_Parms, Item), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_SlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::NewProp_Item, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "AddItemToSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::LyraQuickBarComponent_eventAddItemToSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::LyraQuickBarComponent_eventAddItemToSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execAddItemToSlot) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_SlotIndex); + P_GET_OBJECT(ULyraInventoryItemInstance,Z_Param_Item); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddItemToSlot(Z_Param_SlotIndex,Z_Param_Item); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function AddItemToSlot + +// Begin Class ULyraQuickBarComponent Function CycleActiveSlotBackward +struct Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "CycleActiveSlotBackward", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execCycleActiveSlotBackward) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleActiveSlotBackward(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function CycleActiveSlotBackward + +// Begin Class ULyraQuickBarComponent Function CycleActiveSlotForward +struct Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "CycleActiveSlotForward", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execCycleActiveSlotForward) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleActiveSlotForward(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function CycleActiveSlotForward + +// Begin Class ULyraQuickBarComponent Function GetActiveSlotIndex +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics +{ + struct LyraQuickBarComponent_eventGetActiveSlotIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetActiveSlotIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetActiveSlotIndex", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::LyraQuickBarComponent_eventGetActiveSlotIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::LyraQuickBarComponent_eventGetActiveSlotIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetActiveSlotIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetActiveSlotIndex(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetActiveSlotIndex + +// Begin Class ULyraQuickBarComponent Function GetActiveSlotItem +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics +{ + struct LyraQuickBarComponent_eventGetActiveSlotItem_Parms + { + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetActiveSlotItem_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetActiveSlotItem", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::LyraQuickBarComponent_eventGetActiveSlotItem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::LyraQuickBarComponent_eventGetActiveSlotItem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetActiveSlotItem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->GetActiveSlotItem(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetActiveSlotItem + +// Begin Class ULyraQuickBarComponent Function GetNextFreeItemSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics +{ + struct LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetNextFreeItemSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::LyraQuickBarComponent_eventGetNextFreeItemSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetNextFreeItemSlot) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNextFreeItemSlot(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetNextFreeItemSlot + +// Begin Class ULyraQuickBarComponent Function GetSlots +struct Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics +{ + struct LyraQuickBarComponent_eventGetSlots_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventGetSlots_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "GetSlots", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::LyraQuickBarComponent_eventGetSlots_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::LyraQuickBarComponent_eventGetSlots_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execGetSlots) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetSlots(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function GetSlots + +// Begin Class ULyraQuickBarComponent Function OnRep_ActiveSlotIndex +struct Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "OnRep_ActiveSlotIndex", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execOnRep_ActiveSlotIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_ActiveSlotIndex(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function OnRep_ActiveSlotIndex + +// Begin Class ULyraQuickBarComponent Function OnRep_Slots +struct Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "OnRep_Slots", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execOnRep_Slots) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_Slots(); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function OnRep_Slots + +// Begin Class ULyraQuickBarComponent Function RemoveItemFromSlot +struct Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics +{ + struct LyraQuickBarComponent_eventRemoveItemFromSlot_Parms + { + int32 SlotIndex; + ULyraInventoryItemInstance* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_SlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_SlotIndex = { "SlotIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventRemoveItemFromSlot_Parms, SlotIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventRemoveItemFromSlot_Parms, ReturnValue), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_SlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "RemoveItemFromSlot", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::LyraQuickBarComponent_eventRemoveItemFromSlot_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::LyraQuickBarComponent_eventRemoveItemFromSlot_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execRemoveItemFromSlot) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_SlotIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraInventoryItemInstance**)Z_Param__Result=P_THIS->RemoveItemFromSlot(Z_Param_SlotIndex); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function RemoveItemFromSlot + +// Begin Class ULyraQuickBarComponent Function SetActiveSlotIndex +struct LyraQuickBarComponent_eventSetActiveSlotIndex_Parms +{ + int32 NewIndex; +}; +static const FName NAME_ULyraQuickBarComponent_SetActiveSlotIndex = FName(TEXT("SetActiveSlotIndex")); +void ULyraQuickBarComponent::SetActiveSlotIndex(int32 NewIndex) +{ + LyraQuickBarComponent_eventSetActiveSlotIndex_Parms Parms; + Parms.NewIndex=NewIndex; + UFunction* Func = FindFunctionChecked(NAME_ULyraQuickBarComponent_SetActiveSlotIndex); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NewIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::NewProp_NewIndex = { "NewIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms, NewIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::NewProp_NewIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraQuickBarComponent, nullptr, "SetActiveSlotIndex", nullptr, nullptr, Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::PropPointers), sizeof(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04220CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraQuickBarComponent_eventSetActiveSlotIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraQuickBarComponent::execSetActiveSlotIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_NewIndex); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetActiveSlotIndex_Implementation(Z_Param_NewIndex); + P_NATIVE_END; +} +// End Class ULyraQuickBarComponent Function SetActiveSlotIndex + +// Begin Class ULyraQuickBarComponent +void ULyraQuickBarComponent::StaticRegisterNativesULyraQuickBarComponent() +{ + UClass* Class = ULyraQuickBarComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddItemToSlot", &ULyraQuickBarComponent::execAddItemToSlot }, + { "CycleActiveSlotBackward", &ULyraQuickBarComponent::execCycleActiveSlotBackward }, + { "CycleActiveSlotForward", &ULyraQuickBarComponent::execCycleActiveSlotForward }, + { "GetActiveSlotIndex", &ULyraQuickBarComponent::execGetActiveSlotIndex }, + { "GetActiveSlotItem", &ULyraQuickBarComponent::execGetActiveSlotItem }, + { "GetNextFreeItemSlot", &ULyraQuickBarComponent::execGetNextFreeItemSlot }, + { "GetSlots", &ULyraQuickBarComponent::execGetSlots }, + { "OnRep_ActiveSlotIndex", &ULyraQuickBarComponent::execOnRep_ActiveSlotIndex }, + { "OnRep_Slots", &ULyraQuickBarComponent::execOnRep_Slots }, + { "RemoveItemFromSlot", &ULyraQuickBarComponent::execRemoveItemFromSlot }, + { "SetActiveSlotIndex", &ULyraQuickBarComponent::execSetActiveSlotIndex }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraQuickBarComponent); +UClass* Z_Construct_UClass_ULyraQuickBarComponent_NoRegister() +{ + return ULyraQuickBarComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraQuickBarComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Equipment/LyraQuickBarComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumSlots_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slots_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveSlotIndex_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquippedItem_MetaData[] = { + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_NumSlots; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slots_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Slots; + static const UECodeGen_Private::FIntPropertyParams NewProp_ActiveSlotIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EquippedItem; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraQuickBarComponent_AddItemToSlot, "AddItemToSlot" }, // 3863202267 + { &Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotBackward, "CycleActiveSlotBackward" }, // 492003377 + { &Z_Construct_UFunction_ULyraQuickBarComponent_CycleActiveSlotForward, "CycleActiveSlotForward" }, // 3331352916 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotIndex, "GetActiveSlotIndex" }, // 3700513075 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetActiveSlotItem, "GetActiveSlotItem" }, // 1038067759 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetNextFreeItemSlot, "GetNextFreeItemSlot" }, // 796166886 + { &Z_Construct_UFunction_ULyraQuickBarComponent_GetSlots, "GetSlots" }, // 1237960195 + { &Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_ActiveSlotIndex, "OnRep_ActiveSlotIndex" }, // 1285315285 + { &Z_Construct_UFunction_ULyraQuickBarComponent_OnRep_Slots, "OnRep_Slots" }, // 4268362867 + { &Z_Construct_UFunction_ULyraQuickBarComponent_RemoveItemFromSlot, "RemoveItemFromSlot" }, // 4162228007 + { &Z_Construct_UFunction_ULyraQuickBarComponent_SetActiveSlotIndex, "SetActiveSlotIndex" }, // 2179969190 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_NumSlots = { "NumSlots", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, NumSlots), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumSlots_MetaData), NewProp_NumSlots_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots_Inner = { "Slots", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots = { "Slots", "OnRep_Slots", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, Slots), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slots_MetaData), NewProp_Slots_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_ActiveSlotIndex = { "ActiveSlotIndex", "OnRep_ActiveSlotIndex", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, ActiveSlotIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveSlotIndex_MetaData), NewProp_ActiveSlotIndex_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_EquippedItem = { "EquippedItem", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraQuickBarComponent, EquippedItem), Z_Construct_UClass_ULyraEquipmentInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquippedItem_MetaData), NewProp_EquippedItem_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_NumSlots, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_Slots, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_ActiveSlotIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraQuickBarComponent_Statics::NewProp_EquippedItem, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraQuickBarComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraQuickBarComponent_Statics::ClassParams = { + &ULyraQuickBarComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraQuickBarComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraQuickBarComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraQuickBarComponent() +{ + if (!Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton, Z_Construct_UClass_ULyraQuickBarComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraQuickBarComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraQuickBarComponent::StaticClass(); +} +void ULyraQuickBarComponent::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_Slots(TEXT("Slots")); + static const FName Name_ActiveSlotIndex(TEXT("ActiveSlotIndex")); + const bool bIsValid = true + && Name_Slots == ClassReps[(int32)ENetFields_Private::Slots].Property->GetFName() + && Name_ActiveSlotIndex == ClassReps[(int32)ENetFields_Private::ActiveSlotIndex].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ULyraQuickBarComponent")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraQuickBarComponent); +ULyraQuickBarComponent::~ULyraQuickBarComponent() {} +// End Class ULyraQuickBarComponent + +// Begin ScriptStruct FLyraQuickBarSlotsChangedMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage; +class UScriptStruct* FLyraQuickBarSlotsChangedMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQuickBarSlotsChangedMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQuickBarSlotsChangedMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slots_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slots_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Slots; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarSlotsChangedMessage, Owner), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots_Inner = { "Slots", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots = { "Slots", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarSlotsChangedMessage, Slots), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slots_MetaData), NewProp_Slots_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Owner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewProp_Slots, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQuickBarSlotsChangedMessage", + Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::PropPointers), + sizeof(FLyraQuickBarSlotsChangedMessage), + alignof(FLyraQuickBarSlotsChangedMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage.InnerSingleton; +} +// End ScriptStruct FLyraQuickBarSlotsChangedMessage + +// Begin ScriptStruct FLyraQuickBarActiveIndexChangedMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage; +class UScriptStruct* FLyraQuickBarActiveIndexChangedMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraQuickBarActiveIndexChangedMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraQuickBarActiveIndexChangedMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActiveIndex_MetaData[] = { + { "Category", "Inventory" }, + { "ModuleRelativePath", "Equipment/LyraQuickBarComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FIntPropertyParams NewProp_ActiveIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarActiveIndexChangedMessage, Owner), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_ActiveIndex = { "ActiveIndex", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraQuickBarActiveIndexChangedMessage, ActiveIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActiveIndex_MetaData), NewProp_ActiveIndex_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_Owner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewProp_ActiveIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraQuickBarActiveIndexChangedMessage", + Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::PropPointers), + sizeof(FLyraQuickBarActiveIndexChangedMessage), + alignof(FLyraQuickBarActiveIndexChangedMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage.InnerSingleton; +} +// End ScriptStruct FLyraQuickBarActiveIndexChangedMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraQuickBarSlotsChangedMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics::NewStructOps, TEXT("LyraQuickBarSlotsChangedMessage"), &Z_Registration_Info_UScriptStruct_LyraQuickBarSlotsChangedMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQuickBarSlotsChangedMessage), 1924812973U) }, + { FLyraQuickBarActiveIndexChangedMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics::NewStructOps, TEXT("LyraQuickBarActiveIndexChangedMessage"), &Z_Registration_Info_UScriptStruct_LyraQuickBarActiveIndexChangedMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraQuickBarActiveIndexChangedMessage), 3674454375U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraQuickBarComponent, ULyraQuickBarComponent::StaticClass, TEXT("ULyraQuickBarComponent"), &Z_Registration_Info_UClass_ULyraQuickBarComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraQuickBarComponent), 4238548548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_1828397901(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h new file mode 100644 index 00000000..54c10454 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraQuickBarComponent.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Equipment/LyraQuickBarComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraInventoryItemInstance; +#ifdef LYRAGAME_LyraQuickBarComponent_generated_h +#error "LyraQuickBarComponent.generated.h already included, missing '#pragma once' in LyraQuickBarComponent.h" +#endif +#define LYRAGAME_LyraQuickBarComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void SetActiveSlotIndex_Implementation(int32 NewIndex); \ + DECLARE_FUNCTION(execOnRep_ActiveSlotIndex); \ + DECLARE_FUNCTION(execOnRep_Slots); \ + DECLARE_FUNCTION(execRemoveItemFromSlot); \ + DECLARE_FUNCTION(execAddItemToSlot); \ + DECLARE_FUNCTION(execGetNextFreeItemSlot); \ + DECLARE_FUNCTION(execGetActiveSlotItem); \ + DECLARE_FUNCTION(execGetActiveSlotIndex); \ + DECLARE_FUNCTION(execGetSlots); \ + DECLARE_FUNCTION(execSetActiveSlotIndex); \ + DECLARE_FUNCTION(execCycleActiveSlotBackward); \ + DECLARE_FUNCTION(execCycleActiveSlotForward); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraQuickBarComponent(); \ + friend struct Z_Construct_UClass_ULyraQuickBarComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraQuickBarComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraQuickBarComponent) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + Slots=NETFIELD_REP_START, \ + ActiveSlotIndex, \ + NETFIELD_REP_END=ActiveSlotIndex }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraQuickBarComponent(ULyraQuickBarComponent&&); \ + ULyraQuickBarComponent(const ULyraQuickBarComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraQuickBarComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraQuickBarComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraQuickBarComponent) \ + NO_API virtual ~ULyraQuickBarComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_16_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_87_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQuickBarSlotsChangedMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h_100_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraQuickBarActiveIndexChangedMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Equipment_LyraQuickBarComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp new file mode 100644 index 00000000..cda83d1a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.gen.cpp @@ -0,0 +1,458 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraRangedWeaponInstance.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraRangedWeaponInstance() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraRangedWeaponInstance +void ULyraRangedWeaponInstance::StaticRegisterNativesULyraRangedWeaponInstance() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraRangedWeaponInstance); +UClass* Z_Construct_UClass_ULyraRangedWeaponInstance_NoRegister() +{ + return ULyraRangedWeaponInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraRangedWeaponInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraRangedWeaponInstance\n *\n * A piece of equipment representing a ranged weapon spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Weapons/LyraRangedWeaponInstance.h" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraRangedWeaponInstance\n\nA piece of equipment representing a ranged weapon spawned and applied to a pawn" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MinHeat_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MaxHeat_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MinSpreadAngle_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_MaxSpreadAngle_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentHeat_MetaData[] = { + { "Category", "Spread Debugging" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentSpreadAngle_MetaData[] = { + { "Category", "Spread Debugging" }, + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData[] = { + { "Category", "Spread Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The current *combined* spread angle multiplier\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The current *combined* spread angle multiplier" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadExponent_MetaData[] = { + { "Category", "Spread|Fire Params" }, + { "ClampMin", "0.100000" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Spread exponent, affects how tightly shots will cluster around the center line\n// when the weapon has spread (non-perfect accuracy). Higher values will cause shots\n// to be closer to the center (default is 1.0 which means uniformly within the spread range)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spread exponent, affects how tightly shots will cluster around the center line\nwhen the weapon has spread (non-perfect accuracy). Higher values will cause shots\nto be closer to the center (default is 1.0 which means uniformly within the spread range)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToSpreadCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the heat to the spread angle\n// The X range of this curve typically sets the min/max heat range of the weapon\n// The Y range of this curve is used to define the min and maximum spread angle\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the heat to the spread angle\nThe X range of this curve typically sets the min/max heat range of the weapon\nThe Y range of this curve is used to define the min and maximum spread angle" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToHeatPerShotCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the current heat to the amount a single shot will further 'heat up'\n// This is typically a flat curve with a single data point indicating how much heat a shot adds,\n// but can be other shapes to do things like punish overheating by adding progressively more heat.\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the current heat to the amount a single shot will further 'heat up'\nThis is typically a flat curve with a single data point indicating how much heat a shot adds,\nbut can be other shapes to do things like punish overheating by adding progressively more heat." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HeatToCoolDownPerSecondCurve_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the current heat to the heat cooldown rate per second\n// This is typically a flat curve with a single data point indicating how fast the heat\n// wears off, but can be other shapes to do things like punish overheating by slowing down\n// recovery at high heat.\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the current heat to the heat cooldown rate per second\nThis is typically a flat curve with a single data point indicating how fast the heat\nwears off, but can be other shapes to do things like punish overheating by slowing down\nrecovery at high heat." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadRecoveryCooldownDelay_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Time since firing before spread cooldown recovery begins (in seconds)\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Time since firing before spread cooldown recovery begins (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAllowFirstShotAccuracy_MetaData[] = { + { "Category", "Spread|Fire Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should the weapon have perfect accuracy when both player and weapon spread are at their minimum value\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should the weapon have perfect accuracy when both player and weapon spread are at their minimum value" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_Aiming_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when in an aiming camera mode\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when in an aiming camera mode" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_StandingStill_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when standing still or moving very slowly\n// (starts to fade out at StandingStillSpeedThreshold, and is gone completely by StandingStillSpeedThreshold + StandingStillToMovingSpeedRange)\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when standing still or moving very slowly\n(starts to fade out at StandingStillSpeedThreshold, and is gone completely by StandingStillSpeedThreshold + StandingStillToMovingSpeedRange)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_StandingStill_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the standing still accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the standing still accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StandingStillSpeedThreshold_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Speeds at or below this are considered standing still\n" }, +#endif + { "ForceUnits", "cm/s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Speeds at or below this are considered standing still" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StandingStillToMovingSpeedRange_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Speeds no more than this above StandingStillSpeedThreshold are used to feather down the standing still bonus until it's back to 1.0\n" }, +#endif + { "ForceUnits", "cm/s" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Speeds no more than this above StandingStillSpeedThreshold are used to feather down the standing still bonus until it's back to 1.0" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_Crouching_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Multiplier when crouching, smoothly blended to based on TransitionRate_Crouching\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier when crouching, smoothly blended to based on TransitionRate_Crouching" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_Crouching_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the crouching accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the crouching accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Spread multiplier while jumping/falling, smoothly blended to based on TransitionRate_JumpingOrFalling\n" }, +#endif + { "ForceUnits", "x" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Spread multiplier while jumping/falling, smoothly blended to based on TransitionRate_JumpingOrFalling" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TransitionRate_JumpingOrFalling_MetaData[] = { + { "Category", "Spread|Player Params" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rate at which we transition to/from the jumping/falling accuracy (higher values are faster, though zero is instant; @see FInterpTo)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rate at which we transition to/from the jumping/falling accuracy (higher values are faster, though zero is instant; @see FInterpTo)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BulletsPerCartridge_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Number of bullets to fire in a single cartridge (typically 1, but may be more for shotguns)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of bullets to fire in a single cartridge (typically 1, but may be more for shotguns)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxDamageRange_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The maximum distance at which this weapon can deal damage\n" }, +#endif + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum distance at which this weapon can deal damage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BulletTraceSweepRadius_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The radius for bullet traces sweep spheres (0.0 will result in a line trace)\n" }, +#endif + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The radius for bullet traces sweep spheres (0.0 will result in a line trace)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DistanceDamageFalloff_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A curve that maps the distance (in cm) to a multiplier on the base damage from the associated gameplay effect\n// If there is no data in this curve, then the weapon is assumed to have no falloff with distance\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A curve that maps the distance (in cm) to a multiplier on the base damage from the associated gameplay effect\nIf there is no data in this curve, then the weapon is assumed to have no falloff with distance" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaterialDamageMultiplier_MetaData[] = { + { "Category", "Weapon Config" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of special tags that affect how damage is dealt\n// These tags will be compared to tags in the physical material of the thing being hit\n// If more than one tag is present, the multipliers will be combined multiplicatively\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraRangedWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of special tags that affect how damage is dealt\nThese tags will be compared to tags in the physical material of the thing being hit\nIf more than one tag is present, the multipliers will be combined multiplicatively" }, +#endif + }; +#endif // WITH_METADATA +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MinHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MaxHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MinSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_MaxSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentHeat; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentSpreadAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_Debug_CurrentSpreadAngleMultiplier; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadExponent; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToSpreadCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToHeatPerShotCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_HeatToCoolDownPerSecondCurve; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadRecoveryCooldownDelay; + static void NewProp_bAllowFirstShotAccuracy_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAllowFirstShotAccuracy; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_Aiming; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_StandingStill; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_StandingStill; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StandingStillSpeedThreshold; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StandingStillToMovingSpeedRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_Crouching; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_Crouching; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpreadAngleMultiplier_JumpingOrFalling; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TransitionRate_JumpingOrFalling; + static const UECodeGen_Private::FIntPropertyParams NewProp_BulletsPerCartridge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MaxDamageRange; + static const UECodeGen_Private::FFloatPropertyParams NewProp_BulletTraceSweepRadius; + static const UECodeGen_Private::FStructPropertyParams NewProp_DistanceDamageFalloff; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MaterialDamageMultiplier_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_MaterialDamageMultiplier_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_MaterialDamageMultiplier; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinHeat = { "Debug_MinHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MinHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MinHeat_MetaData), NewProp_Debug_MinHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxHeat = { "Debug_MaxHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MaxHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MaxHeat_MetaData), NewProp_Debug_MaxHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinSpreadAngle = { "Debug_MinSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MinSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MinSpreadAngle_MetaData), NewProp_Debug_MinSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxSpreadAngle = { "Debug_MaxSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_MaxSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_MaxSpreadAngle_MetaData), NewProp_Debug_MaxSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentHeat = { "Debug_CurrentHeat", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentHeat), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentHeat_MetaData), NewProp_Debug_CurrentHeat_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngle = { "Debug_CurrentSpreadAngle", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentSpreadAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentSpreadAngle_MetaData), NewProp_Debug_CurrentSpreadAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngleMultiplier = { "Debug_CurrentSpreadAngleMultiplier", nullptr, (EPropertyFlags)0x0020080800020001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, Debug_CurrentSpreadAngleMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData), NewProp_Debug_CurrentSpreadAngleMultiplier_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadExponent = { "SpreadExponent", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadExponent), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadExponent_MetaData), NewProp_SpreadExponent_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToSpreadCurve = { "HeatToSpreadCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToSpreadCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToSpreadCurve_MetaData), NewProp_HeatToSpreadCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToHeatPerShotCurve = { "HeatToHeatPerShotCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToHeatPerShotCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToHeatPerShotCurve_MetaData), NewProp_HeatToHeatPerShotCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToCoolDownPerSecondCurve = { "HeatToCoolDownPerSecondCurve", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, HeatToCoolDownPerSecondCurve), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HeatToCoolDownPerSecondCurve_MetaData), NewProp_HeatToCoolDownPerSecondCurve_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadRecoveryCooldownDelay = { "SpreadRecoveryCooldownDelay", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadRecoveryCooldownDelay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadRecoveryCooldownDelay_MetaData), NewProp_SpreadRecoveryCooldownDelay_MetaData) }; +void Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy_SetBit(void* Obj) +{ + ((ULyraRangedWeaponInstance*)Obj)->bAllowFirstShotAccuracy = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy = { "bAllowFirstShotAccuracy", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraRangedWeaponInstance), &Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAllowFirstShotAccuracy_MetaData), NewProp_bAllowFirstShotAccuracy_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Aiming = { "SpreadAngleMultiplier_Aiming", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_Aiming), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_Aiming_MetaData), NewProp_SpreadAngleMultiplier_Aiming_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_StandingStill = { "SpreadAngleMultiplier_StandingStill", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_StandingStill), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_StandingStill_MetaData), NewProp_SpreadAngleMultiplier_StandingStill_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_StandingStill = { "TransitionRate_StandingStill", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_StandingStill), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_StandingStill_MetaData), NewProp_TransitionRate_StandingStill_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillSpeedThreshold = { "StandingStillSpeedThreshold", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, StandingStillSpeedThreshold), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StandingStillSpeedThreshold_MetaData), NewProp_StandingStillSpeedThreshold_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillToMovingSpeedRange = { "StandingStillToMovingSpeedRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, StandingStillToMovingSpeedRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StandingStillToMovingSpeedRange_MetaData), NewProp_StandingStillToMovingSpeedRange_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Crouching = { "SpreadAngleMultiplier_Crouching", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_Crouching), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_Crouching_MetaData), NewProp_SpreadAngleMultiplier_Crouching_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_Crouching = { "TransitionRate_Crouching", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_Crouching), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_Crouching_MetaData), NewProp_TransitionRate_Crouching_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_JumpingOrFalling = { "SpreadAngleMultiplier_JumpingOrFalling", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, SpreadAngleMultiplier_JumpingOrFalling), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData), NewProp_SpreadAngleMultiplier_JumpingOrFalling_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_JumpingOrFalling = { "TransitionRate_JumpingOrFalling", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, TransitionRate_JumpingOrFalling), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TransitionRate_JumpingOrFalling_MetaData), NewProp_TransitionRate_JumpingOrFalling_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletsPerCartridge = { "BulletsPerCartridge", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, BulletsPerCartridge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BulletsPerCartridge_MetaData), NewProp_BulletsPerCartridge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaxDamageRange = { "MaxDamageRange", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, MaxDamageRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxDamageRange_MetaData), NewProp_MaxDamageRange_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletTraceSweepRadius = { "BulletTraceSweepRadius", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, BulletTraceSweepRadius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BulletTraceSweepRadius_MetaData), NewProp_BulletTraceSweepRadius_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_DistanceDamageFalloff = { "DistanceDamageFalloff", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, DistanceDamageFalloff), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DistanceDamageFalloff_MetaData), NewProp_DistanceDamageFalloff_MetaData) }; // 1495033350 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_ValueProp = { "MaterialDamageMultiplier", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_Key_KeyProp = { "MaterialDamageMultiplier_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier = { "MaterialDamageMultiplier", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraRangedWeaponInstance, MaterialDamageMultiplier), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaterialDamageMultiplier_MetaData), NewProp_MaterialDamageMultiplier_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers[] = { +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MinSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_MaxSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentHeat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_Debug_CurrentSpreadAngleMultiplier, +#endif // WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadExponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToSpreadCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToHeatPerShotCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_HeatToCoolDownPerSecondCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadRecoveryCooldownDelay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_bAllowFirstShotAccuracy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Aiming, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_StandingStill, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_StandingStill, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillSpeedThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_StandingStillToMovingSpeedRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_Crouching, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_Crouching, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_SpreadAngleMultiplier_JumpingOrFalling, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_TransitionRate_JumpingOrFalling, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletsPerCartridge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaxDamageRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_BulletTraceSweepRadius, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_DistanceDamageFalloff, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::NewProp_MaterialDamageMultiplier, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraWeaponInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraAbilitySourceInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraRangedWeaponInstance, ILyraAbilitySourceInterface), false }, // 3768332760 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::ClassParams = { + &ULyraRangedWeaponInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraRangedWeaponInstance() +{ + if (!Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton, Z_Construct_UClass_ULyraRangedWeaponInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraRangedWeaponInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraRangedWeaponInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraRangedWeaponInstance); +ULyraRangedWeaponInstance::~ULyraRangedWeaponInstance() {} +// End Class ULyraRangedWeaponInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraRangedWeaponInstance, ULyraRangedWeaponInstance::StaticClass, TEXT("ULyraRangedWeaponInstance"), &Z_Registration_Info_UClass_ULyraRangedWeaponInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraRangedWeaponInstance), 772691738U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_1344634642(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h new file mode 100644 index 00000000..2f69c3e4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRangedWeaponInstance.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraRangedWeaponInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraRangedWeaponInstance_generated_h +#error "LyraRangedWeaponInstance.generated.h already included, missing '#pragma once' in LyraRangedWeaponInstance.h" +#endif +#define LYRAGAME_LyraRangedWeaponInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraRangedWeaponInstance(); \ + friend struct Z_Construct_UClass_ULyraRangedWeaponInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraRangedWeaponInstance, ULyraWeaponInstance, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraRangedWeaponInstance) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraRangedWeaponInstance(ULyraRangedWeaponInstance&&); \ + ULyraRangedWeaponInstance(const ULyraRangedWeaponInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraRangedWeaponInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraRangedWeaponInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraRangedWeaponInstance) \ + NO_API virtual ~ULyraRangedWeaponInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraRangedWeaponInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp new file mode 100644 index 00000000..4e2376ea --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.gen.cpp @@ -0,0 +1,899 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Replays/LyraReplaySubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplaySubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FDateTime(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FTimespan(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayList_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayListEntry(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplayListEntry_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplaySubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplaySubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplayListEntry Function GetDuration +struct Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics +{ + struct LyraReplayListEntry_eventGetDuration_Parms + { + FTimespan ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The duration of the stream in MS */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The duration of the stream in MS" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetDuration_Parms, ReturnValue), Z_Construct_UScriptStruct_FTimespan, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetDuration", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::LyraReplayListEntry_eventGetDuration_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::LyraReplayListEntry_eventGetDuration_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetDuration() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetDuration_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetDuration) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FTimespan*)Z_Param__Result=P_THIS->GetDuration(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetDuration + +// Begin Class ULyraReplayListEntry Function GetFriendlyName +struct Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics +{ + struct LyraReplayListEntry_eventGetFriendlyName_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The UI friendly name of the stream */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The UI friendly name of the stream" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetFriendlyName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetFriendlyName", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::LyraReplayListEntry_eventGetFriendlyName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::LyraReplayListEntry_eventGetFriendlyName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetFriendlyName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetFriendlyName(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetFriendlyName + +// Begin Class ULyraReplayListEntry Function GetIsLive +struct Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics +{ + struct LyraReplayListEntry_eventGetIsLive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if the stream is live and the game hasn't completed yet */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if the stream is live and the game hasn't completed yet" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReplayListEntry_eventGetIsLive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReplayListEntry_eventGetIsLive_Parms), &Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetIsLive", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::LyraReplayListEntry_eventGetIsLive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::LyraReplayListEntry_eventGetIsLive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetIsLive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetIsLive(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetIsLive + +// Begin Class ULyraReplayListEntry Function GetNumViewers +struct Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics +{ + struct LyraReplayListEntry_eventGetNumViewers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Number of viewers viewing this stream */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of viewers viewing this stream" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetNumViewers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetNumViewers", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::LyraReplayListEntry_eventGetNumViewers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::LyraReplayListEntry_eventGetNumViewers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetNumViewers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumViewers(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetNumViewers + +// Begin Class ULyraReplayListEntry Function GetTimestamp +struct Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics +{ + struct LyraReplayListEntry_eventGetTimestamp_Parms + { + FDateTime ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The date and time the stream was recorded */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The date and time the stream was recorded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplayListEntry_eventGetTimestamp_Parms, ReturnValue), Z_Construct_UScriptStruct_FDateTime, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplayListEntry, nullptr, "GetTimestamp", nullptr, nullptr, Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::LyraReplayListEntry_eventGetTimestamp_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::LyraReplayListEntry_eventGetTimestamp_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplayListEntry::execGetTimestamp) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FDateTime*)Z_Param__Result=P_THIS->GetTimestamp(); + P_NATIVE_END; +} +// End Class ULyraReplayListEntry Function GetTimestamp + +// Begin Class ULyraReplayListEntry +void ULyraReplayListEntry::StaticRegisterNativesULyraReplayListEntry() +{ + UClass* Class = ULyraReplayListEntry::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDuration", &ULyraReplayListEntry::execGetDuration }, + { "GetFriendlyName", &ULyraReplayListEntry::execGetFriendlyName }, + { "GetIsLive", &ULyraReplayListEntry::execGetIsLive }, + { "GetNumViewers", &ULyraReplayListEntry::execGetNumViewers }, + { "GetTimestamp", &ULyraReplayListEntry::execGetTimestamp }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplayListEntry); +UClass* Z_Construct_UClass_ULyraReplayListEntry_NoRegister() +{ + return ULyraReplayListEntry::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplayListEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** An available replay for display in the UI */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An available replay for display in the UI" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReplayListEntry_GetDuration, "GetDuration" }, // 608032547 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetFriendlyName, "GetFriendlyName" }, // 832824500 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetIsLive, "GetIsLive" }, // 2900708778 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetNumViewers, "GetNumViewers" }, // 4273820164 + { &Z_Construct_UFunction_ULyraReplayListEntry_GetTimestamp, "GetTimestamp" }, // 2348328336 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplayListEntry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayListEntry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplayListEntry_Statics::ClassParams = { + &ULyraReplayListEntry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayListEntry_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplayListEntry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplayListEntry() +{ + if (!Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton, Z_Construct_UClass_ULyraReplayListEntry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplayListEntry.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplayListEntry::StaticClass(); +} +ULyraReplayListEntry::ULyraReplayListEntry(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplayListEntry); +ULyraReplayListEntry::~ULyraReplayListEntry() {} +// End Class ULyraReplayListEntry + +// Begin Class ULyraReplayList +void ULyraReplayList::StaticRegisterNativesULyraReplayList() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplayList); +UClass* Z_Construct_UClass_ULyraReplayList_NoRegister() +{ + return ULyraReplayList::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplayList_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Results of querying for replays list of results for the UI */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Results of querying for replays list of results for the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Results_MetaData[] = { + { "Category", "Replays" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Results; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results_Inner = { "Results", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_ULyraReplayListEntry_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplayList, Results), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Results_MetaData), NewProp_Results_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplayList_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplayList_Statics::NewProp_Results, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplayList_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplayList_Statics::ClassParams = { + &ULyraReplayList::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplayList_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplayList_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplayList_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplayList() +{ + if (!Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton, Z_Construct_UClass_ULyraReplayList_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplayList.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplayList::StaticClass(); +} +ULyraReplayList::ULyraReplayList(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplayList); +ULyraReplayList::~ULyraReplayList() {} +// End Class ULyraReplayList + +// Begin Class ULyraReplaySubsystem Function CleanupLocalReplays +struct Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics +{ + struct LyraReplaySubsystem_eventCleanupLocalReplays_Parms + { + ULocalPlayer* LocalPlayer; + int32 NumReplaysToKeep; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts deleting local replays starting with the oldest until there are NumReplaysToKeep or fewer */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts deleting local replays starting with the oldest until there are NumReplaysToKeep or fewer" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumReplaysToKeep; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventCleanupLocalReplays_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_NumReplaysToKeep = { "NumReplaysToKeep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventCleanupLocalReplays_Parms, NumReplaysToKeep), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::NewProp_NumReplaysToKeep, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "CleanupLocalReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::LyraReplaySubsystem_eventCleanupLocalReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::LyraReplaySubsystem_eventCleanupLocalReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execCleanupLocalReplays) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_PROPERTY(FIntProperty,Z_Param_NumReplaysToKeep); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CleanupLocalReplays(Z_Param_LocalPlayer,Z_Param_NumReplaysToKeep); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function CleanupLocalReplays + +// Begin Class ULyraReplaySubsystem Function DoesPlatformSupportReplays +struct Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics +{ + struct LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this platform supports replays at all */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this platform supports replays at all" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms), &Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "DoesPlatformSupportReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::LyraReplaySubsystem_eventDoesPlatformSupportReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execDoesPlatformSupportReplays) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=ULyraReplaySubsystem::DoesPlatformSupportReplays(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function DoesPlatformSupportReplays + +// Begin Class ULyraReplaySubsystem Function GetReplayCurrentTime +struct Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics +{ + struct LyraReplaySubsystem_eventGetReplayCurrentTime_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets current playback time */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets current playback time" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventGetReplayCurrentTime_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "GetReplayCurrentTime", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::LyraReplaySubsystem_eventGetReplayCurrentTime_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::LyraReplaySubsystem_eventGetReplayCurrentTime_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execGetReplayCurrentTime) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetReplayCurrentTime(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function GetReplayCurrentTime + +// Begin Class ULyraReplaySubsystem Function GetReplayLengthInSeconds +struct Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics +{ + struct LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets length of current replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets length of current replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "GetReplayLengthInSeconds", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::LyraReplaySubsystem_eventGetReplayLengthInSeconds_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execGetReplayLengthInSeconds) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetReplayLengthInSeconds(); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function GetReplayLengthInSeconds + +// Begin Class ULyraReplaySubsystem Function PlayReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics +{ + struct LyraReplaySubsystem_eventPlayReplay_Parms + { + ULyraReplayListEntry* Replay; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Loads the appropriate map and plays a replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Loads the appropriate map and plays a replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Replay; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::NewProp_Replay = { "Replay", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventPlayReplay_Parms, Replay), Z_Construct_UClass_ULyraReplayListEntry_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::NewProp_Replay, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "PlayReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::LyraReplaySubsystem_eventPlayReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::LyraReplaySubsystem_eventPlayReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execPlayReplay) +{ + P_GET_OBJECT(ULyraReplayListEntry,Z_Param_Replay); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayReplay(Z_Param_Replay); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function PlayReplay + +// Begin Class ULyraReplaySubsystem Function RecordClientReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics +{ + struct LyraReplaySubsystem_eventRecordClientReplay_Parms + { + APlayerController* PlayerController; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts recording a client replay, and handles any file cleanup needed */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts recording a client replay, and handles any file cleanup needed" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventRecordClientReplay_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::NewProp_PlayerController, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "RecordClientReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::LyraReplaySubsystem_eventRecordClientReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::LyraReplaySubsystem_eventRecordClientReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execRecordClientReplay) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RecordClientReplay(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function RecordClientReplay + +// Begin Class ULyraReplaySubsystem Function SeekInActiveReplay +struct Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics +{ + struct LyraReplaySubsystem_eventSeekInActiveReplay_Parms + { + float TimeInSeconds; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Replays" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Move forward or back in currently playing replay */" }, +#endif + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Move forward or back in currently playing replay" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_TimeInSeconds; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::NewProp_TimeInSeconds = { "TimeInSeconds", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReplaySubsystem_eventSeekInActiveReplay_Parms, TimeInSeconds), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::NewProp_TimeInSeconds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReplaySubsystem, nullptr, "SeekInActiveReplay", nullptr, nullptr, Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::LyraReplaySubsystem_eventSeekInActiveReplay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::LyraReplaySubsystem_eventSeekInActiveReplay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReplaySubsystem::execSeekInActiveReplay) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_TimeInSeconds); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SeekInActiveReplay(Z_Param_TimeInSeconds); + P_NATIVE_END; +} +// End Class ULyraReplaySubsystem Function SeekInActiveReplay + +// Begin Class ULyraReplaySubsystem +void ULyraReplaySubsystem::StaticRegisterNativesULyraReplaySubsystem() +{ + UClass* Class = ULyraReplaySubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CleanupLocalReplays", &ULyraReplaySubsystem::execCleanupLocalReplays }, + { "DoesPlatformSupportReplays", &ULyraReplaySubsystem::execDoesPlatformSupportReplays }, + { "GetReplayCurrentTime", &ULyraReplaySubsystem::execGetReplayCurrentTime }, + { "GetReplayLengthInSeconds", &ULyraReplaySubsystem::execGetReplayLengthInSeconds }, + { "PlayReplay", &ULyraReplaySubsystem::execPlayReplay }, + { "RecordClientReplay", &ULyraReplaySubsystem::execRecordClientReplay }, + { "SeekInActiveReplay", &ULyraReplaySubsystem::execSeekInActiveReplay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplaySubsystem); +UClass* Z_Construct_UClass_ULyraReplaySubsystem_NoRegister() +{ + return ULyraReplaySubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplaySubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Subsystem to handle recording/loading replays */" }, +#endif + { "IncludePath", "Replays/LyraReplaySubsystem.h" }, + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Subsystem to handle recording/loading replays" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerDeletingReplays_MetaData[] = { + { "ModuleRelativePath", "Replays/LyraReplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayerDeletingReplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReplaySubsystem_CleanupLocalReplays, "CleanupLocalReplays" }, // 2654932538 + { &Z_Construct_UFunction_ULyraReplaySubsystem_DoesPlatformSupportReplays, "DoesPlatformSupportReplays" }, // 1922645153 + { &Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayCurrentTime, "GetReplayCurrentTime" }, // 113256180 + { &Z_Construct_UFunction_ULyraReplaySubsystem_GetReplayLengthInSeconds, "GetReplayLengthInSeconds" }, // 3314333117 + { &Z_Construct_UFunction_ULyraReplaySubsystem_PlayReplay, "PlayReplay" }, // 264471819 + { &Z_Construct_UFunction_ULyraReplaySubsystem_RecordClientReplay, "RecordClientReplay" }, // 3619830068 + { &Z_Construct_UFunction_ULyraReplaySubsystem_SeekInActiveReplay, "SeekInActiveReplay" }, // 138942325 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplaySubsystem_Statics::NewProp_LocalPlayerDeletingReplays = { "LocalPlayerDeletingReplays", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplaySubsystem, LocalPlayerDeletingReplays), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerDeletingReplays_MetaData), NewProp_LocalPlayerDeletingReplays_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplaySubsystem_Statics::NewProp_LocalPlayerDeletingReplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplaySubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplaySubsystem_Statics::ClassParams = { + &ULyraReplaySubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplaySubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplaySubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplaySubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton, Z_Construct_UClass_ULyraReplaySubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplaySubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplaySubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplaySubsystem); +ULyraReplaySubsystem::~ULyraReplaySubsystem() {} +// End Class ULyraReplaySubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplayListEntry, ULyraReplayListEntry::StaticClass, TEXT("ULyraReplayListEntry"), &Z_Registration_Info_UClass_ULyraReplayListEntry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplayListEntry), 666646215U) }, + { Z_Construct_UClass_ULyraReplayList, ULyraReplayList::StaticClass, TEXT("ULyraReplayList"), &Z_Registration_Info_UClass_ULyraReplayList, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplayList), 1431111374U) }, + { Z_Construct_UClass_ULyraReplaySubsystem, ULyraReplaySubsystem::StaticClass, TEXT("ULyraReplaySubsystem"), &Z_Registration_Info_UClass_ULyraReplaySubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplaySubsystem), 4122727U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_1445331390(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h new file mode 100644 index 00000000..1cc96425 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplaySubsystem.generated.h @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Replays/LyraReplaySubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class ULocalPlayer; +class ULyraReplayListEntry; +struct FDateTime; +struct FTimespan; +#ifdef LYRAGAME_LyraReplaySubsystem_generated_h +#error "LyraReplaySubsystem.generated.h already included, missing '#pragma once' in LyraReplaySubsystem.h" +#endif +#define LYRAGAME_LyraReplaySubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetIsLive); \ + DECLARE_FUNCTION(execGetNumViewers); \ + DECLARE_FUNCTION(execGetDuration); \ + DECLARE_FUNCTION(execGetTimestamp); \ + DECLARE_FUNCTION(execGetFriendlyName); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplayListEntry(); \ + friend struct Z_Construct_UClass_ULyraReplayListEntry_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplayListEntry, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplayListEntry) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplayListEntry(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplayListEntry(ULyraReplayListEntry&&); \ + ULyraReplayListEntry(const ULyraReplayListEntry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplayListEntry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplayListEntry); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReplayListEntry) \ + NO_API virtual ~ULyraReplayListEntry(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplayList(); \ + friend struct Z_Construct_UClass_ULyraReplayList_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplayList, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplayList) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplayList(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplayList(ULyraReplayList&&); \ + ULyraReplayList(const ULyraReplayList&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplayList); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplayList); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReplayList) \ + NO_API virtual ~ULyraReplayList(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_47_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_50_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetReplayCurrentTime); \ + DECLARE_FUNCTION(execGetReplayLengthInSeconds); \ + DECLARE_FUNCTION(execSeekInActiveReplay); \ + DECLARE_FUNCTION(execCleanupLocalReplays); \ + DECLARE_FUNCTION(execRecordClientReplay); \ + DECLARE_FUNCTION(execPlayReplay); \ + DECLARE_FUNCTION(execDoesPlatformSupportReplays); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplaySubsystem(); \ + friend struct Z_Construct_UClass_ULyraReplaySubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplaySubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplaySubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplaySubsystem(ULyraReplaySubsystem&&); \ + ULyraReplaySubsystem(const ULyraReplaySubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplaySubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplaySubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplaySubsystem) \ + NO_API virtual ~ULyraReplaySubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_58_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h_61_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Replays_LyraReplaySubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp new file mode 100644 index 00000000..c1a29a6a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp @@ -0,0 +1,258 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraph.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraph() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraph(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraph_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_NoRegister(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraph(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_ActorList_NoRegister(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_AlwaysRelevant_ForConnection(); +REPLICATIONGRAPH_API UClass* Z_Construct_UClass_UReplicationGraphNode_GridSpatialization2D_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplicationGraph +void ULyraReplicationGraph::StaticRegisterNativesULyraReplicationGraph() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraph); +UClass* Z_Construct_UClass_ULyraReplicationGraph_NoRegister() +{ + return ULyraReplicationGraph::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraph_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Lyra Replication Graph implementation. See additional notes in LyraReplicationGraph.cpp! */" }, +#endif + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Lyra Replication Graph implementation. See additional notes in LyraReplicationGraph.cpp!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysRelevantClasses_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GridNode_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlwaysRelevantNode_MetaData[] = { + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_AlwaysRelevantClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AlwaysRelevantClasses; + static const UECodeGen_Private::FObjectPropertyParams NewProp_GridNode; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlwaysRelevantNode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses_Inner = { "AlwaysRelevantClasses", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses = { "AlwaysRelevantClasses", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, AlwaysRelevantClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysRelevantClasses_MetaData), NewProp_AlwaysRelevantClasses_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_GridNode = { "GridNode", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, GridNode), Z_Construct_UClass_UReplicationGraphNode_GridSpatialization2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GridNode_MetaData), NewProp_GridNode_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantNode = { "AlwaysRelevantNode", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraph, AlwaysRelevantNode), Z_Construct_UClass_UReplicationGraphNode_ActorList_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlwaysRelevantNode_MetaData), NewProp_AlwaysRelevantNode_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_GridNode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraph_Statics::NewProp_AlwaysRelevantNode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplicationGraph_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraph, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraph_Statics::ClassParams = { + &ULyraReplicationGraph::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::PropPointers), + 0, + 0x000000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraph_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraph_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraph() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraph_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraph.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraph::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraph); +ULyraReplicationGraph::~ULyraReplicationGraph() {} +// End Class ULyraReplicationGraph + +// Begin Class ULyraReplicationGraphNode_AlwaysRelevant_ForConnection +void ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticRegisterNativesULyraReplicationGraphNode_AlwaysRelevant_ForConnection() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_NoRegister() +{ + return ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraphNode_AlwaysRelevant_ForConnection, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::ClassParams = { + &ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass(); +} +ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); +ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::~ULyraReplicationGraphNode_AlwaysRelevant_ForConnection() {} +// End Class ULyraReplicationGraphNode_AlwaysRelevant_ForConnection + +// Begin Class ULyraReplicationGraphNode_PlayerStateFrequencyLimiter +void ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticRegisterNativesULyraReplicationGraphNode_PlayerStateFrequencyLimiter() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_NoRegister() +{ + return ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09This is a specialized node for handling PlayerState replication in a frequency limited fashion. It tracks all player states but only returns a subset of them to the replication driver each frame. \n\x09This is an optimization for large player connection counts, and not a requirement.\n*/" }, +#endif + { "IncludePath", "System/LyraReplicationGraph.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraph.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is a specialized node for handling PlayerState replication in a frequency limited fashion. It tracks all player states but only returns a subset of them to the replication driver each frame.\nThis is an optimization for large player connection counts, and not a requirement." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UReplicationGraphNode, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::ClassParams = { + &ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A8u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); +ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::~ULyraReplicationGraphNode_PlayerStateFrequencyLimiter() {} +// End Class ULyraReplicationGraphNode_PlayerStateFrequencyLimiter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplicationGraph, ULyraReplicationGraph::StaticClass, TEXT("ULyraReplicationGraph"), &Z_Registration_Info_UClass_ULyraReplicationGraph, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraph), 355633528U) }, + { Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, ULyraReplicationGraphNode_AlwaysRelevant_ForConnection::StaticClass, TEXT("ULyraReplicationGraphNode_AlwaysRelevant_ForConnection"), &Z_Registration_Info_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection), 2444637209U) }, + { Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, ULyraReplicationGraphNode_PlayerStateFrequencyLimiter::StaticClass, TEXT("ULyraReplicationGraphNode_PlayerStateFrequencyLimiter"), &Z_Registration_Info_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter), 1888665931U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_1025292591(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h new file mode 100644 index 00000000..f10c54f6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.generated.h @@ -0,0 +1,122 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraph.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraph_generated_h +#error "LyraReplicationGraph.generated.h already included, missing '#pragma once' in LyraReplicationGraph.h" +#endif +#define LYRAGAME_LyraReplicationGraph_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraph(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraph_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraph, UReplicationGraph, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraph) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraph(ULyraReplicationGraph&&); \ + ULyraReplicationGraph(const ULyraReplicationGraph&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraph); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraph); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraph) \ + NO_API virtual ~ULyraReplicationGraph(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphNode_AlwaysRelevant_ForConnection_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection, UReplicationGraphNode_AlwaysRelevant_ForConnection, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection&&); \ + ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(const ULyraReplicationGraphNode_AlwaysRelevant_ForConnection&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphNode_AlwaysRelevant_ForConnection) \ + NO_API virtual ~ULyraReplicationGraphNode_AlwaysRelevant_ForConnection(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_66_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_69_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphNode_PlayerStateFrequencyLimiter_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter, UReplicationGraphNode, COMPILED_IN_FLAGS(0 | CLASS_Transient), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter&&); \ + ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(const ULyraReplicationGraphNode_PlayerStateFrequencyLimiter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphNode_PlayerStateFrequencyLimiter) \ + NO_API virtual ~ULyraReplicationGraphNode_PlayerStateFrequencyLimiter(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_99_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h_102_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraph_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp new file mode 100644 index 00000000..f4254298 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp @@ -0,0 +1,250 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraphSettings.h" +#include "LyraGame/System/LyraReplicationGraphTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraphSettings() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReplicationGraphSettings_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReplicationGraphSettings +void ULyraReplicationGraphSettings::StaticRegisterNativesULyraReplicationGraphSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReplicationGraphSettings); +UClass* Z_Construct_UClass_ULyraReplicationGraphSettings_NoRegister() +{ + return ULyraReplicationGraphSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraReplicationGraphSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Default settings for the Lyra replication graph\n */" }, +#endif + { "IncludePath", "System/LyraReplicationGraphSettings.h" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Default settings for the Lyra replication graph" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableReplicationGraph_MetaData[] = { + { "Category", "ReplicationGraph" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultReplicationGraphClass_MetaData[] = { + { "Category", "ReplicationGraph" }, + { "MetaClass", "/Script/LyraGame.LyraReplicationGraph" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableFastSharedPath_MetaData[] = { + { "Category", "FastSharedPath" }, + { "ConsoleVariable", "Lyra.RepGraph.EnableFastSharedPath" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetKBytesSecFastSharedPath_MetaData[] = { + { "Category", "FastSharedPath" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much bandwidth to use for FastShared movement updates. This is counted independently of the NetDriver's target bandwidth.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.TargetKBytesSecFastSharedPath" }, + { "ForceUnits", "Kilobytes" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much bandwidth to use for FastShared movement updates. This is counted independently of the NetDriver's target bandwidth." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FastSharedPathCullDistPct_MetaData[] = { + { "Category", "FastSharedPath" }, + { "ConsoleVariable", "Lyra.RepGraph.FastSharedPathCullDistPct" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DestructionInfoMaxDist_MetaData[] = { + { "Category", "DestructionInfo" }, + { "ConsoleVariable", "Lyra.RepGraph.DestructInfo.MaxDist" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialGridCellSize_MetaData[] = { + { "Category", "SpatialGrid" }, + { "ConsoleVariable", "Lyra.RepGraph.CellSize" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialBiasX_MetaData[] = { + { "Category", "SpatialGrid" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Essentially \"Min X\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.SpatialBiasX" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Essentially \"Min X\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SpatialBiasY_MetaData[] = { + { "Category", "SpatialGrid" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Essentially \"Min Y\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.SpatialBiasY" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Essentially \"Min Y\" for replication. This is just an initial value. The system will reset itself if actors appears outside of this." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDisableSpatialRebuilds_MetaData[] = { + { "Category", "SpatialGrid" }, + { "ConsoleVariable", "Lyra.RepGraph.DisableSpatialRebuilds" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DynamicActorFrequencyBuckets_MetaData[] = { + { "Category", "DynamicSpatialFrequency" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How many buckets to spread dynamic, spatialized actors across.\n// High number = more buckets = smaller effective replication frequency.\n// This happens before individual actors do their own NetUpdateFrequency check.\n" }, +#endif + { "ConsoleVariable", "Lyra.RepGraph.DynamicActorFrequencyBuckets" }, + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How many buckets to spread dynamic, spatialized actors across.\nHigh number = more buckets = smaller effective replication frequency.\nThis happens before individual actors do their own NetUpdateFrequency check." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClassSettings_MetaData[] = { + { "Category", "ReplicationGraph" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Array of Custom Settings for Specific Classes \n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Array of Custom Settings for Specific Classes" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bDisableReplicationGraph_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableReplicationGraph; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultReplicationGraphClass; + static void NewProp_bEnableFastSharedPath_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableFastSharedPath; + static const UECodeGen_Private::FIntPropertyParams NewProp_TargetKBytesSecFastSharedPath; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FastSharedPathCullDistPct; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DestructionInfoMaxDist; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialGridCellSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialBiasX; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SpatialBiasY; + static void NewProp_bDisableSpatialRebuilds_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDisableSpatialRebuilds; + static const UECodeGen_Private::FIntPropertyParams NewProp_DynamicActorFrequencyBuckets; + static const UECodeGen_Private::FStructPropertyParams NewProp_ClassSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ClassSettings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bDisableReplicationGraph = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph = { "bDisableReplicationGraph", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableReplicationGraph_MetaData), NewProp_bDisableReplicationGraph_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DefaultReplicationGraphClass = { "DefaultReplicationGraphClass", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DefaultReplicationGraphClass), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultReplicationGraphClass_MetaData), NewProp_DefaultReplicationGraphClass_MetaData) }; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bEnableFastSharedPath = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath = { "bEnableFastSharedPath", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableFastSharedPath_MetaData), NewProp_bEnableFastSharedPath_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_TargetKBytesSecFastSharedPath = { "TargetKBytesSecFastSharedPath", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, TargetKBytesSecFastSharedPath), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetKBytesSecFastSharedPath_MetaData), NewProp_TargetKBytesSecFastSharedPath_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_FastSharedPathCullDistPct = { "FastSharedPathCullDistPct", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, FastSharedPathCullDistPct), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FastSharedPathCullDistPct_MetaData), NewProp_FastSharedPathCullDistPct_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DestructionInfoMaxDist = { "DestructionInfoMaxDist", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DestructionInfoMaxDist), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DestructionInfoMaxDist_MetaData), NewProp_DestructionInfoMaxDist_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialGridCellSize = { "SpatialGridCellSize", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialGridCellSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialGridCellSize_MetaData), NewProp_SpatialGridCellSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasX = { "SpatialBiasX", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialBiasX), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialBiasX_MetaData), NewProp_SpatialBiasX_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasY = { "SpatialBiasY", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, SpatialBiasY), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SpatialBiasY_MetaData), NewProp_SpatialBiasY_MetaData) }; +void Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds_SetBit(void* Obj) +{ + ((ULyraReplicationGraphSettings*)Obj)->bDisableSpatialRebuilds = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds = { "bDisableSpatialRebuilds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraReplicationGraphSettings), &Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDisableSpatialRebuilds_MetaData), NewProp_bDisableSpatialRebuilds_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DynamicActorFrequencyBuckets = { "DynamicActorFrequencyBuckets", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, DynamicActorFrequencyBuckets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DynamicActorFrequencyBuckets_MetaData), NewProp_DynamicActorFrequencyBuckets_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings_Inner = { "ClassSettings", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FRepGraphActorClassSettings, METADATA_PARAMS(0, nullptr) }; // 3119884048 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings = { "ClassSettings", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReplicationGraphSettings, ClassSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClassSettings_MetaData), NewProp_ClassSettings_MetaData) }; // 3119884048 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableReplicationGraph, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DefaultReplicationGraphClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bEnableFastSharedPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_TargetKBytesSecFastSharedPath, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_FastSharedPathCullDistPct, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DestructionInfoMaxDist, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialGridCellSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_SpatialBiasY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_bDisableSpatialRebuilds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_DynamicActorFrequencyBuckets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::NewProp_ClassSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::ClassParams = { + &ULyraReplicationGraphSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::PropPointers), + 0, + 0x000800A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReplicationGraphSettings() +{ + if (!Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton, Z_Construct_UClass_ULyraReplicationGraphSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReplicationGraphSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReplicationGraphSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReplicationGraphSettings); +ULyraReplicationGraphSettings::~ULyraReplicationGraphSettings() {} +// End Class ULyraReplicationGraphSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReplicationGraphSettings, ULyraReplicationGraphSettings::StaticClass, TEXT("ULyraReplicationGraphSettings"), &Z_Registration_Info_UClass_ULyraReplicationGraphSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReplicationGraphSettings), 2976429712U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_2052245859(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h new file mode 100644 index 00000000..28ecec01 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraphSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraphSettings_generated_h +#error "LyraReplicationGraphSettings.generated.h already included, missing '#pragma once' in LyraReplicationGraphSettings.h" +#endif +#define LYRAGAME_LyraReplicationGraphSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReplicationGraphSettings(); \ + friend struct Z_Construct_UClass_ULyraReplicationGraphSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraReplicationGraphSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), LYRAGAME_API) \ + DECLARE_SERIALIZER(ULyraReplicationGraphSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReplicationGraphSettings(ULyraReplicationGraphSettings&&); \ + ULyraReplicationGraphSettings(const ULyraReplicationGraphSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(LYRAGAME_API, ULyraReplicationGraphSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReplicationGraphSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraReplicationGraphSettings) \ + LYRAGAME_API virtual ~ULyraReplicationGraphSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp new file mode 100644 index 00000000..0f634cef --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp @@ -0,0 +1,252 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraReplicationGraphTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReplicationGraphTypes() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EClassRepNodeMapping(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EClassRepNodeMapping +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EClassRepNodeMapping; +static UEnum* EClassRepNodeMapping_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton) + { + Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EClassRepNodeMapping")); + } + return Z_Registration_Info_UEnum_EClassRepNodeMapping.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EClassRepNodeMapping_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// This is the main enum we use to route actors to the right replication node. Each class maps to one enum.\n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, + { "NotRouted.Name", "EClassRepNodeMapping::NotRouted" }, + { "RelevantAllConnections.Comment", "// Doesn't map to any node. Used for special case actors that handled by special case nodes (ULyraReplicationGraphNode_PlayerStateFrequencyLimiter)\n" }, + { "RelevantAllConnections.Name", "EClassRepNodeMapping::RelevantAllConnections" }, + { "RelevantAllConnections.ToolTip", "Doesn't map to any node. Used for special case actors that handled by special case nodes (ULyraReplicationGraphNode_PlayerStateFrequencyLimiter)" }, + { "Spatialize_Dormancy.Comment", "// Routes to GridNode: these actors mode frequently and are updated once per frame.\n" }, + { "Spatialize_Dormancy.Name", "EClassRepNodeMapping::Spatialize_Dormancy" }, + { "Spatialize_Dormancy.ToolTip", "Routes to GridNode: these actors mode frequently and are updated once per frame." }, + { "Spatialize_Dynamic.Comment", "// Routes to GridNode: these actors don't move and don't need to be updated every frame.\n" }, + { "Spatialize_Dynamic.Name", "EClassRepNodeMapping::Spatialize_Dynamic" }, + { "Spatialize_Dynamic.ToolTip", "Routes to GridNode: these actors don't move and don't need to be updated every frame." }, + { "Spatialize_Static.Comment", "// ONLY SPATIALIZED Enums below here! See ULyraReplicationGraph::IsSpatialized\n" }, + { "Spatialize_Static.Name", "EClassRepNodeMapping::Spatialize_Static" }, + { "Spatialize_Static.ToolTip", "ONLY SPATIALIZED Enums below here! See ULyraReplicationGraph::IsSpatialized" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This is the main enum we use to route actors to the right replication node. Each class maps to one enum." }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EClassRepNodeMapping::NotRouted", (int64)EClassRepNodeMapping::NotRouted }, + { "EClassRepNodeMapping::RelevantAllConnections", (int64)EClassRepNodeMapping::RelevantAllConnections }, + { "EClassRepNodeMapping::Spatialize_Static", (int64)EClassRepNodeMapping::Spatialize_Static }, + { "EClassRepNodeMapping::Spatialize_Dynamic", (int64)EClassRepNodeMapping::Spatialize_Dynamic }, + { "EClassRepNodeMapping::Spatialize_Dormancy", (int64)EClassRepNodeMapping::Spatialize_Dormancy }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EClassRepNodeMapping", + "EClassRepNodeMapping", + Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EClassRepNodeMapping() +{ + if (!Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton, Z_Construct_UEnum_LyraGame_EClassRepNodeMapping_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EClassRepNodeMapping.InnerSingleton; +} +// End Enum EClassRepNodeMapping + +// Begin ScriptStruct FRepGraphActorClassSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings; +class UScriptStruct* FRepGraphActorClassSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FRepGraphActorClassSettings, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("RepGraphActorClassSettings")); + } + return Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FRepGraphActorClassSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Actor Class Settings that can be assigned directly to a Class. Can also be mapped to a FRepGraphActorTemplateSettings \n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Actor Class Settings that can be assigned directly to a Class. Can also be mapped to a FRepGraphActorTemplateSettings" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActorClass_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Name of the Class the settings will be applied to\n" }, +#endif + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Name of the Class the settings will be applied to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddClassRepInfoToMap_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If we should add this Class' RepInfo to the ClassRepNodePolicies Map\n" }, +#endif + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If we should add this Class' RepInfo to the ClassRepNodePolicies Map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClassNodeMapping_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// What ClassNodeMapping we should use when adding Class to ClassRepNodePolicies Map\n" }, +#endif + { "EditCondition", "bAddClassRepInfoToMap" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What ClassNodeMapping we should use when adding Class to ClassRepNodePolicies Map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we add this to the RPC_Multicast_OpenChannelForClass map\n" }, +#endif + { "InlineEditConditionToggle", "" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we add this to the RPC_Multicast_OpenChannelForClass map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRPC_Multicast_OpenChannelForClass_MetaData[] = { + { "Category", "RepGraphActorClassSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// If this is added to RPC_Multicast_OpenChannelForClass map then should we actually open a channel or not\n" }, +#endif + { "EditCondition", "bAddToRPC_Multicast_OpenChannelForClassMap" }, + { "ModuleRelativePath", "System/LyraReplicationGraphTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this is added to RPC_Multicast_OpenChannelForClass map then should we actually open a channel or not" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ActorClass; + static void NewProp_bAddClassRepInfoToMap_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddClassRepInfoToMap; + static const UECodeGen_Private::FUInt32PropertyParams NewProp_ClassNodeMapping_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ClassNodeMapping; + static void NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddToRPC_Multicast_OpenChannelForClassMap; + static void NewProp_bRPC_Multicast_OpenChannelForClass_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRPC_Multicast_OpenChannelForClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ActorClass = { "ActorClass", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRepGraphActorClassSettings, ActorClass), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActorClass_MetaData), NewProp_ActorClass_MetaData) }; +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bAddClassRepInfoToMap = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap = { "bAddClassRepInfoToMap", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddClassRepInfoToMap_MetaData), NewProp_bAddClassRepInfoToMap_MetaData) }; +const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping = { "ClassNodeMapping", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRepGraphActorClassSettings, ClassNodeMapping), Z_Construct_UEnum_LyraGame_EClassRepNodeMapping, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClassNodeMapping_MetaData), NewProp_ClassNodeMapping_MetaData) }; // 4078962432 +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bAddToRPC_Multicast_OpenChannelForClassMap = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap = { "bAddToRPC_Multicast_OpenChannelForClassMap", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData), NewProp_bAddToRPC_Multicast_OpenChannelForClassMap_MetaData) }; +void Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass_SetBit(void* Obj) +{ + ((FRepGraphActorClassSettings*)Obj)->bRPC_Multicast_OpenChannelForClass = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass = { "bRPC_Multicast_OpenChannelForClass", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRepGraphActorClassSettings), &Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRPC_Multicast_OpenChannelForClass_MetaData), NewProp_bRPC_Multicast_OpenChannelForClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ActorClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddClassRepInfoToMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_ClassNodeMapping, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bAddToRPC_Multicast_OpenChannelForClassMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewProp_bRPC_Multicast_OpenChannelForClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "RepGraphActorClassSettings", + Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::PropPointers), + sizeof(FRepGraphActorClassSettings), + alignof(FRepGraphActorClassSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FRepGraphActorClassSettings() +{ + if (!Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton, Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings.InnerSingleton; +} +// End ScriptStruct FRepGraphActorClassSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EClassRepNodeMapping_StaticEnum, TEXT("EClassRepNodeMapping"), &Z_Registration_Info_UEnum_EClassRepNodeMapping, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4078962432U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FRepGraphActorClassSettings::StaticStruct, Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics::NewStructOps, TEXT("RepGraphActorClassSettings"), &Z_Registration_Info_UScriptStruct_RepGraphActorClassSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FRepGraphActorClassSettings), 3119884048U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_2473974175(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h new file mode 100644 index 00000000..c1c8172e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.generated.h @@ -0,0 +1,39 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraReplicationGraphTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraReplicationGraphTypes_generated_h +#error "LyraReplicationGraphTypes.generated.h already included, missing '#pragma once' in LyraReplicationGraphTypes.h" +#endif +#define LYRAGAME_LyraReplicationGraphTypes_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h_26_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FRepGraphActorClassSettings_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraReplicationGraphTypes_h + + +#define FOREACH_ENUM_ECLASSREPNODEMAPPING(op) \ + op(EClassRepNodeMapping::NotRouted) \ + op(EClassRepNodeMapping::RelevantAllConnections) \ + op(EClassRepNodeMapping::Spatialize_Static) \ + op(EClassRepNodeMapping::Spatialize_Dynamic) \ + op(EClassRepNodeMapping::Spatialize_Dormancy) + +enum class EClassRepNodeMapping : uint32; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp new file mode 100644 index 00000000..5244dc16 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.gen.cpp @@ -0,0 +1,343 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/LyraReticleWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraReticleWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraReticleWidgetBase Function ComputeMaxScreenspaceSpreadRadius +struct Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics +{ + struct LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current weapon's maximum spread radius in screenspace units (pixels) */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current weapon's maximum spread radius in screenspace units (pixels)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "ComputeMaxScreenspaceSpreadRadius", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::LyraReticleWidgetBase_eventComputeMaxScreenspaceSpreadRadius_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execComputeMaxScreenspaceSpreadRadius) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->ComputeMaxScreenspaceSpreadRadius(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function ComputeMaxScreenspaceSpreadRadius + +// Begin Class ULyraReticleWidgetBase Function ComputeSpreadAngle +struct Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics +{ + struct LyraReticleWidgetBase_eventComputeSpreadAngle_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current weapon's diametrical spread angle, in degrees */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current weapon's diametrical spread angle, in degrees" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventComputeSpreadAngle_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "ComputeSpreadAngle", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::LyraReticleWidgetBase_eventComputeSpreadAngle_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::LyraReticleWidgetBase_eventComputeSpreadAngle_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execComputeSpreadAngle) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->ComputeSpreadAngle(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function ComputeSpreadAngle + +// Begin Class ULyraReticleWidgetBase Function HasFirstShotAccuracy +struct Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics +{ + struct LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Returns true if the current weapon is at 'first shot accuracy'\n\x09 * (the weapon allows it and it is at min spread)\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the current weapon is at 'first shot accuracy'\n(the weapon allows it and it is at min spread)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms), &Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "HasFirstShotAccuracy", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::LyraReticleWidgetBase_eventHasFirstShotAccuracy_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execHasFirstShotAccuracy) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasFirstShotAccuracy(); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function HasFirstShotAccuracy + +// Begin Class ULyraReticleWidgetBase Function InitializeFromWeapon +struct Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics +{ + struct LyraReticleWidgetBase_eventInitializeFromWeapon_Parms + { + ULyraWeaponInstance* InWeapon; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWeapon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::NewProp_InWeapon = { "InWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraReticleWidgetBase_eventInitializeFromWeapon_Parms, InWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::NewProp_InWeapon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "InitializeFromWeapon", nullptr, nullptr, Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::LyraReticleWidgetBase_eventInitializeFromWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::LyraReticleWidgetBase_eventInitializeFromWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraReticleWidgetBase::execInitializeFromWeapon) +{ + P_GET_OBJECT(ULyraWeaponInstance,Z_Param_InWeapon); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InitializeFromWeapon(Z_Param_InWeapon); + P_NATIVE_END; +} +// End Class ULyraReticleWidgetBase Function InitializeFromWeapon + +// Begin Class ULyraReticleWidgetBase Function OnWeaponInitialized +static const FName NAME_ULyraReticleWidgetBase_OnWeaponInitialized = FName(TEXT("OnWeaponInitialized")); +void ULyraReticleWidgetBase::OnWeaponInitialized() +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraReticleWidgetBase_OnWeaponInitialized); + ProcessEvent(Func,NULL); +} +struct Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraReticleWidgetBase, nullptr, "OnWeaponInitialized", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraReticleWidgetBase Function OnWeaponInitialized + +// Begin Class ULyraReticleWidgetBase +void ULyraReticleWidgetBase::StaticRegisterNativesULyraReticleWidgetBase() +{ + UClass* Class = ULyraReticleWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ComputeMaxScreenspaceSpreadRadius", &ULyraReticleWidgetBase::execComputeMaxScreenspaceSpreadRadius }, + { "ComputeSpreadAngle", &ULyraReticleWidgetBase::execComputeSpreadAngle }, + { "HasFirstShotAccuracy", &ULyraReticleWidgetBase::execHasFirstShotAccuracy }, + { "InitializeFromWeapon", &ULyraReticleWidgetBase::execInitializeFromWeapon }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraReticleWidgetBase); +UClass* Z_Construct_UClass_ULyraReticleWidgetBase_NoRegister() +{ + return ULyraReticleWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraReticleWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponInstance_MetaData[] = { + { "Category", "LyraReticleWidgetBase" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InventoryInstance_MetaData[] = { + { "Category", "LyraReticleWidgetBase" }, + { "ModuleRelativePath", "UI/Weapons/LyraReticleWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponInstance; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InventoryInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeMaxScreenspaceSpreadRadius, "ComputeMaxScreenspaceSpreadRadius" }, // 3229409299 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_ComputeSpreadAngle, "ComputeSpreadAngle" }, // 2632606799 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_HasFirstShotAccuracy, "HasFirstShotAccuracy" }, // 3872100874 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_InitializeFromWeapon, "InitializeFromWeapon" }, // 2278522829 + { &Z_Construct_UFunction_ULyraReticleWidgetBase_OnWeaponInitialized, "OnWeaponInitialized" }, // 3399722346 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_WeaponInstance = { "WeaponInstance", nullptr, (EPropertyFlags)0x0124080000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReticleWidgetBase, WeaponInstance), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponInstance_MetaData), NewProp_WeaponInstance_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_InventoryInstance = { "InventoryInstance", nullptr, (EPropertyFlags)0x0124080000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraReticleWidgetBase, InventoryInstance), Z_Construct_UClass_ULyraInventoryItemInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InventoryInstance_MetaData), NewProp_InventoryInstance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_WeaponInstance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraReticleWidgetBase_Statics::NewProp_InventoryInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraReticleWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraReticleWidgetBase_Statics::ClassParams = { + &ULyraReticleWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraReticleWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraReticleWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraReticleWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraReticleWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraReticleWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraReticleWidgetBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraReticleWidgetBase); +ULyraReticleWidgetBase::~ULyraReticleWidgetBase() {} +// End Class ULyraReticleWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraReticleWidgetBase, ULyraReticleWidgetBase::StaticClass, TEXT("ULyraReticleWidgetBase"), &Z_Registration_Info_UClass_ULyraReticleWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraReticleWidgetBase), 3998868750U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_4089807525(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h new file mode 100644 index 00000000..6ed76fc8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReticleWidgetBase.generated.h @@ -0,0 +1,65 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/LyraReticleWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraWeaponInstance; +#ifdef LYRAGAME_LyraReticleWidgetBase_generated_h +#error "LyraReticleWidgetBase.generated.h already included, missing '#pragma once' in LyraReticleWidgetBase.h" +#endif +#define LYRAGAME_LyraReticleWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHasFirstShotAccuracy); \ + DECLARE_FUNCTION(execComputeMaxScreenspaceSpreadRadius); \ + DECLARE_FUNCTION(execComputeSpreadAngle); \ + DECLARE_FUNCTION(execInitializeFromWeapon); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraReticleWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraReticleWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraReticleWidgetBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraReticleWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraReticleWidgetBase(ULyraReticleWidgetBase&&); \ + ULyraReticleWidgetBase(const ULyraReticleWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraReticleWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraReticleWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraReticleWidgetBase) \ + NO_API virtual ~ULyraReticleWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraReticleWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp new file mode 100644 index 00000000..be6fc4e0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraRuntimeOptions.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraRuntimeOptions() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_URuntimeOptionsBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRuntimeOptions(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraRuntimeOptions_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraRuntimeOptions Function GetRuntimeOptions +struct Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics +{ + struct LyraRuntimeOptions_eventGetRuntimeOptions_Parms + { + ULyraRuntimeOptions* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Options" }, + { "ModuleRelativePath", "Hotfix/LyraRuntimeOptions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraRuntimeOptions_eventGetRuntimeOptions_Parms, ReturnValue), Z_Construct_UClass_ULyraRuntimeOptions_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraRuntimeOptions, nullptr, "GetRuntimeOptions", nullptr, nullptr, Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::LyraRuntimeOptions_eventGetRuntimeOptions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::LyraRuntimeOptions_eventGetRuntimeOptions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraRuntimeOptions::execGetRuntimeOptions) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraRuntimeOptions**)Z_Param__Result=ULyraRuntimeOptions::GetRuntimeOptions(); + P_NATIVE_END; +} +// End Class ULyraRuntimeOptions Function GetRuntimeOptions + +// Begin Class ULyraRuntimeOptions +void ULyraRuntimeOptions::StaticRegisterNativesULyraRuntimeOptions() +{ + UClass* Class = ULyraRuntimeOptions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetRuntimeOptions", &ULyraRuntimeOptions::execGetRuntimeOptions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraRuntimeOptions); +UClass* Z_Construct_UClass_ULyraRuntimeOptions_NoRegister() +{ + return ULyraRuntimeOptions::StaticClass(); +} +struct Z_Construct_UClass_ULyraRuntimeOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraRuntimeOptions: Supports checking at runtime whether features are enabled/disabled, changing\n * configuration parameters, console cheats, startup commands.\n *\n * Add a new Property that *defaults* (either naturally or in the constructor) to the desired\n * normal state. (e.g. bDisableSomething). If you ever need to suddenly disable that thing in the\n * live game, you'll be able to.\n *\n * For testing you can run with -ro.bDisableSomething=true to override the defaults. This is only\n * available in non-shipping builds.\n *\n * Variables are registered with the console under the 'ro' namespace. E.g. ro.bDisableSomething\n */" }, +#endif + { "IncludePath", "Hotfix/LyraRuntimeOptions.h" }, + { "ModuleRelativePath", "Hotfix/LyraRuntimeOptions.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraRuntimeOptions: Supports checking at runtime whether features are enabled/disabled, changing\nconfiguration parameters, console cheats, startup commands.\n\nAdd a new Property that *defaults* (either naturally or in the constructor) to the desired\nnormal state. (e.g. bDisableSomething). If you ever need to suddenly disable that thing in the\nlive game, you'll be able to.\n\nFor testing you can run with -ro.bDisableSomething=true to override the defaults. This is only\navailable in non-shipping builds.\n\nVariables are registered with the console under the 'ro' namespace. E.g. ro.bDisableSomething" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraRuntimeOptions_GetRuntimeOptions, "GetRuntimeOptions" }, // 3649343604 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraRuntimeOptions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_URuntimeOptionsBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRuntimeOptions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraRuntimeOptions_Statics::ClassParams = { + &ULyraRuntimeOptions::StaticClass, + "RuntimeOptions", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraRuntimeOptions_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraRuntimeOptions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraRuntimeOptions() +{ + if (!Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton, Z_Construct_UClass_ULyraRuntimeOptions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraRuntimeOptions.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraRuntimeOptions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraRuntimeOptions); +ULyraRuntimeOptions::~ULyraRuntimeOptions() {} +// End Class ULyraRuntimeOptions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraRuntimeOptions, ULyraRuntimeOptions::StaticClass, TEXT("ULyraRuntimeOptions"), &Z_Registration_Info_UClass_ULyraRuntimeOptions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraRuntimeOptions), 1122341731U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_892027315(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h new file mode 100644 index 00000000..4bb1aa38 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraRuntimeOptions.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraRuntimeOptions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraRuntimeOptions; +#ifdef LYRAGAME_LyraRuntimeOptions_generated_h +#error "LyraRuntimeOptions.generated.h already included, missing '#pragma once' in LyraRuntimeOptions.h" +#endif +#define LYRAGAME_LyraRuntimeOptions_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetRuntimeOptions); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraRuntimeOptions(); \ + friend struct Z_Construct_UClass_ULyraRuntimeOptions_Statics; \ +public: \ + DECLARE_CLASS(ULyraRuntimeOptions, URuntimeOptionsBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraRuntimeOptions) + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraRuntimeOptions(ULyraRuntimeOptions&&); \ + ULyraRuntimeOptions(const ULyraRuntimeOptions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraRuntimeOptions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraRuntimeOptions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraRuntimeOptions) \ + NO_API virtual ~ULyraRuntimeOptions(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_25_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraRuntimeOptions_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp new file mode 100644 index 00000000..92dcadba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.gen.cpp @@ -0,0 +1,224 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Screens/LyraSafeZoneEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSafeZoneEditor() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSafeZoneEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSafeZoneEditor_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetSwitcher_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSafeZoneEditor Function HandleBackClicked +struct Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSafeZoneEditor, nullptr, "HandleBackClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSafeZoneEditor::execHandleBackClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleBackClicked(); + P_NATIVE_END; +} +// End Class ULyraSafeZoneEditor Function HandleBackClicked + +// Begin Class ULyraSafeZoneEditor Function HandleDoneClicked +struct Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSafeZoneEditor, nullptr, "HandleDoneClicked", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSafeZoneEditor::execHandleDoneClicked) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleDoneClicked(); + P_NATIVE_END; +} +// End Class ULyraSafeZoneEditor Function HandleDoneClicked + +// Begin Class ULyraSafeZoneEditor +void ULyraSafeZoneEditor::StaticRegisterNativesULyraSafeZoneEditor() +{ + UClass* Class = ULyraSafeZoneEditor::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleBackClicked", &ULyraSafeZoneEditor::execHandleBackClicked }, + { "HandleDoneClicked", &ULyraSafeZoneEditor::execHandleDoneClicked }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSafeZoneEditor); +UClass* Z_Construct_UClass_ULyraSafeZoneEditor_NoRegister() +{ + return ULyraSafeZoneEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraSafeZoneEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCancel_MetaData[] = { + { "Category", "Restrictions" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Switcher_SafeZoneMessage_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Default_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Back_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Done_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "LyraSafeZoneEditor" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Screens/LyraSafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanCancel_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCancel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Switcher_SafeZoneMessage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Default; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Back; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Done; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSafeZoneEditor_HandleBackClicked, "HandleBackClicked" }, // 2322836823 + { &Z_Construct_UFunction_ULyraSafeZoneEditor_HandleDoneClicked, "HandleDoneClicked" }, // 3861433268 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel_SetBit(void* Obj) +{ + ((ULyraSafeZoneEditor*)Obj)->bCanCancel = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel = { "bCanCancel", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSafeZoneEditor), &Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCancel_MetaData), NewProp_bCanCancel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Switcher_SafeZoneMessage = { "Switcher_SafeZoneMessage", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Switcher_SafeZoneMessage), Z_Construct_UClass_UWidgetSwitcher_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Switcher_SafeZoneMessage_MetaData), NewProp_Switcher_SafeZoneMessage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_RichText_Default = { "RichText_Default", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, RichText_Default), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Default_MetaData), NewProp_RichText_Default_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Back = { "Button_Back", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Button_Back), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Back_MetaData), NewProp_Button_Back_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Done = { "Button_Done", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSafeZoneEditor, Button_Done), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Done_MetaData), NewProp_Button_Done_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_bCanCancel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Switcher_SafeZoneMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_RichText_Default, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Back, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSafeZoneEditor_Statics::NewProp_Button_Done, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSafeZoneEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameSettingActionInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraSafeZoneEditor, IGameSettingActionInterface), false }, // 3882456604 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSafeZoneEditor_Statics::ClassParams = { + &ULyraSafeZoneEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSafeZoneEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSafeZoneEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSafeZoneEditor() +{ + if (!Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton, Z_Construct_UClass_ULyraSafeZoneEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSafeZoneEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSafeZoneEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSafeZoneEditor); +ULyraSafeZoneEditor::~ULyraSafeZoneEditor() {} +// End Class ULyraSafeZoneEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSafeZoneEditor, ULyraSafeZoneEditor::StaticClass, TEXT("ULyraSafeZoneEditor"), &Z_Registration_Info_UClass_ULyraSafeZoneEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSafeZoneEditor), 2393110139U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_1572671753(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h new file mode 100644 index 00000000..85c74c96 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSafeZoneEditor.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Screens/LyraSafeZoneEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSafeZoneEditor_generated_h +#error "LyraSafeZoneEditor.generated.h already included, missing '#pragma once' in LyraSafeZoneEditor.h" +#endif +#define LYRAGAME_LyraSafeZoneEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleDoneClicked); \ + DECLARE_FUNCTION(execHandleBackClicked); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSafeZoneEditor(); \ + friend struct Z_Construct_UClass_ULyraSafeZoneEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraSafeZoneEditor, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSafeZoneEditor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSafeZoneEditor(ULyraSafeZoneEditor&&); \ + ULyraSafeZoneEditor(const ULyraSafeZoneEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSafeZoneEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSafeZoneEditor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSafeZoneEditor) \ + NO_API virtual ~ULyraSafeZoneEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Screens_LyraSafeZoneEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp new file mode 100644 index 00000000..b9c6819c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.gen.cpp @@ -0,0 +1,164 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingAction_SafeZoneEditor() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueScalarDynamic_SafeZoneValue +void ULyraSettingValueScalarDynamic_SafeZoneValue::StaticRegisterNativesULyraSettingValueScalarDynamic_SafeZoneValue() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueScalarDynamic_SafeZoneValue); +UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister() +{ + return ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueScalarDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::ClassParams = { + &ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton, Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass(); +} +ULyraSettingValueScalarDynamic_SafeZoneValue::ULyraSettingValueScalarDynamic_SafeZoneValue() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueScalarDynamic_SafeZoneValue); +ULyraSettingValueScalarDynamic_SafeZoneValue::~ULyraSettingValueScalarDynamic_SafeZoneValue() {} +// End Class ULyraSettingValueScalarDynamic_SafeZoneValue + +// Begin Class ULyraSettingAction_SafeZoneEditor +void ULyraSettingAction_SafeZoneEditor::StaticRegisterNativesULyraSettingAction_SafeZoneEditor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingAction_SafeZoneEditor); +UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_NoRegister() +{ + return ULyraSettingAction_SafeZoneEditor::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SafeZoneValueSetting_MetaData[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SafeZoneValueSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::NewProp_SafeZoneValueSetting = { "SafeZoneValueSetting", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingAction_SafeZoneEditor, SafeZoneValueSetting), Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SafeZoneValueSetting_MetaData), NewProp_SafeZoneValueSetting_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::NewProp_SafeZoneValueSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingAction, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::ClassParams = { + &ULyraSettingAction_SafeZoneEditor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor() +{ + if (!Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton, Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingAction_SafeZoneEditor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingAction_SafeZoneEditor); +ULyraSettingAction_SafeZoneEditor::~ULyraSettingAction_SafeZoneEditor() {} +// End Class ULyraSettingAction_SafeZoneEditor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue, ULyraSettingValueScalarDynamic_SafeZoneValue::StaticClass, TEXT("ULyraSettingValueScalarDynamic_SafeZoneValue"), &Z_Registration_Info_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueScalarDynamic_SafeZoneValue), 1379380547U) }, + { Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor, ULyraSettingAction_SafeZoneEditor::StaticClass, TEXT("ULyraSettingAction_SafeZoneEditor"), &Z_Registration_Info_UClass_ULyraSettingAction_SafeZoneEditor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingAction_SafeZoneEditor), 2451770214U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_1284032265(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h new file mode 100644 index 00000000..b8cd3e76 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingAction_SafeZoneEditor.generated.h @@ -0,0 +1,89 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingAction_SafeZoneEditor_generated_h +#error "LyraSettingAction_SafeZoneEditor.generated.h already included, missing '#pragma once' in LyraSettingAction_SafeZoneEditor.h" +#endif +#define LYRAGAME_LyraSettingAction_SafeZoneEditor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueScalarDynamic_SafeZoneValue(); \ + friend struct Z_Construct_UClass_ULyraSettingValueScalarDynamic_SafeZoneValue_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueScalarDynamic_SafeZoneValue, UGameSettingValueScalarDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueScalarDynamic_SafeZoneValue) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingValueScalarDynamic_SafeZoneValue(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueScalarDynamic_SafeZoneValue(ULyraSettingValueScalarDynamic_SafeZoneValue&&); \ + ULyraSettingValueScalarDynamic_SafeZoneValue(const ULyraSettingValueScalarDynamic_SafeZoneValue&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueScalarDynamic_SafeZoneValue); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueScalarDynamic_SafeZoneValue); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueScalarDynamic_SafeZoneValue) \ + NO_API virtual ~ULyraSettingValueScalarDynamic_SafeZoneValue(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingAction_SafeZoneEditor(); \ + friend struct Z_Construct_UClass_ULyraSettingAction_SafeZoneEditor_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingAction_SafeZoneEditor, UGameSettingAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingAction_SafeZoneEditor) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingAction_SafeZoneEditor(ULyraSettingAction_SafeZoneEditor&&); \ + ULyraSettingAction_SafeZoneEditor(const ULyraSettingAction_SafeZoneEditor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingAction_SafeZoneEditor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingAction_SafeZoneEditor); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingAction_SafeZoneEditor) \ + NO_API virtual ~ULyraSettingAction_SafeZoneEditor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_24_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingAction_SafeZoneEditor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp new file mode 100644 index 00000000..ed667303 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingKeyboardInput.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingKeyboardInput() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingKeyboardInput +void ULyraSettingKeyboardInput::StaticRegisterNativesULyraSettingKeyboardInput() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingKeyboardInput); +UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister() +{ + return ULyraSettingKeyboardInput::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingKeyboardInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// ULyraSettingKeyboardInput\n//--------------------------------------\n" }, +#endif + { "IncludePath", "Settings/CustomSettings/LyraSettingKeyboardInput.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingKeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingKeyboardInput" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::ClassParams = { + &ULyraSettingKeyboardInput::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingKeyboardInput() +{ + if (!Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton, Z_Construct_UClass_ULyraSettingKeyboardInput_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingKeyboardInput.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingKeyboardInput::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingKeyboardInput); +ULyraSettingKeyboardInput::~ULyraSettingKeyboardInput() {} +// End Class ULyraSettingKeyboardInput + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingKeyboardInput, ULyraSettingKeyboardInput::StaticClass, TEXT("ULyraSettingKeyboardInput"), &Z_Registration_Info_UClass_ULyraSettingKeyboardInput, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingKeyboardInput), 84127215U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_3552278565(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h new file mode 100644 index 00000000..450a2a65 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingKeyboardInput.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingKeyboardInput.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingKeyboardInput_generated_h +#error "LyraSettingKeyboardInput.generated.h already included, missing '#pragma once' in LyraSettingKeyboardInput.h" +#endif +#define LYRAGAME_LyraSettingKeyboardInput_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingKeyboardInput(); \ + friend struct Z_Construct_UClass_ULyraSettingKeyboardInput_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingKeyboardInput, UGameSettingValue, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingKeyboardInput) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingKeyboardInput(ULyraSettingKeyboardInput&&); \ + ULyraSettingKeyboardInput(const ULyraSettingKeyboardInput&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingKeyboardInput); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingKeyboardInput); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingKeyboardInput) \ + NO_API virtual ~ULyraSettingKeyboardInput(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingKeyboardInput_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp new file mode 100644 index 00000000..99bd70f4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.gen.cpp @@ -0,0 +1,132 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraSettingScreen.h" +#include "Runtime/Engine/Classes/Engine/DataTable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingScreen() {} + +// Begin Cross Module References +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FDataTableRowHandle(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingScreen(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingScreen_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingScreen +void ULyraSettingScreen::StaticRegisterNativesULyraSettingScreen() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingScreen); +UClass* Z_Construct_UClass_ULyraSettingScreen_NoRegister() +{ + return ULyraSettingScreen::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/LyraSettingScreen.h" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TopSettingsTabs_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "Category", "Input" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + { "OptionalWidget", "TRUE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplyInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelChangesInputActionData_MetaData[] = { + { "Category", "LyraSettingScreen" }, + { "ModuleRelativePath", "UI/LyraSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TopSettingsTabs; + static const UECodeGen_Private::FStructPropertyParams NewProp_BackInputActionData; + static const UECodeGen_Private::FStructPropertyParams NewProp_ApplyInputActionData; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelChangesInputActionData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_TopSettingsTabs = { "TopSettingsTabs", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, TopSettingsTabs), Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TopSettingsTabs_MetaData), NewProp_TopSettingsTabs_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_BackInputActionData = { "BackInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, BackInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackInputActionData_MetaData), NewProp_BackInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_ApplyInputActionData = { "ApplyInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, ApplyInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplyInputActionData_MetaData), NewProp_ApplyInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_CancelChangesInputActionData = { "CancelChangesInputActionData", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingScreen, CancelChangesInputActionData), Z_Construct_UScriptStruct_FDataTableRowHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelChangesInputActionData_MetaData), NewProp_CancelChangesInputActionData_MetaData) }; // 1360917958 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_TopSettingsTabs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_BackInputActionData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_ApplyInputActionData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingScreen_Statics::NewProp_CancelChangesInputActionData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingScreen, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingScreen_Statics::ClassParams = { + &ULyraSettingScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingScreen() +{ + if (!Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton, Z_Construct_UClass_ULyraSettingScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingScreen.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingScreen::StaticClass(); +} +ULyraSettingScreen::ULyraSettingScreen(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingScreen); +ULyraSettingScreen::~ULyraSettingScreen() {} +// End Class ULyraSettingScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingScreen, ULyraSettingScreen::StaticClass, TEXT("ULyraSettingScreen"), &Z_Registration_Info_UClass_ULyraSettingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingScreen), 1265158031U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_2311230665(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.generated.h new file mode 100644 index 00000000..1a0abaa8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingScreen.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraSettingScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingScreen_generated_h +#error "LyraSettingScreen.generated.h already included, missing '#pragma once' in LyraSettingScreen.h" +#endif +#define LYRAGAME_LyraSettingScreen_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingScreen(); \ + friend struct Z_Construct_UClass_ULyraSettingScreen_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingScreen, UGameSettingScreen, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingScreen) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingScreen(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingScreen(ULyraSettingScreen&&); \ + ULyraSettingScreen(const ULyraSettingScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingScreen) \ + NO_API virtual ~ULyraSettingScreen(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraSettingScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp new file mode 100644 index 00000000..052dc11a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.gen.cpp @@ -0,0 +1,294 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#include "Runtime/AudioMixer/Public/AudioMixerBlueprintLibrary.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscreteDynamic_AudioOutputDevice() {} + +// Begin Cross Module References +AUDIOMIXER_API UEnum* Z_Construct_UEnum_AudioMixer_EAudioDeviceChangedRole(); +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FAudioOutputDeviceInfo(); +AUDIOMIXER_API UScriptStruct* Z_Construct_UScriptStruct_FSwapAudioOutputResult(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DefaultDeviceChanged +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms + { + EAudioDeviceChangedRole InRole; + FString DeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InRole_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InRole; + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole = { "InRole", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms, InRole), Z_Construct_UEnum_AudioMixer_EAudioDeviceChangedRole, METADATA_PARAMS(0, nullptr) }; // 2393683699 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_DeviceId = { "DeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms, DeviceId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_InRole, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::NewProp_DeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "DefaultDeviceChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDefaultDeviceChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDefaultDeviceChanged) +{ + P_GET_ENUM(EAudioDeviceChangedRole,Z_Param_InRole); + P_GET_PROPERTY(FStrProperty,Z_Param_DeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DefaultDeviceChanged(EAudioDeviceChangedRole(Z_Param_InRole),Z_Param_DeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DefaultDeviceChanged + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DeviceAddedOrRemoved +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms + { + FString DeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_DeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::NewProp_DeviceId = { "DeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms, DeviceId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::NewProp_DeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "DeviceAddedOrRemoved", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventDeviceAddedOrRemoved_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDeviceAddedOrRemoved) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_DeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DeviceAddedOrRemoved(Z_Param_DeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function DeviceAddedOrRemoved + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnAudioOutputDevicesObtained +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms + { + TArray AvailableDevices; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AvailableDevices_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AvailableDevices_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AvailableDevices; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices_Inner = { "AvailableDevices", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FAudioOutputDeviceInfo, METADATA_PARAMS(0, nullptr) }; // 3924648275 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices = { "AvailableDevices", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms, AvailableDevices), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AvailableDevices_MetaData), NewProp_AvailableDevices_MetaData) }; // 3924648275 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::NewProp_AvailableDevices, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "OnAudioOutputDevicesObtained", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnAudioOutputDevicesObtained_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnAudioOutputDevicesObtained) +{ + P_GET_TARRAY_REF(FAudioOutputDeviceInfo,Z_Param_Out_AvailableDevices); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnAudioOutputDevicesObtained(Z_Param_Out_AvailableDevices); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnAudioOutputDevicesObtained + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnCompletedDeviceSwap +struct Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics +{ + struct LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms + { + FSwapAudioOutputResult SwapResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SwapResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SwapResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::NewProp_SwapResult = { "SwapResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms, SwapResult), Z_Construct_UScriptStruct_FSwapAudioOutputResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SwapResult_MetaData), NewProp_SwapResult_MetaData) }; // 556524030 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::NewProp_SwapResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, nullptr, "OnCompletedDeviceSwap", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::LyraSettingValueDiscreteDynamic_AudioOutputDevice_eventOnCompletedDeviceSwap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnCompletedDeviceSwap) +{ + P_GET_STRUCT_REF(FSwapAudioOutputResult,Z_Param_Out_SwapResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCompletedDeviceSwap(Z_Param_Out_SwapResult); + P_NATIVE_END; +} +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice Function OnCompletedDeviceSwap + +// Begin Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice +void ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticRegisterNativesULyraSettingValueDiscreteDynamic_AudioOutputDevice() +{ + UClass* Class = ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "DefaultDeviceChanged", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDefaultDeviceChanged }, + { "DeviceAddedOrRemoved", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execDeviceAddedOrRemoved }, + { "OnAudioOutputDevicesObtained", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnAudioOutputDevicesObtained }, + { "OnCompletedDeviceSwap", &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::execOnCompletedDeviceSwap }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); +UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_NoRegister() +{ + return ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DefaultDeviceChanged, "DefaultDeviceChanged" }, // 1187932135 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_DeviceAddedOrRemoved, "DeviceAddedOrRemoved" }, // 1809746616 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnAudioOutputDevicesObtained, "OnAudioOutputDevicesObtained" }, // 3060293154 + { &Z_Construct_UFunction_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_OnCompletedDeviceSwap, "OnCompletedDeviceSwap" }, // 357884786 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::ClassParams = { + &ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass(); +} +ULyraSettingValueDiscreteDynamic_AudioOutputDevice::ULyraSettingValueDiscreteDynamic_AudioOutputDevice() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); +// End Class ULyraSettingValueDiscreteDynamic_AudioOutputDevice + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, ULyraSettingValueDiscreteDynamic_AudioOutputDevice::StaticClass, TEXT("ULyraSettingValueDiscreteDynamic_AudioOutputDevice"), &Z_Registration_Info_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscreteDynamic_AudioOutputDevice), 368472306U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_2486483873(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h new file mode 100644 index 00000000..100f4321 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class EAudioDeviceChangedRole : uint8; +struct FAudioOutputDeviceInfo; +struct FSwapAudioOutputResult; +#ifdef LYRAGAME_LyraSettingValueDiscreteDynamic_AudioOutputDevice_generated_h +#error "LyraSettingValueDiscreteDynamic_AudioOutputDevice.generated.h already included, missing '#pragma once' in LyraSettingValueDiscreteDynamic_AudioOutputDevice.h" +#endif +#define LYRAGAME_LyraSettingValueDiscreteDynamic_AudioOutputDevice_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execDefaultDeviceChanged); \ + DECLARE_FUNCTION(execDeviceAddedOrRemoved); \ + DECLARE_FUNCTION(execOnCompletedDeviceSwap); \ + DECLARE_FUNCTION(execOnAudioOutputDevicesObtained); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscreteDynamic_AudioOutputDevice(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscreteDynamic_AudioOutputDevice_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscreteDynamic_AudioOutputDevice, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscreteDynamic_AudioOutputDevice) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingValueDiscreteDynamic_AudioOutputDevice(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscreteDynamic_AudioOutputDevice(ULyraSettingValueDiscreteDynamic_AudioOutputDevice&&); \ + ULyraSettingValueDiscreteDynamic_AudioOutputDevice(const ULyraSettingValueDiscreteDynamic_AudioOutputDevice&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscreteDynamic_AudioOutputDevice); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscreteDynamic_AudioOutputDevice); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscreteDynamic_AudioOutputDevice) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscreteDynamic_AudioOutputDevice_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp new file mode 100644 index 00000000..7cfa4007 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_Language() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_Language +void ULyraSettingValueDiscrete_Language::StaticRegisterNativesULyraSettingValueDiscrete_Language() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_Language); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language_NoRegister() +{ + return ULyraSettingValueDiscrete_Language::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::ClassParams = { + &ULyraSettingValueDiscrete_Language::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Language() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_Language::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_Language); +ULyraSettingValueDiscrete_Language::~ULyraSettingValueDiscrete_Language() {} +// End Class ULyraSettingValueDiscrete_Language + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_Language, ULyraSettingValueDiscrete_Language::StaticClass, TEXT("ULyraSettingValueDiscrete_Language"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Language, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_Language), 80251537U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_3509725333(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h new file mode 100644 index 00000000..8b8258bf --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Language.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_Language.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_Language_generated_h +#error "LyraSettingValueDiscrete_Language.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_Language.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_Language_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_Language(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_Language_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_Language, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_Language) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_Language(ULyraSettingValueDiscrete_Language&&); \ + ULyraSettingValueDiscrete_Language(const ULyraSettingValueDiscrete_Language&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_Language); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_Language); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_Language) \ + NO_API virtual ~ULyraSettingValueDiscrete_Language(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Language_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp new file mode 100644 index 00000000..808d71dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_MobileFPSType() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_MobileFPSType +void ULyraSettingValueDiscrete_MobileFPSType::StaticRegisterNativesULyraSettingValueDiscrete_MobileFPSType() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_MobileFPSType); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_NoRegister() +{ + return ULyraSettingValueDiscrete_MobileFPSType::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::ClassParams = { + &ULyraSettingValueDiscrete_MobileFPSType::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_MobileFPSType::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_MobileFPSType); +ULyraSettingValueDiscrete_MobileFPSType::~ULyraSettingValueDiscrete_MobileFPSType() {} +// End Class ULyraSettingValueDiscrete_MobileFPSType + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType, ULyraSettingValueDiscrete_MobileFPSType::StaticClass, TEXT("ULyraSettingValueDiscrete_MobileFPSType"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_MobileFPSType, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_MobileFPSType), 1336858111U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_1830024418(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h new file mode 100644 index 00000000..68defd3e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_MobileFPSType.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_MobileFPSType_generated_h +#error "LyraSettingValueDiscrete_MobileFPSType.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_MobileFPSType.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_MobileFPSType_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_MobileFPSType(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_MobileFPSType_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_MobileFPSType, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_MobileFPSType) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_MobileFPSType(ULyraSettingValueDiscrete_MobileFPSType&&); \ + ULyraSettingValueDiscrete_MobileFPSType(const ULyraSettingValueDiscrete_MobileFPSType&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_MobileFPSType); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_MobileFPSType); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_MobileFPSType) \ + NO_API virtual ~ULyraSettingValueDiscrete_MobileFPSType(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_MobileFPSType_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp new file mode 100644 index 00000000..ff308dca --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_OverallQuality() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_OverallQuality +void ULyraSettingValueDiscrete_OverallQuality::StaticRegisterNativesULyraSettingValueDiscrete_OverallQuality() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_OverallQuality); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_NoRegister() +{ + return ULyraSettingValueDiscrete_OverallQuality::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::ClassParams = { + &ULyraSettingValueDiscrete_OverallQuality::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_OverallQuality::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_OverallQuality); +ULyraSettingValueDiscrete_OverallQuality::~ULyraSettingValueDiscrete_OverallQuality() {} +// End Class ULyraSettingValueDiscrete_OverallQuality + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality, ULyraSettingValueDiscrete_OverallQuality::StaticClass, TEXT("ULyraSettingValueDiscrete_OverallQuality"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_OverallQuality, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_OverallQuality), 2702593385U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_2558643524(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h new file mode 100644 index 00000000..f4db5abc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_OverallQuality.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_OverallQuality_generated_h +#error "LyraSettingValueDiscrete_OverallQuality.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_OverallQuality.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_OverallQuality_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_OverallQuality(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_OverallQuality_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_OverallQuality, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_OverallQuality) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_OverallQuality(ULyraSettingValueDiscrete_OverallQuality&&); \ + ULyraSettingValueDiscrete_OverallQuality(const ULyraSettingValueDiscrete_OverallQuality&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_OverallQuality); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_OverallQuality); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_OverallQuality) \ + NO_API virtual ~ULyraSettingValueDiscrete_OverallQuality(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_OverallQuality_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp new file mode 100644 index 00000000..7fd2aad0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_PerfStat() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_PerfStat +void ULyraSettingValueDiscrete_PerfStat::StaticRegisterNativesULyraSettingValueDiscrete_PerfStat() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_PerfStat); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_NoRegister() +{ + return ULyraSettingValueDiscrete_PerfStat::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::ClassParams = { + &ULyraSettingValueDiscrete_PerfStat::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_PerfStat::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_PerfStat); +ULyraSettingValueDiscrete_PerfStat::~ULyraSettingValueDiscrete_PerfStat() {} +// End Class ULyraSettingValueDiscrete_PerfStat + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat, ULyraSettingValueDiscrete_PerfStat::StaticClass, TEXT("ULyraSettingValueDiscrete_PerfStat"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_PerfStat, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_PerfStat), 3988054496U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_270335341(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h new file mode 100644 index 00000000..4f8a39e9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_PerfStat.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_PerfStat_generated_h +#error "LyraSettingValueDiscrete_PerfStat.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_PerfStat.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_PerfStat_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_PerfStat(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_PerfStat_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_PerfStat, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_PerfStat) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_PerfStat(ULyraSettingValueDiscrete_PerfStat&&); \ + ULyraSettingValueDiscrete_PerfStat(const ULyraSettingValueDiscrete_PerfStat&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_PerfStat); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_PerfStat); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_PerfStat) \ + NO_API virtual ~ULyraSettingValueDiscrete_PerfStat(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_PerfStat_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp new file mode 100644 index 00000000..6656b80c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingValueDiscrete_Resolution() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingValueDiscrete_Resolution +void ULyraSettingValueDiscrete_Resolution::StaticRegisterNativesULyraSettingValueDiscrete_Resolution() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingValueDiscrete_Resolution); +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_NoRegister() +{ + return ULyraSettingValueDiscrete_Resolution::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" }, + { "ModuleRelativePath", "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::ClassParams = { + &ULyraSettingValueDiscrete_Resolution::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution() +{ + if (!Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton, Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingValueDiscrete_Resolution::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingValueDiscrete_Resolution); +ULyraSettingValueDiscrete_Resolution::~ULyraSettingValueDiscrete_Resolution() {} +// End Class ULyraSettingValueDiscrete_Resolution + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution, ULyraSettingValueDiscrete_Resolution::StaticClass, TEXT("ULyraSettingValueDiscrete_Resolution"), &Z_Registration_Info_UClass_ULyraSettingValueDiscrete_Resolution, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingValueDiscrete_Resolution), 1917978537U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_453710866(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h new file mode 100644 index 00000000..15fa196b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingValueDiscrete_Resolution.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingValueDiscrete_Resolution_generated_h +#error "LyraSettingValueDiscrete_Resolution.generated.h already included, missing '#pragma once' in LyraSettingValueDiscrete_Resolution.h" +#endif +#define LYRAGAME_LyraSettingValueDiscrete_Resolution_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingValueDiscrete_Resolution(); \ + friend struct Z_Construct_UClass_ULyraSettingValueDiscrete_Resolution_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingValueDiscrete_Resolution, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingValueDiscrete_Resolution) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingValueDiscrete_Resolution(ULyraSettingValueDiscrete_Resolution&&); \ + ULyraSettingValueDiscrete_Resolution(const ULyraSettingValueDiscrete_Resolution&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingValueDiscrete_Resolution); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingValueDiscrete_Resolution); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingValueDiscrete_Resolution) \ + NO_API virtual ~ULyraSettingValueDiscrete_Resolution(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_CustomSettings_LyraSettingValueDiscrete_Resolution_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp new file mode 100644 index 00000000..a01a7273 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.gen.cpp @@ -0,0 +1,188 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsListEntrySetting_KeyboardInput() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSettingsListEntrySetting_KeyboardInput +void ULyraSettingsListEntrySetting_KeyboardInput::StaticRegisterNativesULyraSettingsListEntrySetting_KeyboardInput() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsListEntrySetting_KeyboardInput); +UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_NoRegister() +{ + return ULyraSettingsListEntrySetting_KeyboardInput::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// ULyraSettingsListEntrySetting_KeyboardInput\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsListEntrySetting_KeyboardInput" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OriginalKeyToBind_MetaData[] = { + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyboardInputSetting_MetaData[] = { + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PressAnyKeyPanelClass_MetaData[] = { + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyAlreadyBoundWarningPanelClass_MetaData[] = { + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_PrimaryKey_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_SecondaryKey_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Clear_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_ResetToDefault_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "LyraSettingsListEntrySetting_KeyboardInput" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OriginalKeyToBind; + static const UECodeGen_Private::FObjectPropertyParams NewProp_KeyboardInputSetting; + static const UECodeGen_Private::FClassPropertyParams NewProp_PressAnyKeyPanelClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_KeyAlreadyBoundWarningPanelClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_PrimaryKey; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_SecondaryKey; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Clear; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_ResetToDefault; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_OriginalKeyToBind = { "OriginalKeyToBind", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, OriginalKeyToBind), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OriginalKeyToBind_MetaData), NewProp_OriginalKeyToBind_MetaData) }; // 658672854 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyboardInputSetting = { "KeyboardInputSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, KeyboardInputSetting), Z_Construct_UClass_ULyraSettingKeyboardInput_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyboardInputSetting_MetaData), NewProp_KeyboardInputSetting_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_PressAnyKeyPanelClass = { "PressAnyKeyPanelClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, PressAnyKeyPanelClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PressAnyKeyPanelClass_MetaData), NewProp_PressAnyKeyPanelClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyAlreadyBoundWarningPanelClass = { "KeyAlreadyBoundWarningPanelClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, KeyAlreadyBoundWarningPanelClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyAlreadyBoundWarningPanelClass_MetaData), NewProp_KeyAlreadyBoundWarningPanelClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_PrimaryKey = { "Button_PrimaryKey", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_PrimaryKey), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_PrimaryKey_MetaData), NewProp_Button_PrimaryKey_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_SecondaryKey = { "Button_SecondaryKey", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_SecondaryKey), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_SecondaryKey_MetaData), NewProp_Button_SecondaryKey_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_Clear = { "Button_Clear", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_Clear), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Clear_MetaData), NewProp_Button_Clear_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_ResetToDefault = { "Button_ResetToDefault", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsListEntrySetting_KeyboardInput, Button_ResetToDefault), Z_Construct_UClass_ULyraButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_ResetToDefault_MetaData), NewProp_Button_ResetToDefault_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_OriginalKeyToBind, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyboardInputSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_PressAnyKeyPanelClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_KeyAlreadyBoundWarningPanelClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_PrimaryKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_SecondaryKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_Clear, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::NewProp_Button_ResetToDefault, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::ClassParams = { + &ULyraSettingsListEntrySetting_KeyboardInput::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton, Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsListEntrySetting_KeyboardInput::StaticClass(); +} +ULyraSettingsListEntrySetting_KeyboardInput::ULyraSettingsListEntrySetting_KeyboardInput(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsListEntrySetting_KeyboardInput); +ULyraSettingsListEntrySetting_KeyboardInput::~ULyraSettingsListEntrySetting_KeyboardInput() {} +// End Class ULyraSettingsListEntrySetting_KeyboardInput + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput, ULyraSettingsListEntrySetting_KeyboardInput::StaticClass, TEXT("ULyraSettingsListEntrySetting_KeyboardInput"), &Z_Registration_Info_UClass_ULyraSettingsListEntrySetting_KeyboardInput, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsListEntrySetting_KeyboardInput), 1109608942U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_4085841296(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h new file mode 100644 index 00000000..6e3b37fe --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsListEntrySetting_KeyboardInput.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingsListEntrySetting_KeyboardInput_generated_h +#error "LyraSettingsListEntrySetting_KeyboardInput.generated.h already included, missing '#pragma once' in LyraSettingsListEntrySetting_KeyboardInput.h" +#endif +#define LYRAGAME_LyraSettingsListEntrySetting_KeyboardInput_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsListEntrySetting_KeyboardInput(); \ + friend struct Z_Construct_UClass_ULyraSettingsListEntrySetting_KeyboardInput_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsListEntrySetting_KeyboardInput, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsListEntrySetting_KeyboardInput) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSettingsListEntrySetting_KeyboardInput(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsListEntrySetting_KeyboardInput(ULyraSettingsListEntrySetting_KeyboardInput&&); \ + ULyraSettingsListEntrySetting_KeyboardInput(const ULyraSettingsListEntrySetting_KeyboardInput&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsListEntrySetting_KeyboardInput); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsListEntrySetting_KeyboardInput); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSettingsListEntrySetting_KeyboardInput) \ + NO_API virtual ~ULyraSettingsListEntrySetting_KeyboardInput(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_21_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_Widgets_LyraSettingsListEntrySetting_KeyboardInput_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp new file mode 100644 index 00000000..17f32c14 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.gen.cpp @@ -0,0 +1,2327 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraSettingsLocal.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsLocal() {} + +// Begin Cross Module References +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBus_NoRegister(); +AUDIOMODULATION_API UClass* Z_Construct_UClass_USoundControlBusMix_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameUserSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraScalabilitySnapshot(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraScalabilitySnapshot +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot; +class UScriptStruct* FLyraScalabilitySnapshot::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraScalabilitySnapshot, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraScalabilitySnapshot")); + } + return Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraScalabilitySnapshot::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraScalabilitySnapshot", + nullptr, + 0, + sizeof(FLyraScalabilitySnapshot), + alignof(FLyraScalabilitySnapshot), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraScalabilitySnapshot() +{ + if (!Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton, Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot.InnerSingleton; +} +// End ScriptStruct FLyraScalabilitySnapshot + +// Begin Class ULyraSettingsLocal Function CanModifyHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we can enable/disable headphone mode (i.e., if it's not forced on or off by the platform) */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we can enable/disable headphone mode (i.e., if it's not forced on or off by the platform)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "CanModifyHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventCanModifyHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execCanModifyHeadphoneModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanModifyHeadphoneModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function CanModifyHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function CanRunAutoBenchmark +struct Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics +{ + struct LyraSettingsLocal_eventCanRunAutoBenchmark_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this platform can run the auto benchmark */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this platform can run the auto benchmark" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventCanRunAutoBenchmark_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventCanRunAutoBenchmark_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "CanRunAutoBenchmark", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::LyraSettingsLocal_eventCanRunAutoBenchmark_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::LyraSettingsLocal_eventCanRunAutoBenchmark_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execCanRunAutoBenchmark) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CanRunAutoBenchmark(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function CanRunAutoBenchmark + +// Begin Class ULyraSettingsLocal Function GetAudioOutputDeviceId +struct Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics +{ + struct LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user's audio device id */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user's audio device id" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetAudioOutputDeviceId", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventGetAudioOutputDeviceId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetAudioOutputDeviceId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetAudioOutputDeviceId(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetAudioOutputDeviceId + +// Begin Class ULyraSettingsLocal Function GetControllerPlatform +struct Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics +{ + struct LyraSettingsLocal_eventGetControllerPlatform_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetControllerPlatform_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetControllerPlatform", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::LyraSettingsLocal_eventGetControllerPlatform_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::LyraSettingsLocal_eventGetControllerPlatform_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetControllerPlatform) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetControllerPlatform(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetControllerPlatform + +// Begin Class ULyraSettingsLocal Function GetDesiredDeviceProfileQualitySuffix +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics +{ + struct LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDesiredDeviceProfileQualitySuffix", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventGetDesiredDeviceProfileQualitySuffix_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDesiredDeviceProfileQualitySuffix) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDesiredDeviceProfileQualitySuffix(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDesiredDeviceProfileQualitySuffix + +// Begin Class ULyraSettingsLocal Function GetDialogueVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics +{ + struct LyraSettingsLocal_eventGetDialogueVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDialogueVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDialogueVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::LyraSettingsLocal_eventGetDialogueVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::LyraSettingsLocal_eventGetDialogueVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDialogueVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetDialogueVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDialogueVolume + +// Begin Class ULyraSettingsLocal Function GetDisplayGamma +struct Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics +{ + struct LyraSettingsLocal_eventGetDisplayGamma_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetDisplayGamma_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetDisplayGamma", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::LyraSettingsLocal_eventGetDisplayGamma_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::LyraSettingsLocal_eventGetDisplayGamma_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetDisplayGamma) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetDisplayGamma(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetDisplayGamma + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_Always +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_Always", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventGetFrameRateLimit_Always_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_Always) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_Always(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_Always + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_InMenu +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_InMenu", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventGetFrameRateLimit_InMenu_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_InMenu) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_InMenu(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_InMenu + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_OnBattery +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_OnBattery", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventGetFrameRateLimit_OnBattery_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_OnBattery) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_OnBattery(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_OnBattery + +// Begin Class ULyraSettingsLocal Function GetFrameRateLimit_WhenBackgrounded +struct Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics +{ + struct LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetFrameRateLimit_WhenBackgrounded", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventGetFrameRateLimit_WhenBackgrounded_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetFrameRateLimit_WhenBackgrounded) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetFrameRateLimit_WhenBackgrounded(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetFrameRateLimit_WhenBackgrounded + +// Begin Class ULyraSettingsLocal Function GetMusicVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics +{ + struct LyraSettingsLocal_eventGetMusicVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetMusicVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetMusicVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::LyraSettingsLocal_eventGetMusicVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::LyraSettingsLocal_eventGetMusicVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetMusicVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetMusicVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetMusicVolume + +// Begin Class ULyraSettingsLocal Function GetNumberOfReplaysToKeep +struct Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics +{ + struct LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetNumberOfReplaysToKeep", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventGetNumberOfReplaysToKeep_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetNumberOfReplaysToKeep) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumberOfReplaysToKeep(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetNumberOfReplaysToKeep + +// Begin Class ULyraSettingsLocal Function GetOverallVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics +{ + struct LyraSettingsLocal_eventGetOverallVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetOverallVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetOverallVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::LyraSettingsLocal_eventGetOverallVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::LyraSettingsLocal_eventGetOverallVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetOverallVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetOverallVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetOverallVolume + +// Begin Class ULyraSettingsLocal Function GetSafeZone +struct Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics +{ + struct LyraSettingsLocal_eventGetSafeZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetSafeZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetSafeZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::LyraSettingsLocal_eventGetSafeZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::LyraSettingsLocal_eventGetSafeZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetSafeZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetSafeZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetSafeZone + +// Begin Class ULyraSettingsLocal Function GetSoundFXVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics +{ + struct LyraSettingsLocal_eventGetSoundFXVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetSoundFXVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetSoundFXVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::LyraSettingsLocal_eventGetSoundFXVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::LyraSettingsLocal_eventGetSoundFXVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetSoundFXVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetSoundFXVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetSoundFXVolume + +// Begin Class ULyraSettingsLocal Function GetVoiceChatVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics +{ + struct LyraSettingsLocal_eventGetVoiceChatVolume_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventGetVoiceChatVolume_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "GetVoiceChatVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::LyraSettingsLocal_eventGetVoiceChatVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::LyraSettingsLocal_eventGetVoiceChatVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execGetVoiceChatVolume) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetVoiceChatVolume(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function GetVoiceChatVolume + +// Begin Class ULyraSettingsLocal Function IsHDRAudioModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics +{ + struct LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we're using High Dynamic Range Audio mode (HDR Audio) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we're using High Dynamic Range Audio mode (HDR Audio) *" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsHDRAudioModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventIsHDRAudioModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsHDRAudioModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHDRAudioModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsHDRAudioModeEnabled + +// Begin Class ULyraSettingsLocal Function IsHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns if we're using headphone mode (HRTF) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns if we're using headphone mode (HRTF) *" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventIsHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsHeadphoneModeEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHeadphoneModeEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function IsSafeZoneSet +struct Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics +{ + struct LyraSettingsLocal_eventIsSafeZoneSet_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventIsSafeZoneSet_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventIsSafeZoneSet_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "IsSafeZoneSet", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::LyraSettingsLocal_eventIsSafeZoneSet_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::LyraSettingsLocal_eventIsSafeZoneSet_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execIsSafeZoneSet) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsSafeZoneSet(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function IsSafeZoneSet + +// Begin Class ULyraSettingsLocal Function RunAutoBenchmark +struct Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics +{ + struct LyraSettingsLocal_eventRunAutoBenchmark_Parms + { + bool bSaveImmediately; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Run the auto benchmark, optionally saving right away */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Run the auto benchmark, optionally saving right away" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bSaveImmediately_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSaveImmediately; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventRunAutoBenchmark_Parms*)Obj)->bSaveImmediately = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately = { "bSaveImmediately", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventRunAutoBenchmark_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::NewProp_bSaveImmediately, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "RunAutoBenchmark", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::LyraSettingsLocal_eventRunAutoBenchmark_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::LyraSettingsLocal_eventRunAutoBenchmark_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execRunAutoBenchmark) +{ + P_GET_UBOOL(Z_Param_bSaveImmediately); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RunAutoBenchmark(Z_Param_bSaveImmediately); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function RunAutoBenchmark + +// Begin Class ULyraSettingsLocal Function SetAudioOutputDeviceId +struct Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics +{ + struct LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms + { + FString InAudioOutputDeviceId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the user's audio device by id */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the user's audio device by id" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InAudioOutputDeviceId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InAudioOutputDeviceId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::NewProp_InAudioOutputDeviceId = { "InAudioOutputDeviceId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms, InAudioOutputDeviceId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InAudioOutputDeviceId_MetaData), NewProp_InAudioOutputDeviceId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::NewProp_InAudioOutputDeviceId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetAudioOutputDeviceId", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::LyraSettingsLocal_eventSetAudioOutputDeviceId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetAudioOutputDeviceId) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InAudioOutputDeviceId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAudioOutputDeviceId(Z_Param_InAudioOutputDeviceId); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetAudioOutputDeviceId + +// Begin Class ULyraSettingsLocal Function SetControllerPlatform +struct Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics +{ + struct LyraSettingsLocal_eventSetControllerPlatform_Parms + { + FName InControllerPlatform; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets the controller representation to use, a single platform might support multiple kinds of controllers. For\n// example, Win64 games could be played with both an XBox or Playstation controller.\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the controller representation to use, a single platform might support multiple kinds of controllers. For\nexample, Win64 games could be played with both an XBox or Playstation controller." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InControllerPlatform_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_InControllerPlatform; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::NewProp_InControllerPlatform = { "InControllerPlatform", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetControllerPlatform_Parms, InControllerPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InControllerPlatform_MetaData), NewProp_InControllerPlatform_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::NewProp_InControllerPlatform, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetControllerPlatform", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::LyraSettingsLocal_eventSetControllerPlatform_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::LyraSettingsLocal_eventSetControllerPlatform_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetControllerPlatform) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_InControllerPlatform); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetControllerPlatform(Z_Param_InControllerPlatform); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetControllerPlatform + +// Begin Class ULyraSettingsLocal Function SetDesiredDeviceProfileQualitySuffix +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics +{ + struct LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms + { + FString InDesiredSuffix; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InDesiredSuffix_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InDesiredSuffix; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::NewProp_InDesiredSuffix = { "InDesiredSuffix", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms, InDesiredSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InDesiredSuffix_MetaData), NewProp_InDesiredSuffix_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::NewProp_InDesiredSuffix, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDesiredDeviceProfileQualitySuffix", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::LyraSettingsLocal_eventSetDesiredDeviceProfileQualitySuffix_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDesiredDeviceProfileQualitySuffix) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InDesiredSuffix); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDesiredDeviceProfileQualitySuffix(Z_Param_InDesiredSuffix); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDesiredDeviceProfileQualitySuffix + +// Begin Class ULyraSettingsLocal Function SetDialogueVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics +{ + struct LyraSettingsLocal_eventSetDialogueVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDialogueVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDialogueVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::LyraSettingsLocal_eventSetDialogueVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::LyraSettingsLocal_eventSetDialogueVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDialogueVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDialogueVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDialogueVolume + +// Begin Class ULyraSettingsLocal Function SetDisplayGamma +struct Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics +{ + struct LyraSettingsLocal_eventSetDisplayGamma_Parms + { + float InGamma; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InGamma; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::NewProp_InGamma = { "InGamma", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetDisplayGamma_Parms, InGamma), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::NewProp_InGamma, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetDisplayGamma", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::LyraSettingsLocal_eventSetDisplayGamma_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::LyraSettingsLocal_eventSetDisplayGamma_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetDisplayGamma) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InGamma); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetDisplayGamma(Z_Param_InGamma); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetDisplayGamma + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_Always +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_Always", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::LyraSettingsLocal_eventSetFrameRateLimit_Always_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_Always) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_Always(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_Always + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_InMenu +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_InMenu", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::LyraSettingsLocal_eventSetFrameRateLimit_InMenu_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_InMenu) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_InMenu(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_InMenu + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_OnBattery +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_OnBattery", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::LyraSettingsLocal_eventSetFrameRateLimit_OnBattery_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_OnBattery) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_OnBattery(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_OnBattery + +// Begin Class ULyraSettingsLocal Function SetFrameRateLimit_WhenBackgrounded +struct Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics +{ + struct LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms + { + float NewLimitFPS; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewLimitFPS; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::NewProp_NewLimitFPS = { "NewLimitFPS", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms, NewLimitFPS), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::NewProp_NewLimitFPS, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetFrameRateLimit_WhenBackgrounded", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::LyraSettingsLocal_eventSetFrameRateLimit_WhenBackgrounded_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetFrameRateLimit_WhenBackgrounded) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewLimitFPS); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetFrameRateLimit_WhenBackgrounded(Z_Param_NewLimitFPS); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetFrameRateLimit_WhenBackgrounded + +// Begin Class ULyraSettingsLocal Function SetHDRAudioModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics +{ + struct LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables or disables High Dynamic Range Audio mode (HDR Audio) */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables or disables High Dynamic Range Audio mode (HDR Audio)" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetHDRAudioModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::LyraSettingsLocal_eventSetHDRAudioModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetHDRAudioModeEnabled) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHDRAudioModeEnabled(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetHDRAudioModeEnabled + +// Begin Class ULyraSettingsLocal Function SetHeadphoneModeEnabled +struct Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics +{ + struct LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables or disables headphone mode (HRTF) - NOTE this setting will be overruled if au.DisableBinauralSpatialization is set */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables or disables headphone mode (HRTF) - NOTE this setting will be overruled if au.DisableBinauralSpatialization is set" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetHeadphoneModeEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::LyraSettingsLocal_eventSetHeadphoneModeEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetHeadphoneModeEnabled) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetHeadphoneModeEnabled(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetHeadphoneModeEnabled + +// Begin Class ULyraSettingsLocal Function SetMusicVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics +{ + struct LyraSettingsLocal_eventSetMusicVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetMusicVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetMusicVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::LyraSettingsLocal_eventSetMusicVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::LyraSettingsLocal_eventSetMusicVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetMusicVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMusicVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetMusicVolume + +// Begin Class ULyraSettingsLocal Function SetNumberOfReplaysToKeep +struct Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics +{ + struct LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms + { + int32 InNumberOfReplays; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InNumberOfReplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::NewProp_InNumberOfReplays = { "InNumberOfReplays", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms, InNumberOfReplays), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::NewProp_InNumberOfReplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetNumberOfReplaysToKeep", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::LyraSettingsLocal_eventSetNumberOfReplaysToKeep_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetNumberOfReplaysToKeep) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InNumberOfReplays); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetNumberOfReplaysToKeep(Z_Param_InNumberOfReplays); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetNumberOfReplaysToKeep + +// Begin Class ULyraSettingsLocal Function SetOverallVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics +{ + struct LyraSettingsLocal_eventSetOverallVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetOverallVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetOverallVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::LyraSettingsLocal_eventSetOverallVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::LyraSettingsLocal_eventSetOverallVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetOverallVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetOverallVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetOverallVolume + +// Begin Class ULyraSettingsLocal Function SetSafeZone +struct Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics +{ + struct LyraSettingsLocal_eventSetSafeZone_Parms + { + float Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetSafeZone_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetSafeZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::LyraSettingsLocal_eventSetSafeZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::LyraSettingsLocal_eventSetSafeZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetSafeZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSafeZone(Z_Param_Value); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetSafeZone + +// Begin Class ULyraSettingsLocal Function SetShouldAutoRecordReplays +struct Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics +{ + struct LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms + { + bool bEnabled; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnabled; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms*)Obj)->bEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled = { "bEnabled", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::NewProp_bEnabled, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetShouldAutoRecordReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventSetShouldAutoRecordReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetShouldAutoRecordReplays) +{ + P_GET_UBOOL(Z_Param_bEnabled); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShouldAutoRecordReplays(Z_Param_bEnabled); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetShouldAutoRecordReplays + +// Begin Class ULyraSettingsLocal Function SetSoundFXVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics +{ + struct LyraSettingsLocal_eventSetSoundFXVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetSoundFXVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetSoundFXVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::LyraSettingsLocal_eventSetSoundFXVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::LyraSettingsLocal_eventSetSoundFXVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetSoundFXVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSoundFXVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetSoundFXVolume + +// Begin Class ULyraSettingsLocal Function SetVoiceChatVolume +struct Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics +{ + struct LyraSettingsLocal_eventSetVoiceChatVolume_Parms + { + float InVolume; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_InVolume; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::NewProp_InVolume = { "InVolume", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsLocal_eventSetVoiceChatVolume_Parms, InVolume), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::NewProp_InVolume, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "SetVoiceChatVolume", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::LyraSettingsLocal_eventSetVoiceChatVolume_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::LyraSettingsLocal_eventSetVoiceChatVolume_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execSetVoiceChatVolume) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_InVolume); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetVoiceChatVolume(Z_Param_InVolume); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function SetVoiceChatVolume + +// Begin Class ULyraSettingsLocal Function ShouldAutoRecordReplays +struct Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics +{ + struct LyraSettingsLocal_eventShouldAutoRecordReplays_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventShouldAutoRecordReplays_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventShouldAutoRecordReplays_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "ShouldAutoRecordReplays", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventShouldAutoRecordReplays_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::LyraSettingsLocal_eventShouldAutoRecordReplays_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execShouldAutoRecordReplays) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldAutoRecordReplays(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function ShouldAutoRecordReplays + +// Begin Class ULyraSettingsLocal Function ShouldRunAutoBenchmarkAtStartup +struct Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics +{ + struct LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user should run the auto benchmark as it has never been run */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user should run the auto benchmark as it has never been run" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms), &Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsLocal, nullptr, "ShouldRunAutoBenchmarkAtStartup", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::LyraSettingsLocal_eventShouldRunAutoBenchmarkAtStartup_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsLocal::execShouldRunAutoBenchmarkAtStartup) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldRunAutoBenchmarkAtStartup(); + P_NATIVE_END; +} +// End Class ULyraSettingsLocal Function ShouldRunAutoBenchmarkAtStartup + +// Begin Class ULyraSettingsLocal +void ULyraSettingsLocal::StaticRegisterNativesULyraSettingsLocal() +{ + UClass* Class = ULyraSettingsLocal::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CanModifyHeadphoneModeEnabled", &ULyraSettingsLocal::execCanModifyHeadphoneModeEnabled }, + { "CanRunAutoBenchmark", &ULyraSettingsLocal::execCanRunAutoBenchmark }, + { "GetAudioOutputDeviceId", &ULyraSettingsLocal::execGetAudioOutputDeviceId }, + { "GetControllerPlatform", &ULyraSettingsLocal::execGetControllerPlatform }, + { "GetDesiredDeviceProfileQualitySuffix", &ULyraSettingsLocal::execGetDesiredDeviceProfileQualitySuffix }, + { "GetDialogueVolume", &ULyraSettingsLocal::execGetDialogueVolume }, + { "GetDisplayGamma", &ULyraSettingsLocal::execGetDisplayGamma }, + { "GetFrameRateLimit_Always", &ULyraSettingsLocal::execGetFrameRateLimit_Always }, + { "GetFrameRateLimit_InMenu", &ULyraSettingsLocal::execGetFrameRateLimit_InMenu }, + { "GetFrameRateLimit_OnBattery", &ULyraSettingsLocal::execGetFrameRateLimit_OnBattery }, + { "GetFrameRateLimit_WhenBackgrounded", &ULyraSettingsLocal::execGetFrameRateLimit_WhenBackgrounded }, + { "GetMusicVolume", &ULyraSettingsLocal::execGetMusicVolume }, + { "GetNumberOfReplaysToKeep", &ULyraSettingsLocal::execGetNumberOfReplaysToKeep }, + { "GetOverallVolume", &ULyraSettingsLocal::execGetOverallVolume }, + { "GetSafeZone", &ULyraSettingsLocal::execGetSafeZone }, + { "GetSoundFXVolume", &ULyraSettingsLocal::execGetSoundFXVolume }, + { "GetVoiceChatVolume", &ULyraSettingsLocal::execGetVoiceChatVolume }, + { "IsHDRAudioModeEnabled", &ULyraSettingsLocal::execIsHDRAudioModeEnabled }, + { "IsHeadphoneModeEnabled", &ULyraSettingsLocal::execIsHeadphoneModeEnabled }, + { "IsSafeZoneSet", &ULyraSettingsLocal::execIsSafeZoneSet }, + { "RunAutoBenchmark", &ULyraSettingsLocal::execRunAutoBenchmark }, + { "SetAudioOutputDeviceId", &ULyraSettingsLocal::execSetAudioOutputDeviceId }, + { "SetControllerPlatform", &ULyraSettingsLocal::execSetControllerPlatform }, + { "SetDesiredDeviceProfileQualitySuffix", &ULyraSettingsLocal::execSetDesiredDeviceProfileQualitySuffix }, + { "SetDialogueVolume", &ULyraSettingsLocal::execSetDialogueVolume }, + { "SetDisplayGamma", &ULyraSettingsLocal::execSetDisplayGamma }, + { "SetFrameRateLimit_Always", &ULyraSettingsLocal::execSetFrameRateLimit_Always }, + { "SetFrameRateLimit_InMenu", &ULyraSettingsLocal::execSetFrameRateLimit_InMenu }, + { "SetFrameRateLimit_OnBattery", &ULyraSettingsLocal::execSetFrameRateLimit_OnBattery }, + { "SetFrameRateLimit_WhenBackgrounded", &ULyraSettingsLocal::execSetFrameRateLimit_WhenBackgrounded }, + { "SetHDRAudioModeEnabled", &ULyraSettingsLocal::execSetHDRAudioModeEnabled }, + { "SetHeadphoneModeEnabled", &ULyraSettingsLocal::execSetHeadphoneModeEnabled }, + { "SetMusicVolume", &ULyraSettingsLocal::execSetMusicVolume }, + { "SetNumberOfReplaysToKeep", &ULyraSettingsLocal::execSetNumberOfReplaysToKeep }, + { "SetOverallVolume", &ULyraSettingsLocal::execSetOverallVolume }, + { "SetSafeZone", &ULyraSettingsLocal::execSetSafeZone }, + { "SetShouldAutoRecordReplays", &ULyraSettingsLocal::execSetShouldAutoRecordReplays }, + { "SetSoundFXVolume", &ULyraSettingsLocal::execSetSoundFXVolume }, + { "SetVoiceChatVolume", &ULyraSettingsLocal::execSetVoiceChatVolume }, + { "ShouldAutoRecordReplays", &ULyraSettingsLocal::execShouldAutoRecordReplays }, + { "ShouldRunAutoBenchmarkAtStartup", &ULyraSettingsLocal::execShouldRunAutoBenchmarkAtStartup }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsLocal); +UClass* Z_Construct_UClass_ULyraSettingsLocal_NoRegister() +{ + return ULyraSettingsLocal::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsLocal_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraSettingsLocal\n */" }, +#endif + { "IncludePath", "Settings/LyraSettingsLocal.h" }, + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsLocal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayStatList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of stats to display in the HUD\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of stats to display in the HUD" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayGamma_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_OnBattery_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_InMenu_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameRateLimit_WhenBackgrounded_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MobileFrameRateLimit_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserChosenDeviceProfileSuffix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bDesiredHeadphoneMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether we *want* to use headphone mode (HRTF); may or may not actually be applied **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether we *want* to use headphone mode (HRTF); may or may not actually be applied *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseHeadphoneMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether to use headphone mode (HRTF) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether to use headphone mode (HRTF) *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseHDRAudioMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether to use High Dynamic Range Audio mode (HDR Audio) **/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether to use High Dynamic Range Audio mode (HDR Audio) *" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AudioOutputDeviceId_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverallVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MusicVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SoundFXVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DialogueVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VoiceChatVolume_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlBusMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/*SoundClassName*/" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "SoundClassName" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlBusMix_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSoundControlBusMixLoaded_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SafeZoneScale_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerPlatform_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * The name of the controller the player is using. This is maps to the name of a UCommonInputBaseControllerData\n\x09 * that is available on this current platform. The gamepad data are registered per platform, you'll find them\n\x09 * in Game.ini files listed under +ControllerData=...\n\x09 */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The name of the controller the player is using. This is maps to the name of a UCommonInputBaseControllerData\nthat is available on this current platform. The gamepad data are registered per platform, you'll find them\nin Game.ini files listed under +ControllerData=..." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputConfigName_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The name of the current input config that the user has selected. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The name of the current input config that the user has selected." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShouldAutoRecordReplays_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NumberOfReplaysToKeep_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsLocal.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_DisplayStatList_ValueProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DisplayStatList_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_DisplayStatList_Key_KeyProp_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_DisplayStatList_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_DisplayStatList; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayGamma; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_OnBattery; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_InMenu; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FrameRateLimit_WhenBackgrounded; + static const UECodeGen_Private::FIntPropertyParams NewProp_MobileFrameRateLimit; + static const UECodeGen_Private::FStrPropertyParams NewProp_DesiredUserChosenDeviceProfileSuffix; + static const UECodeGen_Private::FStrPropertyParams NewProp_CurrentAppliedDeviceProfileOverrideSuffix; + static const UECodeGen_Private::FStrPropertyParams NewProp_UserChosenDeviceProfileSuffix; + static void NewProp_bDesiredHeadphoneMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDesiredHeadphoneMode; + static void NewProp_bUseHeadphoneMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseHeadphoneMode; + static void NewProp_bUseHDRAudioMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseHDRAudioMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_AudioOutputDeviceId; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OverallVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_MusicVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SoundFXVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DialogueVolume; + static const UECodeGen_Private::FFloatPropertyParams NewProp_VoiceChatVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlBusMap_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControlBusMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ControlBusMap; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlBusMix; + static void NewProp_bSoundControlBusMixLoaded_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSoundControlBusMixLoaded; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SafeZoneScale; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControllerPlatform; + static const UECodeGen_Private::FNamePropertyParams NewProp_ControllerPreset; + static const UECodeGen_Private::FNamePropertyParams NewProp_InputConfigName; + static void NewProp_bShouldAutoRecordReplays_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShouldAutoRecordReplays; + static const UECodeGen_Private::FIntPropertyParams NewProp_NumberOfReplaysToKeep; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingsLocal_CanModifyHeadphoneModeEnabled, "CanModifyHeadphoneModeEnabled" }, // 3420631359 + { &Z_Construct_UFunction_ULyraSettingsLocal_CanRunAutoBenchmark, "CanRunAutoBenchmark" }, // 3732596120 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetAudioOutputDeviceId, "GetAudioOutputDeviceId" }, // 2053297354 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetControllerPlatform, "GetControllerPlatform" }, // 3192584156 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDesiredDeviceProfileQualitySuffix, "GetDesiredDeviceProfileQualitySuffix" }, // 2119648104 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDialogueVolume, "GetDialogueVolume" }, // 3318042902 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetDisplayGamma, "GetDisplayGamma" }, // 1117484790 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_Always, "GetFrameRateLimit_Always" }, // 2426701224 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_InMenu, "GetFrameRateLimit_InMenu" }, // 1644183296 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_OnBattery, "GetFrameRateLimit_OnBattery" }, // 3607677185 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetFrameRateLimit_WhenBackgrounded, "GetFrameRateLimit_WhenBackgrounded" }, // 1216475453 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetMusicVolume, "GetMusicVolume" }, // 1339901776 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetNumberOfReplaysToKeep, "GetNumberOfReplaysToKeep" }, // 1027580513 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetOverallVolume, "GetOverallVolume" }, // 573752904 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetSafeZone, "GetSafeZone" }, // 832394678 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetSoundFXVolume, "GetSoundFXVolume" }, // 1732289228 + { &Z_Construct_UFunction_ULyraSettingsLocal_GetVoiceChatVolume, "GetVoiceChatVolume" }, // 2320558529 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsHDRAudioModeEnabled, "IsHDRAudioModeEnabled" }, // 925320332 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsHeadphoneModeEnabled, "IsHeadphoneModeEnabled" }, // 1802831161 + { &Z_Construct_UFunction_ULyraSettingsLocal_IsSafeZoneSet, "IsSafeZoneSet" }, // 3174079049 + { &Z_Construct_UFunction_ULyraSettingsLocal_RunAutoBenchmark, "RunAutoBenchmark" }, // 3038396397 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetAudioOutputDeviceId, "SetAudioOutputDeviceId" }, // 2254559159 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetControllerPlatform, "SetControllerPlatform" }, // 1002647973 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDesiredDeviceProfileQualitySuffix, "SetDesiredDeviceProfileQualitySuffix" }, // 769604952 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDialogueVolume, "SetDialogueVolume" }, // 278681766 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetDisplayGamma, "SetDisplayGamma" }, // 1945765286 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_Always, "SetFrameRateLimit_Always" }, // 1232068044 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_InMenu, "SetFrameRateLimit_InMenu" }, // 1369593880 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_OnBattery, "SetFrameRateLimit_OnBattery" }, // 1033284271 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetFrameRateLimit_WhenBackgrounded, "SetFrameRateLimit_WhenBackgrounded" }, // 4083522660 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetHDRAudioModeEnabled, "SetHDRAudioModeEnabled" }, // 1287462041 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetHeadphoneModeEnabled, "SetHeadphoneModeEnabled" }, // 1630952307 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetMusicVolume, "SetMusicVolume" }, // 4079358407 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetNumberOfReplaysToKeep, "SetNumberOfReplaysToKeep" }, // 2836504419 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetOverallVolume, "SetOverallVolume" }, // 3430338600 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetSafeZone, "SetSafeZone" }, // 2149410127 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetShouldAutoRecordReplays, "SetShouldAutoRecordReplays" }, // 2395177566 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetSoundFXVolume, "SetSoundFXVolume" }, // 820056846 + { &Z_Construct_UFunction_ULyraSettingsLocal_SetVoiceChatVolume, "SetVoiceChatVolume" }, // 4282149416 + { &Z_Construct_UFunction_ULyraSettingsLocal_ShouldAutoRecordReplays, "ShouldAutoRecordReplays" }, // 3853555275 + { &Z_Construct_UFunction_ULyraSettingsLocal_ShouldRunAutoBenchmarkAtStartup, "ShouldRunAutoBenchmarkAtStartup" }, // 694773543 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp = { "DisplayStatList", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UEnum_LyraGame_ELyraStatDisplayMode, METADATA_PARAMS(0, nullptr) }; // 3127134116 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp = { "DisplayStatList_Key", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UEnum_LyraGame_ELyraDisplayablePerformanceStat, METADATA_PARAMS(0, nullptr) }; // 3286822108 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList = { "DisplayStatList", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DisplayStatList), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayStatList_MetaData), NewProp_DisplayStatList_MetaData) }; // 3286822108 3127134116 +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayGamma = { "DisplayGamma", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DisplayGamma), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayGamma_MetaData), NewProp_DisplayGamma_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_OnBattery = { "FrameRateLimit_OnBattery", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_OnBattery), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_OnBattery_MetaData), NewProp_FrameRateLimit_OnBattery_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_InMenu = { "FrameRateLimit_InMenu", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_InMenu), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_InMenu_MetaData), NewProp_FrameRateLimit_InMenu_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_WhenBackgrounded = { "FrameRateLimit_WhenBackgrounded", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, FrameRateLimit_WhenBackgrounded), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameRateLimit_WhenBackgrounded_MetaData), NewProp_FrameRateLimit_WhenBackgrounded_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MobileFrameRateLimit = { "MobileFrameRateLimit", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, MobileFrameRateLimit), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MobileFrameRateLimit_MetaData), NewProp_MobileFrameRateLimit_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DesiredUserChosenDeviceProfileSuffix = { "DesiredUserChosenDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DesiredUserChosenDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData), NewProp_DesiredUserChosenDeviceProfileSuffix_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_CurrentAppliedDeviceProfileOverrideSuffix = { "CurrentAppliedDeviceProfileOverrideSuffix", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, CurrentAppliedDeviceProfileOverrideSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData), NewProp_CurrentAppliedDeviceProfileOverrideSuffix_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_UserChosenDeviceProfileSuffix = { "UserChosenDeviceProfileSuffix", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, UserChosenDeviceProfileSuffix), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserChosenDeviceProfileSuffix_MetaData), NewProp_UserChosenDeviceProfileSuffix_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bDesiredHeadphoneMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode = { "bDesiredHeadphoneMode", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bDesiredHeadphoneMode_MetaData), NewProp_bDesiredHeadphoneMode_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bUseHeadphoneMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode = { "bUseHeadphoneMode", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseHeadphoneMode_MetaData), NewProp_bUseHeadphoneMode_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bUseHDRAudioMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode = { "bUseHDRAudioMode", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseHDRAudioMode_MetaData), NewProp_bUseHDRAudioMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_AudioOutputDeviceId = { "AudioOutputDeviceId", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, AudioOutputDeviceId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AudioOutputDeviceId_MetaData), NewProp_AudioOutputDeviceId_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_OverallVolume = { "OverallVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, OverallVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverallVolume_MetaData), NewProp_OverallVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MusicVolume = { "MusicVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, MusicVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MusicVolume_MetaData), NewProp_MusicVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SoundFXVolume = { "SoundFXVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, SoundFXVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SoundFXVolume_MetaData), NewProp_SoundFXVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DialogueVolume = { "DialogueVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, DialogueVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DialogueVolume_MetaData), NewProp_DialogueVolume_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_VoiceChatVolume = { "VoiceChatVolume", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, VoiceChatVolume), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VoiceChatVolume_MetaData), NewProp_VoiceChatVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_ValueProp = { "ControlBusMap", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_USoundControlBus_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_Key_KeyProp = { "ControlBusMap_Key", nullptr, (EPropertyFlags)0x0100000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap = { "ControlBusMap", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControlBusMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlBusMap_MetaData), NewProp_ControlBusMap_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMix = { "ControlBusMix", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControlBusMix), Z_Construct_UClass_USoundControlBusMix_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlBusMix_MetaData), NewProp_ControlBusMix_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bSoundControlBusMixLoaded = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded = { "bSoundControlBusMixLoaded", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSoundControlBusMixLoaded_MetaData), NewProp_bSoundControlBusMixLoaded_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SafeZoneScale = { "SafeZoneScale", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, SafeZoneScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SafeZoneScale_MetaData), NewProp_SafeZoneScale_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPlatform = { "ControllerPlatform", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControllerPlatform), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerPlatform_MetaData), NewProp_ControllerPlatform_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPreset = { "ControllerPreset", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, ControllerPreset), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerPreset_MetaData), NewProp_ControllerPreset_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_InputConfigName = { "InputConfigName", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, InputConfigName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputConfigName_MetaData), NewProp_InputConfigName_MetaData) }; +void Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays_SetBit(void* Obj) +{ + ((ULyraSettingsLocal*)Obj)->bShouldAutoRecordReplays = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays = { "bShouldAutoRecordReplays", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsLocal), &Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShouldAutoRecordReplays_MetaData), NewProp_bShouldAutoRecordReplays_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_NumberOfReplaysToKeep = { "NumberOfReplaysToKeep", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsLocal, NumberOfReplaysToKeep), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NumberOfReplaysToKeep_MetaData), NewProp_NumberOfReplaysToKeep_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayStatList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DisplayGamma, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_OnBattery, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_InMenu, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_FrameRateLimit_WhenBackgrounded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MobileFrameRateLimit, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DesiredUserChosenDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_CurrentAppliedDeviceProfileOverrideSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_UserChosenDeviceProfileSuffix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bDesiredHeadphoneMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHeadphoneMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bUseHDRAudioMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_AudioOutputDeviceId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_OverallVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_MusicVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SoundFXVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_DialogueVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_VoiceChatVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMap, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControlBusMix, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bSoundControlBusMixLoaded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_SafeZoneScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPlatform, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_ControllerPreset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_InputConfigName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_bShouldAutoRecordReplays, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsLocal_Statics::NewProp_NumberOfReplaysToKeep, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsLocal_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameUserSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsLocal_Statics::ClassParams = { + &ULyraSettingsLocal::StaticClass, + "GameUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::PropPointers), + 0, + 0x408000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsLocal_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsLocal_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsLocal() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton, Z_Construct_UClass_ULyraSettingsLocal_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsLocal.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsLocal::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsLocal); +ULyraSettingsLocal::~ULyraSettingsLocal() {} +// End Class ULyraSettingsLocal + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraScalabilitySnapshot::StaticStruct, Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics::NewStructOps, TEXT("LyraScalabilitySnapshot"), &Z_Registration_Info_UScriptStruct_LyraScalabilitySnapshot, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraScalabilitySnapshot), 2126010832U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsLocal, ULyraSettingsLocal::StaticClass, TEXT("ULyraSettingsLocal"), &Z_Registration_Info_UClass_ULyraSettingsLocal, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsLocal), 1695691152U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_3732542961(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h new file mode 100644 index 00000000..037f545d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsLocal.generated.h @@ -0,0 +1,106 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraSettingsLocal.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSettingsLocal_generated_h +#error "LyraSettingsLocal.generated.h already included, missing '#pragma once' in LyraSettingsLocal.h" +#endif +#define LYRAGAME_LyraSettingsLocal_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_23_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraScalabilitySnapshot_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetNumberOfReplaysToKeep); \ + DECLARE_FUNCTION(execGetNumberOfReplaysToKeep); \ + DECLARE_FUNCTION(execSetShouldAutoRecordReplays); \ + DECLARE_FUNCTION(execShouldAutoRecordReplays); \ + DECLARE_FUNCTION(execGetControllerPlatform); \ + DECLARE_FUNCTION(execSetControllerPlatform); \ + DECLARE_FUNCTION(execSetSafeZone); \ + DECLARE_FUNCTION(execGetSafeZone); \ + DECLARE_FUNCTION(execIsSafeZoneSet); \ + DECLARE_FUNCTION(execSetAudioOutputDeviceId); \ + DECLARE_FUNCTION(execGetAudioOutputDeviceId); \ + DECLARE_FUNCTION(execSetVoiceChatVolume); \ + DECLARE_FUNCTION(execGetVoiceChatVolume); \ + DECLARE_FUNCTION(execSetDialogueVolume); \ + DECLARE_FUNCTION(execGetDialogueVolume); \ + DECLARE_FUNCTION(execSetSoundFXVolume); \ + DECLARE_FUNCTION(execGetSoundFXVolume); \ + DECLARE_FUNCTION(execSetMusicVolume); \ + DECLARE_FUNCTION(execGetMusicVolume); \ + DECLARE_FUNCTION(execSetOverallVolume); \ + DECLARE_FUNCTION(execGetOverallVolume); \ + DECLARE_FUNCTION(execRunAutoBenchmark); \ + DECLARE_FUNCTION(execShouldRunAutoBenchmarkAtStartup); \ + DECLARE_FUNCTION(execCanRunAutoBenchmark); \ + DECLARE_FUNCTION(execSetHDRAudioModeEnabled); \ + DECLARE_FUNCTION(execIsHDRAudioModeEnabled); \ + DECLARE_FUNCTION(execCanModifyHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execSetHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execIsHeadphoneModeEnabled); \ + DECLARE_FUNCTION(execSetDesiredDeviceProfileQualitySuffix); \ + DECLARE_FUNCTION(execGetDesiredDeviceProfileQualitySuffix); \ + DECLARE_FUNCTION(execSetFrameRateLimit_Always); \ + DECLARE_FUNCTION(execGetFrameRateLimit_Always); \ + DECLARE_FUNCTION(execSetFrameRateLimit_WhenBackgrounded); \ + DECLARE_FUNCTION(execGetFrameRateLimit_WhenBackgrounded); \ + DECLARE_FUNCTION(execSetFrameRateLimit_InMenu); \ + DECLARE_FUNCTION(execGetFrameRateLimit_InMenu); \ + DECLARE_FUNCTION(execSetFrameRateLimit_OnBattery); \ + DECLARE_FUNCTION(execGetFrameRateLimit_OnBattery); \ + DECLARE_FUNCTION(execSetDisplayGamma); \ + DECLARE_FUNCTION(execGetDisplayGamma); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsLocal(); \ + friend struct Z_Construct_UClass_ULyraSettingsLocal_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsLocal, UGameUserSettings, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsLocal) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsLocal(ULyraSettingsLocal&&); \ + ULyraSettingsLocal(const ULyraSettingsLocal&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsLocal); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsLocal); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingsLocal) \ + NO_API virtual ~ULyraSettingsLocal(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_35_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h_38_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsLocal_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp new file mode 100644 index 00000000..b98fac25 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.gen.cpp @@ -0,0 +1,2663 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Settings/LyraSettingsShared.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSettingsShared() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayerSaveGame(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_EColorBlindMode(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Enum EColorBlindMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EColorBlindMode; +static UEnum* EColorBlindMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton) + { + Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_EColorBlindMode, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("EColorBlindMode")); + } + return Z_Registration_Info_UEnum_EColorBlindMode.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return EColorBlindMode_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Deuteranope.Comment", "// Deuteranope (green weak/blind)\n" }, + { "Deuteranope.Name", "EColorBlindMode::Deuteranope" }, + { "Deuteranope.ToolTip", "Deuteranope (green weak/blind)" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Off.Name", "EColorBlindMode::Off" }, + { "Protanope.Comment", "// Protanope (red weak/blind)\n" }, + { "Protanope.Name", "EColorBlindMode::Protanope" }, + { "Protanope.ToolTip", "Protanope (red weak/blind)" }, + { "Tritanope.Comment", "// Tritanope(blue weak / bind)\n" }, + { "Tritanope.Name", "EColorBlindMode::Tritanope" }, + { "Tritanope.ToolTip", "Tritanope(blue weak / bind)" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EColorBlindMode::Off", (int64)EColorBlindMode::Off }, + { "EColorBlindMode::Deuteranope", (int64)EColorBlindMode::Deuteranope }, + { "EColorBlindMode::Protanope", (int64)EColorBlindMode::Protanope }, + { "EColorBlindMode::Tritanope", (int64)EColorBlindMode::Tritanope }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "EColorBlindMode", + "EColorBlindMode", + Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_EColorBlindMode() +{ + if (!Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton, Z_Construct_UEnum_LyraGame_EColorBlindMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EColorBlindMode.InnerSingleton; +} +// End Enum EColorBlindMode + +// Begin Enum ELyraAllowBackgroundAudioSetting +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting; +static UEnum* ELyraAllowBackgroundAudioSetting_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraAllowBackgroundAudioSetting")); + } + return Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraAllowBackgroundAudioSetting_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AllSounds.Name", "ELyraAllowBackgroundAudioSetting::AllSounds" }, + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Num.Hidden", "" }, + { "Num.Name", "ELyraAllowBackgroundAudioSetting::Num" }, + { "Off.Name", "ELyraAllowBackgroundAudioSetting::Off" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraAllowBackgroundAudioSetting::Off", (int64)ELyraAllowBackgroundAudioSetting::Off }, + { "ELyraAllowBackgroundAudioSetting::AllSounds", (int64)ELyraAllowBackgroundAudioSetting::AllSounds }, + { "ELyraAllowBackgroundAudioSetting::Num", (int64)ELyraAllowBackgroundAudioSetting::Num }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraAllowBackgroundAudioSetting", + "ELyraAllowBackgroundAudioSetting", + Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting() +{ + if (!Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting.InnerSingleton; +} +// End Enum ELyraAllowBackgroundAudioSetting + +// Begin Enum ELyraGamepadSensitivity +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraGamepadSensitivity; +static UEnum* ELyraGamepadSensitivity_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraGamepadSensitivity")); + } + return Z_Registration_Info_UEnum_ELyraGamepadSensitivity.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraGamepadSensitivity_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Fast.DisplayName", "07 - Fast" }, + { "Fast.Name", "ELyraGamepadSensitivity::Fast" }, + { "FastPlus.DisplayName", "08 - Fast+" }, + { "FastPlus.Name", "ELyraGamepadSensitivity::FastPlus" }, + { "FastPlusPlus.DisplayName", "09 - Fast++" }, + { "FastPlusPlus.Name", "ELyraGamepadSensitivity::FastPlusPlus" }, + { "Insane.DisplayName", "10 - Insane" }, + { "Insane.Name", "ELyraGamepadSensitivity::Insane" }, + { "Invalid.Hidden", "" }, + { "Invalid.Name", "ELyraGamepadSensitivity::Invalid" }, + { "MAX.Hidden", "" }, + { "MAX.Name", "ELyraGamepadSensitivity::MAX" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + { "Normal.DisplayName", "04 - Normal" }, + { "Normal.Name", "ELyraGamepadSensitivity::Normal" }, + { "NormalPlus.DisplayName", "05 - Normal+" }, + { "NormalPlus.Name", "ELyraGamepadSensitivity::NormalPlus" }, + { "NormalPlusPlus.DisplayName", "06 - Normal++" }, + { "NormalPlusPlus.Name", "ELyraGamepadSensitivity::NormalPlusPlus" }, + { "Slow.DisplayName", "01 - Slow" }, + { "Slow.Name", "ELyraGamepadSensitivity::Slow" }, + { "SlowPlus.DisplayName", "02 - Slow+" }, + { "SlowPlus.Name", "ELyraGamepadSensitivity::SlowPlus" }, + { "SlowPlusPlus.DisplayName", "03 - Slow++" }, + { "SlowPlusPlus.Name", "ELyraGamepadSensitivity::SlowPlusPlus" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraGamepadSensitivity::Invalid", (int64)ELyraGamepadSensitivity::Invalid }, + { "ELyraGamepadSensitivity::Slow", (int64)ELyraGamepadSensitivity::Slow }, + { "ELyraGamepadSensitivity::SlowPlus", (int64)ELyraGamepadSensitivity::SlowPlus }, + { "ELyraGamepadSensitivity::SlowPlusPlus", (int64)ELyraGamepadSensitivity::SlowPlusPlus }, + { "ELyraGamepadSensitivity::Normal", (int64)ELyraGamepadSensitivity::Normal }, + { "ELyraGamepadSensitivity::NormalPlus", (int64)ELyraGamepadSensitivity::NormalPlus }, + { "ELyraGamepadSensitivity::NormalPlusPlus", (int64)ELyraGamepadSensitivity::NormalPlusPlus }, + { "ELyraGamepadSensitivity::Fast", (int64)ELyraGamepadSensitivity::Fast }, + { "ELyraGamepadSensitivity::FastPlus", (int64)ELyraGamepadSensitivity::FastPlus }, + { "ELyraGamepadSensitivity::FastPlusPlus", (int64)ELyraGamepadSensitivity::FastPlusPlus }, + { "ELyraGamepadSensitivity::Insane", (int64)ELyraGamepadSensitivity::Insane }, + { "ELyraGamepadSensitivity::MAX", (int64)ELyraGamepadSensitivity::MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraGamepadSensitivity", + "ELyraGamepadSensitivity", + Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity() +{ + if (!Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraGamepadSensitivity.InnerSingleton; +} +// End Enum ELyraGamepadSensitivity + +// Begin Class ULyraSettingsShared Function GetAllowAudioInBackgroundSetting +struct Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics +{ + struct LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms + { + ELyraAllowBackgroundAudioSetting ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(0, nullptr) }; // 2007560343 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetAllowAudioInBackgroundSetting", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventGetAllowAudioInBackgroundSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetAllowAudioInBackgroundSetting) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraAllowBackgroundAudioSetting*)Z_Param__Result=P_THIS->GetAllowAudioInBackgroundSetting(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetAllowAudioInBackgroundSetting + +// Begin Class ULyraSettingsShared Function GetColorBlindMode +struct Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics +{ + struct LyraSettingsShared_eventGetColorBlindMode_Parms + { + EColorBlindMode ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "////////////////////////////////////////////////////////\n// Color Blind Options\n" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Color Blind Options" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetColorBlindMode_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(0, nullptr) }; // 651048152 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetColorBlindMode", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::LyraSettingsShared_eventGetColorBlindMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::LyraSettingsShared_eventGetColorBlindMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetColorBlindMode) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(EColorBlindMode*)Z_Param__Result=P_THIS->GetColorBlindMode(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetColorBlindMode + +// Begin Class ULyraSettingsShared Function GetColorBlindStrength +struct Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics +{ + struct LyraSettingsShared_eventGetColorBlindStrength_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetColorBlindStrength_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetColorBlindStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::LyraSettingsShared_eventGetColorBlindStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::LyraSettingsShared_eventGetColorBlindStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetColorBlindStrength) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetColorBlindStrength(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetColorBlindStrength + +// Begin Class ULyraSettingsShared Function GetForceFeedbackEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics +{ + struct LyraSettingsShared_eventGetForceFeedbackEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetForceFeedbackEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetForceFeedbackEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetForceFeedbackEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::LyraSettingsShared_eventGetForceFeedbackEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::LyraSettingsShared_eventGetForceFeedbackEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetForceFeedbackEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetForceFeedbackEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetForceFeedbackEnabled + +// Begin Class ULyraSettingsShared Function GetGamepadLookSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms + { + ELyraGamepadSensitivity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadLookSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadLookSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadLookSensitivityPreset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraGamepadSensitivity*)Z_Param__Result=P_THIS->GetGamepadLookSensitivityPreset(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadLookSensitivityPreset + +// Begin Class ULyraSettingsShared Function GetGamepadLookStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics +{ + struct LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Getter for gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Getter for gamepad look stick dead zone value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadLookStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadLookStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadLookStickDeadZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetGamepadLookStickDeadZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadLookStickDeadZone + +// Begin Class ULyraSettingsShared Function GetGamepadMoveStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics +{ + struct LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Getter for gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Getter for gamepad move stick dead zone value." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadMoveStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventGetGamepadMoveStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadMoveStickDeadZone) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetGamepadMoveStickDeadZone(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadMoveStickDeadZone + +// Begin Class ULyraSettingsShared Function GetGamepadTargetingSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms + { + ELyraGamepadSensitivity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetGamepadTargetingSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventGetGamepadTargetingSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetGamepadTargetingSensitivityPreset) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraGamepadSensitivity*)Z_Param__Result=P_THIS->GetGamepadTargetingSensitivityPreset(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetGamepadTargetingSensitivityPreset + +// Begin Class ULyraSettingsShared Function GetInvertHorizontalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics +{ + struct LyraSettingsShared_eventGetInvertHorizontalAxis_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetInvertHorizontalAxis_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetInvertHorizontalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetInvertHorizontalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::LyraSettingsShared_eventGetInvertHorizontalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::LyraSettingsShared_eventGetInvertHorizontalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetInvertHorizontalAxis) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetInvertHorizontalAxis(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetInvertHorizontalAxis + +// Begin Class ULyraSettingsShared Function GetInvertVerticalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics +{ + struct LyraSettingsShared_eventGetInvertVerticalAxis_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetInvertVerticalAxis_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetInvertVerticalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetInvertVerticalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::LyraSettingsShared_eventGetInvertVerticalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::LyraSettingsShared_eventGetInvertVerticalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetInvertVerticalAxis) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetInvertVerticalAxis(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetInvertVerticalAxis + +// Begin Class ULyraSettingsShared Function GetMouseSensitivityX +struct Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics +{ + struct LyraSettingsShared_eventGetMouseSensitivityX_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetMouseSensitivityX_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetMouseSensitivityX", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::LyraSettingsShared_eventGetMouseSensitivityX_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::LyraSettingsShared_eventGetMouseSensitivityX_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetMouseSensitivityX) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetMouseSensitivityX(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetMouseSensitivityX + +// Begin Class ULyraSettingsShared Function GetMouseSensitivityY +struct Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics +{ + struct LyraSettingsShared_eventGetMouseSensitivityY_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetMouseSensitivityY_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetMouseSensitivityY", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::LyraSettingsShared_eventGetMouseSensitivityY_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::LyraSettingsShared_eventGetMouseSensitivityY_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetMouseSensitivityY) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetMouseSensitivityY(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetMouseSensitivityY + +// Begin Class ULyraSettingsShared Function GetSubtitlesBackgroundOpacity +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms + { + ESubtitleDisplayBackgroundOpacity ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(0, nullptr) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesBackgroundOpacity", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventGetSubtitlesBackgroundOpacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesBackgroundOpacity) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayBackgroundOpacity*)Z_Param__Result=P_THIS->GetSubtitlesBackgroundOpacity(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesBackgroundOpacity + +// Begin Class ULyraSettingsShared Function GetSubtitlesEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetSubtitlesEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetSubtitlesEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::LyraSettingsShared_eventGetSubtitlesEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::LyraSettingsShared_eventGetSubtitlesEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetSubtitlesEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesEnabled + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextBorder +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextBorder_Parms + { + ESubtitleDisplayTextBorder ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextBorder_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(0, nullptr) }; // 4054656008 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextBorder", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::LyraSettingsShared_eventGetSubtitlesTextBorder_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::LyraSettingsShared_eventGetSubtitlesTextBorder_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextBorder) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextBorder*)Z_Param__Result=P_THIS->GetSubtitlesTextBorder(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextBorder + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextColor +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextColor_Parms + { + ESubtitleDisplayTextColor ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextColor_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(0, nullptr) }; // 3844635282 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextColor", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::LyraSettingsShared_eventGetSubtitlesTextColor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::LyraSettingsShared_eventGetSubtitlesTextColor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextColor) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextColor*)Z_Param__Result=P_THIS->GetSubtitlesTextColor(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextColor + +// Begin Class ULyraSettingsShared Function GetSubtitlesTextSize +struct Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics +{ + struct LyraSettingsShared_eventGetSubtitlesTextSize_Parms + { + ESubtitleDisplayTextSize ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetSubtitlesTextSize_Parms, ReturnValue), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(0, nullptr) }; // 4054621106 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetSubtitlesTextSize", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::LyraSettingsShared_eventGetSubtitlesTextSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::LyraSettingsShared_eventGetSubtitlesTextSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetSubtitlesTextSize) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESubtitleDisplayTextSize*)Z_Param__Result=P_THIS->GetSubtitlesTextSize(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetSubtitlesTextSize + +// Begin Class ULyraSettingsShared Function GetTargetingMultiplier +struct Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics +{ + struct LyraSettingsShared_eventGetTargetingMultiplier_Parms + { + double ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTargetingMultiplier_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTargetingMultiplier", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::LyraSettingsShared_eventGetTargetingMultiplier_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::LyraSettingsShared_eventGetTargetingMultiplier_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTargetingMultiplier) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(double*)Z_Param__Result=P_THIS->GetTargetingMultiplier(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTargetingMultiplier + +// Begin Class ULyraSettingsShared Function GetTriggerHapticsEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticsEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventGetTriggerHapticsEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticsEnabled) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetTriggerHapticsEnabled(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticsEnabled + +// Begin Class ULyraSettingsShared Function GetTriggerHapticStartPosition +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms + { + uint8 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms, ReturnValue), nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticStartPosition", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventGetTriggerHapticStartPosition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticStartPosition) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(uint8*)Z_Param__Result=P_THIS->GetTriggerHapticStartPosition(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticStartPosition + +// Begin Class ULyraSettingsShared Function GetTriggerHapticStrength +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics +{ + struct LyraSettingsShared_eventGetTriggerHapticStrength_Parms + { + uint8 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventGetTriggerHapticStrength_Parms, ReturnValue), nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerHapticStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::LyraSettingsShared_eventGetTriggerHapticStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::LyraSettingsShared_eventGetTriggerHapticStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerHapticStrength) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(uint8*)Z_Param__Result=P_THIS->GetTriggerHapticStrength(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerHapticStrength + +// Begin Class ULyraSettingsShared Function GetTriggerPullUsesHapticThreshold +struct Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics +{ + struct LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms), &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "GetTriggerPullUsesHapticThreshold", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventGetTriggerPullUsesHapticThreshold_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execGetTriggerPullUsesHapticThreshold) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetTriggerPullUsesHapticThreshold(); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function GetTriggerPullUsesHapticThreshold + +// Begin Class ULyraSettingsShared Function SetAllowAudioInBackgroundSetting +struct Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics +{ + struct LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms + { + ELyraAllowBackgroundAudioSetting NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(0, nullptr) }; // 2007560343 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetAllowAudioInBackgroundSetting", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::LyraSettingsShared_eventSetAllowAudioInBackgroundSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetAllowAudioInBackgroundSetting) +{ + P_GET_ENUM(ELyraAllowBackgroundAudioSetting,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAllowAudioInBackgroundSetting(ELyraAllowBackgroundAudioSetting(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetAllowAudioInBackgroundSetting + +// Begin Class ULyraSettingsShared Function SetColorBlindMode +struct Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics +{ + struct LyraSettingsShared_eventSetColorBlindMode_Parms + { + EColorBlindMode InMode; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InMode; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode = { "InMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetColorBlindMode_Parms, InMode), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(0, nullptr) }; // 651048152 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::NewProp_InMode, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetColorBlindMode", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::LyraSettingsShared_eventSetColorBlindMode_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::LyraSettingsShared_eventSetColorBlindMode_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetColorBlindMode) +{ + P_GET_ENUM(EColorBlindMode,Z_Param_InMode); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBlindMode(EColorBlindMode(Z_Param_InMode)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetColorBlindMode + +// Begin Class ULyraSettingsShared Function SetColorBlindStrength +struct Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics +{ + struct LyraSettingsShared_eventSetColorBlindStrength_Parms + { + int32 InColorBlindStrength; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InColorBlindStrength; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::NewProp_InColorBlindStrength = { "InColorBlindStrength", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetColorBlindStrength_Parms, InColorBlindStrength), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::NewProp_InColorBlindStrength, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetColorBlindStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::LyraSettingsShared_eventSetColorBlindStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::LyraSettingsShared_eventSetColorBlindStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetColorBlindStrength) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InColorBlindStrength); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBlindStrength(Z_Param_InColorBlindStrength); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetColorBlindStrength + +// Begin Class ULyraSettingsShared Function SetForceFeedbackEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics +{ + struct LyraSettingsShared_eventSetForceFeedbackEnabled_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetForceFeedbackEnabled_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetForceFeedbackEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetForceFeedbackEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::LyraSettingsShared_eventSetForceFeedbackEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::LyraSettingsShared_eventSetForceFeedbackEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetForceFeedbackEnabled) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForceFeedbackEnabled(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetForceFeedbackEnabled + +// Begin Class ULyraSettingsShared Function SetGamepadLookStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics +{ + struct LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setter for gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setter for gamepad look stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadLookStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadLookStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadLookStickDeadZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadLookStickDeadZone(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadLookStickDeadZone + +// Begin Class ULyraSettingsShared Function SetGamepadMoveStickDeadZone +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics +{ + struct LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setter for gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setter for gamepad move stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadMoveStickDeadZone", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::LyraSettingsShared_eventSetGamepadMoveStickDeadZone_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadMoveStickDeadZone) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadMoveStickDeadZone(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadMoveStickDeadZone + +// Begin Class ULyraSettingsShared Function SetGamepadTargetingSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms + { + ELyraGamepadSensitivity NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetGamepadTargetingSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::LyraSettingsShared_eventSetGamepadTargetingSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetGamepadTargetingSensitivityPreset) +{ + P_GET_ENUM(ELyraGamepadSensitivity,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetGamepadTargetingSensitivityPreset(ELyraGamepadSensitivity(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetGamepadTargetingSensitivityPreset + +// Begin Class ULyraSettingsShared Function SetInvertHorizontalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics +{ + struct LyraSettingsShared_eventSetInvertHorizontalAxis_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetInvertHorizontalAxis_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetInvertHorizontalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetInvertHorizontalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::LyraSettingsShared_eventSetInvertHorizontalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::LyraSettingsShared_eventSetInvertHorizontalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetInvertHorizontalAxis) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetInvertHorizontalAxis(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetInvertHorizontalAxis + +// Begin Class ULyraSettingsShared Function SetInvertVerticalAxis +struct Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics +{ + struct LyraSettingsShared_eventSetInvertVerticalAxis_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetInvertVerticalAxis_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetInvertVerticalAxis_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetInvertVerticalAxis", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::LyraSettingsShared_eventSetInvertVerticalAxis_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::LyraSettingsShared_eventSetInvertVerticalAxis_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetInvertVerticalAxis) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetInvertVerticalAxis(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetInvertVerticalAxis + +// Begin Class ULyraSettingsShared Function SetLookSensitivityPreset +struct Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics +{ + struct LyraSettingsShared_eventSetLookSensitivityPreset_Parms + { + ELyraGamepadSensitivity NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetLookSensitivityPreset_Parms, NewValue), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(0, nullptr) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetLookSensitivityPreset", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::LyraSettingsShared_eventSetLookSensitivityPreset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::LyraSettingsShared_eventSetLookSensitivityPreset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetLookSensitivityPreset) +{ + P_GET_ENUM(ELyraGamepadSensitivity,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetLookSensitivityPreset(ELyraGamepadSensitivity(Z_Param_NewValue)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetLookSensitivityPreset + +// Begin Class ULyraSettingsShared Function SetMouseSensitivityX +struct Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics +{ + struct LyraSettingsShared_eventSetMouseSensitivityX_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetMouseSensitivityX_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetMouseSensitivityX", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::LyraSettingsShared_eventSetMouseSensitivityX_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::LyraSettingsShared_eventSetMouseSensitivityX_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetMouseSensitivityX) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMouseSensitivityX(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetMouseSensitivityX + +// Begin Class ULyraSettingsShared Function SetMouseSensitivityY +struct Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics +{ + struct LyraSettingsShared_eventSetMouseSensitivityY_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetMouseSensitivityY_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetMouseSensitivityY", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::LyraSettingsShared_eventSetMouseSensitivityY_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::LyraSettingsShared_eventSetMouseSensitivityY_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetMouseSensitivityY) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMouseSensitivityY(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetMouseSensitivityY + +// Begin Class ULyraSettingsShared Function SetSubtitlesBackgroundOpacity +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms + { + ESubtitleDisplayBackgroundOpacity Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(0, nullptr) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesBackgroundOpacity", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::LyraSettingsShared_eventSetSubtitlesBackgroundOpacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesBackgroundOpacity) +{ + P_GET_ENUM(ESubtitleDisplayBackgroundOpacity,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesBackgroundOpacity(ESubtitleDisplayBackgroundOpacity(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesBackgroundOpacity + +// Begin Class ULyraSettingsShared Function SetSubtitlesEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesEnabled_Parms + { + bool Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static void NewProp_Value_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetSubtitlesEnabled_Parms*)Obj)->Value = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetSubtitlesEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::LyraSettingsShared_eventSetSubtitlesEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::LyraSettingsShared_eventSetSubtitlesEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesEnabled) +{ + P_GET_UBOOL(Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesEnabled(Z_Param_Value); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesEnabled + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextBorder +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextBorder_Parms + { + ESubtitleDisplayTextBorder Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextBorder_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(0, nullptr) }; // 4054656008 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextBorder", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::LyraSettingsShared_eventSetSubtitlesTextBorder_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::LyraSettingsShared_eventSetSubtitlesTextBorder_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextBorder) +{ + P_GET_ENUM(ESubtitleDisplayTextBorder,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextBorder(ESubtitleDisplayTextBorder(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextBorder + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextColor +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextColor_Parms + { + ESubtitleDisplayTextColor Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextColor_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(0, nullptr) }; // 3844635282 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextColor", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::LyraSettingsShared_eventSetSubtitlesTextColor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::LyraSettingsShared_eventSetSubtitlesTextColor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextColor) +{ + P_GET_ENUM(ESubtitleDisplayTextColor,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextColor(ESubtitleDisplayTextColor(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextColor + +// Begin Class ULyraSettingsShared Function SetSubtitlesTextSize +struct Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics +{ + struct LyraSettingsShared_eventSetSubtitlesTextSize_Parms + { + ESubtitleDisplayTextSize Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Value_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetSubtitlesTextSize_Parms, Value), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(0, nullptr) }; // 4054621106 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetSubtitlesTextSize", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::LyraSettingsShared_eventSetSubtitlesTextSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::LyraSettingsShared_eventSetSubtitlesTextSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetSubtitlesTextSize) +{ + P_GET_ENUM(ESubtitleDisplayTextSize,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitlesTextSize(ESubtitleDisplayTextSize(Z_Param_Value)); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetSubtitlesTextSize + +// Begin Class ULyraSettingsShared Function SetTargetingMultiplier +struct Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics +{ + struct LyraSettingsShared_eventSetTargetingMultiplier_Parms + { + double NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FDoublePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTargetingMultiplier_Parms, NewValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTargetingMultiplier", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::LyraSettingsShared_eventSetTargetingMultiplier_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::LyraSettingsShared_eventSetTargetingMultiplier_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTargetingMultiplier) +{ + P_GET_PROPERTY(FDoubleProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTargetingMultiplier(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTargetingMultiplier + +// Begin Class ULyraSettingsShared Function SetTriggerHapticsEnabled +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticsEnabled", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::LyraSettingsShared_eventSetTriggerHapticsEnabled_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticsEnabled) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticsEnabled(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticsEnabled + +// Begin Class ULyraSettingsShared Function SetTriggerHapticStartPosition +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms + { + uint8 NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms, NewValue), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticStartPosition", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::LyraSettingsShared_eventSetTriggerHapticStartPosition_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticStartPosition) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticStartPosition(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticStartPosition + +// Begin Class ULyraSettingsShared Function SetTriggerHapticStrength +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics +{ + struct LyraSettingsShared_eventSetTriggerHapticStrength_Parms + { + uint8 NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSettingsShared_eventSetTriggerHapticStrength_Parms, NewValue), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerHapticStrength", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::LyraSettingsShared_eventSetTriggerHapticStrength_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::LyraSettingsShared_eventSetTriggerHapticStrength_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerHapticStrength) +{ + P_GET_PROPERTY(FByteProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerHapticStrength(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerHapticStrength + +// Begin Class ULyraSettingsShared Function SetTriggerPullUsesHapticThreshold +struct Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics +{ + struct LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms + { + bool NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_NewValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue_SetBit(void* Obj) +{ + ((LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms*)Obj)->NewValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms), &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSettingsShared, nullptr, "SetTriggerPullUsesHapticThreshold", nullptr, nullptr, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::LyraSettingsShared_eventSetTriggerPullUsesHapticThreshold_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSettingsShared::execSetTriggerPullUsesHapticThreshold) +{ + P_GET_UBOOL(Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTriggerPullUsesHapticThreshold(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class ULyraSettingsShared Function SetTriggerPullUsesHapticThreshold + +// Begin Class ULyraSettingsShared +void ULyraSettingsShared::StaticRegisterNativesULyraSettingsShared() +{ + UClass* Class = ULyraSettingsShared::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetAllowAudioInBackgroundSetting", &ULyraSettingsShared::execGetAllowAudioInBackgroundSetting }, + { "GetColorBlindMode", &ULyraSettingsShared::execGetColorBlindMode }, + { "GetColorBlindStrength", &ULyraSettingsShared::execGetColorBlindStrength }, + { "GetForceFeedbackEnabled", &ULyraSettingsShared::execGetForceFeedbackEnabled }, + { "GetGamepadLookSensitivityPreset", &ULyraSettingsShared::execGetGamepadLookSensitivityPreset }, + { "GetGamepadLookStickDeadZone", &ULyraSettingsShared::execGetGamepadLookStickDeadZone }, + { "GetGamepadMoveStickDeadZone", &ULyraSettingsShared::execGetGamepadMoveStickDeadZone }, + { "GetGamepadTargetingSensitivityPreset", &ULyraSettingsShared::execGetGamepadTargetingSensitivityPreset }, + { "GetInvertHorizontalAxis", &ULyraSettingsShared::execGetInvertHorizontalAxis }, + { "GetInvertVerticalAxis", &ULyraSettingsShared::execGetInvertVerticalAxis }, + { "GetMouseSensitivityX", &ULyraSettingsShared::execGetMouseSensitivityX }, + { "GetMouseSensitivityY", &ULyraSettingsShared::execGetMouseSensitivityY }, + { "GetSubtitlesBackgroundOpacity", &ULyraSettingsShared::execGetSubtitlesBackgroundOpacity }, + { "GetSubtitlesEnabled", &ULyraSettingsShared::execGetSubtitlesEnabled }, + { "GetSubtitlesTextBorder", &ULyraSettingsShared::execGetSubtitlesTextBorder }, + { "GetSubtitlesTextColor", &ULyraSettingsShared::execGetSubtitlesTextColor }, + { "GetSubtitlesTextSize", &ULyraSettingsShared::execGetSubtitlesTextSize }, + { "GetTargetingMultiplier", &ULyraSettingsShared::execGetTargetingMultiplier }, + { "GetTriggerHapticsEnabled", &ULyraSettingsShared::execGetTriggerHapticsEnabled }, + { "GetTriggerHapticStartPosition", &ULyraSettingsShared::execGetTriggerHapticStartPosition }, + { "GetTriggerHapticStrength", &ULyraSettingsShared::execGetTriggerHapticStrength }, + { "GetTriggerPullUsesHapticThreshold", &ULyraSettingsShared::execGetTriggerPullUsesHapticThreshold }, + { "SetAllowAudioInBackgroundSetting", &ULyraSettingsShared::execSetAllowAudioInBackgroundSetting }, + { "SetColorBlindMode", &ULyraSettingsShared::execSetColorBlindMode }, + { "SetColorBlindStrength", &ULyraSettingsShared::execSetColorBlindStrength }, + { "SetForceFeedbackEnabled", &ULyraSettingsShared::execSetForceFeedbackEnabled }, + { "SetGamepadLookStickDeadZone", &ULyraSettingsShared::execSetGamepadLookStickDeadZone }, + { "SetGamepadMoveStickDeadZone", &ULyraSettingsShared::execSetGamepadMoveStickDeadZone }, + { "SetGamepadTargetingSensitivityPreset", &ULyraSettingsShared::execSetGamepadTargetingSensitivityPreset }, + { "SetInvertHorizontalAxis", &ULyraSettingsShared::execSetInvertHorizontalAxis }, + { "SetInvertVerticalAxis", &ULyraSettingsShared::execSetInvertVerticalAxis }, + { "SetLookSensitivityPreset", &ULyraSettingsShared::execSetLookSensitivityPreset }, + { "SetMouseSensitivityX", &ULyraSettingsShared::execSetMouseSensitivityX }, + { "SetMouseSensitivityY", &ULyraSettingsShared::execSetMouseSensitivityY }, + { "SetSubtitlesBackgroundOpacity", &ULyraSettingsShared::execSetSubtitlesBackgroundOpacity }, + { "SetSubtitlesEnabled", &ULyraSettingsShared::execSetSubtitlesEnabled }, + { "SetSubtitlesTextBorder", &ULyraSettingsShared::execSetSubtitlesTextBorder }, + { "SetSubtitlesTextColor", &ULyraSettingsShared::execSetSubtitlesTextColor }, + { "SetSubtitlesTextSize", &ULyraSettingsShared::execSetSubtitlesTextSize }, + { "SetTargetingMultiplier", &ULyraSettingsShared::execSetTargetingMultiplier }, + { "SetTriggerHapticsEnabled", &ULyraSettingsShared::execSetTriggerHapticsEnabled }, + { "SetTriggerHapticStartPosition", &ULyraSettingsShared::execSetTriggerHapticStartPosition }, + { "SetTriggerHapticStrength", &ULyraSettingsShared::execSetTriggerHapticStrength }, + { "SetTriggerPullUsesHapticThreshold", &ULyraSettingsShared::execSetTriggerPullUsesHapticThreshold }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSettingsShared); +UClass* Z_Construct_UClass_ULyraSettingsShared_NoRegister() +{ + return ULyraSettingsShared::StaticClass(); +} +struct Z_Construct_UClass_ULyraSettingsShared_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraSettingsShared - The \"Shared\" settings are stored as part of the USaveGame system, these settings are not machine\n * specific like the local settings, and are safe to store in the cloud - and 'share' them. Using the save game system\n * we can also store settings per player, so things like controller keybind preferences should go here, because if those\n * are stored in the local settings all users would get them.\n *\n */" }, +#endif + { "IncludePath", "Settings/LyraSettingsShared.h" }, + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraSettingsShared - The \"Shared\" settings are stored as part of the USaveGame system, these settings are not machine\nspecific like the local settings, and are safe to store in the cloud - and 'share' them. Using the save game system\nwe can also store settings per player, so things like controller keybind preferences should go here, because if those\nare stored in the local settings all users would get them." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorBlindMode_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorBlindStrength_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bForceFeedbackEnabled_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Is force feedback enabled when a controller is being used? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Is force feedback enabled when a controller is being used?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadMoveStickDeadZone_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the gamepad move stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the gamepad move stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadLookStickDeadZone_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the gamepad look stick dead zone value. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the gamepad look stick dead zone value." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTriggerHapticsEnabled_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Are trigger haptics enabled? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Are trigger haptics enabled?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTriggerPullUsesHapticThreshold_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Does the game use the haptic feedback as its threshold for judging button presses? */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Does the game use the haptic feedback as its threshold for judging button presses?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TriggerHapticStrength_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The strength of the trigger haptic effects. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The strength of the trigger haptic effects." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TriggerHapticStartPosition_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The start position of the trigger haptic effects */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The start position of the trigger haptic effects" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableSubtitles_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextSize_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextColor_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextBorder_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleBackgroundOpacity_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowAudioInBackground_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingCulture_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The pending culture to apply */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pending culture to apply" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseSensitivityX_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the mouse horizontal sensitivity */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the mouse horizontal sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MouseSensitivityY_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Holds the mouse vertical sensitivity */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Holds the mouse vertical sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingMultiplier_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Multiplier applied while Aiming down sights. */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Multiplier applied while Aiming down sights." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bInvertVerticalAxis_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true then the vertical look axis should be inverted */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true then the vertical look axis should be inverted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bInvertHorizontalAxis_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true then the horizontal look axis should be inverted */" }, +#endif + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true then the horizontal look axis should be inverted" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadLookSensitivityPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GamepadTargetingSensitivityPreset_MetaData[] = { + { "ModuleRelativePath", "Settings/LyraSettingsShared.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ColorBlindMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ColorBlindMode; + static const UECodeGen_Private::FIntPropertyParams NewProp_ColorBlindStrength; + static void NewProp_bForceFeedbackEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bForceFeedbackEnabled; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GamepadMoveStickDeadZone; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GamepadLookStickDeadZone; + static void NewProp_bTriggerHapticsEnabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTriggerHapticsEnabled; + static void NewProp_bTriggerPullUsesHapticThreshold_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTriggerPullUsesHapticThreshold; + static const UECodeGen_Private::FBytePropertyParams NewProp_TriggerHapticStrength; + static const UECodeGen_Private::FBytePropertyParams NewProp_TriggerHapticStartPosition; + static void NewProp_bEnableSubtitles_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableSubtitles; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextSize_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextSize; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextColor_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextColor; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextBorder_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextBorder; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleBackgroundOpacity_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleBackgroundOpacity; + static const UECodeGen_Private::FBytePropertyParams NewProp_AllowAudioInBackground_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_AllowAudioInBackground; + static const UECodeGen_Private::FStrPropertyParams NewProp_PendingCulture; + static const UECodeGen_Private::FDoublePropertyParams NewProp_MouseSensitivityX; + static const UECodeGen_Private::FDoublePropertyParams NewProp_MouseSensitivityY; + static const UECodeGen_Private::FDoublePropertyParams NewProp_TargetingMultiplier; + static void NewProp_bInvertVerticalAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bInvertVerticalAxis; + static void NewProp_bInvertHorizontalAxis_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bInvertHorizontalAxis; + static const UECodeGen_Private::FBytePropertyParams NewProp_GamepadLookSensitivityPreset_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GamepadLookSensitivityPreset; + static const UECodeGen_Private::FBytePropertyParams NewProp_GamepadTargetingSensitivityPreset_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_GamepadTargetingSensitivityPreset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSettingsShared_GetAllowAudioInBackgroundSetting, "GetAllowAudioInBackgroundSetting" }, // 3225280458 + { &Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindMode, "GetColorBlindMode" }, // 1572107721 + { &Z_Construct_UFunction_ULyraSettingsShared_GetColorBlindStrength, "GetColorBlindStrength" }, // 4112635604 + { &Z_Construct_UFunction_ULyraSettingsShared_GetForceFeedbackEnabled, "GetForceFeedbackEnabled" }, // 535918361 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookSensitivityPreset, "GetGamepadLookSensitivityPreset" }, // 858797814 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadLookStickDeadZone, "GetGamepadLookStickDeadZone" }, // 4235017447 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadMoveStickDeadZone, "GetGamepadMoveStickDeadZone" }, // 1249502549 + { &Z_Construct_UFunction_ULyraSettingsShared_GetGamepadTargetingSensitivityPreset, "GetGamepadTargetingSensitivityPreset" }, // 3203572878 + { &Z_Construct_UFunction_ULyraSettingsShared_GetInvertHorizontalAxis, "GetInvertHorizontalAxis" }, // 2396955491 + { &Z_Construct_UFunction_ULyraSettingsShared_GetInvertVerticalAxis, "GetInvertVerticalAxis" }, // 294143857 + { &Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityX, "GetMouseSensitivityX" }, // 1561454442 + { &Z_Construct_UFunction_ULyraSettingsShared_GetMouseSensitivityY, "GetMouseSensitivityY" }, // 5681093 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesBackgroundOpacity, "GetSubtitlesBackgroundOpacity" }, // 1044132358 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesEnabled, "GetSubtitlesEnabled" }, // 755499391 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextBorder, "GetSubtitlesTextBorder" }, // 2320481361 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextColor, "GetSubtitlesTextColor" }, // 2665808546 + { &Z_Construct_UFunction_ULyraSettingsShared_GetSubtitlesTextSize, "GetSubtitlesTextSize" }, // 1886224070 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTargetingMultiplier, "GetTargetingMultiplier" }, // 2643776537 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticsEnabled, "GetTriggerHapticsEnabled" }, // 3028491183 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStartPosition, "GetTriggerHapticStartPosition" }, // 71959617 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerHapticStrength, "GetTriggerHapticStrength" }, // 1489767379 + { &Z_Construct_UFunction_ULyraSettingsShared_GetTriggerPullUsesHapticThreshold, "GetTriggerPullUsesHapticThreshold" }, // 337728852 + { &Z_Construct_UFunction_ULyraSettingsShared_SetAllowAudioInBackgroundSetting, "SetAllowAudioInBackgroundSetting" }, // 3538814134 + { &Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindMode, "SetColorBlindMode" }, // 3973780014 + { &Z_Construct_UFunction_ULyraSettingsShared_SetColorBlindStrength, "SetColorBlindStrength" }, // 3007008632 + { &Z_Construct_UFunction_ULyraSettingsShared_SetForceFeedbackEnabled, "SetForceFeedbackEnabled" }, // 288356983 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadLookStickDeadZone, "SetGamepadLookStickDeadZone" }, // 3755572504 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadMoveStickDeadZone, "SetGamepadMoveStickDeadZone" }, // 1228243062 + { &Z_Construct_UFunction_ULyraSettingsShared_SetGamepadTargetingSensitivityPreset, "SetGamepadTargetingSensitivityPreset" }, // 1594129908 + { &Z_Construct_UFunction_ULyraSettingsShared_SetInvertHorizontalAxis, "SetInvertHorizontalAxis" }, // 2127369391 + { &Z_Construct_UFunction_ULyraSettingsShared_SetInvertVerticalAxis, "SetInvertVerticalAxis" }, // 3653237345 + { &Z_Construct_UFunction_ULyraSettingsShared_SetLookSensitivityPreset, "SetLookSensitivityPreset" }, // 2235375033 + { &Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityX, "SetMouseSensitivityX" }, // 1035738593 + { &Z_Construct_UFunction_ULyraSettingsShared_SetMouseSensitivityY, "SetMouseSensitivityY" }, // 63555230 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesBackgroundOpacity, "SetSubtitlesBackgroundOpacity" }, // 3142074255 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesEnabled, "SetSubtitlesEnabled" }, // 3470772753 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextBorder, "SetSubtitlesTextBorder" }, // 3674504155 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextColor, "SetSubtitlesTextColor" }, // 1760877953 + { &Z_Construct_UFunction_ULyraSettingsShared_SetSubtitlesTextSize, "SetSubtitlesTextSize" }, // 432592285 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTargetingMultiplier, "SetTargetingMultiplier" }, // 3593949278 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticsEnabled, "SetTriggerHapticsEnabled" }, // 3181429218 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStartPosition, "SetTriggerHapticStartPosition" }, // 467071736 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerHapticStrength, "SetTriggerHapticStrength" }, // 4169127111 + { &Z_Construct_UFunction_ULyraSettingsShared_SetTriggerPullUsesHapticThreshold, "SetTriggerPullUsesHapticThreshold" }, // 3474456121 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode = { "ColorBlindMode", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, ColorBlindMode), Z_Construct_UEnum_LyraGame_EColorBlindMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorBlindMode_MetaData), NewProp_ColorBlindMode_MetaData) }; // 651048152 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindStrength = { "ColorBlindStrength", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, ColorBlindStrength), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorBlindStrength_MetaData), NewProp_ColorBlindStrength_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bForceFeedbackEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled = { "bForceFeedbackEnabled", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bForceFeedbackEnabled_MetaData), NewProp_bForceFeedbackEnabled_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadMoveStickDeadZone = { "GamepadMoveStickDeadZone", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadMoveStickDeadZone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadMoveStickDeadZone_MetaData), NewProp_GamepadMoveStickDeadZone_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookStickDeadZone = { "GamepadLookStickDeadZone", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadLookStickDeadZone), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadLookStickDeadZone_MetaData), NewProp_GamepadLookStickDeadZone_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bTriggerHapticsEnabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled = { "bTriggerHapticsEnabled", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTriggerHapticsEnabled_MetaData), NewProp_bTriggerHapticsEnabled_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bTriggerPullUsesHapticThreshold = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold = { "bTriggerPullUsesHapticThreshold", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTriggerPullUsesHapticThreshold_MetaData), NewProp_bTriggerPullUsesHapticThreshold_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStrength = { "TriggerHapticStrength", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TriggerHapticStrength), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TriggerHapticStrength_MetaData), NewProp_TriggerHapticStrength_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStartPosition = { "TriggerHapticStartPosition", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TriggerHapticStartPosition), nullptr, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TriggerHapticStartPosition_MetaData), NewProp_TriggerHapticStartPosition_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bEnableSubtitles = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles = { "bEnableSubtitles", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableSubtitles_MetaData), NewProp_bEnableSubtitles_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize = { "SubtitleTextSize", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextSize), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextSize_MetaData), NewProp_SubtitleTextSize_MetaData) }; // 4054621106 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor = { "SubtitleTextColor", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextColor), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextColor_MetaData), NewProp_SubtitleTextColor_MetaData) }; // 3844635282 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder = { "SubtitleTextBorder", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleTextBorder), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextBorder_MetaData), NewProp_SubtitleTextBorder_MetaData) }; // 4054656008 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity = { "SubtitleBackgroundOpacity", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, SubtitleBackgroundOpacity), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleBackgroundOpacity_MetaData), NewProp_SubtitleBackgroundOpacity_MetaData) }; // 587908002 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground = { "AllowAudioInBackground", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, AllowAudioInBackground), Z_Construct_UEnum_LyraGame_ELyraAllowBackgroundAudioSetting, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowAudioInBackground_MetaData), NewProp_AllowAudioInBackground_MetaData) }; // 2007560343 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_PendingCulture = { "PendingCulture", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, PendingCulture), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingCulture_MetaData), NewProp_PendingCulture_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityX = { "MouseSensitivityX", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, MouseSensitivityX), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseSensitivityX_MetaData), NewProp_MouseSensitivityX_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityY = { "MouseSensitivityY", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, MouseSensitivityY), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MouseSensitivityY_MetaData), NewProp_MouseSensitivityY_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TargetingMultiplier = { "TargetingMultiplier", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, TargetingMultiplier), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingMultiplier_MetaData), NewProp_TargetingMultiplier_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bInvertVerticalAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis = { "bInvertVerticalAxis", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bInvertVerticalAxis_MetaData), NewProp_bInvertVerticalAxis_MetaData) }; +void Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis_SetBit(void* Obj) +{ + ((ULyraSettingsShared*)Obj)->bInvertHorizontalAxis = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis = { "bInvertHorizontalAxis", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraSettingsShared), &Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bInvertHorizontalAxis_MetaData), NewProp_bInvertHorizontalAxis_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset = { "GamepadLookSensitivityPreset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadLookSensitivityPreset), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadLookSensitivityPreset_MetaData), NewProp_GamepadLookSensitivityPreset_MetaData) }; // 4214474486 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset = { "GamepadTargetingSensitivityPreset", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSettingsShared, GamepadTargetingSensitivityPreset), Z_Construct_UEnum_LyraGame_ELyraGamepadSensitivity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GamepadTargetingSensitivityPreset_MetaData), NewProp_GamepadTargetingSensitivityPreset_MetaData) }; // 4214474486 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_ColorBlindStrength, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bForceFeedbackEnabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadMoveStickDeadZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookStickDeadZone, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerHapticsEnabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bTriggerPullUsesHapticThreshold, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStrength, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TriggerHapticStartPosition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bEnableSubtitles, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_SubtitleBackgroundOpacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_AllowAudioInBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_PendingCulture, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_MouseSensitivityY, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_TargetingMultiplier, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertVerticalAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_bInvertHorizontalAxis, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadLookSensitivityPreset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSettingsShared_Statics::NewProp_GamepadTargetingSensitivityPreset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSettingsShared_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayerSaveGame, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSettingsShared_Statics::ClassParams = { + &ULyraSettingsShared::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSettingsShared_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSettingsShared_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSettingsShared() +{ + if (!Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton, Z_Construct_UClass_ULyraSettingsShared_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSettingsShared.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSettingsShared::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSettingsShared); +ULyraSettingsShared::~ULyraSettingsShared() {} +// End Class ULyraSettingsShared + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EColorBlindMode_StaticEnum, TEXT("EColorBlindMode"), &Z_Registration_Info_UEnum_EColorBlindMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 651048152U) }, + { ELyraAllowBackgroundAudioSetting_StaticEnum, TEXT("ELyraAllowBackgroundAudioSetting"), &Z_Registration_Info_UEnum_ELyraAllowBackgroundAudioSetting, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2007560343U) }, + { ELyraGamepadSensitivity_StaticEnum, TEXT("ELyraGamepadSensitivity"), &Z_Registration_Info_UEnum_ELyraGamepadSensitivity, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4214474486U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSettingsShared, ULyraSettingsShared::StaticClass, TEXT("ULyraSettingsShared"), &Z_Registration_Info_UClass_ULyraSettingsShared, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSettingsShared), 1816384728U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_2403577367(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.generated.h new file mode 100644 index 00000000..f51fb943 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSettingsShared.generated.h @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Settings/LyraSettingsShared.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class EColorBlindMode : uint8; +enum class ELyraAllowBackgroundAudioSetting : uint8; +enum class ELyraGamepadSensitivity : uint8; +enum class ESubtitleDisplayBackgroundOpacity : uint8; +enum class ESubtitleDisplayTextBorder : uint8; +enum class ESubtitleDisplayTextColor : uint8; +enum class ESubtitleDisplayTextSize : uint8; +#ifdef LYRAGAME_LyraSettingsShared_generated_h +#error "LyraSettingsShared.generated.h already included, missing '#pragma once' in LyraSettingsShared.h" +#endif +#define LYRAGAME_LyraSettingsShared_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetGamepadTargetingSensitivityPreset); \ + DECLARE_FUNCTION(execGetGamepadTargetingSensitivityPreset); \ + DECLARE_FUNCTION(execSetLookSensitivityPreset); \ + DECLARE_FUNCTION(execGetGamepadLookSensitivityPreset); \ + DECLARE_FUNCTION(execSetInvertHorizontalAxis); \ + DECLARE_FUNCTION(execGetInvertHorizontalAxis); \ + DECLARE_FUNCTION(execSetInvertVerticalAxis); \ + DECLARE_FUNCTION(execGetInvertVerticalAxis); \ + DECLARE_FUNCTION(execSetTargetingMultiplier); \ + DECLARE_FUNCTION(execGetTargetingMultiplier); \ + DECLARE_FUNCTION(execSetMouseSensitivityY); \ + DECLARE_FUNCTION(execGetMouseSensitivityY); \ + DECLARE_FUNCTION(execSetMouseSensitivityX); \ + DECLARE_FUNCTION(execGetMouseSensitivityX); \ + DECLARE_FUNCTION(execSetAllowAudioInBackgroundSetting); \ + DECLARE_FUNCTION(execGetAllowAudioInBackgroundSetting); \ + DECLARE_FUNCTION(execSetSubtitlesBackgroundOpacity); \ + DECLARE_FUNCTION(execGetSubtitlesBackgroundOpacity); \ + DECLARE_FUNCTION(execSetSubtitlesTextBorder); \ + DECLARE_FUNCTION(execGetSubtitlesTextBorder); \ + DECLARE_FUNCTION(execSetSubtitlesTextColor); \ + DECLARE_FUNCTION(execGetSubtitlesTextColor); \ + DECLARE_FUNCTION(execSetSubtitlesTextSize); \ + DECLARE_FUNCTION(execGetSubtitlesTextSize); \ + DECLARE_FUNCTION(execSetSubtitlesEnabled); \ + DECLARE_FUNCTION(execGetSubtitlesEnabled); \ + DECLARE_FUNCTION(execSetTriggerHapticStartPosition); \ + DECLARE_FUNCTION(execGetTriggerHapticStartPosition); \ + DECLARE_FUNCTION(execSetTriggerHapticStrength); \ + DECLARE_FUNCTION(execGetTriggerHapticStrength); \ + DECLARE_FUNCTION(execSetTriggerPullUsesHapticThreshold); \ + DECLARE_FUNCTION(execGetTriggerPullUsesHapticThreshold); \ + DECLARE_FUNCTION(execSetTriggerHapticsEnabled); \ + DECLARE_FUNCTION(execGetTriggerHapticsEnabled); \ + DECLARE_FUNCTION(execSetGamepadLookStickDeadZone); \ + DECLARE_FUNCTION(execGetGamepadLookStickDeadZone); \ + DECLARE_FUNCTION(execSetGamepadMoveStickDeadZone); \ + DECLARE_FUNCTION(execGetGamepadMoveStickDeadZone); \ + DECLARE_FUNCTION(execSetForceFeedbackEnabled); \ + DECLARE_FUNCTION(execGetForceFeedbackEnabled); \ + DECLARE_FUNCTION(execSetColorBlindStrength); \ + DECLARE_FUNCTION(execGetColorBlindStrength); \ + DECLARE_FUNCTION(execSetColorBlindMode); \ + DECLARE_FUNCTION(execGetColorBlindMode); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSettingsShared(); \ + friend struct Z_Construct_UClass_ULyraSettingsShared_Statics; \ +public: \ + DECLARE_CLASS(ULyraSettingsShared, ULocalPlayerSaveGame, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSettingsShared) + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSettingsShared(ULyraSettingsShared&&); \ + ULyraSettingsShared(const ULyraSettingsShared&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSettingsShared); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSettingsShared); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSettingsShared) \ + NO_API virtual ~ULyraSettingsShared(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_63_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h_66_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Settings_LyraSettingsShared_h + + +#define FOREACH_ENUM_ECOLORBLINDMODE(op) \ + op(EColorBlindMode::Off) \ + op(EColorBlindMode::Deuteranope) \ + op(EColorBlindMode::Protanope) \ + op(EColorBlindMode::Tritanope) + +enum class EColorBlindMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAALLOWBACKGROUNDAUDIOSETTING(op) \ + op(ELyraAllowBackgroundAudioSetting::Off) \ + op(ELyraAllowBackgroundAudioSetting::AllSounds) \ + op(ELyraAllowBackgroundAudioSetting::Num) + +enum class ELyraAllowBackgroundAudioSetting : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ELYRAGAMEPADSENSITIVITY(op) \ + op(ELyraGamepadSensitivity::Invalid) \ + op(ELyraGamepadSensitivity::Slow) \ + op(ELyraGamepadSensitivity::SlowPlus) \ + op(ELyraGamepadSensitivity::SlowPlusPlus) \ + op(ELyraGamepadSensitivity::Normal) \ + op(ELyraGamepadSensitivity::NormalPlus) \ + op(ELyraGamepadSensitivity::NormalPlusPlus) \ + op(ELyraGamepadSensitivity::Fast) \ + op(ELyraGamepadSensitivity::FastPlus) \ + op(ELyraGamepadSensitivity::FastPlusPlus) \ + op(ELyraGamepadSensitivity::Insane) + +enum class ELyraGamepadSensitivity : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp new file mode 100644 index 00000000..f9806952 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraSignificanceManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSignificanceManager() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSignificanceManager(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSignificanceManager_NoRegister(); +SIGNIFICANCEMANAGER_API UClass* Z_Construct_UClass_USignificanceManager(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSignificanceManager +void ULyraSignificanceManager::StaticRegisterNativesULyraSignificanceManager() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSignificanceManager); +UClass* Z_Construct_UClass_ULyraSignificanceManager_NoRegister() +{ + return ULyraSignificanceManager::StaticClass(); +} +struct Z_Construct_UClass_ULyraSignificanceManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraSignificanceManager.h" }, + { "ModuleRelativePath", "System/LyraSignificanceManager.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSignificanceManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_USignificanceManager, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSignificanceManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSignificanceManager_Statics::ClassParams = { + &ULyraSignificanceManager::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSignificanceManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSignificanceManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSignificanceManager() +{ + if (!Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton, Z_Construct_UClass_ULyraSignificanceManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSignificanceManager.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSignificanceManager::StaticClass(); +} +ULyraSignificanceManager::ULyraSignificanceManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSignificanceManager); +ULyraSignificanceManager::~ULyraSignificanceManager() {} +// End Class ULyraSignificanceManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSignificanceManager, ULyraSignificanceManager::StaticClass, TEXT("ULyraSignificanceManager"), &Z_Registration_Info_UClass_ULyraSignificanceManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSignificanceManager), 4040095829U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_1883940489(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h new file mode 100644 index 00000000..e753c4ce --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSignificanceManager.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraSignificanceManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraSignificanceManager_generated_h +#error "LyraSignificanceManager.generated.h already included, missing '#pragma once' in LyraSignificanceManager.h" +#endif +#define LYRAGAME_LyraSignificanceManager_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSignificanceManager(); \ + friend struct Z_Construct_UClass_ULyraSignificanceManager_Statics; \ +public: \ + DECLARE_CLASS(ULyraSignificanceManager, USignificanceManager, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSignificanceManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSignificanceManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSignificanceManager(ULyraSignificanceManager&&); \ + ULyraSignificanceManager(const ULyraSignificanceManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSignificanceManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSignificanceManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraSignificanceManager) \ + NO_API virtual ~ULyraSignificanceManager(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraSignificanceManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp new file mode 100644 index 00000000..2eec82ba --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.gen.cpp @@ -0,0 +1,479 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraSimulatedInputWidget.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSimulatedInputWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonHardwareVisibilityBorder_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UEnhancedInputLocalPlayerSubsystem_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSimulatedInputWidget Function FlushSimulatedInput +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "FlushSimulatedInput", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execFlushSimulatedInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FlushSimulatedInput(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function FlushSimulatedInput + +// Begin Class ULyraSimulatedInputWidget Function GetAssociatedAction +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics +{ + struct LyraSimulatedInputWidget_eventGetAssociatedAction_Parms + { + const UInputAction* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetAssociatedAction_Parms, ReturnValue), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetAssociatedAction", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::LyraSimulatedInputWidget_eventGetAssociatedAction_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::LyraSimulatedInputWidget_eventGetAssociatedAction_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetAssociatedAction) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(const UInputAction**)Z_Param__Result=P_THIS->GetAssociatedAction(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetAssociatedAction + +// Begin Class ULyraSimulatedInputWidget Function GetEnhancedInputSubsystem +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics +{ + struct LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms + { + UEnhancedInputLocalPlayerSubsystem* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Get the enhanced input subsystem based on the owning local player of this widget. Will return null if there is no owning player */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get the enhanced input subsystem based on the owning local player of this widget. Will return null if there is no owning player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms, ReturnValue), Z_Construct_UClass_UEnhancedInputLocalPlayerSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetEnhancedInputSubsystem", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::LyraSimulatedInputWidget_eventGetEnhancedInputSubsystem_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetEnhancedInputSubsystem) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UEnhancedInputLocalPlayerSubsystem**)Z_Param__Result=P_THIS->GetEnhancedInputSubsystem(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetEnhancedInputSubsystem + +// Begin Class ULyraSimulatedInputWidget Function GetSimulatedKey +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics +{ + struct LyraSimulatedInputWidget_eventGetSimulatedKey_Parms + { + FKey ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the current key that will be used to input any values. */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the current key that will be used to input any values." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventGetSimulatedKey_Parms, ReturnValue), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "GetSimulatedKey", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::LyraSimulatedInputWidget_eventGetSimulatedKey_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::LyraSimulatedInputWidget_eventGetSimulatedKey_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execGetSimulatedKey) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FKey*)Z_Param__Result=P_THIS->GetSimulatedKey(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function GetSimulatedKey + +// Begin Class ULyraSimulatedInputWidget Function InputKeyValue +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics +{ + struct LyraSimulatedInputWidget_eventInputKeyValue_Parms + { + FVector Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Injects the given vector as an input to the current simulated key.\n\x09 * This calls \"InputKey\" on the current player.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Injects the given vector as an input to the current simulated key.\nThis calls \"InputKey\" on the current player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Value_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventInputKeyValue_Parms, Value), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Value_MetaData), NewProp_Value_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "InputKeyValue", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::LyraSimulatedInputWidget_eventInputKeyValue_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::LyraSimulatedInputWidget_eventInputKeyValue_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execInputKeyValue) +{ + P_GET_STRUCT_REF(FVector,Z_Param_Out_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InputKeyValue(Z_Param_Out_Value); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function InputKeyValue + +// Begin Class ULyraSimulatedInputWidget Function InputKeyValue2D +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics +{ + struct LyraSimulatedInputWidget_eventInputKeyValue2D_Parms + { + FVector2D Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Injects the given vector as an input to the current simulated key.\n\x09 * This calls \"InputKey\" on the current player.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Injects the given vector as an input to the current simulated key.\nThis calls \"InputKey\" on the current player." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Value_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSimulatedInputWidget_eventInputKeyValue2D_Parms, Value), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Value_MetaData), NewProp_Value_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "InputKeyValue2D", nullptr, nullptr, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::LyraSimulatedInputWidget_eventInputKeyValue2D_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04C20401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::LyraSimulatedInputWidget_eventInputKeyValue2D_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execInputKeyValue2D) +{ + P_GET_STRUCT_REF(FVector2D,Z_Param_Out_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->InputKeyValue2D(Z_Param_Out_Value); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function InputKeyValue2D + +// Begin Class ULyraSimulatedInputWidget Function OnControlMappingsRebuilt +struct Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called whenever control mappings change, so we have a chance to adapt our own keys */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called whenever control mappings change, so we have a chance to adapt our own keys" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSimulatedInputWidget, nullptr, "OnControlMappingsRebuilt", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSimulatedInputWidget::execOnControlMappingsRebuilt) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnControlMappingsRebuilt(); + P_NATIVE_END; +} +// End Class ULyraSimulatedInputWidget Function OnControlMappingsRebuilt + +// Begin Class ULyraSimulatedInputWidget +void ULyraSimulatedInputWidget::StaticRegisterNativesULyraSimulatedInputWidget() +{ + UClass* Class = ULyraSimulatedInputWidget::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FlushSimulatedInput", &ULyraSimulatedInputWidget::execFlushSimulatedInput }, + { "GetAssociatedAction", &ULyraSimulatedInputWidget::execGetAssociatedAction }, + { "GetEnhancedInputSubsystem", &ULyraSimulatedInputWidget::execGetEnhancedInputSubsystem }, + { "GetSimulatedKey", &ULyraSimulatedInputWidget::execGetSimulatedKey }, + { "InputKeyValue", &ULyraSimulatedInputWidget::execInputKeyValue }, + { "InputKeyValue2D", &ULyraSimulatedInputWidget::execInputKeyValue2D }, + { "OnControlMappingsRebuilt", &ULyraSimulatedInputWidget::execOnControlMappingsRebuilt }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSimulatedInputWidget); +UClass* Z_Construct_UClass_ULyraSimulatedInputWidget_NoRegister() +{ + return ULyraSimulatedInputWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraSimulatedInputWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A UMG widget with base functionality to inject input (keys or input actions)\n * to the enhanced input subsystem.\n */" }, +#endif + { "DisplayName", "Lyra Simulated Input Widget" }, + { "IncludePath", "UI/LyraSimulatedInputWidget.h" }, + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A UMG widget with base functionality to inject input (keys or input actions)\nto the enhanced input subsystem." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CommonVisibilityBorder_MetaData[] = { + { "BindWidget", "" }, + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The common visibility border will allow you to specify UI for only specific platforms if desired */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The common visibility border will allow you to specify UI for only specific platforms if desired" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedAction_MetaData[] = { + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The associated input action that we should simulate input for */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The associated input action that we should simulate input for" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FallbackBindingKey_MetaData[] = { + { "Category", "LyraSimulatedInputWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The Key to simulate input for in the case where none are currently bound to the associated action */" }, +#endif + { "ModuleRelativePath", "UI/LyraSimulatedInputWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Key to simulate input for in the case where none are currently bound to the associated action" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CommonVisibilityBorder; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AssociatedAction; + static const UECodeGen_Private::FStructPropertyParams NewProp_FallbackBindingKey; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_FlushSimulatedInput, "FlushSimulatedInput" }, // 745470216 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetAssociatedAction, "GetAssociatedAction" }, // 1224732831 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetEnhancedInputSubsystem, "GetEnhancedInputSubsystem" }, // 1990826529 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_GetSimulatedKey, "GetSimulatedKey" }, // 3602096030 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue, "InputKeyValue" }, // 3749652842 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_InputKeyValue2D, "InputKeyValue2D" }, // 3478275248 + { &Z_Construct_UFunction_ULyraSimulatedInputWidget_OnControlMappingsRebuilt, "OnControlMappingsRebuilt" }, // 1241237992 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_CommonVisibilityBorder = { "CommonVisibilityBorder", nullptr, (EPropertyFlags)0x012408000008000c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, CommonVisibilityBorder), Z_Construct_UClass_UCommonHardwareVisibilityBorder_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CommonVisibilityBorder_MetaData), NewProp_CommonVisibilityBorder_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_AssociatedAction = { "AssociatedAction", nullptr, (EPropertyFlags)0x0124080000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, AssociatedAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedAction_MetaData), NewProp_AssociatedAction_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_FallbackBindingKey = { "FallbackBindingKey", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraSimulatedInputWidget, FallbackBindingKey), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FallbackBindingKey_MetaData), NewProp_FallbackBindingKey_MetaData) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_CommonVisibilityBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_AssociatedAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::NewProp_FallbackBindingKey, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::ClassParams = { + &ULyraSimulatedInputWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::PropPointers), + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSimulatedInputWidget() +{ + if (!Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton, Z_Construct_UClass_ULyraSimulatedInputWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSimulatedInputWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSimulatedInputWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSimulatedInputWidget); +ULyraSimulatedInputWidget::~ULyraSimulatedInputWidget() {} +// End Class ULyraSimulatedInputWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSimulatedInputWidget, ULyraSimulatedInputWidget::StaticClass, TEXT("ULyraSimulatedInputWidget"), &Z_Registration_Info_UClass_ULyraSimulatedInputWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSimulatedInputWidget), 2637002244U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_1223442633(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h new file mode 100644 index 00000000..da6f1933 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSimulatedInputWidget.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraSimulatedInputWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UEnhancedInputLocalPlayerSubsystem; +class UInputAction; +struct FKey; +#ifdef LYRAGAME_LyraSimulatedInputWidget_generated_h +#error "LyraSimulatedInputWidget.generated.h already included, missing '#pragma once' in LyraSimulatedInputWidget.h" +#endif +#define LYRAGAME_LyraSimulatedInputWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnControlMappingsRebuilt); \ + DECLARE_FUNCTION(execFlushSimulatedInput); \ + DECLARE_FUNCTION(execInputKeyValue2D); \ + DECLARE_FUNCTION(execInputKeyValue); \ + DECLARE_FUNCTION(execGetSimulatedKey); \ + DECLARE_FUNCTION(execGetAssociatedAction); \ + DECLARE_FUNCTION(execGetEnhancedInputSubsystem); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSimulatedInputWidget(); \ + friend struct Z_Construct_UClass_ULyraSimulatedInputWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraSimulatedInputWidget, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSimulatedInputWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSimulatedInputWidget(ULyraSimulatedInputWidget&&); \ + ULyraSimulatedInputWidget(const ULyraSimulatedInputWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSimulatedInputWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSimulatedInputWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSimulatedInputWidget) \ + NO_API virtual ~ULyraSimulatedInputWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraSimulatedInputWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp new file mode 100644 index 00000000..a5787101 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.gen.cpp @@ -0,0 +1,583 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/System/LyraSystemStatics.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraSystemStatics() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSystemStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSystemStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraSystemStatics Function FindComponentsByClass +struct Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics +{ + struct LyraSystemStatics_eventFindComponentsByClass_Parms + { + AActor* TargetActor; + TSubclassOf ComponentClass; + bool bIncludeChildActors; + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Actor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets all the components that inherit from the given class\n" }, +#endif + { "ComponentClass", "/Script/Engine.ActorComponent" }, + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "DeterminesOutputType", "ComponentClass" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets all the components that inherit from the given class" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FClassPropertyParams NewProp_ComponentClass; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ComponentClass = { "ComponentClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, ComponentClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventFindComponentsByClass_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventFindComponentsByClass_Parms), &Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000080008, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UActorComponent_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008000000588, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventFindComponentsByClass_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ComponentClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_bIncludeChildActors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "FindComponentsByClass", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::LyraSystemStatics_eventFindComponentsByClass_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::LyraSystemStatics_eventFindComponentsByClass_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execFindComponentsByClass) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_OBJECT(UClass,Z_Param_ComponentClass); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=ULyraSystemStatics::FindComponentsByClass(Z_Param_TargetActor,Z_Param_ComponentClass,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function FindComponentsByClass + +// Begin Class ULyraSystemStatics Function GetPrimaryAssetIdFromUserFacingExperienceName +struct Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics +{ + struct LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms + { + FString AdvertisedExperienceID; + FPrimaryAssetId ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AdvertisedExperienceID_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_AdvertisedExperienceID; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_AdvertisedExperienceID = { "AdvertisedExperienceID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms, AdvertisedExperienceID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AdvertisedExperienceID_MetaData), NewProp_AdvertisedExperienceID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms, ReturnValue), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_AdvertisedExperienceID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "GetPrimaryAssetIdFromUserFacingExperienceName", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::LyraSystemStatics_eventGetPrimaryAssetIdFromUserFacingExperienceName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execGetPrimaryAssetIdFromUserFacingExperienceName) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_AdvertisedExperienceID); + P_FINISH; + P_NATIVE_BEGIN; + *(FPrimaryAssetId*)Z_Param__Result=ULyraSystemStatics::GetPrimaryAssetIdFromUserFacingExperienceName(Z_Param_AdvertisedExperienceID); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function GetPrimaryAssetIdFromUserFacingExperienceName + +// Begin Class ULyraSystemStatics Function GetTypedSoftObjectReferenceFromPrimaryAssetId +struct Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics +{ + struct LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms + { + FPrimaryAssetId PrimaryAssetId; + TSubclassOf ExpectedAssetType; + TSoftObjectPtr ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "AssetManager" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the soft object reference associated with a Primary Asset Id, this works even if the asset is not loaded */" }, +#endif + { "DeterminesOutputType", "ExpectedAssetType" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the soft object reference associated with a Primary Asset Id, this works even if the asset is not loaded" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryAssetId; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExpectedAssetType; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_PrimaryAssetId = { "PrimaryAssetId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, PrimaryAssetId), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ExpectedAssetType = { "ExpectedAssetType", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, ExpectedAssetType), Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms, ReturnValue), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_PrimaryAssetId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ExpectedAssetType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "GetTypedSoftObjectReferenceFromPrimaryAssetId", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::LyraSystemStatics_eventGetTypedSoftObjectReferenceFromPrimaryAssetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execGetTypedSoftObjectReferenceFromPrimaryAssetId) +{ + P_GET_STRUCT(FPrimaryAssetId,Z_Param_PrimaryAssetId); + P_GET_OBJECT(UClass,Z_Param_ExpectedAssetType); + P_FINISH; + P_NATIVE_BEGIN; + *(TSoftObjectPtr*)Z_Param__Result=ULyraSystemStatics::GetTypedSoftObjectReferenceFromPrimaryAssetId(Z_Param_PrimaryAssetId,Z_Param_ExpectedAssetType); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function GetTypedSoftObjectReferenceFromPrimaryAssetId + +// Begin Class ULyraSystemStatics Function PlayNextGame +struct Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics +{ + struct LyraSystemStatics_eventPlayNextGame_Parms + { + const UObject* WorldContextObject; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventPlayNextGame_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::NewProp_WorldContextObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "PlayNextGame", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::LyraSystemStatics_eventPlayNextGame_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::LyraSystemStatics_eventPlayNextGame_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execPlayNextGame) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::PlayNextGame(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function PlayNextGame + +// Begin Class ULyraSystemStatics Function SetColorParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + FLinearColor ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms, ParameterValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetColorParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetColorParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetColorParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FLinearColor,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetColorParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetColorParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics Function SetScalarParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + float ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms, ParameterValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetScalarParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetScalarParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetScalarParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_PROPERTY(FFloatProperty,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetScalarParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetScalarParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics Function SetVectorParameterValueOnAllMeshComponents +struct Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics +{ + struct LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms + { + AActor* TargetActor; + FName ParameterName; + FVector ParameterValue; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Rendering|Material" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor\n" }, +#endif + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets ParameterName to ParameterValue on all sections of all mesh components found on the TargetActor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterName_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ParameterValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ParameterValue; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, ParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterName_MetaData), NewProp_ParameterName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue = { "ParameterValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms, ParameterValue), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ParameterValue_MetaData), NewProp_ParameterValue_MetaData) }; +void Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms), &Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_ParameterValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraSystemStatics, nullptr, "SetVectorParameterValueOnAllMeshComponents", nullptr, nullptr, Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::LyraSystemStatics_eventSetVectorParameterValueOnAllMeshComponents_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraSystemStatics::execSetVectorParameterValueOnAllMeshComponents) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FVector,Z_Param_ParameterValue); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + ULyraSystemStatics::SetVectorParameterValueOnAllMeshComponents(Z_Param_TargetActor,Z_Param_ParameterName,Z_Param_ParameterValue,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraSystemStatics Function SetVectorParameterValueOnAllMeshComponents + +// Begin Class ULyraSystemStatics +void ULyraSystemStatics::StaticRegisterNativesULyraSystemStatics() +{ + UClass* Class = ULyraSystemStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindComponentsByClass", &ULyraSystemStatics::execFindComponentsByClass }, + { "GetPrimaryAssetIdFromUserFacingExperienceName", &ULyraSystemStatics::execGetPrimaryAssetIdFromUserFacingExperienceName }, + { "GetTypedSoftObjectReferenceFromPrimaryAssetId", &ULyraSystemStatics::execGetTypedSoftObjectReferenceFromPrimaryAssetId }, + { "PlayNextGame", &ULyraSystemStatics::execPlayNextGame }, + { "SetColorParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetColorParameterValueOnAllMeshComponents }, + { "SetScalarParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetScalarParameterValueOnAllMeshComponents }, + { "SetVectorParameterValueOnAllMeshComponents", &ULyraSystemStatics::execSetVectorParameterValueOnAllMeshComponents }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraSystemStatics); +UClass* Z_Construct_UClass_ULyraSystemStatics_NoRegister() +{ + return ULyraSystemStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraSystemStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "System/LyraSystemStatics.h" }, + { "ModuleRelativePath", "System/LyraSystemStatics.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraSystemStatics_FindComponentsByClass, "FindComponentsByClass" }, // 3749694633 + { &Z_Construct_UFunction_ULyraSystemStatics_GetPrimaryAssetIdFromUserFacingExperienceName, "GetPrimaryAssetIdFromUserFacingExperienceName" }, // 2357365358 + { &Z_Construct_UFunction_ULyraSystemStatics_GetTypedSoftObjectReferenceFromPrimaryAssetId, "GetTypedSoftObjectReferenceFromPrimaryAssetId" }, // 930576314 + { &Z_Construct_UFunction_ULyraSystemStatics_PlayNextGame, "PlayNextGame" }, // 4172086504 + { &Z_Construct_UFunction_ULyraSystemStatics_SetColorParameterValueOnAllMeshComponents, "SetColorParameterValueOnAllMeshComponents" }, // 3516398521 + { &Z_Construct_UFunction_ULyraSystemStatics_SetScalarParameterValueOnAllMeshComponents, "SetScalarParameterValueOnAllMeshComponents" }, // 1428024019 + { &Z_Construct_UFunction_ULyraSystemStatics_SetVectorParameterValueOnAllMeshComponents, "SetVectorParameterValueOnAllMeshComponents" }, // 2805647681 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraSystemStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSystemStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraSystemStatics_Statics::ClassParams = { + &ULyraSystemStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraSystemStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraSystemStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraSystemStatics() +{ + if (!Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton, Z_Construct_UClass_ULyraSystemStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraSystemStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraSystemStatics::StaticClass(); +} +ULyraSystemStatics::ULyraSystemStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraSystemStatics); +ULyraSystemStatics::~ULyraSystemStatics() {} +// End Class ULyraSystemStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraSystemStatics, ULyraSystemStatics::StaticClass, TEXT("ULyraSystemStatics"), &Z_Registration_Info_UClass_ULyraSystemStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraSystemStatics), 367473893U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_549352794(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.generated.h new file mode 100644 index 00000000..9319006c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraSystemStatics.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "System/LyraSystemStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UActorComponent; +class UObject; +struct FLinearColor; +struct FPrimaryAssetId; +#ifdef LYRAGAME_LyraSystemStatics_generated_h +#error "LyraSystemStatics.generated.h already included, missing '#pragma once' in LyraSystemStatics.h" +#endif +#define LYRAGAME_LyraSystemStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execFindComponentsByClass); \ + DECLARE_FUNCTION(execSetColorParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execSetVectorParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execSetScalarParameterValueOnAllMeshComponents); \ + DECLARE_FUNCTION(execPlayNextGame); \ + DECLARE_FUNCTION(execGetPrimaryAssetIdFromUserFacingExperienceName); \ + DECLARE_FUNCTION(execGetTypedSoftObjectReferenceFromPrimaryAssetId); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraSystemStatics(); \ + friend struct Z_Construct_UClass_ULyraSystemStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraSystemStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraSystemStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraSystemStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraSystemStatics(ULyraSystemStatics&&); \ + ULyraSystemStatics(const ULyraSystemStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraSystemStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraSystemStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraSystemStatics) \ + NO_API virtual ~ULyraSystemStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_System_LyraSystemStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp new file mode 100644 index 00000000..ed17a184 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.gen.cpp @@ -0,0 +1,168 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraTabButtonBase.h" +#include "LyraGame/UI/Common/LyraTabListWidgetBase.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTabButtonBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonLazyImage_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonBase_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTabButtonBase Function SetTabLabelInfo_Implementation +struct Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics +{ + struct LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms + { + FLyraTabDescriptor TabLabelInfo; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabLabelInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabLabelInfo; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::NewProp_TabLabelInfo = { "TabLabelInfo", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms, TabLabelInfo), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabLabelInfo_MetaData), NewProp_TabLabelInfo_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::NewProp_TabLabelInfo, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabButtonBase, nullptr, "SetTabLabelInfo_Implementation", nullptr, nullptr, Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::LyraTabButtonBase_eventSetTabLabelInfo_Implementation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabButtonBase::execSetTabLabelInfo_Implementation) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabLabelInfo); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabLabelInfo_Implementation(Z_Param_Out_TabLabelInfo); + P_NATIVE_END; +} +// End Class ULyraTabButtonBase Function SetTabLabelInfo_Implementation + +// Begin Class ULyraTabButtonBase +void ULyraTabButtonBase::StaticRegisterNativesULyraTabButtonBase() +{ + UClass* Class = ULyraTabButtonBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetTabLabelInfo_Implementation", &ULyraTabButtonBase::execSetTabLabelInfo_Implementation }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabButtonBase); +UClass* Z_Construct_UClass_ULyraTabButtonBase_NoRegister() +{ + return ULyraTabButtonBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabButtonBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraTabButtonBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LazyImage_Icon_MetaData[] = { + { "BindWidgetOptional", "" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabButtonBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LazyImage_Icon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabButtonBase_SetTabLabelInfo_Implementation, "SetTabLabelInfo_Implementation" }, // 849520292 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTabButtonBase_Statics::NewProp_LazyImage_Icon = { "LazyImage_Icon", nullptr, (EPropertyFlags)0x0144000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabButtonBase, LazyImage_Icon), Z_Construct_UClass_UCommonLazyImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LazyImage_Icon_MetaData), NewProp_LazyImage_Icon_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabButtonBase_Statics::NewProp_LazyImage_Icon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTabButtonBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraButtonBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULyraTabButtonBase_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULyraTabButtonInterface_NoRegister, (int32)VTABLE_OFFSET(ULyraTabButtonBase, ILyraTabButtonInterface), false }, // 2008894476 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabButtonBase_Statics::ClassParams = { + &ULyraTabButtonBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabButtonBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabButtonBase() +{ + if (!Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton, Z_Construct_UClass_ULyraTabButtonBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabButtonBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabButtonBase::StaticClass(); +} +ULyraTabButtonBase::ULyraTabButtonBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabButtonBase); +ULyraTabButtonBase::~ULyraTabButtonBase() {} +// End Class ULyraTabButtonBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTabButtonBase, ULyraTabButtonBase::StaticClass, TEXT("ULyraTabButtonBase"), &Z_Registration_Info_UClass_ULyraTabButtonBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabButtonBase), 1228371471U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_610681008(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h new file mode 100644 index 00000000..70becf82 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabButtonBase.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraTabButtonBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLyraTabDescriptor; +#ifdef LYRAGAME_LyraTabButtonBase_generated_h +#error "LyraTabButtonBase.generated.h already included, missing '#pragma once' in LyraTabButtonBase.h" +#endif +#define LYRAGAME_LyraTabButtonBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetTabLabelInfo_Implementation); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTabButtonBase(); \ + friend struct Z_Construct_UClass_ULyraTabButtonBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabButtonBase, ULyraButtonBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabButtonBase) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabButtonBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabButtonBase(ULyraTabButtonBase&&); \ + ULyraTabButtonBase(const ULyraTabButtonBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabButtonBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabButtonBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabButtonBase) \ + NO_API virtual ~ULyraTabButtonBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabButtonBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp new file mode 100644 index 00000000..b103a7dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.gen.cpp @@ -0,0 +1,849 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraTabListWidgetBase.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTabListWidgetBase() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTabListWidgetBase(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraTabDescriptor +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraTabDescriptor; +class UScriptStruct* FLyraTabDescriptor::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraTabDescriptor, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraTabDescriptor")); + } + return Z_Registration_Info_UScriptStruct_LyraTabDescriptor.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraTabDescriptor::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabId_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabText_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IconBrush_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bHidden_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabButtonType_MetaData[] = { + { "Category", "LyraTabDescriptor" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabContentType_MetaData[] = { + { "Category", "LyraTabDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//TODO NDarnell - This should become a TSoftClassPtr<>, the underlying common tab list needs to be able to handle lazy tab content construction.\n" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "TODO NDarnell - This should become a TSoftClassPtr<>, the underlying common tab list needs to be able to handle lazy tab content construction." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CreatedTabContentWidget_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static const UECodeGen_Private::FTextPropertyParams NewProp_TabText; + static const UECodeGen_Private::FStructPropertyParams NewProp_IconBrush; + static void NewProp_bHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHidden; + static const UECodeGen_Private::FClassPropertyParams NewProp_TabButtonType; + static const UECodeGen_Private::FClassPropertyParams NewProp_TabContentType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CreatedTabContentWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabId_MetaData), NewProp_TabId_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabText = { "TabText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabText_MetaData), NewProp_TabText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_IconBrush = { "IconBrush", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, IconBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IconBrush_MetaData), NewProp_IconBrush_MetaData) }; // 4269649686 +void Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden_SetBit(void* Obj) +{ + ((FLyraTabDescriptor*)Obj)->bHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden = { "bHidden", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FLyraTabDescriptor), &Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bHidden_MetaData), NewProp_bHidden_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabButtonType = { "TabButtonType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabButtonType), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabButtonType_MetaData), NewProp_TabButtonType_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabContentType = { "TabContentType", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, TabContentType), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabContentType_MetaData), NewProp_TabContentType_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_CreatedTabContentWidget = { "CreatedTabContentWidget", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTabDescriptor, CreatedTabContentWidget), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CreatedTabContentWidget_MetaData), NewProp_CreatedTabContentWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_IconBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_bHidden, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabButtonType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_TabContentType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewProp_CreatedTabContentWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraTabDescriptor", + Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::PropPointers), + sizeof(FLyraTabDescriptor), + alignof(FLyraTabDescriptor), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraTabDescriptor() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton, Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraTabDescriptor.InnerSingleton; +} +// End ScriptStruct FLyraTabDescriptor + +// Begin Interface ULyraTabButtonInterface Function SetTabLabelInfo +struct LyraTabButtonInterface_eventSetTabLabelInfo_Parms +{ + FLyraTabDescriptor TabDescriptor; +}; +void ILyraTabButtonInterface::SetTabLabelInfo(FLyraTabDescriptor const& TabDescriptor) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_SetTabLabelInfo instead."); +} +static FName NAME_ULyraTabButtonInterface_SetTabLabelInfo = FName(TEXT("SetTabLabelInfo")); +void ILyraTabButtonInterface::Execute_SetTabLabelInfo(UObject* O, FLyraTabDescriptor const& TabDescriptor) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(ULyraTabButtonInterface::StaticClass())); + LyraTabButtonInterface_eventSetTabLabelInfo_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_ULyraTabButtonInterface_SetTabLabelInfo); + if (Func) + { + Parms.TabDescriptor=TabDescriptor; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (ILyraTabButtonInterface*)(O->GetNativeInterfaceAddress(ULyraTabButtonInterface::StaticClass()))) + { + I->SetTabLabelInfo_Implementation(TabDescriptor); + } +} +struct Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab Button" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabDescriptor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabDescriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::NewProp_TabDescriptor = { "TabDescriptor", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabButtonInterface_eventSetTabLabelInfo_Parms, TabDescriptor), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabDescriptor_MetaData), NewProp_TabDescriptor_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::NewProp_TabDescriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabButtonInterface, nullptr, "SetTabLabelInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::PropPointers), sizeof(LyraTabButtonInterface_eventSetTabLabelInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08420C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraTabButtonInterface_eventSetTabLabelInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ILyraTabButtonInterface::execSetTabLabelInfo) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabLabelInfo_Implementation(Z_Param_Out_TabDescriptor); + P_NATIVE_END; +} +// End Interface ULyraTabButtonInterface Function SetTabLabelInfo + +// Begin Interface ULyraTabButtonInterface +void ULyraTabButtonInterface::StaticRegisterNativesULyraTabButtonInterface() +{ + UClass* Class = ULyraTabButtonInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "SetTabLabelInfo", &ILyraTabButtonInterface::execSetTabLabelInfo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabButtonInterface); +UClass* Z_Construct_UClass_ULyraTabButtonInterface_NoRegister() +{ + return ULyraTabButtonInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabButtonInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabButtonInterface_SetTabLabelInfo, "SetTabLabelInfo" }, // 1636539394 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTabButtonInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabButtonInterface_Statics::ClassParams = { + &ULyraTabButtonInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabButtonInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabButtonInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabButtonInterface() +{ + if (!Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton, Z_Construct_UClass_ULyraTabButtonInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabButtonInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabButtonInterface::StaticClass(); +} +ULyraTabButtonInterface::ULyraTabButtonInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabButtonInterface); +ULyraTabButtonInterface::~ULyraTabButtonInterface() {} +// End Interface ULyraTabButtonInterface + +// Begin Delegate FOnTabContentCreated +struct Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics +{ + struct LyraTabListWidgetBase_eventOnTabContentCreated_Parms + { + FName TabId; + UCommonUserWidget* TabWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate broadcast when a new tab is created. Allows hook ups after creation. */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate broadcast when a new tab is created. Allows hook ups after creation." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TabWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventOnTabContentCreated_Parms, TabId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabWidget = { "TabWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventOnTabContentCreated_Parms, TabWidget), Z_Construct_UClass_UCommonUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabWidget_MetaData), NewProp_TabWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::NewProp_TabWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "OnTabContentCreated__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::LyraTabListWidgetBase_eventOnTabContentCreated_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::LyraTabListWidgetBase_eventOnTabContentCreated_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void ULyraTabListWidgetBase::FOnTabContentCreated_DelegateWrapper(const FMulticastScriptDelegate& OnTabContentCreated, FName TabId, UCommonUserWidget* TabWidget) +{ + struct LyraTabListWidgetBase_eventOnTabContentCreated_Parms + { + FName TabId; + UCommonUserWidget* TabWidget; + }; + LyraTabListWidgetBase_eventOnTabContentCreated_Parms Parms; + Parms.TabId=TabId; + Parms.TabWidget=TabWidget; + OnTabContentCreated.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnTabContentCreated + +// Begin Class ULyraTabListWidgetBase Function GetPreregisteredTabInfo +struct Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics +{ + struct LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms + { + FName TabNameId; + FLyraTabDescriptor OutTabInfo; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabNameId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabNameId; + static const UECodeGen_Private::FStructPropertyParams NewProp_OutTabInfo; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_TabNameId = { "TabNameId", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms, TabNameId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabNameId_MetaData), NewProp_TabNameId_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_OutTabInfo = { "OutTabInfo", nullptr, (EPropertyFlags)0x0010008000000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms, OutTabInfo), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +void Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_TabNameId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_OutTabInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "GetPreregisteredTabInfo", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::LyraTabListWidgetBase_eventGetPreregisteredTabInfo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execGetPreregisteredTabInfo) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabNameId); + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_OutTabInfo); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->GetPreregisteredTabInfo(Z_Param_TabNameId,Z_Param_Out_OutTabInfo); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function GetPreregisteredTabInfo + +// Begin Class ULyraTabListWidgetBase Function GetVisibleTabCount +struct Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics +{ + struct LyraTabListWidgetBase_eventGetVisibleTabCount_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventGetVisibleTabCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "GetVisibleTabCount", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::LyraTabListWidgetBase_eventGetVisibleTabCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::LyraTabListWidgetBase_eventGetVisibleTabCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execGetVisibleTabCount) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetVisibleTabCount(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function GetVisibleTabCount + +// Begin Class ULyraTabListWidgetBase Function IsFirstTabActive +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics +{ + struct LyraTabListWidgetBase_eventIsFirstTabActive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsFirstTabActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsFirstTabActive_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsFirstTabActive", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::LyraTabListWidgetBase_eventIsFirstTabActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::LyraTabListWidgetBase_eventIsFirstTabActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsFirstTabActive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsFirstTabActive(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsFirstTabActive + +// Begin Class ULyraTabListWidgetBase Function IsLastTabActive +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics +{ + struct LyraTabListWidgetBase_eventIsLastTabActive_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsLastTabActive_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsLastTabActive_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsLastTabActive", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::LyraTabListWidgetBase_eventIsLastTabActive_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::LyraTabListWidgetBase_eventIsLastTabActive_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsLastTabActive) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsLastTabActive(); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsLastTabActive + +// Begin Class ULyraTabListWidgetBase Function IsTabVisible +struct Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics +{ + struct LyraTabListWidgetBase_eventIsTabVisible_Parms + { + FName TabId; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabId; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_TabId = { "TabId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventIsTabVisible_Parms, TabId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventIsTabVisible_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventIsTabVisible_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_TabId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "IsTabVisible", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::LyraTabListWidgetBase_eventIsTabVisible_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::LyraTabListWidgetBase_eventIsTabVisible_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execIsTabVisible) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabId); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsTabVisible(Z_Param_TabId); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function IsTabVisible + +// Begin Class ULyraTabListWidgetBase Function RegisterDynamicTab +struct Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics +{ + struct LyraTabListWidgetBase_eventRegisterDynamicTab_Parms + { + FLyraTabDescriptor TabDescriptor; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TabDescriptor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TabDescriptor; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_TabDescriptor = { "TabDescriptor", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventRegisterDynamicTab_Parms, TabDescriptor), Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TabDescriptor_MetaData), NewProp_TabDescriptor_MetaData) }; // 2910668241 +void Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventRegisterDynamicTab_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventRegisterDynamicTab_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_TabDescriptor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "RegisterDynamicTab", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::LyraTabListWidgetBase_eventRegisterDynamicTab_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::LyraTabListWidgetBase_eventRegisterDynamicTab_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execRegisterDynamicTab) +{ + P_GET_STRUCT_REF(FLyraTabDescriptor,Z_Param_Out_TabDescriptor); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->RegisterDynamicTab(Z_Param_Out_TabDescriptor); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function RegisterDynamicTab + +// Begin Class ULyraTabListWidgetBase Function SetTabHiddenState +struct Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics +{ + struct LyraTabListWidgetBase_eventSetTabHiddenState_Parms + { + FName TabNameId; + bool bHidden; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Tab List" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Toggles whether or not a specified tab is hidden, can only be called before the switcher is associated\n" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Toggles whether or not a specified tab is hidden, can only be called before the switcher is associated" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_TabNameId; + static void NewProp_bHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bHidden; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_TabNameId = { "TabNameId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTabListWidgetBase_eventSetTabHiddenState_Parms, TabNameId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden_SetBit(void* Obj) +{ + ((LyraTabListWidgetBase_eventSetTabHiddenState_Parms*)Obj)->bHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden = { "bHidden", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTabListWidgetBase_eventSetTabHiddenState_Parms), &Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_TabNameId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::NewProp_bHidden, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTabListWidgetBase, nullptr, "SetTabHiddenState", nullptr, nullptr, Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::LyraTabListWidgetBase_eventSetTabHiddenState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::LyraTabListWidgetBase_eventSetTabHiddenState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTabListWidgetBase::execSetTabHiddenState) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_TabNameId); + P_GET_UBOOL(Z_Param_bHidden); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTabHiddenState(Z_Param_TabNameId,Z_Param_bHidden); + P_NATIVE_END; +} +// End Class ULyraTabListWidgetBase Function SetTabHiddenState + +// Begin Class ULyraTabListWidgetBase +void ULyraTabListWidgetBase::StaticRegisterNativesULyraTabListWidgetBase() +{ + UClass* Class = ULyraTabListWidgetBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPreregisteredTabInfo", &ULyraTabListWidgetBase::execGetPreregisteredTabInfo }, + { "GetVisibleTabCount", &ULyraTabListWidgetBase::execGetVisibleTabCount }, + { "IsFirstTabActive", &ULyraTabListWidgetBase::execIsFirstTabActive }, + { "IsLastTabActive", &ULyraTabListWidgetBase::execIsLastTabActive }, + { "IsTabVisible", &ULyraTabListWidgetBase::execIsTabVisible }, + { "RegisterDynamicTab", &ULyraTabListWidgetBase::execRegisterDynamicTab }, + { "SetTabHiddenState", &ULyraTabListWidgetBase::execSetTabHiddenState }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTabListWidgetBase); +UClass* Z_Construct_UClass_ULyraTabListWidgetBase_NoRegister() +{ + return ULyraTabListWidgetBase::StaticClass(); +} +struct Z_Construct_UClass_ULyraTabListWidgetBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Common/LyraTabListWidgetBase.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTabContentCreated_MetaData[] = { + { "Category", "Tab List" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Broadcasts when a new tab is created. */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Broadcasts when a new tab is created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreregisteredTabInfoArray_MetaData[] = { + { "Category", "LyraTabListWidgetBase" }, + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, + { "TitleProperty", "TabId" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingTabLabelInfoMap_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Stores label info for tabs that have been registered at runtime but not yet created. \n\x09 * Elements are removed once they are created.\n\x09 */" }, +#endif + { "ModuleRelativePath", "UI/Common/LyraTabListWidgetBase.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stores label info for tabs that have been registered at runtime but not yet created.\nElements are removed once they are created." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTabContentCreated; + static const UECodeGen_Private::FStructPropertyParams NewProp_PreregisteredTabInfoArray_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PreregisteredTabInfoArray; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingTabLabelInfoMap_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_PendingTabLabelInfoMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PendingTabLabelInfoMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTabListWidgetBase_GetPreregisteredTabInfo, "GetPreregisteredTabInfo" }, // 2563616738 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_GetVisibleTabCount, "GetVisibleTabCount" }, // 998224344 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsFirstTabActive, "IsFirstTabActive" }, // 525976309 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsLastTabActive, "IsLastTabActive" }, // 2556575969 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_IsTabVisible, "IsTabVisible" }, // 2793334616 + { &Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, "OnTabContentCreated__DelegateSignature" }, // 3561477854 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_RegisterDynamicTab, "RegisterDynamicTab" }, // 4103581184 + { &Z_Construct_UFunction_ULyraTabListWidgetBase_SetTabHiddenState, "SetTabHiddenState" }, // 2031000455 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_OnTabContentCreated = { "OnTabContentCreated", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, OnTabContentCreated), Z_Construct_UDelegateFunction_ULyraTabListWidgetBase_OnTabContentCreated__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTabContentCreated_MetaData), NewProp_OnTabContentCreated_MetaData) }; // 3561477854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray_Inner = { "PreregisteredTabInfoArray", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray = { "PreregisteredTabInfoArray", nullptr, (EPropertyFlags)0x0040008000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, PreregisteredTabInfoArray), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreregisteredTabInfoArray_MetaData), NewProp_PreregisteredTabInfoArray_MetaData) }; // 2910668241 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_ValueProp = { "PendingTabLabelInfoMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLyraTabDescriptor, METADATA_PARAMS(0, nullptr) }; // 2910668241 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_Key_KeyProp = { "PendingTabLabelInfoMap_Key", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap = { "PendingTabLabelInfoMap", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTabListWidgetBase, PendingTabLabelInfoMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingTabLabelInfoMap_MetaData), NewProp_PendingTabLabelInfoMap_MetaData) }; // 2910668241 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_OnTabContentCreated, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PreregisteredTabInfoArray, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTabListWidgetBase_Statics::NewProp_PendingTabLabelInfoMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTabListWidgetBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonTabListWidgetBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTabListWidgetBase_Statics::ClassParams = { + &ULyraTabListWidgetBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTabListWidgetBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTabListWidgetBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTabListWidgetBase() +{ + if (!Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton, Z_Construct_UClass_ULyraTabListWidgetBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTabListWidgetBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTabListWidgetBase::StaticClass(); +} +ULyraTabListWidgetBase::ULyraTabListWidgetBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTabListWidgetBase); +ULyraTabListWidgetBase::~ULyraTabListWidgetBase() {} +// End Class ULyraTabListWidgetBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraTabDescriptor::StaticStruct, Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics::NewStructOps, TEXT("LyraTabDescriptor"), &Z_Registration_Info_UScriptStruct_LyraTabDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraTabDescriptor), 2910668241U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTabButtonInterface, ULyraTabButtonInterface::StaticClass, TEXT("ULyraTabButtonInterface"), &Z_Registration_Info_UClass_ULyraTabButtonInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabButtonInterface), 2008894476U) }, + { Z_Construct_UClass_ULyraTabListWidgetBase, ULyraTabListWidgetBase::StaticClass, TEXT("ULyraTabListWidgetBase"), &Z_Registration_Info_UClass_ULyraTabListWidgetBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTabListWidgetBase), 3287188622U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_960902156(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h new file mode 100644 index 00000000..d98f44c5 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTabListWidgetBase.generated.h @@ -0,0 +1,140 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraTabListWidgetBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserWidget; +struct FLyraTabDescriptor; +#ifdef LYRAGAME_LyraTabListWidgetBase_generated_h +#error "LyraTabListWidgetBase.generated.h already included, missing '#pragma once' in LyraTabListWidgetBase.h" +#endif +#define LYRAGAME_LyraTabListWidgetBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraTabDescriptor_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void SetTabLabelInfo_Implementation(FLyraTabDescriptor const& TabDescriptor) {}; \ + DECLARE_FUNCTION(execSetTabLabelInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabButtonInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabButtonInterface(ULyraTabButtonInterface&&); \ + ULyraTabButtonInterface(const ULyraTabButtonInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabButtonInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabButtonInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabButtonInterface) \ + NO_API virtual ~ULyraTabButtonInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraTabButtonInterface(); \ + friend struct Z_Construct_UClass_ULyraTabButtonInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabButtonInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabButtonInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILyraTabButtonInterface() {} \ +public: \ + typedef ULyraTabButtonInterface UClassType; \ + typedef ILyraTabButtonInterface ThisClass; \ + static void Execute_SetTabLabelInfo(UObject* O, FLyraTabDescriptor const& TabDescriptor); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_49_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_57_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_52_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_96_DELEGATE \ +static void FOnTabContentCreated_DelegateWrapper(const FMulticastScriptDelegate& OnTabContentCreated, FName TabId, UCommonUserWidget* TabWidget); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetVisibleTabCount); \ + DECLARE_FUNCTION(execIsTabVisible); \ + DECLARE_FUNCTION(execIsLastTabActive); \ + DECLARE_FUNCTION(execIsFirstTabActive); \ + DECLARE_FUNCTION(execRegisterDynamicTab); \ + DECLARE_FUNCTION(execSetTabHiddenState); \ + DECLARE_FUNCTION(execGetPreregisteredTabInfo); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTabListWidgetBase(); \ + friend struct Z_Construct_UClass_ULyraTabListWidgetBase_Statics; \ +public: \ + DECLARE_CLASS(ULyraTabListWidgetBase, UCommonTabListWidgetBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTabListWidgetBase) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTabListWidgetBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTabListWidgetBase(ULyraTabListWidgetBase&&); \ + ULyraTabListWidgetBase(const ULyraTabListWidgetBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTabListWidgetBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTabListWidgetBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTabListWidgetBase) \ + NO_API virtual ~ULyraTabListWidgetBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_64_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h_67_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraTabListWidgetBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp new file mode 100644 index 00000000..8efa6638 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.gen.cpp @@ -0,0 +1,121 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/AbilitySystem/LyraTaggedActor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTaggedActor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor(); +GAMEPLAYTAGS_API UClass* Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTaggedActor(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTaggedActor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTaggedActor +void ALyraTaggedActor::StaticRegisterNativesALyraTaggedActor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTaggedActor); +UClass* Z_Construct_UClass_ALyraTaggedActor_NoRegister() +{ + return ALyraTaggedActor::StaticClass(); +} +struct Z_Construct_UClass_ALyraTaggedActor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// An actor that implements the gameplay tag asset interface\n" }, +#endif + { "IncludePath", "AbilitySystem/LyraTaggedActor.h" }, + { "ModuleRelativePath", "AbilitySystem/LyraTaggedActor.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An actor that implements the gameplay tag asset interface" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticGameplayTags_MetaData[] = { + { "Category", "Actor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gameplay-related tags associated with this actor\n" }, +#endif + { "ModuleRelativePath", "AbilitySystem/LyraTaggedActor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay-related tags associated with this actor" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_StaticGameplayTags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraTaggedActor_Statics::NewProp_StaticGameplayTags = { "StaticGameplayTags", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTaggedActor, StaticGameplayTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticGameplayTags_MetaData), NewProp_StaticGameplayTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTaggedActor_Statics::NewProp_StaticGameplayTags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTaggedActor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraTaggedActor_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UGameplayTagAssetInterface_NoRegister, (int32)VTABLE_OFFSET(ALyraTaggedActor, IGameplayTagAssetInterface), false }, // 2592985258 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTaggedActor_Statics::ClassParams = { + &ALyraTaggedActor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTaggedActor_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTaggedActor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTaggedActor() +{ + if (!Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton, Z_Construct_UClass_ALyraTaggedActor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTaggedActor.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTaggedActor::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTaggedActor); +ALyraTaggedActor::~ALyraTaggedActor() {} +// End Class ALyraTaggedActor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTaggedActor, ALyraTaggedActor::StaticClass, TEXT("ALyraTaggedActor"), &Z_Registration_Info_UClass_ALyraTaggedActor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTaggedActor), 131971491U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_3110171262(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.generated.h new file mode 100644 index 00000000..25ec04a9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedActor.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AbilitySystem/LyraTaggedActor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTaggedActor_generated_h +#error "LyraTaggedActor.generated.h already included, missing '#pragma once' in LyraTaggedActor.h" +#endif +#define LYRAGAME_LyraTaggedActor_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTaggedActor(); \ + friend struct Z_Construct_UClass_ALyraTaggedActor_Statics; \ +public: \ + DECLARE_CLASS(ALyraTaggedActor, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTaggedActor) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTaggedActor(ALyraTaggedActor&&); \ + ALyraTaggedActor(const ALyraTaggedActor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTaggedActor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTaggedActor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTaggedActor) \ + NO_API virtual ~ALyraTaggedActor(); + + +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_12_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_AbilitySystem_LyraTaggedActor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp new file mode 100644 index 00000000..f6d1dc9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.gen.cpp @@ -0,0 +1,151 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraTaggedWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTaggedWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTaggedWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTaggedWidget_NoRegister(); +UMG_API UEnum* Z_Construct_UEnum_UMG_ESlateVisibility(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTaggedWidget +void ULyraTaggedWidget::StaticRegisterNativesULyraTaggedWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTaggedWidget); +UClass* Z_Construct_UClass_ULyraTaggedWidget_NoRegister() +{ + return ULyraTaggedWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraTaggedWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An widget in a layout that has been tagged (can be hidden or shown via tags on the owning player)\n */" }, +#endif + { "IncludePath", "UI/LyraTaggedWidget.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An widget in a layout that has been tagged (can be hidden or shown via tags on the owning player)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HiddenByTags_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If the owning player has any of these tags, this widget will be hidden (using HiddenVisibility) */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If the owning player has any of these tags, this widget will be hidden (using HiddenVisibility)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShownVisibility_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The visibility to use when this widget is shown (not hidden by gameplay tags). */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The visibility to use when this widget is shown (not hidden by gameplay tags)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HiddenVisibility_MetaData[] = { + { "Category", "HUD" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The visibility to use when this widget is hidden by gameplay tags. */" }, +#endif + { "ModuleRelativePath", "UI/LyraTaggedWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The visibility to use when this widget is hidden by gameplay tags." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_HiddenByTags; + static const UECodeGen_Private::FBytePropertyParams NewProp_ShownVisibility_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ShownVisibility; + static const UECodeGen_Private::FBytePropertyParams NewProp_HiddenVisibility_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_HiddenVisibility; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenByTags = { "HiddenByTags", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, HiddenByTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HiddenByTags_MetaData), NewProp_HiddenByTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility = { "ShownVisibility", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, ShownVisibility), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShownVisibility_MetaData), NewProp_ShownVisibility_MetaData) }; // 2974316103 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility = { "HiddenVisibility", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTaggedWidget, HiddenVisibility), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HiddenVisibility_MetaData), NewProp_HiddenVisibility_MetaData) }; // 2974316103 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenByTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_ShownVisibility, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTaggedWidget_Statics::NewProp_HiddenVisibility, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTaggedWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTaggedWidget_Statics::ClassParams = { + &ULyraTaggedWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTaggedWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTaggedWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTaggedWidget() +{ + if (!Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton, Z_Construct_UClass_ULyraTaggedWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTaggedWidget.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTaggedWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTaggedWidget); +ULyraTaggedWidget::~ULyraTaggedWidget() {} +// End Class ULyraTaggedWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTaggedWidget, ULyraTaggedWidget::StaticClass, TEXT("ULyraTaggedWidget"), &Z_Registration_Info_UClass_ULyraTaggedWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTaggedWidget), 4161988894U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_2506952908(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h new file mode 100644 index 00000000..77435e2c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTaggedWidget.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraTaggedWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTaggedWidget_generated_h +#error "LyraTaggedWidget.generated.h already included, missing '#pragma once' in LyraTaggedWidget.h" +#endif +#define LYRAGAME_LyraTaggedWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTaggedWidget(); \ + friend struct Z_Construct_UClass_ULyraTaggedWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraTaggedWidget, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTaggedWidget) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTaggedWidget(ULyraTaggedWidget&&); \ + ULyraTaggedWidget(const ULyraTaggedWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTaggedWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTaggedWidget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTaggedWidget) \ + NO_API virtual ~ULyraTaggedWidget(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraTaggedWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp new file mode 100644 index 00000000..a824658d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.gen.cpp @@ -0,0 +1,148 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamAgentInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamAgentInterface() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_UGenericTeamAgentInterface(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnLyraTeamIndexChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms + { + UObject* ObjectChangingTeam; + int32 OldTeamID; + int32 NewTeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamAgentInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ObjectChangingTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_OldTeamID; + static const UECodeGen_Private::FIntPropertyParams NewProp_NewTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_ObjectChangingTeam = { "ObjectChangingTeam", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, ObjectChangingTeam), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_OldTeamID = { "OldTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, OldTeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_NewTeamID = { "NewTeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms, NewTeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_ObjectChangingTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_OldTeamID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::NewProp_NewTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "OnLyraTeamIndexChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamIndexChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FOnLyraTeamIndexChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamIndexChangedDelegate, UObject* ObjectChangingTeam, int32 OldTeamID, int32 NewTeamID) +{ + struct _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms + { + UObject* ObjectChangingTeam; + int32 OldTeamID; + int32 NewTeamID; + }; + _Script_LyraGame_eventOnLyraTeamIndexChangedDelegate_Parms Parms; + Parms.ObjectChangingTeam=ObjectChangingTeam; + Parms.OldTeamID=OldTeamID; + Parms.NewTeamID=NewTeamID; + OnLyraTeamIndexChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnLyraTeamIndexChangedDelegate + +// Begin Interface ULyraTeamAgentInterface +void ULyraTeamAgentInterface::StaticRegisterNativesULyraTeamAgentInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamAgentInterface); +UClass* Z_Construct_UClass_ULyraTeamAgentInterface_NoRegister() +{ + return ULyraTeamAgentInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamAgentInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Teams/LyraTeamAgentInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamAgentInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGenericTeamAgentInterface, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamAgentInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamAgentInterface_Statics::ClassParams = { + &ULyraTeamAgentInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamAgentInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamAgentInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamAgentInterface() +{ + if (!Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton, Z_Construct_UClass_ULyraTeamAgentInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamAgentInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamAgentInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamAgentInterface); +ULyraTeamAgentInterface::~ULyraTeamAgentInterface() {} +// End Interface ULyraTeamAgentInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamAgentInterface, ULyraTeamAgentInterface::StaticClass, TEXT("ULyraTeamAgentInterface"), &Z_Registration_Info_UClass_ULyraTeamAgentInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamAgentInterface), 361203859U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_819502528(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h new file mode 100644 index 00000000..8c4383d4 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamAgentInterface.generated.h @@ -0,0 +1,76 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamAgentInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +#ifdef LYRAGAME_LyraTeamAgentInterface_generated_h +#error "LyraTeamAgentInterface.generated.h already included, missing '#pragma once' in LyraTeamAgentInterface.h" +#endif +#define LYRAGAME_LyraTeamAgentInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_13_DELEGATE \ +LYRAGAME_API void FOnLyraTeamIndexChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamIndexChangedDelegate, UObject* ObjectChangingTeam, int32 OldTeamID, int32 NewTeamID); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamAgentInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamAgentInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamAgentInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamAgentInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamAgentInterface(ULyraTeamAgentInterface&&); \ + ULyraTeamAgentInterface(const ULyraTeamAgentInterface&); \ +public: \ + NO_API virtual ~ULyraTeamAgentInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULyraTeamAgentInterface(); \ + friend struct Z_Construct_UClass_ULyraTeamAgentInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamAgentInterface, UGenericTeamAgentInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamAgentInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_INCLASS_IINTERFACE \ +protected: \ + virtual ~ILyraTeamAgentInterface() {} \ +public: \ + typedef ULyraTeamAgentInterface UClassType; \ + typedef ILyraTeamAgentInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_26_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_34_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h_29_INCLASS_IINTERFACE \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamAgentInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp new file mode 100644 index 00000000..e5c27172 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamCheats.h" +#include "Runtime/Engine/Classes/GameFramework/CheatManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamCheats() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCheatManagerExtension(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCheats(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCheats_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamCheats Function CycleTeam +struct Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Moves this player to the next available team, wrapping around to the\n// first team if at the end of the list of teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Moves this player to the next available team, wrapping around to the\nfirst team if at the end of the list of teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "CycleTeam", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraTeamCheats_CycleTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_CycleTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execCycleTeam) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CycleTeam(); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function CycleTeam + +// Begin Class ULyraTeamCheats Function ListTeams +struct Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Prints a list of all of the teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Prints a list of all of the teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "ListTeams", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020600, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraTeamCheats_ListTeams() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_ListTeams_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execListTeams) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ListTeams(); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function ListTeams + +// Begin Class ULyraTeamCheats Function SetTeam +struct Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics +{ + struct LyraTeamCheats_eventSetTeam_Parms + { + int32 TeamID; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Moves this player to the specified team\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Moves this player to the specified team" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::NewProp_TeamID = { "TeamID", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamCheats_eventSetTeam_Parms, TeamID), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::NewProp_TeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamCheats, nullptr, "SetTeam", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::LyraTeamCheats_eventSetTeam_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020604, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::LyraTeamCheats_eventSetTeam_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamCheats_SetTeam() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamCheats_SetTeam_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamCheats::execSetTeam) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamID); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetTeam(Z_Param_TeamID); + P_NATIVE_END; +} +// End Class ULyraTeamCheats Function SetTeam + +// Begin Class ULyraTeamCheats +void ULyraTeamCheats::StaticRegisterNativesULyraTeamCheats() +{ + UClass* Class = ULyraTeamCheats::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CycleTeam", &ULyraTeamCheats::execCycleTeam }, + { "ListTeams", &ULyraTeamCheats::execListTeams }, + { "SetTeam", &ULyraTeamCheats::execSetTeam }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamCheats); +UClass* Z_Construct_UClass_ULyraTeamCheats_NoRegister() +{ + return ULyraTeamCheats::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamCheats_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Cheats related to teams */" }, +#endif + { "IncludePath", "Teams/LyraTeamCheats.h" }, + { "ModuleRelativePath", "Teams/LyraTeamCheats.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Cheats related to teams" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamCheats_CycleTeam, "CycleTeam" }, // 4054398703 + { &Z_Construct_UFunction_ULyraTeamCheats_ListTeams, "ListTeams" }, // 2746897867 + { &Z_Construct_UFunction_ULyraTeamCheats_SetTeam, "SetTeam" }, // 1213663495 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamCheats_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCheatManagerExtension, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCheats_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamCheats_Statics::ClassParams = { + &ULyraTeamCheats::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCheats_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamCheats_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamCheats() +{ + if (!Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton, Z_Construct_UClass_ULyraTeamCheats_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamCheats.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamCheats::StaticClass(); +} +ULyraTeamCheats::ULyraTeamCheats(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamCheats); +ULyraTeamCheats::~ULyraTeamCheats() {} +// End Class ULyraTeamCheats + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamCheats, ULyraTeamCheats::StaticClass, TEXT("ULyraTeamCheats"), &Z_Registration_Info_UClass_ULyraTeamCheats, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamCheats), 4258689395U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_2043156129(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.generated.h new file mode 100644 index 00000000..f01d7412 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCheats.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamCheats.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamCheats_generated_h +#error "LyraTeamCheats.generated.h already included, missing '#pragma once' in LyraTeamCheats.h" +#endif +#define LYRAGAME_LyraTeamCheats_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execListTeams); \ + DECLARE_FUNCTION(execSetTeam); \ + DECLARE_FUNCTION(execCycleTeam); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamCheats(); \ + friend struct Z_Construct_UClass_ULyraTeamCheats_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamCheats, UCheatManagerExtension, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamCheats) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamCheats(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamCheats(ULyraTeamCheats&&); \ + ULyraTeamCheats(const ULyraTeamCheats&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamCheats); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamCheats); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamCheats) \ + NO_API virtual ~ULyraTeamCheats(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCheats_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp new file mode 100644 index 00000000..4e5325f8 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.gen.cpp @@ -0,0 +1,135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamCreationComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamCreationComponent() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCreationComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamCreationComponent_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamCreationComponent +void ULyraTeamCreationComponent::StaticRegisterNativesULyraTeamCreationComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamCreationComponent); +UClass* Z_Construct_UClass_ULyraTeamCreationComponent_NoRegister() +{ + return ULyraTeamCreationComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamCreationComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Teams/LyraTeamCreationComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamsToCreate_MetaData[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// List of teams to create (id to display asset mapping, the display asset can be left unset if desired)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of teams to create (id to display asset mapping, the display asset can be left unset if desired)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PublicTeamInfoClass_MetaData[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateTeamInfoClass_MetaData[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamCreationComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamsToCreate_ValueProp; + static const UECodeGen_Private::FBytePropertyParams NewProp_TeamsToCreate_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TeamsToCreate; + static const UECodeGen_Private::FClassPropertyParams NewProp_PublicTeamInfoClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_PrivateTeamInfoClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_ValueProp = { "TeamsToCreate", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_Key_KeyProp = { "TeamsToCreate_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate = { "TeamsToCreate", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, TeamsToCreate), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamsToCreate_MetaData), NewProp_TeamsToCreate_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PublicTeamInfoClass = { "PublicTeamInfoClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, PublicTeamInfoClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PublicTeamInfoClass_MetaData), NewProp_PublicTeamInfoClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PrivateTeamInfoClass = { "PrivateTeamInfoClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamCreationComponent, PrivateTeamInfoClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateTeamInfoClass_MetaData), NewProp_PrivateTeamInfoClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_TeamsToCreate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PublicTeamInfoClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamCreationComponent_Statics::NewProp_PrivateTeamInfoClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamCreationComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamCreationComponent_Statics::ClassParams = { + &ULyraTeamCreationComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamCreationComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamCreationComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamCreationComponent() +{ + if (!Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton, Z_Construct_UClass_ULyraTeamCreationComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamCreationComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamCreationComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamCreationComponent); +ULyraTeamCreationComponent::~ULyraTeamCreationComponent() {} +// End Class ULyraTeamCreationComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamCreationComponent, ULyraTeamCreationComponent::StaticClass, TEXT("ULyraTeamCreationComponent"), &Z_Registration_Info_UClass_ULyraTeamCreationComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamCreationComponent), 3255109266U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_3748714875(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h new file mode 100644 index 00000000..b0d37798 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamCreationComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamCreationComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamCreationComponent_generated_h +#error "LyraTeamCreationComponent.generated.h already included, missing '#pragma once' in LyraTeamCreationComponent.h" +#endif +#define LYRAGAME_LyraTeamCreationComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamCreationComponent(); \ + friend struct Z_Construct_UClass_ULyraTeamCreationComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamCreationComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamCreationComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamCreationComponent(ULyraTeamCreationComponent&&); \ + ULyraTeamCreationComponent(const ULyraTeamCreationComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamCreationComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamCreationComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamCreationComponent) \ + NO_API virtual ~ULyraTeamCreationComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamCreationComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp new file mode 100644 index 00000000..40fb0444 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.gen.cpp @@ -0,0 +1,359 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamDisplayAsset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamDisplayAsset() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMeshComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTexture_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamDisplayAsset Function ApplyToActor +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToActor_Parms + { + AActor* TargetActor; + bool bIncludeChildActors; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "CPP_Default_bIncludeChildActors", "true" }, + { "DefaultToSelf", "TargetActor" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetActor; + static void NewProp_bIncludeChildActors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeChildActors; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_TargetActor = { "TargetActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToActor_Parms, TargetActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors_SetBit(void* Obj) +{ + ((LyraTeamDisplayAsset_eventApplyToActor_Parms*)Obj)->bIncludeChildActors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors = { "bIncludeChildActors", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamDisplayAsset_eventApplyToActor_Parms), &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_TargetActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::NewProp_bIncludeChildActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToActor", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::LyraTeamDisplayAsset_eventApplyToActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::LyraTeamDisplayAsset_eventApplyToActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToActor) +{ + P_GET_OBJECT(AActor,Z_Param_TargetActor); + P_GET_UBOOL(Z_Param_bIncludeChildActors); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToActor(Z_Param_TargetActor,Z_Param_bIncludeChildActors); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToActor + +// Begin Class ULyraTeamDisplayAsset Function ApplyToMaterial +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToMaterial_Parms + { + UMaterialInstanceDynamic* Material; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Material; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::NewProp_Material = { "Material", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToMaterial_Parms, Material), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::NewProp_Material, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToMaterial", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::LyraTeamDisplayAsset_eventApplyToMaterial_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::LyraTeamDisplayAsset_eventApplyToMaterial_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToMaterial) +{ + P_GET_OBJECT(UMaterialInstanceDynamic,Z_Param_Material); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToMaterial(Z_Param_Material); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToMaterial + +// Begin Class ULyraTeamDisplayAsset Function ApplyToMeshComponent +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms + { + UMeshComponent* MeshComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MeshComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_MeshComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::NewProp_MeshComponent = { "MeshComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms, MeshComponent), Z_Construct_UClass_UMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MeshComponent_MetaData), NewProp_MeshComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::NewProp_MeshComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToMeshComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::LyraTeamDisplayAsset_eventApplyToMeshComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToMeshComponent) +{ + P_GET_OBJECT(UMeshComponent,Z_Param_MeshComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToMeshComponent(Z_Param_MeshComponent); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToMeshComponent + +// Begin Class ULyraTeamDisplayAsset Function ApplyToNiagaraComponent +struct Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics +{ + struct LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms + { + UNiagaraComponent* NiagaraComponent; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NiagaraComponent_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_NiagaraComponent; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::NewProp_NiagaraComponent = { "NiagaraComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms, NiagaraComponent), Z_Construct_UClass_UNiagaraComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NiagaraComponent_MetaData), NewProp_NiagaraComponent_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::NewProp_NiagaraComponent, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamDisplayAsset, nullptr, "ApplyToNiagaraComponent", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::LyraTeamDisplayAsset_eventApplyToNiagaraComponent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamDisplayAsset::execApplyToNiagaraComponent) +{ + P_GET_OBJECT(UNiagaraComponent,Z_Param_NiagaraComponent); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyToNiagaraComponent(Z_Param_NiagaraComponent); + P_NATIVE_END; +} +// End Class ULyraTeamDisplayAsset Function ApplyToNiagaraComponent + +// Begin Class ULyraTeamDisplayAsset +void ULyraTeamDisplayAsset::StaticRegisterNativesULyraTeamDisplayAsset() +{ + UClass* Class = ULyraTeamDisplayAsset::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyToActor", &ULyraTeamDisplayAsset::execApplyToActor }, + { "ApplyToMaterial", &ULyraTeamDisplayAsset::execApplyToMaterial }, + { "ApplyToMeshComponent", &ULyraTeamDisplayAsset::execApplyToMeshComponent }, + { "ApplyToNiagaraComponent", &ULyraTeamDisplayAsset::execApplyToNiagaraComponent }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamDisplayAsset); +UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister() +{ + return ULyraTeamDisplayAsset::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamDisplayAsset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents the display information for team definitions (e.g., colors, display names, textures, etc...)\n" }, +#endif + { "IncludePath", "Teams/LyraTeamDisplayAsset.h" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents the display information for team definitions (e.g., colors, display names, textures, etc...)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScalarParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ColorParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextureParameters_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamShortName_MetaData[] = { + { "Category", "LyraTeamDisplayAsset" }, + { "ModuleRelativePath", "Teams/LyraTeamDisplayAsset.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ScalarParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ScalarParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ScalarParameters; + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ColorParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ColorParameters; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TextureParameters_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_TextureParameters_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TextureParameters; + static const UECodeGen_Private::FTextPropertyParams NewProp_TeamShortName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToActor, "ApplyToActor" }, // 4093605114 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMaterial, "ApplyToMaterial" }, // 866330542 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToMeshComponent, "ApplyToMeshComponent" }, // 1036481922 + { &Z_Construct_UFunction_ULyraTeamDisplayAsset_ApplyToNiagaraComponent, "ApplyToNiagaraComponent" }, // 3936041491 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_ValueProp = { "ScalarParameters", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_Key_KeyProp = { "ScalarParameters_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters = { "ScalarParameters", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, ScalarParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScalarParameters_MetaData), NewProp_ScalarParameters_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_ValueProp = { "ColorParameters", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_Key_KeyProp = { "ColorParameters_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters = { "ColorParameters", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, ColorParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ColorParameters_MetaData), NewProp_ColorParameters_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_ValueProp = { "TextureParameters", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_Key_KeyProp = { "TextureParameters_Key", nullptr, (EPropertyFlags)0x0100000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters = { "TextureParameters", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, TextureParameters), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextureParameters_MetaData), NewProp_TextureParameters_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TeamShortName = { "TeamShortName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamDisplayAsset, TeamShortName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamShortName_MetaData), NewProp_TeamShortName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ScalarParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_ColorParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TextureParameters, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::NewProp_TeamShortName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::ClassParams = { + &ULyraTeamDisplayAsset::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamDisplayAsset() +{ + if (!Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton, Z_Construct_UClass_ULyraTeamDisplayAsset_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamDisplayAsset.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamDisplayAsset::StaticClass(); +} +ULyraTeamDisplayAsset::ULyraTeamDisplayAsset(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamDisplayAsset); +ULyraTeamDisplayAsset::~ULyraTeamDisplayAsset() {} +// End Class ULyraTeamDisplayAsset + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamDisplayAsset, ULyraTeamDisplayAsset::StaticClass, TEXT("ULyraTeamDisplayAsset"), &Z_Registration_Info_UClass_ULyraTeamDisplayAsset, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamDisplayAsset), 3647309666U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_2747451805(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h new file mode 100644 index 00000000..e2b1a168 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamDisplayAsset.generated.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamDisplayAsset.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UMaterialInstanceDynamic; +class UMeshComponent; +class UNiagaraComponent; +#ifdef LYRAGAME_LyraTeamDisplayAsset_generated_h +#error "LyraTeamDisplayAsset.generated.h already included, missing '#pragma once' in LyraTeamDisplayAsset.h" +#endif +#define LYRAGAME_LyraTeamDisplayAsset_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execApplyToActor); \ + DECLARE_FUNCTION(execApplyToNiagaraComponent); \ + DECLARE_FUNCTION(execApplyToMeshComponent); \ + DECLARE_FUNCTION(execApplyToMaterial); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamDisplayAsset(); \ + friend struct Z_Construct_UClass_ULyraTeamDisplayAsset_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamDisplayAsset, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamDisplayAsset) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamDisplayAsset(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamDisplayAsset(ULyraTeamDisplayAsset&&); \ + ULyraTeamDisplayAsset(const ULyraTeamDisplayAsset&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamDisplayAsset); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamDisplayAsset); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamDisplayAsset) \ + NO_API virtual ~ULyraTeamDisplayAsset(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamDisplayAsset_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp new file mode 100644 index 00000000..0d1abc48 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamInfoBase.h" +#include "LyraGame/System/GameplayTagStack.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamInfoBase() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagStackContainer(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamInfoBase Function OnRep_TeamId +struct Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraTeamInfoBase, nullptr, "OnRep_TeamId", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraTeamInfoBase::execOnRep_TeamId) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_TeamId(); + P_NATIVE_END; +} +// End Class ALyraTeamInfoBase Function OnRep_TeamId + +// Begin Class ALyraTeamInfoBase +void ALyraTeamInfoBase::StaticRegisterNativesALyraTeamInfoBase() +{ + UClass* Class = ALyraTeamInfoBase::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_TeamId", &ALyraTeamInfoBase::execOnRep_TeamId }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamInfoBase); +UClass* Z_Construct_UClass_ALyraTeamInfoBase_NoRegister() +{ + return ALyraTeamInfoBase::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamInfoBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamInfoBase.h" }, + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamTags_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamId_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamInfoBase.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TeamTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraTeamInfoBase_OnRep_TeamId, "OnRep_TeamId" }, // 2200568674 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamTags = { "TeamTags", nullptr, (EPropertyFlags)0x0010000000000020, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamInfoBase, TeamTags), Z_Construct_UScriptStruct_FGameplayTagStackContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamTags_MetaData), NewProp_TeamTags_MetaData) }; // 3610867483 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamId = { "TeamId", "OnRep_TeamId", (EPropertyFlags)0x0040000100000020, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamInfoBase, TeamId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamId_MetaData), NewProp_TeamId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamInfoBase_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTeamInfoBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AInfo, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamInfoBase_Statics::ClassParams = { + &ALyraTeamInfoBase::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::PropPointers), + 0, + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamInfoBase_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamInfoBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamInfoBase() +{ + if (!Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton, Z_Construct_UClass_ALyraTeamInfoBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamInfoBase.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamInfoBase::StaticClass(); +} +void ALyraTeamInfoBase::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_TeamTags(TEXT("TeamTags")); + static const FName Name_TeamId(TEXT("TeamId")); + const bool bIsValid = true + && Name_TeamTags == ClassReps[(int32)ENetFields_Private::TeamTags].Property->GetFName() + && Name_TeamId == ClassReps[(int32)ENetFields_Private::TeamId].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraTeamInfoBase")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamInfoBase); +ALyraTeamInfoBase::~ALyraTeamInfoBase() {} +// End Class ALyraTeamInfoBase + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamInfoBase, ALyraTeamInfoBase::StaticClass, TEXT("ALyraTeamInfoBase"), &Z_Registration_Info_UClass_ALyraTeamInfoBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamInfoBase), 2598226480U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_2441621528(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h new file mode 100644 index 00000000..262ccb91 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamInfoBase.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamInfoBase.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamInfoBase_generated_h +#error "LyraTeamInfoBase.generated.h already included, missing '#pragma once' in LyraTeamInfoBase.h" +#endif +#define LYRAGAME_LyraTeamInfoBase_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_TeamId); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamInfoBase(); \ + friend struct Z_Construct_UClass_ALyraTeamInfoBase_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamInfoBase, AInfo, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamInfoBase) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + TeamTags=NETFIELD_REP_START, \ + TeamId, \ + NETFIELD_REP_END=TeamId }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamInfoBase(ALyraTeamInfoBase&&); \ + ALyraTeamInfoBase(const ALyraTeamInfoBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamInfoBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamInfoBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamInfoBase) \ + NO_API virtual ~ALyraTeamInfoBase(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamInfoBase_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp new file mode 100644 index 00000000..9894c9b7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamPrivateInfo.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamPrivateInfo() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamPrivateInfo +void ALyraTeamPrivateInfo::StaticRegisterNativesALyraTeamPrivateInfo() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamPrivateInfo); +UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister() +{ + return ALyraTeamPrivateInfo::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamPrivateInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamPrivateInfo.h" }, + { "ModuleRelativePath", "Teams/LyraTeamPrivateInfo.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraTeamInfoBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::ClassParams = { + &ALyraTeamPrivateInfo::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamPrivateInfo() +{ + if (!Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton, Z_Construct_UClass_ALyraTeamPrivateInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamPrivateInfo.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamPrivateInfo::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamPrivateInfo); +ALyraTeamPrivateInfo::~ALyraTeamPrivateInfo() {} +// End Class ALyraTeamPrivateInfo + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamPrivateInfo, ALyraTeamPrivateInfo::StaticClass, TEXT("ALyraTeamPrivateInfo"), &Z_Registration_Info_UClass_ALyraTeamPrivateInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamPrivateInfo), 2285644601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_4151068517(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h new file mode 100644 index 00000000..e9509c11 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPrivateInfo.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamPrivateInfo.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamPrivateInfo_generated_h +#error "LyraTeamPrivateInfo.generated.h already included, missing '#pragma once' in LyraTeamPrivateInfo.h" +#endif +#define LYRAGAME_LyraTeamPrivateInfo_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamPrivateInfo(); \ + friend struct Z_Construct_UClass_ALyraTeamPrivateInfo_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamPrivateInfo, ALyraTeamInfoBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamPrivateInfo) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamPrivateInfo(ALyraTeamPrivateInfo&&); \ + ALyraTeamPrivateInfo(const ALyraTeamPrivateInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamPrivateInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamPrivateInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamPrivateInfo) \ + NO_API virtual ~ALyraTeamPrivateInfo(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPrivateInfo_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp new file mode 100644 index 00000000..59136b65 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.gen.cpp @@ -0,0 +1,149 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamPublicInfo.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamPublicInfo() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamInfoBase(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraTeamPublicInfo Function OnRep_TeamDisplayAsset +struct Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraTeamPublicInfo, nullptr, "OnRep_TeamDisplayAsset", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraTeamPublicInfo::execOnRep_TeamDisplayAsset) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_TeamDisplayAsset(); + P_NATIVE_END; +} +// End Class ALyraTeamPublicInfo Function OnRep_TeamDisplayAsset + +// Begin Class ALyraTeamPublicInfo +void ALyraTeamPublicInfo::StaticRegisterNativesALyraTeamPublicInfo() +{ + UClass* Class = ALyraTeamPublicInfo::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_TeamDisplayAsset", &ALyraTeamPublicInfo::execOnRep_TeamDisplayAsset }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraTeamPublicInfo); +UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister() +{ + return ALyraTeamPublicInfo::StaticClass(); +} +struct Z_Construct_UClass_ALyraTeamPublicInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "Teams/LyraTeamPublicInfo.h" }, + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamDisplayAsset_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamPublicInfo.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TeamDisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraTeamPublicInfo_OnRep_TeamDisplayAsset, "OnRep_TeamDisplayAsset" }, // 3476173635 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraTeamPublicInfo_Statics::NewProp_TeamDisplayAsset = { "TeamDisplayAsset", "OnRep_TeamDisplayAsset", (EPropertyFlags)0x0144000100000020, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraTeamPublicInfo, TeamDisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamDisplayAsset_MetaData), NewProp_TeamDisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraTeamPublicInfo_Statics::NewProp_TeamDisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraTeamPublicInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ALyraTeamInfoBase, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraTeamPublicInfo_Statics::ClassParams = { + &ALyraTeamPublicInfo::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraTeamPublicInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraTeamPublicInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraTeamPublicInfo() +{ + if (!Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton, Z_Construct_UClass_ALyraTeamPublicInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraTeamPublicInfo.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraTeamPublicInfo::StaticClass(); +} +void ALyraTeamPublicInfo::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_TeamDisplayAsset(TEXT("TeamDisplayAsset")); + const bool bIsValid = true + && Name_TeamDisplayAsset == ClassReps[(int32)ENetFields_Private::TeamDisplayAsset].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraTeamPublicInfo")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraTeamPublicInfo); +ALyraTeamPublicInfo::~ALyraTeamPublicInfo() {} +// End Class ALyraTeamPublicInfo + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraTeamPublicInfo, ALyraTeamPublicInfo::StaticClass, TEXT("ALyraTeamPublicInfo"), &Z_Registration_Info_UClass_ALyraTeamPublicInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraTeamPublicInfo), 1832338457U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_853372008(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h new file mode 100644 index 00000000..7a334b69 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamPublicInfo.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamPublicInfo.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTeamPublicInfo_generated_h +#error "LyraTeamPublicInfo.generated.h already included, missing '#pragma once' in LyraTeamPublicInfo.h" +#endif +#define LYRAGAME_LyraTeamPublicInfo_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_TeamDisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraTeamPublicInfo(); \ + friend struct Z_Construct_UClass_ALyraTeamPublicInfo_Statics; \ +public: \ + DECLARE_CLASS(ALyraTeamPublicInfo, ALyraTeamInfoBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraTeamPublicInfo) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + TeamDisplayAsset=NETFIELD_REP_START, \ + NETFIELD_REP_END=TeamDisplayAsset }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraTeamPublicInfo(ALyraTeamPublicInfo&&); \ + ALyraTeamPublicInfo(const ALyraTeamPublicInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraTeamPublicInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraTeamPublicInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraTeamPublicInfo) \ + NO_API virtual ~ALyraTeamPublicInfo(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamPublicInfo_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp new file mode 100644 index 00000000..a3538ced --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.gen.cpp @@ -0,0 +1,432 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamStatics.h" +#include "LyraGame/Teams/LyraTeamDisplayAsset.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamStatics() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_UTexture_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamStatics(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamStatics_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTeamStatics Function FindTeamFromObject +struct Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics +{ + struct LyraTeamStatics_eventFindTeamFromObject_Parms + { + const UObject* Agent; + bool bIsPartOfTeam; + int32 TeamId; + ULyraTeamDisplayAsset* DisplayAsset; + bool bLogIfNotSet; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AdvancedDisplay", "bLogIfNotSet" }, + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the team this object belongs to, or INDEX_NONE if it is not part of a team\n" }, +#endif + { "CPP_Default_bLogIfNotSet", "false" }, + { "DefaultToSelf", "Agent" }, + { "Keywords", "GetTeamFromObject" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the team this object belongs to, or INDEX_NONE if it is not part of a team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Agent_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Agent; + static void NewProp_bIsPartOfTeam_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsPartOfTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static void NewProp_bLogIfNotSet_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bLogIfNotSet; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_Agent = { "Agent", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, Agent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Agent_MetaData), NewProp_Agent_MetaData) }; +void Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam_SetBit(void* Obj) +{ + ((LyraTeamStatics_eventFindTeamFromObject_Parms*)Obj)->bIsPartOfTeam = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam = { "bIsPartOfTeam", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamStatics_eventFindTeamFromObject_Parms), &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventFindTeamFromObject_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet_SetBit(void* Obj) +{ + ((LyraTeamStatics_eventFindTeamFromObject_Parms*)Obj)->bLogIfNotSet = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet = { "bLogIfNotSet", nullptr, (EPropertyFlags)0x0010040000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamStatics_eventFindTeamFromObject_Parms), &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_Agent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bIsPartOfTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::NewProp_bLogIfNotSet, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "FindTeamFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::LyraTeamStatics_eventFindTeamFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::LyraTeamStatics_eventFindTeamFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execFindTeamFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Agent); + P_GET_UBOOL_REF(Z_Param_Out_bIsPartOfTeam); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamId); + P_GET_OBJECT_REF(ULyraTeamDisplayAsset,Z_Param_Out_DisplayAsset); + P_GET_UBOOL(Z_Param_bLogIfNotSet); + P_FINISH; + P_NATIVE_BEGIN; + ULyraTeamStatics::FindTeamFromObject(Z_Param_Agent,Z_Param_Out_bIsPartOfTeam,Z_Param_Out_TeamId,P_ARG_GC_BARRIER(Z_Param_Out_DisplayAsset),Z_Param_bLogIfNotSet); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function FindTeamFromObject + +// Begin Class ULyraTeamStatics Function GetTeamColorWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamColorWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + FLinearColor DefaultValue; + FLinearColor ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, DefaultValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamColorWithFallback_Parms, ReturnValue), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamColorWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::LyraTeamStatics_eventGetTeamColorWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04822401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::LyraTeamStatics_eventGetTeamColorWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamColorWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_STRUCT(FLinearColor,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(FLinearColor*)Z_Param__Result=ULyraTeamStatics::GetTeamColorWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamColorWithFallback + +// Begin Class ULyraTeamStatics Function GetTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics +{ + struct LyraTeamStatics_eventGetTeamDisplayAsset_Parms + { + const UObject* WorldContextObject; + int32 TeamId; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::LyraTeamStatics_eventGetTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::LyraTeamStatics_eventGetTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamDisplayAsset) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=ULyraTeamStatics::GetTeamDisplayAsset(Z_Param_WorldContextObject,Z_Param_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamDisplayAsset + +// Begin Class ULyraTeamStatics Function GetTeamScalarWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamScalarWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + float DefaultValue; + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, DefaultValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamScalarWithFallback_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamScalarWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::LyraTeamStatics_eventGetTeamScalarWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::LyraTeamStatics_eventGetTeamScalarWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamScalarWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_PROPERTY(FFloatProperty,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=ULyraTeamStatics::GetTeamScalarWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamScalarWithFallback + +// Begin Class ULyraTeamStatics Function GetTeamTextureWithFallback +struct Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics +{ + struct LyraTeamStatics_eventGetTeamTextureWithFallback_Parms + { + ULyraTeamDisplayAsset* DisplayAsset; + FName ParameterName; + UTexture* DefaultValue; + UTexture* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FNamePropertyParams NewProp_ParameterName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ParameterName = { "ParameterName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, ParameterName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, DefaultValue), Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamStatics_eventGetTeamTextureWithFallback_Parms, ReturnValue), Z_Construct_UClass_UTexture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_DefaultValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamStatics, nullptr, "GetTeamTextureWithFallback", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::LyraTeamStatics_eventGetTeamTextureWithFallback_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::LyraTeamStatics_eventGetTeamTextureWithFallback_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamStatics::execGetTeamTextureWithFallback) +{ + P_GET_OBJECT(ULyraTeamDisplayAsset,Z_Param_DisplayAsset); + P_GET_PROPERTY(FNameProperty,Z_Param_ParameterName); + P_GET_OBJECT(UTexture,Z_Param_DefaultValue); + P_FINISH; + P_NATIVE_BEGIN; + *(UTexture**)Z_Param__Result=ULyraTeamStatics::GetTeamTextureWithFallback(Z_Param_DisplayAsset,Z_Param_ParameterName,Z_Param_DefaultValue); + P_NATIVE_END; +} +// End Class ULyraTeamStatics Function GetTeamTextureWithFallback + +// Begin Class ULyraTeamStatics +void ULyraTeamStatics::StaticRegisterNativesULyraTeamStatics() +{ + UClass* Class = ULyraTeamStatics::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindTeamFromObject", &ULyraTeamStatics::execFindTeamFromObject }, + { "GetTeamColorWithFallback", &ULyraTeamStatics::execGetTeamColorWithFallback }, + { "GetTeamDisplayAsset", &ULyraTeamStatics::execGetTeamDisplayAsset }, + { "GetTeamScalarWithFallback", &ULyraTeamStatics::execGetTeamScalarWithFallback }, + { "GetTeamTextureWithFallback", &ULyraTeamStatics::execGetTeamTextureWithFallback }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamStatics); +UClass* Z_Construct_UClass_ULyraTeamStatics_NoRegister() +{ + return ULyraTeamStatics::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamStatics_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** A subsystem for easy access to team information for team-based actors (e.g., pawns or player states) */" }, +#endif + { "IncludePath", "Teams/LyraTeamStatics.h" }, + { "ModuleRelativePath", "Teams/LyraTeamStatics.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A subsystem for easy access to team information for team-based actors (e.g., pawns or player states)" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamStatics_FindTeamFromObject, "FindTeamFromObject" }, // 373758693 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamColorWithFallback, "GetTeamColorWithFallback" }, // 1202593038 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamDisplayAsset, "GetTeamDisplayAsset" }, // 578242240 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamScalarWithFallback, "GetTeamScalarWithFallback" }, // 1829534683 + { &Z_Construct_UFunction_ULyraTeamStatics_GetTeamTextureWithFallback, "GetTeamTextureWithFallback" }, // 3979421538 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTeamStatics_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamStatics_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamStatics_Statics::ClassParams = { + &ULyraTeamStatics::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamStatics_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamStatics_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamStatics() +{ + if (!Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton, Z_Construct_UClass_ULyraTeamStatics_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamStatics.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamStatics::StaticClass(); +} +ULyraTeamStatics::ULyraTeamStatics(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamStatics); +ULyraTeamStatics::~ULyraTeamStatics() {} +// End Class ULyraTeamStatics + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamStatics, ULyraTeamStatics::StaticClass, TEXT("ULyraTeamStatics"), &Z_Registration_Info_UClass_ULyraTeamStatics, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamStatics), 255268015U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_3140578065(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.generated.h new file mode 100644 index 00000000..207c6ad7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamStatics.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamStatics.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraTeamDisplayAsset; +class UObject; +class UTexture; +struct FLinearColor; +#ifdef LYRAGAME_LyraTeamStatics_generated_h +#error "LyraTeamStatics.generated.h already included, missing '#pragma once' in LyraTeamStatics.h" +#endif +#define LYRAGAME_LyraTeamStatics_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetTeamTextureWithFallback); \ + DECLARE_FUNCTION(execGetTeamColorWithFallback); \ + DECLARE_FUNCTION(execGetTeamScalarWithFallback); \ + DECLARE_FUNCTION(execGetTeamDisplayAsset); \ + DECLARE_FUNCTION(execFindTeamFromObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamStatics(); \ + friend struct Z_Construct_UClass_ULyraTeamStatics_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamStatics, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamStatics) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTeamStatics(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamStatics(ULyraTeamStatics&&); \ + ULyraTeamStatics(const ULyraTeamStatics&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamStatics); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamStatics); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTeamStatics) \ + NO_API virtual ~ULyraTeamStatics(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamStatics_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp new file mode 100644 index 00000000..32bd5f36 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.gen.cpp @@ -0,0 +1,955 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Teams/LyraTeamSubsystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTeamSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTeamSubsystem_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTeamComparison(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraTeamTrackingInfo(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnLyraTeamDisplayAssetChangedDelegate +struct Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics +{ + struct _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::NewProp_DisplayAsset, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, nullptr, "OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::_Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FOnLyraTeamDisplayAssetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamDisplayAssetChangedDelegate, const ULyraTeamDisplayAsset* DisplayAsset) +{ + struct _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms + { + const ULyraTeamDisplayAsset* DisplayAsset; + }; + _Script_LyraGame_eventOnLyraTeamDisplayAssetChangedDelegate_Parms Parms; + Parms.DisplayAsset=DisplayAsset; + OnLyraTeamDisplayAssetChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnLyraTeamDisplayAssetChangedDelegate + +// Begin ScriptStruct FLyraTeamTrackingInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo; +class UScriptStruct* FLyraTeamTrackingInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraTeamTrackingInfo")); + } + return Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraTeamTrackingInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PublicInfo_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateInfo_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayAsset_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnTeamDisplayAssetChanged_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PublicInfo; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PrivateInfo; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DisplayAsset; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnTeamDisplayAssetChanged; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PublicInfo = { "PublicInfo", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, PublicInfo), Z_Construct_UClass_ALyraTeamPublicInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PublicInfo_MetaData), NewProp_PublicInfo_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PrivateInfo = { "PrivateInfo", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, PrivateInfo), Z_Construct_UClass_ALyraTeamPrivateInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateInfo_MetaData), NewProp_PrivateInfo_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_DisplayAsset = { "DisplayAsset", nullptr, (EPropertyFlags)0x0114000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, DisplayAsset), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayAsset_MetaData), NewProp_DisplayAsset_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_OnTeamDisplayAssetChanged = { "OnTeamDisplayAssetChanged", nullptr, (EPropertyFlags)0x0010000000080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraTeamTrackingInfo, OnTeamDisplayAssetChanged), Z_Construct_UDelegateFunction_LyraGame_OnLyraTeamDisplayAssetChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnTeamDisplayAssetChanged_MetaData), NewProp_OnTeamDisplayAssetChanged_MetaData) }; // 1888540490 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PublicInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_PrivateInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_DisplayAsset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewProp_OnTeamDisplayAssetChanged, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraTeamTrackingInfo", + Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::PropPointers), + sizeof(FLyraTeamTrackingInfo), + alignof(FLyraTeamTrackingInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraTeamTrackingInfo() +{ + if (!Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo.InnerSingleton; +} +// End ScriptStruct FLyraTeamTrackingInfo + +// Begin Enum ELyraTeamComparison +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELyraTeamComparison; +static UEnum* ELyraTeamComparison_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton) + { + Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_LyraGame_ELyraTeamComparison, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("ELyraTeamComparison")); + } + return Z_Registration_Info_UEnum_ELyraTeamComparison.OuterSingleton; +} +template<> LYRAGAME_API UEnum* StaticEnum() +{ + return ELyraTeamComparison_StaticEnum(); +} +struct Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Result of comparing the team affiliation for two actors\n" }, +#endif + { "DifferentTeams.Comment", "// The actors are members of opposing teams\n" }, + { "DifferentTeams.Name", "ELyraTeamComparison::DifferentTeams" }, + { "DifferentTeams.ToolTip", "The actors are members of opposing teams" }, + { "InvalidArgument.Comment", "// One (or both) of the actors was invalid or not part of any team\n" }, + { "InvalidArgument.Name", "ELyraTeamComparison::InvalidArgument" }, + { "InvalidArgument.ToolTip", "One (or both) of the actors was invalid or not part of any team" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + { "OnSameTeam.Comment", "// Both actors are members of the same team\n" }, + { "OnSameTeam.Name", "ELyraTeamComparison::OnSameTeam" }, + { "OnSameTeam.ToolTip", "Both actors are members of the same team" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Result of comparing the team affiliation for two actors" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELyraTeamComparison::OnSameTeam", (int64)ELyraTeamComparison::OnSameTeam }, + { "ELyraTeamComparison::DifferentTeams", (int64)ELyraTeamComparison::DifferentTeams }, + { "ELyraTeamComparison::InvalidArgument", (int64)ELyraTeamComparison::InvalidArgument }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + "ELyraTeamComparison", + "ELyraTeamComparison", + Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enum_MetaDataParams), Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_LyraGame_ELyraTeamComparison() +{ + if (!Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton, Z_Construct_UEnum_LyraGame_ELyraTeamComparison_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELyraTeamComparison.InnerSingleton; +} +// End Enum ELyraTeamComparison + +// Begin Class ULyraTeamSubsystem Function AddTeamTagStack +struct Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics +{ + struct LyraTeamSubsystem_eventAddTeamTagStack_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Adds a specified number of stacks to the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventAddTeamTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "AddTeamTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::LyraTeamSubsystem_eventAddTeamTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::LyraTeamSubsystem_eventAddTeamTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execAddTeamTagStack) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AddTeamTagStack(Z_Param_TeamId,Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function AddTeamTagStack + +// Begin Class ULyraTeamSubsystem Function CompareTeams +struct Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics +{ + struct LyraTeamSubsystem_eventCompareTeams_Parms + { + const UObject* A; + const UObject* B; + int32 TeamIdA; + int32 TeamIdB; + ELyraTeamComparison ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Compare the teams of two actors and returns a value indicating if they are on same teams, different teams, or one/both are invalid\n" }, +#endif + { "ExpandEnumAsExecs", "ReturnValue" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Compare the teams of two actors and returns a value indicating if they are on same teams, different teams, or one/both are invalid" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_A_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_B_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_A; + static const UECodeGen_Private::FObjectPropertyParams NewProp_B; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamIdA; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamIdB; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_A = { "A", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, A), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_A_MetaData), NewProp_A_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_B = { "B", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, B), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_B_MetaData), NewProp_B_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdA = { "TeamIdA", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, TeamIdA), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdB = { "TeamIdB", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, TeamIdB), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventCompareTeams_Parms, ReturnValue), Z_Construct_UEnum_LyraGame_ELyraTeamComparison, METADATA_PARAMS(0, nullptr) }; // 164494161 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_A, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_B, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_TeamIdB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "CompareTeams", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::LyraTeamSubsystem_eventCompareTeams_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::LyraTeamSubsystem_eventCompareTeams_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execCompareTeams) +{ + P_GET_OBJECT(UObject,Z_Param_A); + P_GET_OBJECT(UObject,Z_Param_B); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamIdA); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamIdB); + P_FINISH; + P_NATIVE_BEGIN; + *(ELyraTeamComparison*)Z_Param__Result=P_THIS->CompareTeams(Z_Param_A,Z_Param_B,Z_Param_Out_TeamIdA,Z_Param_Out_TeamIdB); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function CompareTeams + +// Begin Class ULyraTeamSubsystem Function DoesTeamExist +struct Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics +{ + struct LyraTeamSubsystem_eventDoesTeamExist_Parms + { + int32 TeamId; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if the specified team exists\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if the specified team exists" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventDoesTeamExist_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventDoesTeamExist_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventDoesTeamExist_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "DoesTeamExist", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::LyraTeamSubsystem_eventDoesTeamExist_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::LyraTeamSubsystem_eventDoesTeamExist_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execDoesTeamExist) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->DoesTeamExist(Z_Param_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function DoesTeamExist + +// Begin Class ULyraTeamSubsystem Function FindTeamFromActor +struct Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics +{ + struct LyraTeamSubsystem_eventFindTeamFromActor_Parms + { + const UObject* TestActor; + bool bIsPartOfTeam; + int32 TeamId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the team this object belongs to, or INDEX_NONE if it is not part of a team\n" }, +#endif + { "Keywords", "Get" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the team this object belongs to, or INDEX_NONE if it is not part of a team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TestActor_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TestActor; + static void NewProp_bIsPartOfTeam_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsPartOfTeam; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TestActor = { "TestActor", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventFindTeamFromActor_Parms, TestActor), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TestActor_MetaData), NewProp_TestActor_MetaData) }; +void Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventFindTeamFromActor_Parms*)Obj)->bIsPartOfTeam = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam = { "bIsPartOfTeam", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventFindTeamFromActor_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventFindTeamFromActor_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TestActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_bIsPartOfTeam, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::NewProp_TeamId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "FindTeamFromActor", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::LyraTeamSubsystem_eventFindTeamFromActor_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::LyraTeamSubsystem_eventFindTeamFromActor_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execFindTeamFromActor) +{ + P_GET_OBJECT(UObject,Z_Param_TestActor); + P_GET_UBOOL_REF(Z_Param_Out_bIsPartOfTeam); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_TeamId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FindTeamFromActor(Z_Param_TestActor,Z_Param_Out_bIsPartOfTeam,Z_Param_Out_TeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function FindTeamFromActor + +// Begin Class ULyraTeamSubsystem Function GetEffectiveTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics +{ + struct LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms + { + int32 TeamId; + UObject* ViewerTeamAgent; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the team display asset for the specified team, from the perspective of the specified team\n// (You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the team display asset for the specified team, from the perspective of the specified team\n(You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ViewerTeamAgent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ViewerTeamAgent = { "ViewerTeamAgent", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, ViewerTeamAgent), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ViewerTeamAgent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetEffectiveTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetEffectiveTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetEffectiveTeamDisplayAsset) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_OBJECT(UObject,Z_Param_ViewerTeamAgent); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=P_THIS->GetEffectiveTeamDisplayAsset(Z_Param_TeamId,Z_Param_ViewerTeamAgent); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetEffectiveTeamDisplayAsset + +// Begin Class ULyraTeamSubsystem Function GetTeamDisplayAsset +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics +{ + struct LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms + { + int32 TeamId; + int32 ViewerTeamId; + ULyraTeamDisplayAsset* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the team display asset for the specified team, from the perspective of the specified team\n// (You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the team display asset for the specified team, from the perspective of the specified team\n(You have to specify a viewer too, in case the game mode is in a 'local player is always blue team' sort of situation)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FIntPropertyParams NewProp_ViewerTeamId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ViewerTeamId = { "ViewerTeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, ViewerTeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms, ReturnValue), Z_Construct_UClass_ULyraTeamDisplayAsset_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ViewerTeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamDisplayAsset", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::LyraTeamSubsystem_eventGetTeamDisplayAsset_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamDisplayAsset) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_PROPERTY(FIntProperty,Z_Param_ViewerTeamId); + P_FINISH; + P_NATIVE_BEGIN; + *(ULyraTeamDisplayAsset**)Z_Param__Result=P_THIS->GetTeamDisplayAsset(Z_Param_TeamId,Z_Param_ViewerTeamId); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamDisplayAsset + +// Begin Class ULyraTeamSubsystem Function GetTeamIDs +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics +{ + struct LyraTeamSubsystem_eventGetTeamIDs_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Gets the list of teams\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the list of teams" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamIDs_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamIDs", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::LyraTeamSubsystem_eventGetTeamIDs_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::LyraTeamSubsystem_eventGetTeamIDs_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamIDs) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetTeamIDs(); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamIDs + +// Begin Class ULyraTeamSubsystem Function GetTeamTagStackCount +struct Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics +{ + struct LyraTeamSubsystem_eventGetTeamTagStackCount_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns the stack count of the specified tag (or 0 if the tag is not present)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the stack count of the specified tag (or 0 if the tag is not present)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventGetTeamTagStackCount_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "GetTeamTagStackCount", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::LyraTeamSubsystem_eventGetTeamTagStackCount_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::LyraTeamSubsystem_eventGetTeamTagStackCount_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execGetTeamTagStackCount) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetTeamTagStackCount(Z_Param_TeamId,Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function GetTeamTagStackCount + +// Begin Class ULyraTeamSubsystem Function RemoveTeamTagStack +struct Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics +{ + struct LyraTeamSubsystem_eventRemoveTeamTagStack_Parms + { + int32 TeamId; + FGameplayTag Tag; + int32 StackCount; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Removes a specified number of stacks from the tag (does nothing if StackCount is below 1)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static const UECodeGen_Private::FIntPropertyParams NewProp_StackCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_StackCount = { "StackCount", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventRemoveTeamTagStack_Parms, StackCount), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::NewProp_StackCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "RemoveTeamTagStack", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::LyraTeamSubsystem_eventRemoveTeamTagStack_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020405, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::LyraTeamSubsystem_eventRemoveTeamTagStack_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execRemoveTeamTagStack) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_GET_PROPERTY(FIntProperty,Z_Param_StackCount); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveTeamTagStack(Z_Param_TeamId,Z_Param_Tag,Z_Param_StackCount); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function RemoveTeamTagStack + +// Begin Class ULyraTeamSubsystem Function TeamHasTag +struct Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics +{ + struct LyraTeamSubsystem_eventTeamHasTag_Parms + { + int32 TeamId; + FGameplayTag Tag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Teams" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns true if there is at least one stack of the specified tag\n" }, +#endif + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if there is at least one stack of the specified tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamId; + static const UECodeGen_Private::FStructPropertyParams NewProp_Tag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_TeamId = { "TeamId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventTeamHasTag_Parms, TeamId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_Tag = { "Tag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraTeamSubsystem_eventTeamHasTag_Parms, Tag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +void Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTeamSubsystem_eventTeamHasTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTeamSubsystem_eventTeamHasTag_Parms), &Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_TeamId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_Tag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTeamSubsystem, nullptr, "TeamHasTag", nullptr, nullptr, Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::LyraTeamSubsystem_eventTeamHasTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::LyraTeamSubsystem_eventTeamHasTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTeamSubsystem::execTeamHasTag) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_TeamId); + P_GET_STRUCT(FGameplayTag,Z_Param_Tag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TeamHasTag(Z_Param_TeamId,Z_Param_Tag); + P_NATIVE_END; +} +// End Class ULyraTeamSubsystem Function TeamHasTag + +// Begin Class ULyraTeamSubsystem +void ULyraTeamSubsystem::StaticRegisterNativesULyraTeamSubsystem() +{ + UClass* Class = ULyraTeamSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddTeamTagStack", &ULyraTeamSubsystem::execAddTeamTagStack }, + { "CompareTeams", &ULyraTeamSubsystem::execCompareTeams }, + { "DoesTeamExist", &ULyraTeamSubsystem::execDoesTeamExist }, + { "FindTeamFromActor", &ULyraTeamSubsystem::execFindTeamFromActor }, + { "GetEffectiveTeamDisplayAsset", &ULyraTeamSubsystem::execGetEffectiveTeamDisplayAsset }, + { "GetTeamDisplayAsset", &ULyraTeamSubsystem::execGetTeamDisplayAsset }, + { "GetTeamIDs", &ULyraTeamSubsystem::execGetTeamIDs }, + { "GetTeamTagStackCount", &ULyraTeamSubsystem::execGetTeamTagStackCount }, + { "RemoveTeamTagStack", &ULyraTeamSubsystem::execRemoveTeamTagStack }, + { "TeamHasTag", &ULyraTeamSubsystem::execTeamHasTag }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTeamSubsystem); +UClass* Z_Construct_UClass_ULyraTeamSubsystem_NoRegister() +{ + return ULyraTeamSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraTeamSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** A subsystem for easy access to team information for team-based actors (e.g., pawns or player states) */" }, +#endif + { "IncludePath", "Teams/LyraTeamSubsystem.h" }, + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A subsystem for easy access to team information for team-based actors (e.g., pawns or player states)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TeamMap_MetaData[] = { + { "ModuleRelativePath", "Teams/LyraTeamSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TeamMap_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_TeamMap_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_TeamMap; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTeamSubsystem_AddTeamTagStack, "AddTeamTagStack" }, // 2135061078 + { &Z_Construct_UFunction_ULyraTeamSubsystem_CompareTeams, "CompareTeams" }, // 1561160394 + { &Z_Construct_UFunction_ULyraTeamSubsystem_DoesTeamExist, "DoesTeamExist" }, // 1768869352 + { &Z_Construct_UFunction_ULyraTeamSubsystem_FindTeamFromActor, "FindTeamFromActor" }, // 3632167237 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetEffectiveTeamDisplayAsset, "GetEffectiveTeamDisplayAsset" }, // 3780757005 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamDisplayAsset, "GetTeamDisplayAsset" }, // 3143325647 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamIDs, "GetTeamIDs" }, // 1603745379 + { &Z_Construct_UFunction_ULyraTeamSubsystem_GetTeamTagStackCount, "GetTeamTagStackCount" }, // 3725301193 + { &Z_Construct_UFunction_ULyraTeamSubsystem_RemoveTeamTagStack, "RemoveTeamTagStack" }, // 4253938779 + { &Z_Construct_UFunction_ULyraTeamSubsystem_TeamHasTag, "TeamHasTag" }, // 3246271955 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_ValueProp = { "TeamMap", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo, METADATA_PARAMS(0, nullptr) }; // 509123080 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_Key_KeyProp = { "TeamMap_Key", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap = { "TeamMap", nullptr, (EPropertyFlags)0x0040008000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTeamSubsystem, TeamMap), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TeamMap_MetaData), NewProp_TeamMap_MetaData) }; // 509123080 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTeamSubsystem_Statics::NewProp_TeamMap, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTeamSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTeamSubsystem_Statics::ClassParams = { + &ULyraTeamSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTeamSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTeamSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTeamSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton, Z_Construct_UClass_ULyraTeamSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTeamSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTeamSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTeamSubsystem); +ULyraTeamSubsystem::~ULyraTeamSubsystem() {} +// End Class ULyraTeamSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELyraTeamComparison_StaticEnum, TEXT("ELyraTeamComparison"), &Z_Registration_Info_UEnum_ELyraTeamComparison, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 164494161U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraTeamTrackingInfo::StaticStruct, Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics::NewStructOps, TEXT("LyraTeamTrackingInfo"), &Z_Registration_Info_UScriptStruct_LyraTeamTrackingInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraTeamTrackingInfo), 509123080U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTeamSubsystem, ULyraTeamSubsystem::StaticClass, TEXT("ULyraTeamSubsystem"), &Z_Registration_Info_UClass_ULyraTeamSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTeamSubsystem), 799536212U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_490059094(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h new file mode 100644 index 00000000..f537854b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTeamSubsystem.generated.h @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Teams/LyraTeamSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraTeamDisplayAsset; +class UObject; +enum class ELyraTeamComparison : uint8; +struct FGameplayTag; +#ifdef LYRAGAME_LyraTeamSubsystem_generated_h +#error "LyraTeamSubsystem.generated.h already included, missing '#pragma once' in LyraTeamSubsystem.h" +#endif +#define LYRAGAME_LyraTeamSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_19_DELEGATE \ +LYRAGAME_API void FOnLyraTeamDisplayAssetChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& OnLyraTeamDisplayAssetChangedDelegate, const ULyraTeamDisplayAsset* DisplayAsset); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_24_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraTeamTrackingInfo_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetTeamIDs); \ + DECLARE_FUNCTION(execGetEffectiveTeamDisplayAsset); \ + DECLARE_FUNCTION(execGetTeamDisplayAsset); \ + DECLARE_FUNCTION(execDoesTeamExist); \ + DECLARE_FUNCTION(execTeamHasTag); \ + DECLARE_FUNCTION(execGetTeamTagStackCount); \ + DECLARE_FUNCTION(execRemoveTeamTagStack); \ + DECLARE_FUNCTION(execAddTeamTagStack); \ + DECLARE_FUNCTION(execCompareTeams); \ + DECLARE_FUNCTION(execFindTeamFromActor); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTeamSubsystem(); \ + friend struct Z_Construct_UClass_ULyraTeamSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraTeamSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTeamSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTeamSubsystem(ULyraTeamSubsystem&&); \ + ULyraTeamSubsystem(const ULyraTeamSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTeamSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTeamSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraTeamSubsystem) \ + NO_API virtual ~ULyraTeamSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_59_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h_62_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Teams_LyraTeamSubsystem_h + + +#define FOREACH_ENUM_ELYRATEAMCOMPARISON(op) \ + op(ELyraTeamComparison::OnSameTeam) \ + op(ELyraTeamComparison::DifferentTeams) \ + op(ELyraTeamComparison::InvalidArgument) + +enum class ELyraTeamComparison : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> LYRAGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp new file mode 100644 index 00000000..5af1d1d7 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Tests/LyraTestControllerBootTest.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTestControllerBootTest() {} + +// Begin Cross Module References +GAUNTLET_API UClass* Z_Construct_UClass_UGauntletTestControllerBootTest(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTestControllerBootTest(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTestControllerBootTest_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTestControllerBootTest +void ULyraTestControllerBootTest::StaticRegisterNativesULyraTestControllerBootTest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTestControllerBootTest); +UClass* Z_Construct_UClass_ULyraTestControllerBootTest_NoRegister() +{ + return ULyraTestControllerBootTest::StaticClass(); +} +struct Z_Construct_UClass_ULyraTestControllerBootTest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Tests/LyraTestControllerBootTest.h" }, + { "ModuleRelativePath", "Tests/LyraTestControllerBootTest.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTestControllerBootTest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGauntletTestControllerBootTest, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTestControllerBootTest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTestControllerBootTest_Statics::ClassParams = { + &ULyraTestControllerBootTest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTestControllerBootTest_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTestControllerBootTest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTestControllerBootTest() +{ + if (!Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton, Z_Construct_UClass_ULyraTestControllerBootTest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTestControllerBootTest.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTestControllerBootTest::StaticClass(); +} +ULyraTestControllerBootTest::ULyraTestControllerBootTest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTestControllerBootTest); +ULyraTestControllerBootTest::~ULyraTestControllerBootTest() {} +// End Class ULyraTestControllerBootTest + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTestControllerBootTest, ULyraTestControllerBootTest::StaticClass, TEXT("ULyraTestControllerBootTest"), &Z_Registration_Info_UClass_ULyraTestControllerBootTest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTestControllerBootTest), 1144228925U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_2192472729(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h new file mode 100644 index 00000000..bd4891ed --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTestControllerBootTest.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Tests/LyraTestControllerBootTest.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTestControllerBootTest_generated_h +#error "LyraTestControllerBootTest.generated.h already included, missing '#pragma once' in LyraTestControllerBootTest.h" +#endif +#define LYRAGAME_LyraTestControllerBootTest_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTestControllerBootTest(); \ + friend struct Z_Construct_UClass_ULyraTestControllerBootTest_Statics; \ +public: \ + DECLARE_CLASS(ULyraTestControllerBootTest, UGauntletTestControllerBootTest, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTestControllerBootTest) + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTestControllerBootTest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTestControllerBootTest(ULyraTestControllerBootTest&&); \ + ULyraTestControllerBootTest(const ULyraTestControllerBootTest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTestControllerBootTest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTestControllerBootTest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTestControllerBootTest) \ + NO_API virtual ~ULyraTestControllerBootTest(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_11_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Tests_LyraTestControllerBootTest_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp new file mode 100644 index 00000000..27f6945e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Hotfix/LyraTextHotfixConfig.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTextHotfixConfig() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPolyglotTextData(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTextHotfixConfig(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTextHotfixConfig_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTextHotfixConfig +void ULyraTextHotfixConfig::StaticRegisterNativesULyraTextHotfixConfig() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTextHotfixConfig); +UClass* Z_Construct_UClass_ULyraTextHotfixConfig_NoRegister() +{ + return ULyraTextHotfixConfig::StaticClass(); +} +struct Z_Construct_UClass_ULyraTextHotfixConfig_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This class allows hotfixing individual FText values anywhere\n */" }, +#endif + { "IncludePath", "Hotfix/LyraTextHotfixConfig.h" }, + { "ModuleRelativePath", "Hotfix/LyraTextHotfixConfig.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This class allows hotfixing individual FText values anywhere" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TextReplacements_MetaData[] = { + { "Category", "LyraTextHotfixConfig" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The list of FText values to hotfix\n" }, +#endif + { "ModuleRelativePath", "Hotfix/LyraTextHotfixConfig.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The list of FText values to hotfix" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TextReplacements_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TextReplacements; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements_Inner = { "TextReplacements", nullptr, (EPropertyFlags)0x0000000000004000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPolyglotTextData, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements = { "TextReplacements", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraTextHotfixConfig, TextReplacements), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TextReplacements_MetaData), NewProp_TextReplacements_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraTextHotfixConfig_Statics::NewProp_TextReplacements, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraTextHotfixConfig_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTextHotfixConfig_Statics::ClassParams = { + &ULyraTextHotfixConfig::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTextHotfixConfig_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTextHotfixConfig_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTextHotfixConfig() +{ + if (!Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton, Z_Construct_UClass_ULyraTextHotfixConfig_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTextHotfixConfig.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTextHotfixConfig::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTextHotfixConfig); +ULyraTextHotfixConfig::~ULyraTextHotfixConfig() {} +// End Class ULyraTextHotfixConfig + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTextHotfixConfig, ULyraTextHotfixConfig::StaticClass, TEXT("ULyraTextHotfixConfig"), &Z_Registration_Info_UClass_ULyraTextHotfixConfig, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTextHotfixConfig), 2094281449U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_385615995(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h new file mode 100644 index 00000000..695d82d9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTextHotfixConfig.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Hotfix/LyraTextHotfixConfig.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTextHotfixConfig_generated_h +#error "LyraTextHotfixConfig.generated.h already included, missing '#pragma once' in LyraTextHotfixConfig.h" +#endif +#define LYRAGAME_LyraTextHotfixConfig_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTextHotfixConfig(); \ + friend struct Z_Construct_UClass_ULyraTextHotfixConfig_Statics; \ +public: \ + DECLARE_CLASS(ULyraTextHotfixConfig, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTextHotfixConfig) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTextHotfixConfig(ULyraTextHotfixConfig&&); \ + ULyraTextHotfixConfig(const ULyraTextHotfixConfig&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTextHotfixConfig); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTextHotfixConfig); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTextHotfixConfig) \ + NO_API virtual ~ULyraTextHotfixConfig(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_15_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Hotfix_LyraTextHotfixConfig_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp new file mode 100644 index 00000000..4e1c488d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.gen.cpp @@ -0,0 +1,156 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/LyraTouchRegion.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraTouchRegion() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraSimulatedInputWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTouchRegion(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraTouchRegion_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraTouchRegion Function ShouldSimulateInput +struct Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics +{ + struct LyraTouchRegion_eventShouldSimulateInput_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~ End UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "UI/LyraTouchRegion.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraTouchRegion_eventShouldSimulateInput_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraTouchRegion_eventShouldSimulateInput_Parms), &Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraTouchRegion, nullptr, "ShouldSimulateInput", nullptr, nullptr, Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::LyraTouchRegion_eventShouldSimulateInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::LyraTouchRegion_eventShouldSimulateInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraTouchRegion::execShouldSimulateInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldSimulateInput(); + P_NATIVE_END; +} +// End Class ULyraTouchRegion Function ShouldSimulateInput + +// Begin Class ULyraTouchRegion +void ULyraTouchRegion::StaticRegisterNativesULyraTouchRegion() +{ + UClass* Class = ULyraTouchRegion::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ShouldSimulateInput", &ULyraTouchRegion::execShouldSimulateInput }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraTouchRegion); +UClass* Z_Construct_UClass_ULyraTouchRegion_NoRegister() +{ + return ULyraTouchRegion::StaticClass(); +} +struct Z_Construct_UClass_ULyraTouchRegion_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A \"Touch Region\" is used to define an area on the screen that should trigger some\n * input when the user presses a finger on it\n */" }, +#endif + { "DisplayName", "Lyra Touch Region" }, + { "IncludePath", "UI/LyraTouchRegion.h" }, + { "ModuleRelativePath", "UI/LyraTouchRegion.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A \"Touch Region\" is used to define an area on the screen that should trigger some\ninput when the user presses a finger on it" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraTouchRegion_ShouldSimulateInput, "ShouldSimulateInput" }, // 3700276652 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraTouchRegion_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraSimulatedInputWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTouchRegion_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraTouchRegion_Statics::ClassParams = { + &ULyraTouchRegion::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00B010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraTouchRegion_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraTouchRegion_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraTouchRegion() +{ + if (!Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton, Z_Construct_UClass_ULyraTouchRegion_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraTouchRegion.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraTouchRegion::StaticClass(); +} +ULyraTouchRegion::ULyraTouchRegion(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraTouchRegion); +ULyraTouchRegion::~ULyraTouchRegion() {} +// End Class ULyraTouchRegion + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraTouchRegion, ULyraTouchRegion::StaticClass, TEXT("ULyraTouchRegion"), &Z_Registration_Info_UClass_ULyraTouchRegion, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraTouchRegion), 676625438U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_4128548656(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.generated.h new file mode 100644 index 00000000..b260667a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraTouchRegion.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/LyraTouchRegion.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraTouchRegion_generated_h +#error "LyraTouchRegion.generated.h already included, missing '#pragma once' in LyraTouchRegion.h" +#endif +#define LYRAGAME_LyraTouchRegion_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execShouldSimulateInput); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraTouchRegion(); \ + friend struct Z_Construct_UClass_ULyraTouchRegion_Statics; \ +public: \ + DECLARE_CLASS(ULyraTouchRegion, ULyraSimulatedInputWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraTouchRegion) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraTouchRegion(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraTouchRegion(ULyraTouchRegion&&); \ + ULyraTouchRegion(const ULyraTouchRegion&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraTouchRegion); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraTouchRegion); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraTouchRegion) \ + NO_API virtual ~ULyraTouchRegion(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_LyraTouchRegion_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp new file mode 100644 index 00000000..c23e7351 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.gen.cpp @@ -0,0 +1,113 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Camera/LyraUICameraManagerComponent.h" +#include "LyraGame/Camera/LyraPlayerCameraManager.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUICameraManagerComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UActorComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUICameraManagerComponent +void ULyraUICameraManagerComponent::StaticRegisterNativesULyraUICameraManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUICameraManagerComponent); +UClass* Z_Construct_UClass_ULyraUICameraManagerComponent_NoRegister() +{ + return ULyraUICameraManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraUICameraManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Camera/LyraUICameraManagerComponent.h" }, + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ViewTarget_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUpdatingViewTarget_MetaData[] = { + { "ModuleRelativePath", "Camera/LyraUICameraManagerComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ViewTarget; + static void NewProp_bUpdatingViewTarget_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUpdatingViewTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_ViewTarget = { "ViewTarget", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUICameraManagerComponent, ViewTarget), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ViewTarget_MetaData), NewProp_ViewTarget_MetaData) }; +void Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget_SetBit(void* Obj) +{ + ((ULyraUICameraManagerComponent*)Obj)->bUpdatingViewTarget = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget = { "bUpdatingViewTarget", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUICameraManagerComponent), &Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUpdatingViewTarget_MetaData), NewProp_bUpdatingViewTarget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_ViewTarget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::NewProp_bUpdatingViewTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UActorComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::ClassParams = { + &ULyraUICameraManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::PropPointers), + 0, + 0x00A000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUICameraManagerComponent() +{ + if (!Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton, Z_Construct_UClass_ULyraUICameraManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUICameraManagerComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUICameraManagerComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUICameraManagerComponent); +ULyraUICameraManagerComponent::~ULyraUICameraManagerComponent() {} +// End Class ULyraUICameraManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUICameraManagerComponent, ULyraUICameraManagerComponent::StaticClass, TEXT("ULyraUICameraManagerComponent"), &Z_Registration_Info_UClass_ULyraUICameraManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUICameraManagerComponent), 4140123009U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_1420536436(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h new file mode 100644 index 00000000..7d52b53a --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUICameraManagerComponent.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Camera/LyraUICameraManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUICameraManagerComponent_generated_h +#error "LyraUICameraManagerComponent.generated.h already included, missing '#pragma once' in LyraUICameraManagerComponent.h" +#endif +#define LYRAGAME_LyraUICameraManagerComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUICameraManagerComponent(); \ + friend struct Z_Construct_UClass_ULyraUICameraManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraUICameraManagerComponent, UActorComponent, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUICameraManagerComponent) \ + DECLARE_WITHIN(ALyraPlayerCameraManager) + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUICameraManagerComponent(ULyraUICameraManagerComponent&&); \ + ULyraUICameraManagerComponent(const ULyraUICameraManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUICameraManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUICameraManagerComponent); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUICameraManagerComponent) \ + NO_API virtual ~ULyraUICameraManagerComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Camera_LyraUICameraManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp new file mode 100644 index 00000000..41b165dc --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Subsystem/LyraUIManagerSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUIManagerSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIManagerSubsystem(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIManagerSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUIManagerSubsystem +void ULyraUIManagerSubsystem::StaticRegisterNativesULyraUIManagerSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUIManagerSubsystem); +UClass* Z_Construct_UClass_ULyraUIManagerSubsystem_NoRegister() +{ + return ULyraUIManagerSubsystem::StaticClass(); +} +struct Z_Construct_UClass_ULyraUIManagerSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Subsystem/LyraUIManagerSubsystem.h" }, + { "ModuleRelativePath", "UI/Subsystem/LyraUIManagerSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameUIManagerSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::ClassParams = { + &ULyraUIManagerSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUIManagerSubsystem() +{ + if (!Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton, Z_Construct_UClass_ULyraUIManagerSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUIManagerSubsystem.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUIManagerSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUIManagerSubsystem); +ULyraUIManagerSubsystem::~ULyraUIManagerSubsystem() {} +// End Class ULyraUIManagerSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUIManagerSubsystem, ULyraUIManagerSubsystem::StaticClass, TEXT("ULyraUIManagerSubsystem"), &Z_Registration_Info_UClass_ULyraUIManagerSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUIManagerSubsystem), 4251025026U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_3479094709(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h new file mode 100644 index 00000000..d37ac556 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIManagerSubsystem.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Subsystem/LyraUIManagerSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUIManagerSubsystem_generated_h +#error "LyraUIManagerSubsystem.generated.h already included, missing '#pragma once' in LyraUIManagerSubsystem.h" +#endif +#define LYRAGAME_LyraUIManagerSubsystem_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUIManagerSubsystem(); \ + friend struct Z_Construct_UClass_ULyraUIManagerSubsystem_Statics; \ +public: \ + DECLARE_CLASS(ULyraUIManagerSubsystem, UGameUIManagerSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUIManagerSubsystem) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUIManagerSubsystem(ULyraUIManagerSubsystem&&); \ + ULyraUIManagerSubsystem(const ULyraUIManagerSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUIManagerSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUIManagerSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUIManagerSubsystem) \ + NO_API virtual ~ULyraUIManagerSubsystem(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIManagerSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp new file mode 100644 index 00000000..299c85e9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Subsystem/LyraUIMessaging.h" +#include "Runtime/Engine/Classes/Engine/LocalPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUIMessaging() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIMessaging(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUIMessaging_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUIMessaging +void ULyraUIMessaging::StaticRegisterNativesULyraUIMessaging() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUIMessaging); +UClass* Z_Construct_UClass_ULyraUIMessaging_NoRegister() +{ + return ULyraUIMessaging::StaticClass(); +} +struct Z_Construct_UClass_ULyraUIMessaging_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "UI/Subsystem/LyraUIMessaging.h" }, + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfirmationDialogClassPtr_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorDialogClassPtr_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfirmationDialogClass_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorDialogClass_MetaData[] = { + { "ModuleRelativePath", "UI/Subsystem/LyraUIMessaging.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_ConfirmationDialogClassPtr; + static const UECodeGen_Private::FClassPropertyParams NewProp_ErrorDialogClassPtr; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ConfirmationDialogClass; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_ErrorDialogClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClassPtr = { "ConfirmationDialogClassPtr", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ConfirmationDialogClassPtr), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfirmationDialogClassPtr_MetaData), NewProp_ConfirmationDialogClassPtr_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClassPtr = { "ErrorDialogClassPtr", nullptr, (EPropertyFlags)0x0044000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ErrorDialogClassPtr), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorDialogClassPtr_MetaData), NewProp_ErrorDialogClassPtr_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClass = { "ConfirmationDialogClass", nullptr, (EPropertyFlags)0x0044000000004000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ConfirmationDialogClass), Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfirmationDialogClass_MetaData), NewProp_ConfirmationDialogClass_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClass = { "ErrorDialogClass", nullptr, (EPropertyFlags)0x0044000000004000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUIMessaging, ErrorDialogClass), Z_Construct_UClass_UCommonGameDialog_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorDialogClass_MetaData), NewProp_ErrorDialogClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClassPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClassPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ConfirmationDialogClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUIMessaging_Statics::NewProp_ErrorDialogClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUIMessaging_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonMessagingSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUIMessaging_Statics::ClassParams = { + &ULyraUIMessaging::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::PropPointers), + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUIMessaging_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUIMessaging_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUIMessaging() +{ + if (!Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton, Z_Construct_UClass_ULyraUIMessaging_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUIMessaging.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUIMessaging::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUIMessaging); +ULyraUIMessaging::~ULyraUIMessaging() {} +// End Class ULyraUIMessaging + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUIMessaging, ULyraUIMessaging::StaticClass, TEXT("ULyraUIMessaging"), &Z_Registration_Info_UClass_ULyraUIMessaging, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUIMessaging), 4114452427U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_2866203306(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.generated.h new file mode 100644 index 00000000..1d4ee6e6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUIMessaging.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Subsystem/LyraUIMessaging.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraUIMessaging_generated_h +#error "LyraUIMessaging.generated.h already included, missing '#pragma once' in LyraUIMessaging.h" +#endif +#define LYRAGAME_LyraUIMessaging_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUIMessaging(); \ + friend struct Z_Construct_UClass_ULyraUIMessaging_Statics; \ +public: \ + DECLARE_CLASS(ULyraUIMessaging, UCommonMessagingSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUIMessaging) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUIMessaging(ULyraUIMessaging&&); \ + ULyraUIMessaging(const ULyraUIMessaging&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUIMessaging); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUIMessaging); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraUIMessaging) \ + NO_API virtual ~ULyraUIMessaging(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_19_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Subsystem_LyraUIMessaging_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp new file mode 100644 index 00000000..8b6c470e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.gen.cpp @@ -0,0 +1,351 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraUserFacingExperienceDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraUserFacingExperienceDefinition() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +ENGINE_API UClass* Z_Construct_UClass_UPrimaryDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UTexture2D_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraUserFacingExperienceDefinition Function CreateHostingRequest +struct Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics +{ + struct LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms + { + const UObject* WorldContextObject; + UCommonSession_HostSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Create a request object that is used to actually start a session with these settings */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Create a request object that is used to actually start a session with these settings" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraUserFacingExperienceDefinition, nullptr, "CreateHostingRequest", nullptr, nullptr, Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::LyraUserFacingExperienceDefinition_eventCreateHostingRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraUserFacingExperienceDefinition::execCreateHostingRequest) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_HostSessionRequest**)Z_Param__Result=P_THIS->CreateHostingRequest(Z_Param_WorldContextObject); + P_NATIVE_END; +} +// End Class ULyraUserFacingExperienceDefinition Function CreateHostingRequest + +// Begin Class ULyraUserFacingExperienceDefinition +void ULyraUserFacingExperienceDefinition::StaticRegisterNativesULyraUserFacingExperienceDefinition() +{ + UClass* Class = ULyraUserFacingExperienceDefinition::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateHostingRequest", &ULyraUserFacingExperienceDefinition::execCreateHostingRequest }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraUserFacingExperienceDefinition); +UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition_NoRegister() +{ + return ULyraUserFacingExperienceDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Description of settings used to display experiences in the UI and start a new session */" }, +#endif + { "IncludePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Description of settings used to display experiences in the UI and start a new session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapID_MetaData[] = { + { "AllowedTypes", "Map" }, + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The specific map to load */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The specific map to load" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExperienceID_MetaData[] = { + { "AllowedTypes", "LyraExperienceDefinition" }, + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The gameplay experience to load */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The gameplay experience to load" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtraArgs_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Extra arguments passed as URL options to the game */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra arguments passed as URL options to the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileTitle_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary title in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary title in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileSubTitle_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Secondary title */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Secondary title" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileDescription_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Full description */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Full description" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TileIcon_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Icon used in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Icon used in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidget_MetaData[] = { + { "Category", "LoadingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The loading screen widget to show when loading into (or back out of) a given experience */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The loading screen widget to show when loading into (or back out of) a given experience" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsDefaultExperience_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this is a default experience that should be used for quick play and given priority in the UI */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this is a default experience that should be used for quick play and given priority in the UI" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowInFrontEnd_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this will show up in the experiences list in the front-end */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this will show up in the experiences list in the front-end" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRecordReplay_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, a replay will be recorded of the game */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, a replay will be recorded of the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxPlayerCount_MetaData[] = { + { "Category", "Experience" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Max number of players for this session */" }, +#endif + { "ModuleRelativePath", "GameModes/LyraUserFacingExperienceDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Max number of players for this session" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MapID; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExperienceID; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_ValueProp; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtraArgs; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileTitle; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileSubTitle; + static const UECodeGen_Private::FTextPropertyParams NewProp_TileDescription; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TileIcon; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LoadingScreenWidget; + static void NewProp_bIsDefaultExperience_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsDefaultExperience; + static void NewProp_bShowInFrontEnd_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowInFrontEnd; + static void NewProp_bRecordReplay_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRecordReplay; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxPlayerCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraUserFacingExperienceDefinition_CreateHostingRequest, "CreateHostingRequest" }, // 2531558413 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MapID = { "MapID", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, MapID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapID_MetaData), NewProp_MapID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExperienceID = { "ExperienceID", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, ExperienceID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExperienceID_MetaData), NewProp_ExperienceID_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_ValueProp = { "ExtraArgs", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_Key_KeyProp = { "ExtraArgs_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs = { "ExtraArgs", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, ExtraArgs), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtraArgs_MetaData), NewProp_ExtraArgs_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileTitle = { "TileTitle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileTitle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileTitle_MetaData), NewProp_TileTitle_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileSubTitle = { "TileSubTitle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileSubTitle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileSubTitle_MetaData), NewProp_TileSubTitle_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileDescription = { "TileDescription", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileDescription), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileDescription_MetaData), NewProp_TileDescription_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileIcon = { "TileIcon", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, TileIcon), Z_Construct_UClass_UTexture2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TileIcon_MetaData), NewProp_TileIcon_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_LoadingScreenWidget = { "LoadingScreenWidget", nullptr, (EPropertyFlags)0x0014000000000005, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, LoadingScreenWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidget_MetaData), NewProp_LoadingScreenWidget_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bIsDefaultExperience = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience = { "bIsDefaultExperience", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsDefaultExperience_MetaData), NewProp_bIsDefaultExperience_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bShowInFrontEnd = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd = { "bShowInFrontEnd", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowInFrontEnd_MetaData), NewProp_bShowInFrontEnd_MetaData) }; +void Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay_SetBit(void* Obj) +{ + ((ULyraUserFacingExperienceDefinition*)Obj)->bRecordReplay = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay = { "bRecordReplay", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ULyraUserFacingExperienceDefinition), &Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRecordReplay_MetaData), NewProp_bRecordReplay_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MaxPlayerCount = { "MaxPlayerCount", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraUserFacingExperienceDefinition, MaxPlayerCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxPlayerCount_MetaData), NewProp_MaxPlayerCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MapID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExperienceID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_ExtraArgs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileTitle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileSubTitle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileDescription, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_TileIcon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_LoadingScreenWidget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bIsDefaultExperience, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bShowInFrontEnd, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_bRecordReplay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::NewProp_MaxPlayerCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPrimaryDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::ClassParams = { + &ULyraUserFacingExperienceDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraUserFacingExperienceDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton, Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraUserFacingExperienceDefinition::StaticClass(); +} +ULyraUserFacingExperienceDefinition::ULyraUserFacingExperienceDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraUserFacingExperienceDefinition); +ULyraUserFacingExperienceDefinition::~ULyraUserFacingExperienceDefinition() {} +// End Class ULyraUserFacingExperienceDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraUserFacingExperienceDefinition, ULyraUserFacingExperienceDefinition::StaticClass, TEXT("ULyraUserFacingExperienceDefinition"), &Z_Registration_Info_UClass_ULyraUserFacingExperienceDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraUserFacingExperienceDefinition), 3553289749U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_3757103411(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h new file mode 100644 index 00000000..375eb279 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraUserFacingExperienceDefinition.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraUserFacingExperienceDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonSession_HostSessionRequest; +class UObject; +#ifdef LYRAGAME_LyraUserFacingExperienceDefinition_generated_h +#error "LyraUserFacingExperienceDefinition.generated.h already included, missing '#pragma once' in LyraUserFacingExperienceDefinition.h" +#endif +#define LYRAGAME_LyraUserFacingExperienceDefinition_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCreateHostingRequest); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraUserFacingExperienceDefinition(); \ + friend struct Z_Construct_UClass_ULyraUserFacingExperienceDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraUserFacingExperienceDefinition, UPrimaryDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraUserFacingExperienceDefinition) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraUserFacingExperienceDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraUserFacingExperienceDefinition(ULyraUserFacingExperienceDefinition&&); \ + ULyraUserFacingExperienceDefinition(const ULyraUserFacingExperienceDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraUserFacingExperienceDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraUserFacingExperienceDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraUserFacingExperienceDefinition) \ + NO_API virtual ~ULyraUserFacingExperienceDefinition(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraUserFacingExperienceDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp new file mode 100644 index 00000000..1e7ddfea --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraVerbMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessage; +class UScriptStruct* FLyraVerbMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessage, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessage.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraVerbMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Represents a generic message of the form Instigator Verb Target (in Context, with Magnitude)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents a generic message of the form Instigator Verb Target (in Context, with Magnitude)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Verb_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Instigator_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Target_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InstigatorTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextTags_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Magnitude_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Messages/LyraVerbMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Verb; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Instigator; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FStructPropertyParams NewProp_InstigatorTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_ContextTags; + static const UECodeGen_Private::FDoublePropertyParams NewProp_Magnitude; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Verb = { "Verb", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Verb), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Verb_MetaData), NewProp_Verb_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Instigator = { "Instigator", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Instigator), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Instigator_MetaData), NewProp_Instigator_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Target), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Target_MetaData), NewProp_Target_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_InstigatorTags = { "InstigatorTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, InstigatorTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InstigatorTags_MetaData), NewProp_InstigatorTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_TargetTags = { "TargetTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, TargetTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetTags_MetaData), NewProp_TargetTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_ContextTags = { "ContextTags", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, ContextTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextTags_MetaData), NewProp_ContextTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Magnitude = { "Magnitude", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessage, Magnitude), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Magnitude_MetaData), NewProp_Magnitude_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Verb, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Instigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_InstigatorTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_TargetTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_ContextTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewProp_Magnitude, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "LyraVerbMessage", + Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::PropPointers), + sizeof(FLyraVerbMessage), + alignof(FLyraVerbMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessage.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraVerbMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessage_Statics::NewStructOps, TEXT("LyraVerbMessage"), &Z_Registration_Info_UScriptStruct_LyraVerbMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessage), 172997159U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_1771683393(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.generated.h new file mode 100644 index 00000000..c9cdf163 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraVerbMessage_generated_h +#error "LyraVerbMessage.generated.h already included, missing '#pragma once' in LyraVerbMessage.h" +#endif +#define LYRAGAME_LyraVerbMessage_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h_14_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessage_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp new file mode 100644 index 00000000..ddd43f2b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.gen.cpp @@ -0,0 +1,307 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessageHelpers.h" +#include "GameplayAbilities/Public/GameplayEffectTypes.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessageHelpers() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayCueParameters(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraVerbMessageHelpers(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraVerbMessageHelpers_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraVerbMessageHelpers Function CueParametersToVerbMessage +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics +{ + struct LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms + { + FGameplayCueParameters Params; + FLyraVerbMessage ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Params_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms, Params), Z_Construct_UScriptStruct_FGameplayCueParameters, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Params_MetaData), NewProp_Params_MetaData) }; // 98506619 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms, ReturnValue), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(0, nullptr) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_Params, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "CueParametersToVerbMessage", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::LyraVerbMessageHelpers_eventCueParametersToVerbMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execCueParametersToVerbMessage) +{ + P_GET_STRUCT_REF(FGameplayCueParameters,Z_Param_Out_Params); + P_FINISH; + P_NATIVE_BEGIN; + *(FLyraVerbMessage*)Z_Param__Result=ULyraVerbMessageHelpers::CueParametersToVerbMessage(Z_Param_Out_Params); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function CueParametersToVerbMessage + +// Begin Class ULyraVerbMessageHelpers Function GetPlayerControllerFromObject +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics +{ + struct LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms + { + UObject* Object; + APlayerController* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Object; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_Object = { "Object", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms, Object), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms, ReturnValue), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_Object, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "GetPlayerControllerFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerControllerFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execGetPlayerControllerFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Object); + P_FINISH; + P_NATIVE_BEGIN; + *(APlayerController**)Z_Param__Result=ULyraVerbMessageHelpers::GetPlayerControllerFromObject(Z_Param_Object); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function GetPlayerControllerFromObject + +// Begin Class ULyraVerbMessageHelpers Function GetPlayerStateFromObject +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics +{ + struct LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms + { + UObject* Object; + APlayerState* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Object; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_Object = { "Object", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms, Object), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms, ReturnValue), Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_Object, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "GetPlayerStateFromObject", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::LyraVerbMessageHelpers_eventGetPlayerStateFromObject_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execGetPlayerStateFromObject) +{ + P_GET_OBJECT(UObject,Z_Param_Object); + P_FINISH; + P_NATIVE_BEGIN; + *(APlayerState**)Z_Param__Result=ULyraVerbMessageHelpers::GetPlayerStateFromObject(Z_Param_Object); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function GetPlayerStateFromObject + +// Begin Class ULyraVerbMessageHelpers Function VerbMessageToCueParameters +struct Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics +{ + struct LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms + { + FLyraVerbMessage Message; + FGameplayCueParameters ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010008000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayCueParameters, METADATA_PARAMS(0, nullptr) }; // 98506619 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraVerbMessageHelpers, nullptr, "VerbMessageToCueParameters", nullptr, nullptr, Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::LyraVerbMessageHelpers_eventVerbMessageToCueParameters_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraVerbMessageHelpers::execVerbMessageToCueParameters) +{ + P_GET_STRUCT_REF(FLyraVerbMessage,Z_Param_Out_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayCueParameters*)Z_Param__Result=ULyraVerbMessageHelpers::VerbMessageToCueParameters(Z_Param_Out_Message); + P_NATIVE_END; +} +// End Class ULyraVerbMessageHelpers Function VerbMessageToCueParameters + +// Begin Class ULyraVerbMessageHelpers +void ULyraVerbMessageHelpers::StaticRegisterNativesULyraVerbMessageHelpers() +{ + UClass* Class = ULyraVerbMessageHelpers::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CueParametersToVerbMessage", &ULyraVerbMessageHelpers::execCueParametersToVerbMessage }, + { "GetPlayerControllerFromObject", &ULyraVerbMessageHelpers::execGetPlayerControllerFromObject }, + { "GetPlayerStateFromObject", &ULyraVerbMessageHelpers::execGetPlayerStateFromObject }, + { "VerbMessageToCueParameters", &ULyraVerbMessageHelpers::execVerbMessageToCueParameters }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraVerbMessageHelpers); +UClass* Z_Construct_UClass_ULyraVerbMessageHelpers_NoRegister() +{ + return ULyraVerbMessageHelpers::StaticClass(); +} +struct Z_Construct_UClass_ULyraVerbMessageHelpers_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messages/LyraVerbMessageHelpers.h" }, + { "ModuleRelativePath", "Messages/LyraVerbMessageHelpers.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_CueParametersToVerbMessage, "CueParametersToVerbMessage" }, // 1260056895 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerControllerFromObject, "GetPlayerControllerFromObject" }, // 3911725184 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_GetPlayerStateFromObject, "GetPlayerStateFromObject" }, // 1673013030 + { &Z_Construct_UFunction_ULyraVerbMessageHelpers_VerbMessageToCueParameters, "VerbMessageToCueParameters" }, // 639287762 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::ClassParams = { + &ULyraVerbMessageHelpers::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraVerbMessageHelpers() +{ + if (!Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton, Z_Construct_UClass_ULyraVerbMessageHelpers_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraVerbMessageHelpers.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraVerbMessageHelpers::StaticClass(); +} +ULyraVerbMessageHelpers::ULyraVerbMessageHelpers(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraVerbMessageHelpers); +ULyraVerbMessageHelpers::~ULyraVerbMessageHelpers() {} +// End Class ULyraVerbMessageHelpers + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraVerbMessageHelpers, ULyraVerbMessageHelpers::StaticClass, TEXT("ULyraVerbMessageHelpers"), &Z_Registration_Info_UClass_ULyraVerbMessageHelpers, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraVerbMessageHelpers), 2522009314U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_3722705989(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h new file mode 100644 index 00000000..e3becc8f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageHelpers.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessageHelpers.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class APlayerState; +class UObject; +struct FGameplayCueParameters; +struct FLyraVerbMessage; +#ifdef LYRAGAME_LyraVerbMessageHelpers_generated_h +#error "LyraVerbMessageHelpers.generated.h already included, missing '#pragma once' in LyraVerbMessageHelpers.h" +#endif +#define LYRAGAME_LyraVerbMessageHelpers_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCueParametersToVerbMessage); \ + DECLARE_FUNCTION(execVerbMessageToCueParameters); \ + DECLARE_FUNCTION(execGetPlayerControllerFromObject); \ + DECLARE_FUNCTION(execGetPlayerStateFromObject); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraVerbMessageHelpers(); \ + friend struct Z_Construct_UClass_ULyraVerbMessageHelpers_Statics; \ +public: \ + DECLARE_CLASS(ULyraVerbMessageHelpers, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraVerbMessageHelpers) + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraVerbMessageHelpers(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraVerbMessageHelpers(ULyraVerbMessageHelpers&&); \ + ULyraVerbMessageHelpers(const ULyraVerbMessageHelpers&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraVerbMessageHelpers); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraVerbMessageHelpers); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraVerbMessageHelpers) \ + NO_API virtual ~ULyraVerbMessageHelpers(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_18_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageHelpers_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp new file mode 100644 index 00000000..a36d0e64 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.gen.cpp @@ -0,0 +1,199 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Messages/LyraVerbMessageReplication.h" +#include "LyraGame/Messages/LyraVerbMessage.h" +#include "Net/Serialization/FastArraySerializerImplementation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraVerbMessageReplication() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessage(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplication(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializer(); +NETCORE_API UScriptStruct* Z_Construct_UScriptStruct_FFastArraySerializerItem(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FLyraVerbMessageReplicationEntry +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraVerbMessageReplicationEntry cannot be polymorphic unless super FFastArraySerializerItem is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry; +class UScriptStruct* FLyraVerbMessageReplicationEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessageReplicationEntry")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessageReplicationEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Represents one verb message\n */" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Represents one verb message" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplicationEntry, Message), Z_Construct_UScriptStruct_FLyraVerbMessage, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; // 172997159 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializerItem, + &NewStructOps, + "LyraVerbMessageReplicationEntry", + Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::PropPointers), + sizeof(FLyraVerbMessageReplicationEntry), + alignof(FLyraVerbMessageReplicationEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessageReplicationEntry + +// Begin ScriptStruct FLyraVerbMessageReplication +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraVerbMessageReplication cannot be polymorphic unless super FFastArraySerializer is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication; +class UScriptStruct* FLyraVerbMessageReplication::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraVerbMessageReplication, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("LyraVerbMessageReplication")); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FLyraVerbMessageReplication::StaticStruct(); +} +#if defined(UE_NET_HAS_IRIS_FASTARRAY_BINDING) && UE_NET_HAS_IRIS_FASTARRAY_BINDING +UE_NET_IMPLEMENT_FASTARRAY(FLyraVerbMessageReplication); +#else +UE_NET_IMPLEMENT_FASTARRAY_STUB(FLyraVerbMessageReplication); +#endif +struct Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Container of verb messages to replicate */" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Container of verb messages to replicate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentMessages_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Replicated list of gameplay tag stacks\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Replicated list of gameplay tag stacks" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Owner_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Owner (for a route to a world)\n" }, +#endif + { "ModuleRelativePath", "Messages/LyraVerbMessageReplication.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Owner (for a route to a world)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_CurrentMessages_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_CurrentMessages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Owner; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages_Inner = { "CurrentMessages", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry, METADATA_PARAMS(0, nullptr) }; // 3782107568 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages = { "CurrentMessages", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplication, CurrentMessages), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentMessages_MetaData), NewProp_CurrentMessages_MetaData) }; // 3782107568 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_Owner = { "Owner", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraVerbMessageReplication, Owner), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Owner_MetaData), NewProp_Owner_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_CurrentMessages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewProp_Owner, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + Z_Construct_UScriptStruct_FFastArraySerializer, + &NewStructOps, + "LyraVerbMessageReplication", + Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::PropPointers), + sizeof(FLyraVerbMessageReplication), + alignof(FLyraVerbMessageReplication), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraVerbMessageReplication() +{ + if (!Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton, Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication.InnerSingleton; +} +// End ScriptStruct FLyraVerbMessageReplication + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraVerbMessageReplicationEntry::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics::NewStructOps, TEXT("LyraVerbMessageReplicationEntry"), &Z_Registration_Info_UScriptStruct_LyraVerbMessageReplicationEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessageReplicationEntry), 3782107568U) }, + { FLyraVerbMessageReplication::StaticStruct, Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics::NewStructOps, TEXT("LyraVerbMessageReplication"), &Z_Registration_Info_UScriptStruct_LyraVerbMessageReplication, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraVerbMessageReplication), 3186912120U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_3577634902(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h new file mode 100644 index 00000000..d6bd1088 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessageReplication.generated.h @@ -0,0 +1,38 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/LyraVerbMessageReplication.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraVerbMessageReplication_generated_h +#error "LyraVerbMessageReplication.generated.h already included, missing '#pragma once' in LyraVerbMessageReplication.h" +#endif +#define LYRAGAME_LyraVerbMessageReplication_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessageReplicationEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializerItem Super; + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h_44_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraVerbMessageReplication_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); \ + typedef FFastArraySerializer Super; \ + UE_NET_DECLARE_FASTARRAY(FLyraVerbMessageReplication, CurrentMessages, LYRAGAME_API ); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Messages_LyraVerbMessageReplication_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp new file mode 100644 index 00000000..07d80f4b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.gen.cpp @@ -0,0 +1,145 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponDebugSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponDebugSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponDebugSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponDebugSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponDebugSettings +void ULyraWeaponDebugSettings::StaticRegisterNativesULyraWeaponDebugSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponDebugSettings); +UClass* Z_Construct_UClass_ULyraWeaponDebugSettings_NoRegister() +{ + return ULyraWeaponDebugSettings::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponDebugSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Developer debugging settings for weapons\n */" }, +#endif + { "IncludePath", "Weapons/LyraWeaponDebugSettings.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Developer debugging settings for weapons" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletTraceDuration_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we do debug drawing for bullet traces (if above zero, sets how long (in seconds)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletTraceDuration" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we do debug drawing for bullet traces (if above zero, sets how long (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletHitDuration_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we do debug drawing for bullet impacts (if above zero, sets how long (in seconds)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletHitDuration" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we do debug drawing for bullet impacts (if above zero, sets how long (in seconds)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DrawBulletHitRadius_MetaData[] = { + { "Category", "General" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When bullet hit debug drawing is enabled (see DrawBulletHitDuration), how big should the hit radius be? (in cm)\n" }, +#endif + { "ConsoleVariable", "lyra.Weapon.DrawBulletHitRadius" }, + { "ForceUnits", "cm" }, + { "ModuleRelativePath", "Weapons/LyraWeaponDebugSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When bullet hit debug drawing is enabled (see DrawBulletHitDuration), how big should the hit radius be? (in cm)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletTraceDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletHitDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DrawBulletHitRadius; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletTraceDuration = { "DrawBulletTraceDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletTraceDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletTraceDuration_MetaData), NewProp_DrawBulletTraceDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitDuration = { "DrawBulletHitDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletHitDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletHitDuration_MetaData), NewProp_DrawBulletHitDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitRadius = { "DrawBulletHitRadius", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponDebugSettings, DrawBulletHitRadius), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DrawBulletHitRadius_MetaData), NewProp_DrawBulletHitRadius_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletTraceDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::NewProp_DrawBulletHitRadius, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::ClassParams = { + &ULyraWeaponDebugSettings::StaticClass, + "EditorPerProjectUserSettings", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::PropPointers), + 0, + 0x000000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponDebugSettings() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton, Z_Construct_UClass_ULyraWeaponDebugSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponDebugSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponDebugSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponDebugSettings); +ULyraWeaponDebugSettings::~ULyraWeaponDebugSettings() {} +// End Class ULyraWeaponDebugSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponDebugSettings, ULyraWeaponDebugSettings::StaticClass, TEXT("ULyraWeaponDebugSettings"), &Z_Registration_Info_UClass_ULyraWeaponDebugSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponDebugSettings), 181903601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_991744976(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h new file mode 100644 index 00000000..3e6d0988 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponDebugSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponDebugSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWeaponDebugSettings_generated_h +#error "LyraWeaponDebugSettings.generated.h already included, missing '#pragma once' in LyraWeaponDebugSettings.h" +#endif +#define LYRAGAME_LyraWeaponDebugSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponDebugSettings(); \ + friend struct Z_Construct_UClass_ULyraWeaponDebugSettings_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponDebugSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponDebugSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("EditorPerProjectUserSettings");} \ + + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponDebugSettings(ULyraWeaponDebugSettings&&); \ + ULyraWeaponDebugSettings(const ULyraWeaponDebugSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponDebugSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponDebugSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraWeaponDebugSettings) \ + NO_API virtual ~ULyraWeaponDebugSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponDebugSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp new file mode 100644 index 00000000..8af908b0 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.gen.cpp @@ -0,0 +1,435 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponInstance.h" +#include "LyraGame/Cosmetics/LyraCosmeticAnimationTypes.h" +#include "Runtime/Engine/Classes/GameFramework/InputDevicePropertyHandle.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UAnimInstance_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UInputDeviceProperty_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FInputDevicePropertyHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraEquipmentInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponInstance Function GetOwningUserId +struct Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct LyraWeaponInstance_eventGetOwningUserId_Parms + { + FPlatformUserId ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the owning Pawn's Platform User ID */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the owning Pawn's Platform User ID" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventGetOwningUserId_Parms, ReturnValue), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "GetOwningUserId", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::LyraWeaponInstance_eventGetOwningUserId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::LyraWeaponInstance_eventGetOwningUserId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execGetOwningUserId) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FPlatformUserId*)Z_Param__Result=P_THIS->GetOwningUserId(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function GetOwningUserId + +// Begin Class ULyraWeaponInstance Function GetTimeSinceLastInteractedWith +struct Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics +{ + struct LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms + { + float ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Returns how long it's been since the weapon was interacted with (fired or equipped)\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns how long it's been since the weapon was interacted with (fired or equipped)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "GetTimeSinceLastInteractedWith", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::LyraWeaponInstance_eventGetTimeSinceLastInteractedWith_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execGetTimeSinceLastInteractedWith) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(float*)Z_Param__Result=P_THIS->GetTimeSinceLastInteractedWith(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function GetTimeSinceLastInteractedWith + +// Begin Class ULyraWeaponInstance Function OnDeathStarted +struct Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics +{ + struct LyraWeaponInstance_eventOnDeathStarted_Parms + { + AActor* OwningActor; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Callback for when the owning pawn of this weapon dies. Removes all spawned device properties. */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Callback for when the owning pawn of this weapon dies. Removes all spawned device properties." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningActor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::NewProp_OwningActor = { "OwningActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventOnDeathStarted_Parms, OwningActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::NewProp_OwningActor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "OnDeathStarted", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::LyraWeaponInstance_eventOnDeathStarted_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::LyraWeaponInstance_eventOnDeathStarted_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execOnDeathStarted) +{ + P_GET_OBJECT(AActor,Z_Param_OwningActor); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnDeathStarted(Z_Param_OwningActor); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function OnDeathStarted + +// Begin Class ULyraWeaponInstance Function PickBestAnimLayer +struct Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics +{ + struct LyraWeaponInstance_eventPickBestAnimLayer_Parms + { + bool bEquipped; + FGameplayTagContainer CosmeticTags; + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Animation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Choose the best layer from EquippedAnimSet or UneuippedAnimSet based on the specified gameplay tags\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Choose the best layer from EquippedAnimSet or UneuippedAnimSet based on the specified gameplay tags" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CosmeticTags_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static void NewProp_bEquipped_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEquipped; + static const UECodeGen_Private::FStructPropertyParams NewProp_CosmeticTags; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped_SetBit(void* Obj) +{ + ((LyraWeaponInstance_eventPickBestAnimLayer_Parms*)Obj)->bEquipped = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped = { "bEquipped", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponInstance_eventPickBestAnimLayer_Parms), &Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_CosmeticTags = { "CosmeticTags", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventPickBestAnimLayer_Parms, CosmeticTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CosmeticTags_MetaData), NewProp_CosmeticTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponInstance_eventPickBestAnimLayer_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UAnimInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_bEquipped, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_CosmeticTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "PickBestAnimLayer", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::LyraWeaponInstance_eventPickBestAnimLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::LyraWeaponInstance_eventPickBestAnimLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execPickBestAnimLayer) +{ + P_GET_UBOOL(Z_Param_bEquipped); + P_GET_STRUCT_REF(FGameplayTagContainer,Z_Param_Out_CosmeticTags); + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->PickBestAnimLayer(Z_Param_bEquipped,Z_Param_Out_CosmeticTags); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function PickBestAnimLayer + +// Begin Class ULyraWeaponInstance Function UpdateFiringTime +struct Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of ULyraEquipmentInstance interface\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponInstance, nullptr, "UpdateFiringTime", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponInstance::execUpdateFiringTime) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateFiringTime(); + P_NATIVE_END; +} +// End Class ULyraWeaponInstance Function UpdateFiringTime + +// Begin Class ULyraWeaponInstance +void ULyraWeaponInstance::StaticRegisterNativesULyraWeaponInstance() +{ + UClass* Class = ULyraWeaponInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetOwningUserId", &ULyraWeaponInstance::execGetOwningUserId }, + { "GetTimeSinceLastInteractedWith", &ULyraWeaponInstance::execGetTimeSinceLastInteractedWith }, + { "OnDeathStarted", &ULyraWeaponInstance::execOnDeathStarted }, + { "PickBestAnimLayer", &ULyraWeaponInstance::execPickBestAnimLayer }, + { "UpdateFiringTime", &ULyraWeaponInstance::execUpdateFiringTime }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponInstance); +UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister() +{ + return ULyraWeaponInstance::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraWeaponInstance\n *\n * A piece of equipment representing a weapon spawned and applied to a pawn\n */" }, +#endif + { "IncludePath", "Weapons/LyraWeaponInstance.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraWeaponInstance\n\nA piece of equipment representing a weapon spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EquippedAnimSet_MetaData[] = { + { "Category", "Animation" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UneuippedAnimSet_MetaData[] = { + { "Category", "Animation" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplicableDeviceProperties_Inner_MetaData[] = { + { "Category", "Input Devices" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Device properties that should be applied while this weapon is equipped.\n\x09 * These properties will be played in with the \"Looping\" flag enabled, so they will\n\x09 * play continuously until this weapon is unequipped! \n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties that should be applied while this weapon is equipped.\nThese properties will be played in with the \"Looping\" flag enabled, so they will\nplay continuously until this weapon is unequipped!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ApplicableDeviceProperties_MetaData[] = { + { "Category", "Input Devices" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Device properties that should be applied while this weapon is equipped.\n\x09 * These properties will be played in with the \"Looping\" flag enabled, so they will\n\x09 * play continuously until this weapon is unequipped! \n\x09 */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties that should be applied while this weapon is equipped.\nThese properties will be played in with the \"Looping\" flag enabled, so they will\nplay continuously until this weapon is unequipped!" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DevicePropertyHandles_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set of device properties activated by this weapon. Populated by ApplyDeviceProperties */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set of device properties activated by this weapon. Populated by ApplyDeviceProperties" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_EquippedAnimSet; + static const UECodeGen_Private::FStructPropertyParams NewProp_UneuippedAnimSet; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ApplicableDeviceProperties_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ApplicableDeviceProperties; + static const UECodeGen_Private::FStructPropertyParams NewProp_DevicePropertyHandles_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_DevicePropertyHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponInstance_GetOwningUserId, "GetOwningUserId" }, // 2862764855 + { &Z_Construct_UFunction_ULyraWeaponInstance_GetTimeSinceLastInteractedWith, "GetTimeSinceLastInteractedWith" }, // 125533642 + { &Z_Construct_UFunction_ULyraWeaponInstance_OnDeathStarted, "OnDeathStarted" }, // 742946087 + { &Z_Construct_UFunction_ULyraWeaponInstance_PickBestAnimLayer, "PickBestAnimLayer" }, // 2168549608 + { &Z_Construct_UFunction_ULyraWeaponInstance_UpdateFiringTime, "UpdateFiringTime" }, // 2303443168 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_EquippedAnimSet = { "EquippedAnimSet", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, EquippedAnimSet), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EquippedAnimSet_MetaData), NewProp_EquippedAnimSet_MetaData) }; // 3591606580 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_UneuippedAnimSet = { "UneuippedAnimSet", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, UneuippedAnimSet), Z_Construct_UScriptStruct_FLyraAnimLayerSelectionSet, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UneuippedAnimSet_MetaData), NewProp_UneuippedAnimSet_MetaData) }; // 3591606580 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties_Inner = { "ApplicableDeviceProperties", nullptr, (EPropertyFlags)0x0106000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UInputDeviceProperty_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplicableDeviceProperties_Inner_MetaData), NewProp_ApplicableDeviceProperties_Inner_MetaData) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties = { "ApplicableDeviceProperties", nullptr, (EPropertyFlags)0x012408800001001d, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, ApplicableDeviceProperties), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ApplicableDeviceProperties_MetaData), NewProp_ApplicableDeviceProperties_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles_ElementProp = { "DevicePropertyHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputDevicePropertyHandle, METADATA_PARAMS(0, nullptr) }; // 158936348 +static_assert(TModels_V, "The structure 'FInputDevicePropertyHandle' is used in a TSet but does not have a GetValueTypeHash defined"); +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles = { "DevicePropertyHandles", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponInstance, DevicePropertyHandles), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DevicePropertyHandles_MetaData), NewProp_DevicePropertyHandles_MetaData) }; // 158936348 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_EquippedAnimSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_UneuippedAnimSet, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_ApplicableDeviceProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponInstance_Statics::NewProp_DevicePropertyHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraEquipmentInstance, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponInstance_Statics::ClassParams = { + &ULyraWeaponInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponInstance() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton, Z_Construct_UClass_ULyraWeaponInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponInstance.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponInstance); +ULyraWeaponInstance::~ULyraWeaponInstance() {} +// End Class ULyraWeaponInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponInstance, ULyraWeaponInstance::StaticClass, TEXT("ULyraWeaponInstance"), &Z_Registration_Info_UClass_ULyraWeaponInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponInstance), 702170783U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_3434543129(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h new file mode 100644 index 00000000..a57a8ff9 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponInstance.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UAnimInstance; +struct FGameplayTagContainer; +struct FPlatformUserId; +#ifdef LYRAGAME_LyraWeaponInstance_generated_h +#error "LyraWeaponInstance.generated.h already included, missing '#pragma once' in LyraWeaponInstance.h" +#endif +#define LYRAGAME_LyraWeaponInstance_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnDeathStarted); \ + DECLARE_FUNCTION(execGetOwningUserId); \ + DECLARE_FUNCTION(execPickBestAnimLayer); \ + DECLARE_FUNCTION(execGetTimeSinceLastInteractedWith); \ + DECLARE_FUNCTION(execUpdateFiringTime); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponInstance(); \ + friend struct Z_Construct_UClass_ULyraWeaponInstance_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponInstance, ULyraEquipmentInstance, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponInstance) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponInstance(ULyraWeaponInstance&&); \ + ULyraWeaponInstance(const ULyraWeaponInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponInstance); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponInstance) \ + NO_API virtual ~ULyraWeaponInstance(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp new file mode 100644 index 00000000..b56f4e58 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.gen.cpp @@ -0,0 +1,671 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponSpawner.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponSpawner() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_AActor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APawn_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimitiveComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWeaponSpawner(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWeaponSpawner_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraWeaponSpawner Function AttemptPickUpWeapon +struct LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms +{ + APawn* Pawn; +}; +static const FName NAME_ALyraWeaponSpawner_AttemptPickUpWeapon = FName(TEXT("AttemptPickUpWeapon")); +void ALyraWeaponSpawner::AttemptPickUpWeapon(APawn* Pawn) +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_AttemptPickUpWeapon); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms Parms; + Parms.Pawn=Pawn; + ProcessEvent(Func,&Parms); + } + else + { + AttemptPickUpWeapon_Implementation(Pawn); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Pawn; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::NewProp_Pawn = { "Pawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms, Pawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::NewProp_Pawn, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "AttemptPickUpWeapon", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::PropPointers), sizeof(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponSpawner_eventAttemptPickUpWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execAttemptPickUpWeapon) +{ + P_GET_OBJECT(APawn,Z_Param_Pawn); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AttemptPickUpWeapon_Implementation(Z_Param_Pawn); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function AttemptPickUpWeapon + +// Begin Class ALyraWeaponSpawner Function GetDefaultStatFromItemDef +struct Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics +{ + struct LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms + { + const TSubclassOf WeaponItemClass; + FGameplayTag StatTag; + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Searches an item definition type for a matching stat and returns the value, or 0 if not found */" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Searches an item definition type for a matching stat and returns the value, or 0 if not found" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponItemClass_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_WeaponItemClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_StatTag; + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_WeaponItemClass = { "WeaponItemClass", nullptr, (EPropertyFlags)0x0014000000000082, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, WeaponItemClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponItemClass_MetaData), NewProp_WeaponItemClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_StatTag = { "StatTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, StatTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_WeaponItemClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_StatTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "GetDefaultStatFromItemDef", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::LyraWeaponSpawner_eventGetDefaultStatFromItemDef_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execGetDefaultStatFromItemDef) +{ + P_GET_OBJECT(UClass,Z_Param_WeaponItemClass); + P_GET_STRUCT(FGameplayTag,Z_Param_StatTag); + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=ALyraWeaponSpawner::GetDefaultStatFromItemDef(Z_Param_WeaponItemClass,Z_Param_StatTag); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function GetDefaultStatFromItemDef + +// Begin Class ALyraWeaponSpawner Function GiveWeapon +struct LyraWeaponSpawner_eventGiveWeapon_Parms +{ + TSubclassOf WeaponItemClass; + APawn* ReceivingPawn; + bool ReturnValue; + + /** Constructor, initializes return property only **/ + LyraWeaponSpawner_eventGiveWeapon_Parms() + : ReturnValue(false) + { + } +}; +static const FName NAME_ALyraWeaponSpawner_GiveWeapon = FName(TEXT("GiveWeapon")); +bool ALyraWeaponSpawner::GiveWeapon(TSubclassOf WeaponItemClass, APawn* ReceivingPawn) +{ + LyraWeaponSpawner_eventGiveWeapon_Parms Parms; + Parms.WeaponItemClass=WeaponItemClass; + Parms.ReceivingPawn=ReceivingPawn; + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_GiveWeapon); + ProcessEvent(Func,&Parms); + return !!Parms.ReturnValue; +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_WeaponItemClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReceivingPawn; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_WeaponItemClass = { "WeaponItemClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGiveWeapon_Parms, WeaponItemClass), Z_Construct_UClass_UClass, Z_Construct_UClass_ULyraInventoryItemDefinition_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReceivingPawn = { "ReceivingPawn", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventGiveWeapon_Parms, ReceivingPawn), Z_Construct_UClass_APawn_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((LyraWeaponSpawner_eventGiveWeapon_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms), &Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_WeaponItemClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReceivingPawn, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "GiveWeapon", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::PropPointers), sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponSpawner_eventGiveWeapon_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ALyraWeaponSpawner Function GiveWeapon + +// Begin Class ALyraWeaponSpawner Function OnCoolDownTimerComplete +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnCoolDownTimerComplete", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnCoolDownTimerComplete) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnCoolDownTimerComplete(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnCoolDownTimerComplete + +// Begin Class ALyraWeaponSpawner Function OnOverlapBegin +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics +{ + struct LyraWeaponSpawner_eventOnOverlapBegin_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + bool bFromSweep; + FHitResult SweepHitResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SweepHitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static void NewProp_bFromSweep_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFromSweep; + static const UECodeGen_Private::FStructPropertyParams NewProp_SweepHitResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit(void* Obj) +{ + ((LyraWeaponSpawner_eventOnOverlapBegin_Parms*)Obj)->bFromSweep = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep = { "bFromSweep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponSpawner_eventOnOverlapBegin_Parms), &Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_SweepHitResult = { "SweepHitResult", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponSpawner_eventOnOverlapBegin_Parms, SweepHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SweepHitResult_MetaData), NewProp_SweepHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_OtherBodyIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_bFromSweep, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::NewProp_SweepHitResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnOverlapBegin", nullptr, nullptr, Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::PropPointers), sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::LyraWeaponSpawner_eventOnOverlapBegin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::LyraWeaponSpawner_eventOnOverlapBegin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnOverlapBegin) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_GET_UBOOL(Z_Param_bFromSweep); + P_GET_STRUCT_REF(FHitResult,Z_Param_Out_SweepHitResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnOverlapBegin(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex,Z_Param_bFromSweep,Z_Param_Out_SweepHitResult); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnOverlapBegin + +// Begin Class ALyraWeaponSpawner Function OnRep_WeaponAvailability +struct Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "OnRep_WeaponAvailability", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execOnRep_WeaponAvailability) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_WeaponAvailability(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function OnRep_WeaponAvailability + +// Begin Class ALyraWeaponSpawner Function PlayPickupEffects +static const FName NAME_ALyraWeaponSpawner_PlayPickupEffects = FName(TEXT("PlayPickupEffects")); +void ALyraWeaponSpawner::PlayPickupEffects() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_PlayPickupEffects); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + PlayPickupEffects_Implementation(); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "PlayPickupEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execPlayPickupEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayPickupEffects_Implementation(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function PlayPickupEffects + +// Begin Class ALyraWeaponSpawner Function PlayRespawnEffects +static const FName NAME_ALyraWeaponSpawner_PlayRespawnEffects = FName(TEXT("PlayRespawnEffects")); +void ALyraWeaponSpawner::PlayRespawnEffects() +{ + UFunction* Func = FindFunctionChecked(NAME_ALyraWeaponSpawner_PlayRespawnEffects); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + ProcessEvent(Func,NULL); + } + else + { + PlayRespawnEffects_Implementation(); + } +} +struct Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "PlayRespawnEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execPlayRespawnEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->PlayRespawnEffects_Implementation(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function PlayRespawnEffects + +// Begin Class ALyraWeaponSpawner Function ResetCoolDown +struct Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ALyraWeaponSpawner, nullptr, "ResetCoolDown", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ALyraWeaponSpawner::execResetCoolDown) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ResetCoolDown(); + P_NATIVE_END; +} +// End Class ALyraWeaponSpawner Function ResetCoolDown + +// Begin Class ALyraWeaponSpawner +void ALyraWeaponSpawner::StaticRegisterNativesALyraWeaponSpawner() +{ + UClass* Class = ALyraWeaponSpawner::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AttemptPickUpWeapon", &ALyraWeaponSpawner::execAttemptPickUpWeapon }, + { "GetDefaultStatFromItemDef", &ALyraWeaponSpawner::execGetDefaultStatFromItemDef }, + { "OnCoolDownTimerComplete", &ALyraWeaponSpawner::execOnCoolDownTimerComplete }, + { "OnOverlapBegin", &ALyraWeaponSpawner::execOnOverlapBegin }, + { "OnRep_WeaponAvailability", &ALyraWeaponSpawner::execOnRep_WeaponAvailability }, + { "PlayPickupEffects", &ALyraWeaponSpawner::execPlayPickupEffects }, + { "PlayRespawnEffects", &ALyraWeaponSpawner::execPlayRespawnEffects }, + { "ResetCoolDown", &ALyraWeaponSpawner::execResetCoolDown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWeaponSpawner); +UClass* Z_Construct_UClass_ALyraWeaponSpawner_NoRegister() +{ + return ALyraWeaponSpawner::StaticClass(); +} +struct Z_Construct_UClass_ALyraWeaponSpawner_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "Weapons/LyraWeaponSpawner.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponDefinition_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Data asset used to configure a Weapon Spawner\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Data asset used to configure a Weapon Spawner" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsWeaponAvailable_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CoolDownTime_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//The amount of time between weapon pickup and weapon spawning in seconds\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The amount of time between weapon pickup and weapon spawning in seconds" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CheckExistingOverlapDelay_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Delay between when the weapon is made available and when we check for a pawn standing in the spawner. Used to give the bIsWeaponAvailable OnRep time to fire and play FX. \n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delay between when the weapon is made available and when we check for a pawn standing in the spawner. Used to give the bIsWeaponAvailable OnRep time to fire and play FX." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CoolDownPercentage_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//Used to drive weapon respawn time indicators 0-1\n" }, +#endif + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Used to drive weapon respawn time indicators 0-1" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionVolume_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PadMesh_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMesh_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WeaponMeshRotationSpeed_MetaData[] = { + { "Category", "Lyra|WeaponPickup" }, + { "ModuleRelativePath", "Weapons/LyraWeaponSpawner.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponDefinition; + static void NewProp_bIsWeaponAvailable_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsWeaponAvailable; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CoolDownTime; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CheckExistingOverlapDelay; + static const UECodeGen_Private::FFloatPropertyParams NewProp_CoolDownPercentage; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollisionVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PadMesh; + static const UECodeGen_Private::FObjectPropertyParams NewProp_WeaponMesh; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WeaponMeshRotationSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ALyraWeaponSpawner_AttemptPickUpWeapon, "AttemptPickUpWeapon" }, // 2359446182 + { &Z_Construct_UFunction_ALyraWeaponSpawner_GetDefaultStatFromItemDef, "GetDefaultStatFromItemDef" }, // 518185808 + { &Z_Construct_UFunction_ALyraWeaponSpawner_GiveWeapon, "GiveWeapon" }, // 2559832093 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnCoolDownTimerComplete, "OnCoolDownTimerComplete" }, // 4206705392 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnOverlapBegin, "OnOverlapBegin" }, // 2620689077 + { &Z_Construct_UFunction_ALyraWeaponSpawner_OnRep_WeaponAvailability, "OnRep_WeaponAvailability" }, // 3677606627 + { &Z_Construct_UFunction_ALyraWeaponSpawner_PlayPickupEffects, "PlayPickupEffects" }, // 1878133186 + { &Z_Construct_UFunction_ALyraWeaponSpawner_PlayRespawnEffects, "PlayRespawnEffects" }, // 3373422927 + { &Z_Construct_UFunction_ALyraWeaponSpawner_ResetCoolDown, "ResetCoolDown" }, // 3899216340 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponDefinition = { "WeaponDefinition", nullptr, (EPropertyFlags)0x0124080000000815, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponDefinition), Z_Construct_UClass_ULyraWeaponPickupDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponDefinition_MetaData), NewProp_WeaponDefinition_MetaData) }; +void Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable_SetBit(void* Obj) +{ + ((ALyraWeaponSpawner*)Obj)->bIsWeaponAvailable = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable = { "bIsWeaponAvailable", "OnRep_WeaponAvailability", (EPropertyFlags)0x0020080100010025, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ALyraWeaponSpawner), &Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsWeaponAvailable_MetaData), NewProp_bIsWeaponAvailable_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownTime = { "CoolDownTime", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CoolDownTime), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CoolDownTime_MetaData), NewProp_CoolDownTime_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CheckExistingOverlapDelay = { "CheckExistingOverlapDelay", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CheckExistingOverlapDelay), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CheckExistingOverlapDelay_MetaData), NewProp_CheckExistingOverlapDelay_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownPercentage = { "CoolDownPercentage", nullptr, (EPropertyFlags)0x0020080000002014, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CoolDownPercentage), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CoolDownPercentage_MetaData), NewProp_CoolDownPercentage_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CollisionVolume = { "CollisionVolume", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, CollisionVolume), Z_Construct_UClass_UCapsuleComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionVolume_MetaData), NewProp_CollisionVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_PadMesh = { "PadMesh", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, PadMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PadMesh_MetaData), NewProp_PadMesh_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMesh = { "WeaponMesh", nullptr, (EPropertyFlags)0x011400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMesh_MetaData), NewProp_WeaponMesh_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMeshRotationSpeed = { "WeaponMeshRotationSpeed", nullptr, (EPropertyFlags)0x0010000000010005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWeaponSpawner, WeaponMeshRotationSpeed), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WeaponMeshRotationSpeed_MetaData), NewProp_WeaponMeshRotationSpeed_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponDefinition, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_bIsWeaponAvailable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownTime, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CheckExistingOverlapDelay, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CoolDownPercentage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_CollisionVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_PadMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWeaponSpawner_Statics::NewProp_WeaponMeshRotationSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWeaponSpawner_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWeaponSpawner_Statics::ClassParams = { + &ALyraWeaponSpawner::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWeaponSpawner_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWeaponSpawner_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWeaponSpawner() +{ + if (!Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton, Z_Construct_UClass_ALyraWeaponSpawner_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWeaponSpawner.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraWeaponSpawner::StaticClass(); +} +void ALyraWeaponSpawner::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_bIsWeaponAvailable(TEXT("bIsWeaponAvailable")); + const bool bIsValid = true + && Name_bIsWeaponAvailable == ClassReps[(int32)ENetFields_Private::bIsWeaponAvailable].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in ALyraWeaponSpawner")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWeaponSpawner); +ALyraWeaponSpawner::~ALyraWeaponSpawner() {} +// End Class ALyraWeaponSpawner + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWeaponSpawner, ALyraWeaponSpawner::StaticClass, TEXT("ALyraWeaponSpawner"), &Z_Registration_Info_UClass_ALyraWeaponSpawner, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWeaponSpawner), 4065313447U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_3517526768(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h new file mode 100644 index 00000000..1970bc13 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponSpawner.generated.h @@ -0,0 +1,84 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponSpawner.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class APawn; +class ULyraInventoryItemDefinition; +class UPrimitiveComponent; +struct FGameplayTag; +struct FHitResult; +#ifdef LYRAGAME_LyraWeaponSpawner_generated_h +#error "LyraWeaponSpawner.generated.h already included, missing '#pragma once' in LyraWeaponSpawner.h" +#endif +#define LYRAGAME_LyraWeaponSpawner_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void PlayRespawnEffects_Implementation(); \ + virtual void PlayPickupEffects_Implementation(); \ + virtual void AttemptPickUpWeapon_Implementation(APawn* Pawn); \ + DECLARE_FUNCTION(execGetDefaultStatFromItemDef); \ + DECLARE_FUNCTION(execOnRep_WeaponAvailability); \ + DECLARE_FUNCTION(execPlayRespawnEffects); \ + DECLARE_FUNCTION(execPlayPickupEffects); \ + DECLARE_FUNCTION(execOnCoolDownTimerComplete); \ + DECLARE_FUNCTION(execResetCoolDown); \ + DECLARE_FUNCTION(execAttemptPickUpWeapon); \ + DECLARE_FUNCTION(execOnOverlapBegin); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWeaponSpawner(); \ + friend struct Z_Construct_UClass_ALyraWeaponSpawner_Statics; \ +public: \ + DECLARE_CLASS(ALyraWeaponSpawner, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraWeaponSpawner) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + bIsWeaponAvailable=NETFIELD_REP_START, \ + NETFIELD_REP_END=bIsWeaponAvailable }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWeaponSpawner(ALyraWeaponSpawner&&); \ + ALyraWeaponSpawner(const ALyraWeaponSpawner&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWeaponSpawner); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWeaponSpawner); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ALyraWeaponSpawner) \ + NO_API virtual ~ALyraWeaponSpawner(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_22_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponSpawner_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp new file mode 100644 index 00000000..a1448562 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.gen.cpp @@ -0,0 +1,180 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Weapons/LyraWeaponStateComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponStateComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponStateComponent(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponStateComponent_NoRegister(); +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UControllerComponent(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponStateComponent Function ClientConfirmTargetData +struct LyraWeaponStateComponent_eventClientConfirmTargetData_Parms +{ + uint16 UniqueId; + bool bSuccess; + TArray HitReplaces; +}; +static const FName NAME_ULyraWeaponStateComponent_ClientConfirmTargetData = FName(TEXT("ClientConfirmTargetData")); +void ULyraWeaponStateComponent::ClientConfirmTargetData(uint16 UniqueId, bool bSuccess, TArray const& HitReplaces) +{ + LyraWeaponStateComponent_eventClientConfirmTargetData_Parms Parms; + Parms.UniqueId=UniqueId; + Parms.bSuccess=bSuccess ? true : false; + Parms.HitReplaces=HitReplaces; + UFunction* Func = FindFunctionChecked(NAME_ULyraWeaponStateComponent_ClientConfirmTargetData); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Weapons/LyraWeaponStateComponent.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HitReplaces_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FUInt16PropertyParams NewProp_UniqueId; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FBytePropertyParams NewProp_HitReplaces_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_HitReplaces; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FUInt16PropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_UniqueId = { "UniqueId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::UInt16, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms, UniqueId), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((LyraWeaponStateComponent_eventClientConfirmTargetData_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms), &Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces_Inner = { "HitReplaces", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces = { "HitReplaces", nullptr, (EPropertyFlags)0x0010000008000082, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms, HitReplaces), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HitReplaces_MetaData), NewProp_HitReplaces_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_UniqueId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::NewProp_HitReplaces, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponStateComponent, nullptr, "ClientConfirmTargetData", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::PropPointers), sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x01020CC0, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponStateComponent_eventClientConfirmTargetData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWeaponStateComponent::execClientConfirmTargetData) +{ + P_GET_PROPERTY(FUInt16Property,Z_Param_UniqueId); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_TARRAY(uint8,Z_Param_HitReplaces); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ClientConfirmTargetData_Implementation(Z_Param_UniqueId,Z_Param_bSuccess,Z_Param_HitReplaces); + P_NATIVE_END; +} +// End Class ULyraWeaponStateComponent Function ClientConfirmTargetData + +// Begin Class ULyraWeaponStateComponent +void ULyraWeaponStateComponent::StaticRegisterNativesULyraWeaponStateComponent() +{ + UClass* Class = ULyraWeaponStateComponent::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ClientConfirmTargetData", &ULyraWeaponStateComponent::execClientConfirmTargetData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponStateComponent); +UClass* Z_Construct_UClass_ULyraWeaponStateComponent_NoRegister() +{ + return ULyraWeaponStateComponent::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponStateComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks weapon state and recent confirmed hit markers to display on screen\n" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Weapons/LyraWeaponStateComponent.h" }, + { "ModuleRelativePath", "Weapons/LyraWeaponStateComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks weapon state and recent confirmed hit markers to display on screen" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponStateComponent_ClientConfirmTargetData, "ClientConfirmTargetData" }, // 3615133866 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraWeaponStateComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UControllerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponStateComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponStateComponent_Statics::ClassParams = { + &ULyraWeaponStateComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponStateComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponStateComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponStateComponent() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton, Z_Construct_UClass_ULyraWeaponStateComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponStateComponent.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponStateComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponStateComponent); +ULyraWeaponStateComponent::~ULyraWeaponStateComponent() {} +// End Class ULyraWeaponStateComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponStateComponent, ULyraWeaponStateComponent::StaticClass, TEXT("ULyraWeaponStateComponent"), &Z_Registration_Info_UClass_ULyraWeaponStateComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponStateComponent), 2417141837U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_2183981549(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h new file mode 100644 index 00000000..562f6c9e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponStateComponent.generated.h @@ -0,0 +1,62 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Weapons/LyraWeaponStateComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWeaponStateComponent_generated_h +#error "LyraWeaponStateComponent.generated.h already included, missing '#pragma once' in LyraWeaponStateComponent.h" +#endif +#define LYRAGAME_LyraWeaponStateComponent_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual void ClientConfirmTargetData_Implementation(uint16 UniqueId, bool bSuccess, TArray const& HitReplaces); \ + DECLARE_FUNCTION(execClientConfirmTargetData); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponStateComponent(); \ + friend struct Z_Construct_UClass_ULyraWeaponStateComponent_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponStateComponent, UControllerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponStateComponent) + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponStateComponent(ULyraWeaponStateComponent&&); \ + ULyraWeaponStateComponent(const ULyraWeaponStateComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponStateComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponStateComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponStateComponent) \ + NO_API virtual ~ULyraWeaponStateComponent(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_40_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h_43_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Weapons_LyraWeaponStateComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp new file mode 100644 index 00000000..e35e44e6 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.gen.cpp @@ -0,0 +1,153 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/LyraWeaponUserInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWeaponUserInterface() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponInstance_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponUserInterface(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWeaponUserInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWeaponUserInterface Function OnWeaponChanged +struct LyraWeaponUserInterface_eventOnWeaponChanged_Parms +{ + ULyraWeaponInstance* OldWeapon; + ULyraWeaponInstance* NewWeapon; +}; +static const FName NAME_ULyraWeaponUserInterface_OnWeaponChanged = FName(TEXT("OnWeaponChanged")); +void ULyraWeaponUserInterface::OnWeaponChanged(ULyraWeaponInstance* OldWeapon, ULyraWeaponInstance* NewWeapon) +{ + LyraWeaponUserInterface_eventOnWeaponChanged_Parms Parms; + Parms.OldWeapon=OldWeapon; + Parms.NewWeapon=NewWeapon; + UFunction* Func = FindFunctionChecked(NAME_ULyraWeaponUserInterface_OnWeaponChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OldWeapon; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NewWeapon; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_OldWeapon = { "OldWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponUserInterface_eventOnWeaponChanged_Parms, OldWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_NewWeapon = { "NewWeapon", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWeaponUserInterface_eventOnWeaponChanged_Parms, NewWeapon), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_OldWeapon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::NewProp_NewWeapon, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWeaponUserInterface, nullptr, "OnWeaponChanged", nullptr, nullptr, Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::PropPointers), sizeof(LyraWeaponUserInterface_eventOnWeaponChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWeaponUserInterface_eventOnWeaponChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraWeaponUserInterface Function OnWeaponChanged + +// Begin Class ULyraWeaponUserInterface +void ULyraWeaponUserInterface::StaticRegisterNativesULyraWeaponUserInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWeaponUserInterface); +UClass* Z_Construct_UClass_ULyraWeaponUserInterface_NoRegister() +{ + return ULyraWeaponUserInterface::StaticClass(); +} +struct Z_Construct_UClass_ULyraWeaponUserInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentInstance_MetaData[] = { + { "ModuleRelativePath", "UI/Weapons/LyraWeaponUserInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentInstance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWeaponUserInterface_OnWeaponChanged, "OnWeaponChanged" }, // 350170919 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraWeaponUserInterface_Statics::NewProp_CurrentInstance = { "CurrentInstance", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWeaponUserInterface, CurrentInstance), Z_Construct_UClass_ULyraWeaponInstance_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentInstance_MetaData), NewProp_CurrentInstance_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWeaponUserInterface_Statics::NewProp_CurrentInstance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWeaponUserInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWeaponUserInterface_Statics::ClassParams = { + &ULyraWeaponUserInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::PropPointers), + 0, + 0x00A010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWeaponUserInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWeaponUserInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWeaponUserInterface() +{ + if (!Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton, Z_Construct_UClass_ULyraWeaponUserInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWeaponUserInterface.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWeaponUserInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWeaponUserInterface); +ULyraWeaponUserInterface::~ULyraWeaponUserInterface() {} +// End Class ULyraWeaponUserInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWeaponUserInterface, ULyraWeaponUserInterface::StaticClass, TEXT("ULyraWeaponUserInterface"), &Z_Registration_Info_UClass_ULyraWeaponUserInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWeaponUserInterface), 844095426U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_3272319580(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h new file mode 100644 index 00000000..ead7081b --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWeaponUserInterface.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/LyraWeaponUserInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULyraWeaponInstance; +#ifdef LYRAGAME_LyraWeaponUserInterface_generated_h +#error "LyraWeaponUserInterface.generated.h already included, missing '#pragma once' in LyraWeaponUserInterface.h" +#endif +#define LYRAGAME_LyraWeaponUserInterface_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWeaponUserInterface(); \ + friend struct Z_Construct_UClass_ULyraWeaponUserInterface_Statics; \ +public: \ + DECLARE_CLASS(ULyraWeaponUserInterface, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWeaponUserInterface) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWeaponUserInterface(ULyraWeaponUserInterface&&); \ + ULyraWeaponUserInterface(const ULyraWeaponUserInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWeaponUserInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWeaponUserInterface); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraWeaponUserInterface) \ + NO_API virtual ~ULyraWeaponUserInterface(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_LyraWeaponUserInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp new file mode 100644 index 00000000..48ec821e --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraWidgetFactory.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWidgetFactory() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWidgetFactory Function FindWidgetClassForData +struct LyraWidgetFactory_eventFindWidgetClassForData_Parms +{ + const UObject* Data; + TSubclassOf ReturnValue; + + /** Constructor, initializes return property only **/ + LyraWidgetFactory_eventFindWidgetClassForData_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_ULyraWidgetFactory_FindWidgetClassForData = FName(TEXT("FindWidgetClassForData")); +TSubclassOf ULyraWidgetFactory::FindWidgetClassForData(const UObject* Data) const +{ + UFunction* Func = FindFunctionChecked(NAME_ULyraWidgetFactory_FindWidgetClassForData); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + LyraWidgetFactory_eventFindWidgetClassForData_Parms Parms; + Parms.Data=Data; + const_cast(this)->ProcessEvent(Func,&Parms); + return Parms.ReturnValue; + } + else + { + return const_cast(this)->FindWidgetClassForData_Implementation(Data); + } +} +struct Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Data_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWidgetFactory_eventFindWidgetClassForData_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Data_MetaData), NewProp_Data_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraWidgetFactory_eventFindWidgetClassForData_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraWidgetFactory, nullptr, "FindWidgetClassForData", nullptr, nullptr, Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::PropPointers), sizeof(LyraWidgetFactory_eventFindWidgetClassForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x48020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraWidgetFactory_eventFindWidgetClassForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULyraWidgetFactory::execFindWidgetClassForData) +{ + P_GET_OBJECT(UObject,Z_Param_Data); + P_FINISH; + P_NATIVE_BEGIN; + *(TSubclassOf*)Z_Param__Result=P_THIS->FindWidgetClassForData_Implementation(Z_Param_Data); + P_NATIVE_END; +} +// End Class ULyraWidgetFactory Function FindWidgetClassForData + +// Begin Class ULyraWidgetFactory +void ULyraWidgetFactory::StaticRegisterNativesULyraWidgetFactory() +{ + UClass* Class = ULyraWidgetFactory::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "FindWidgetClassForData", &ULyraWidgetFactory::execFindWidgetClassForData }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWidgetFactory); +UClass* Z_Construct_UClass_ULyraWidgetFactory_NoRegister() +{ + return ULyraWidgetFactory::StaticClass(); +} +struct Z_Construct_UClass_ULyraWidgetFactory_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "UI/Common/LyraWidgetFactory.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraWidgetFactory_FindWidgetClassForData, "FindWidgetClassForData" }, // 1197078718 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULyraWidgetFactory_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWidgetFactory_Statics::ClassParams = { + &ULyraWidgetFactory::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWidgetFactory_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWidgetFactory() +{ + if (!Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton, Z_Construct_UClass_ULyraWidgetFactory_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWidgetFactory.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWidgetFactory::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWidgetFactory); +ULyraWidgetFactory::~ULyraWidgetFactory() {} +// End Class ULyraWidgetFactory + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWidgetFactory, ULyraWidgetFactory::StaticClass, TEXT("ULyraWidgetFactory"), &Z_Registration_Info_UClass_ULyraWidgetFactory, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWidgetFactory), 1537051138U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_2625560229(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h new file mode 100644 index 00000000..697bed88 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraWidgetFactory.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +#ifdef LYRAGAME_LyraWidgetFactory_generated_h +#error "LyraWidgetFactory.generated.h already included, missing '#pragma once' in LyraWidgetFactory.h" +#endif +#define LYRAGAME_LyraWidgetFactory_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual TSubclassOf FindWidgetClassForData_Implementation(const UObject* Data) const; \ + DECLARE_FUNCTION(execFindWidgetClassForData); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWidgetFactory(); \ + friend struct Z_Construct_UClass_ULyraWidgetFactory_Statics; \ +public: \ + DECLARE_CLASS(ULyraWidgetFactory, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWidgetFactory) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWidgetFactory(ULyraWidgetFactory&&); \ + ULyraWidgetFactory(const ULyraWidgetFactory&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWidgetFactory); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWidgetFactory); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraWidgetFactory) \ + NO_API virtual ~ULyraWidgetFactory(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp new file mode 100644 index 00000000..8b1e33ee --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.gen.cpp @@ -0,0 +1,111 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Common/LyraWidgetFactory_Class.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWidgetFactory_Class() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_Class(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraWidgetFactory_Class_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ULyraWidgetFactory_Class +void ULyraWidgetFactory_Class::StaticRegisterNativesULyraWidgetFactory_Class() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraWidgetFactory_Class); +UClass* Z_Construct_UClass_ULyraWidgetFactory_Class_NoRegister() +{ + return ULyraWidgetFactory_Class::StaticClass(); +} +struct Z_Construct_UClass_ULyraWidgetFactory_Class_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UI/Common/LyraWidgetFactory_Class.h" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory_Class.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForClass_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "UI/Common/LyraWidgetFactory_Class.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_ValueProp; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_EntryWidgetForClass_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_ValueProp = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_Key_KeyProp = { "EntryWidgetForClass_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0024080000000001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraWidgetFactory_Class, EntryWidgetForClass), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForClass_MetaData), NewProp_EntryWidgetForClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::NewProp_EntryWidgetForClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraWidgetFactory, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::ClassParams = { + &ULyraWidgetFactory_Class::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::PropPointers), + 0, + 0x001010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraWidgetFactory_Class() +{ + if (!Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton, Z_Construct_UClass_ULyraWidgetFactory_Class_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraWidgetFactory_Class.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ULyraWidgetFactory_Class::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraWidgetFactory_Class); +ULyraWidgetFactory_Class::~ULyraWidgetFactory_Class() {} +// End Class ULyraWidgetFactory_Class + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraWidgetFactory_Class, ULyraWidgetFactory_Class::StaticClass, TEXT("ULyraWidgetFactory_Class"), &Z_Registration_Info_UClass_ULyraWidgetFactory_Class, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraWidgetFactory_Class), 108606085U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_3809490253(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h new file mode 100644 index 00000000..d6600133 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWidgetFactory_Class.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Common/LyraWidgetFactory_Class.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWidgetFactory_Class_generated_h +#error "LyraWidgetFactory_Class.generated.h already included, missing '#pragma once' in LyraWidgetFactory_Class.h" +#endif +#define LYRAGAME_LyraWidgetFactory_Class_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraWidgetFactory_Class(); \ + friend struct Z_Construct_UClass_ULyraWidgetFactory_Class_Statics; \ +public: \ + DECLARE_CLASS(ULyraWidgetFactory_Class, ULyraWidgetFactory, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ULyraWidgetFactory_Class) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraWidgetFactory_Class(ULyraWidgetFactory_Class&&); \ + ULyraWidgetFactory_Class(const ULyraWidgetFactory_Class&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraWidgetFactory_Class); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraWidgetFactory_Class); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULyraWidgetFactory_Class) \ + NO_API virtual ~ULyraWidgetFactory_Class(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Common_LyraWidgetFactory_Class_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp new file mode 100644 index 00000000..2c204b21 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.gen.cpp @@ -0,0 +1,143 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/GameModes/LyraWorldSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWorldSettings() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AWorldSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWorldSettings(); +LYRAGAME_API UClass* Z_Construct_UClass_ALyraWorldSettings_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraExperienceDefinition_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class ALyraWorldSettings +void ALyraWorldSettings::StaticRegisterNativesALyraWorldSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWorldSettings); +UClass* Z_Construct_UClass_ALyraWorldSettings_NoRegister() +{ + return ALyraWorldSettings::StaticClass(); +} +struct Z_Construct_UClass_ALyraWorldSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The default world settings object, used primarily to set the default gameplay experience to use when playing on this map\n */" }, +#endif + { "HideCategories", "Actor Advanced Display Events Object Attachment Info Input Blueprint Layers Tags Replication LevelInstance Input Movement Collision Transformation HLOD DataLayers" }, + { "IncludePath", "GameModes/LyraWorldSettings.h" }, + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default world settings object, used primarily to set the default gameplay experience to use when playing on this map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultGameplayExperience_MetaData[] = { + { "Category", "GameMode" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The default experience to use when a server opens this map if it is not overridden by the user-facing experience\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The default experience to use when a server opens this map if it is not overridden by the user-facing experience" }, +#endif + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceStandaloneNetMode_MetaData[] = { + { "Category", "PIE" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Is this level part of a front-end or other standalone experience?\n// When set, the net mode will be forced to Standalone when you hit Play in the editor\n" }, +#endif + { "ModuleRelativePath", "GameModes/LyraWorldSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Is this level part of a front-end or other standalone experience?\nWhen set, the net mode will be forced to Standalone when you hit Play in the editor" }, +#endif + }; +#endif // WITH_EDITORONLY_DATA +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultGameplayExperience; +#if WITH_EDITORONLY_DATA + static void NewProp_ForceStandaloneNetMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceStandaloneNetMode; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_DefaultGameplayExperience = { "DefaultGameplayExperience", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldSettings, DefaultGameplayExperience), Z_Construct_UClass_ULyraExperienceDefinition_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultGameplayExperience_MetaData), NewProp_DefaultGameplayExperience_MetaData) }; +#if WITH_EDITORONLY_DATA +void Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode_SetBit(void* Obj) +{ + ((ALyraWorldSettings*)Obj)->ForceStandaloneNetMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode = { "ForceStandaloneNetMode", nullptr, (EPropertyFlags)0x0010000800010001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ALyraWorldSettings), &Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceStandaloneNetMode_MetaData), NewProp_ForceStandaloneNetMode_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_DefaultGameplayExperience, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldSettings_Statics::NewProp_ForceStandaloneNetMode, +#endif // WITH_EDITORONLY_DATA +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWorldSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AWorldSettings, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWorldSettings_Statics::ClassParams = { + &ALyraWorldSettings::StaticClass, + "game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::PropPointers), + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWorldSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWorldSettings() +{ + if (!Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton, Z_Construct_UClass_ALyraWorldSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWorldSettings.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return ALyraWorldSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWorldSettings); +ALyraWorldSettings::~ALyraWorldSettings() {} +// End Class ALyraWorldSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWorldSettings, ALyraWorldSettings::StaticClass, TEXT("ALyraWorldSettings"), &Z_Registration_Info_UClass_ALyraWorldSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWorldSettings), 3884905038U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_2262437023(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.generated.h new file mode 100644 index 00000000..6acedf5d --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraWorldSettings.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameModes/LyraWorldSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_LyraWorldSettings_generated_h +#error "LyraWorldSettings.generated.h already included, missing '#pragma once' in LyraWorldSettings.h" +#endif +#define LYRAGAME_LyraWorldSettings_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWorldSettings(); \ + friend struct Z_Construct_UClass_ALyraWorldSettings_Statics; \ +public: \ + DECLARE_CLASS(ALyraWorldSettings, AWorldSettings, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(ALyraWorldSettings) + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWorldSettings(ALyraWorldSettings&&); \ + ALyraWorldSettings(const ALyraWorldSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWorldSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWorldSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ALyraWorldSettings) \ + NO_API virtual ~ALyraWorldSettings(); + + +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_GameModes_LyraWorldSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp new file mode 100644 index 00000000..9d2e302f --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.gen.cpp @@ -0,0 +1,726 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Basic/MaterialProgressBar.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeMaterialProgressBar() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInterface_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UMaterialProgressBar(); +LYRAGAME_API UClass* Z_Construct_UClass_UMaterialProgressBar_NoRegister(); +LYRAGAME_API UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature(); +UMG_API UClass* Z_Construct_UClass_UImage_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidgetAnimation_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Delegate FOnFillAnimationFinished +struct Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "OnFillAnimationFinished__DelegateSignature", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UMaterialProgressBar::FOnFillAnimationFinished_DelegateWrapper(const FMulticastScriptDelegate& OnFillAnimationFinished) +{ + OnFillAnimationFinished.ProcessMulticastDelegate(NULL); +} +// End Delegate FOnFillAnimationFinished + +// Begin Class UMaterialProgressBar Function AnimateProgressFromCurrent +struct Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics +{ + struct MaterialProgressBar_eventAnimateProgressFromCurrent_Parms + { + float End; + float AnimSpeed; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "CPP_Default_AnimSpeed", "1.000000" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_End; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AnimSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_End = { "End", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromCurrent_Parms, End), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_AnimSpeed = { "AnimSpeed", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromCurrent_Parms, AnimSpeed), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_End, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::NewProp_AnimSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "AnimateProgressFromCurrent", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::MaterialProgressBar_eventAnimateProgressFromCurrent_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::MaterialProgressBar_eventAnimateProgressFromCurrent_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execAnimateProgressFromCurrent) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_End); + P_GET_PROPERTY(FFloatProperty,Z_Param_AnimSpeed); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimateProgressFromCurrent(Z_Param_End,Z_Param_AnimSpeed); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function AnimateProgressFromCurrent + +// Begin Class UMaterialProgressBar Function AnimateProgressFromStart +struct Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics +{ + struct MaterialProgressBar_eventAnimateProgressFromStart_Parms + { + float Start; + float End; + float AnimSpeed; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "CPP_Default_AnimSpeed", "1.000000" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Start; + static const UECodeGen_Private::FFloatPropertyParams NewProp_End; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AnimSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_Start = { "Start", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, Start), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_End = { "End", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, End), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_AnimSpeed = { "AnimSpeed", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventAnimateProgressFromStart_Parms, AnimSpeed), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_Start, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_End, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::NewProp_AnimSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "AnimateProgressFromStart", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::MaterialProgressBar_eventAnimateProgressFromStart_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::MaterialProgressBar_eventAnimateProgressFromStart_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execAnimateProgressFromStart) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Start); + P_GET_PROPERTY(FFloatProperty,Z_Param_End); + P_GET_PROPERTY(FFloatProperty,Z_Param_AnimSpeed); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->AnimateProgressFromStart(Z_Param_Start,Z_Param_End,Z_Param_AnimSpeed); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function AnimateProgressFromStart + +// Begin Class UMaterialProgressBar Function SetColorA +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics +{ + struct MaterialProgressBar_eventSetColorA_Parms + { + FLinearColor ColorA; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorA; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::NewProp_ColorA = { "ColorA", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorA_Parms, ColorA), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::NewProp_ColorA, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorA", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::MaterialProgressBar_eventSetColorA_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::MaterialProgressBar_eventSetColorA_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorA() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorA_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorA) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorA); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorA(Z_Param_ColorA); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorA + +// Begin Class UMaterialProgressBar Function SetColorB +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics +{ + struct MaterialProgressBar_eventSetColorB_Parms + { + FLinearColor ColorB; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorB; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::NewProp_ColorB = { "ColorB", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorB_Parms, ColorB), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::NewProp_ColorB, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorB", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::MaterialProgressBar_eventSetColorB_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::MaterialProgressBar_eventSetColorB_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorB() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorB_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorB) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorB); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorB(Z_Param_ColorB); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorB + +// Begin Class UMaterialProgressBar Function SetColorBackground +struct Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics +{ + struct MaterialProgressBar_eventSetColorBackground_Parms + { + FLinearColor ColorBackground; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ColorBackground; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::NewProp_ColorBackground = { "ColorBackground", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetColorBackground_Parms, ColorBackground), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::NewProp_ColorBackground, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetColorBackground", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::MaterialProgressBar_eventSetColorBackground_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04820401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::MaterialProgressBar_eventSetColorBackground_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetColorBackground) +{ + P_GET_STRUCT(FLinearColor,Z_Param_ColorBackground); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetColorBackground(Z_Param_ColorBackground); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetColorBackground + +// Begin Class UMaterialProgressBar Function SetProgress +struct Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics +{ + struct MaterialProgressBar_eventSetProgress_Parms + { + float Progress; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Progress; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::NewProp_Progress = { "Progress", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetProgress_Parms, Progress), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::NewProp_Progress, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetProgress", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::MaterialProgressBar_eventSetProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::MaterialProgressBar_eventSetProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetProgress) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Progress); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetProgress(Z_Param_Progress); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetProgress + +// Begin Class UMaterialProgressBar Function SetStartProgress +struct Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics +{ + struct MaterialProgressBar_eventSetStartProgress_Parms + { + float StartProgress; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_StartProgress; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::NewProp_StartProgress = { "StartProgress", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MaterialProgressBar_eventSetStartProgress_Parms, StartProgress), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::NewProp_StartProgress, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMaterialProgressBar, nullptr, "SetStartProgress", nullptr, nullptr, Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::MaterialProgressBar_eventSetStartProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::MaterialProgressBar_eventSetStartProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMaterialProgressBar::execSetStartProgress) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_StartProgress); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetStartProgress(Z_Param_StartProgress); + P_NATIVE_END; +} +// End Class UMaterialProgressBar Function SetStartProgress + +// Begin Class UMaterialProgressBar +void UMaterialProgressBar::StaticRegisterNativesUMaterialProgressBar() +{ + UClass* Class = UMaterialProgressBar::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AnimateProgressFromCurrent", &UMaterialProgressBar::execAnimateProgressFromCurrent }, + { "AnimateProgressFromStart", &UMaterialProgressBar::execAnimateProgressFromStart }, + { "SetColorA", &UMaterialProgressBar::execSetColorA }, + { "SetColorB", &UMaterialProgressBar::execSetColorB }, + { "SetColorBackground", &UMaterialProgressBar::execSetColorBackground }, + { "SetProgress", &UMaterialProgressBar::execSetProgress }, + { "SetStartProgress", &UMaterialProgressBar::execSetStartProgress }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UMaterialProgressBar); +UClass* Z_Construct_UClass_UMaterialProgressBar_NoRegister() +{ + return UMaterialProgressBar::StaticClass(); +} +struct Z_Construct_UClass_UMaterialProgressBar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisableNativeTick", "" }, + { "IncludePath", "UI/Basic/MaterialProgressBar.h" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnFillAnimationFinished_MetaData[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorA_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorA" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorA_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color A" }, + { "EditCondition", "bOverrideDefaultColorA" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorB_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorB" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorB_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color B" }, + { "EditCondition", "bOverrideDefaultColorB" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultColorBackground_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "CachedColorBackground" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedColorBackground_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Color Background" }, + { "EditCondition", "bOverrideDefaultColorBackground" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultSegments_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "Segments" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Segments_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultSegments" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultSegmentEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "SegmentEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SegmentEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultSegmentEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultFillEdgeSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "FillEdgeSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FillEdgeSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultFillEdgeSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultGlowEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "GlowEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GlowEdge_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultGlowEdge" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultGlowSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "GlowSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GlowSoftness_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultGlowSoftness" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bOverrideDefaultOutlineScale_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "InlineEditConditionToggle", "OutlineScale" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OutlineScale_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "EditCondition", "bOverrideDefaultOutlineScale" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseStroke_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StrokeMaterial_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NoStrokeMaterial_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#if WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DesignTime_Progress_MetaData[] = { + { "Category", "MaterialProgressBar" }, + { "DisplayName", "Design Time Progress" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_EDITORONLY_DATA + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Image_Bar_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "BindWidget", "" }, + { "Category", "MaterialProgressBar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundAnim_FillBar_MetaData[] = { + { "AllowPrivateAccess", "" }, + { "BindWidgetAnim", "" }, + { "Category", "MaterialProgressBar" }, + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedMID_MetaData[] = { + { "ModuleRelativePath", "UI/Basic/MaterialProgressBar.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnFillAnimationFinished; + static void NewProp_bOverrideDefaultColorA_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorA; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorA; + static void NewProp_bOverrideDefaultColorB_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorB; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorB; + static void NewProp_bOverrideDefaultColorBackground_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultColorBackground; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedColorBackground; + static void NewProp_bOverrideDefaultSegments_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultSegments; + static const UECodeGen_Private::FIntPropertyParams NewProp_Segments; + static void NewProp_bOverrideDefaultSegmentEdge_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultSegmentEdge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_SegmentEdge; + static void NewProp_bOverrideDefaultFillEdgeSoftness_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultFillEdgeSoftness; + static const UECodeGen_Private::FFloatPropertyParams NewProp_FillEdgeSoftness; + static void NewProp_bOverrideDefaultGlowEdge_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultGlowEdge; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GlowEdge; + static void NewProp_bOverrideDefaultGlowSoftness_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultGlowSoftness; + static const UECodeGen_Private::FFloatPropertyParams NewProp_GlowSoftness; + static void NewProp_bOverrideDefaultOutlineScale_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bOverrideDefaultOutlineScale; + static const UECodeGen_Private::FFloatPropertyParams NewProp_OutlineScale; + static void NewProp_bUseStroke_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseStroke; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StrokeMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_NoStrokeMaterial; +#if WITH_EDITORONLY_DATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DesignTime_Progress; +#endif // WITH_EDITORONLY_DATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Image_Bar; + static const UECodeGen_Private::FObjectPropertyParams NewProp_BoundAnim_FillBar; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CachedMID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromCurrent, "AnimateProgressFromCurrent" }, // 1553828117 + { &Z_Construct_UFunction_UMaterialProgressBar_AnimateProgressFromStart, "AnimateProgressFromStart" }, // 4187224471 + { &Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, "OnFillAnimationFinished__DelegateSignature" }, // 3055943253 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorA, "SetColorA" }, // 1785433109 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorB, "SetColorB" }, // 694941076 + { &Z_Construct_UFunction_UMaterialProgressBar_SetColorBackground, "SetColorBackground" }, // 1992410816 + { &Z_Construct_UFunction_UMaterialProgressBar_SetProgress, "SetProgress" }, // 2876077076 + { &Z_Construct_UFunction_UMaterialProgressBar_SetStartProgress, "SetStartProgress" }, // 1774450658 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OnFillAnimationFinished = { "OnFillAnimationFinished", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, OnFillAnimationFinished), Z_Construct_UDelegateFunction_UMaterialProgressBar_OnFillAnimationFinished__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnFillAnimationFinished_MetaData), NewProp_OnFillAnimationFinished_MetaData) }; // 3055943253 +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorA = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA = { "bOverrideDefaultColorA", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorA_MetaData), NewProp_bOverrideDefaultColorA_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorA = { "CachedColorA", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorA), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorA_MetaData), NewProp_CachedColorA_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorB = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB = { "bOverrideDefaultColorB", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorB_MetaData), NewProp_bOverrideDefaultColorB_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorB = { "CachedColorB", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorB), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorB_MetaData), NewProp_CachedColorB_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultColorBackground = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground = { "bOverrideDefaultColorBackground", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultColorBackground_MetaData), NewProp_bOverrideDefaultColorBackground_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorBackground = { "CachedColorBackground", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedColorBackground), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedColorBackground_MetaData), NewProp_CachedColorBackground_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultSegments = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments = { "bOverrideDefaultSegments", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultSegments_MetaData), NewProp_bOverrideDefaultSegments_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Segments = { "Segments", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, Segments), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Segments_MetaData), NewProp_Segments_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultSegmentEdge = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge = { "bOverrideDefaultSegmentEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultSegmentEdge_MetaData), NewProp_bOverrideDefaultSegmentEdge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_SegmentEdge = { "SegmentEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, SegmentEdge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SegmentEdge_MetaData), NewProp_SegmentEdge_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultFillEdgeSoftness = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness = { "bOverrideDefaultFillEdgeSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultFillEdgeSoftness_MetaData), NewProp_bOverrideDefaultFillEdgeSoftness_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_FillEdgeSoftness = { "FillEdgeSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, FillEdgeSoftness), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FillEdgeSoftness_MetaData), NewProp_FillEdgeSoftness_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultGlowEdge = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge = { "bOverrideDefaultGlowEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultGlowEdge_MetaData), NewProp_bOverrideDefaultGlowEdge_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowEdge = { "GlowEdge", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, GlowEdge), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GlowEdge_MetaData), NewProp_GlowEdge_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultGlowSoftness = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness = { "bOverrideDefaultGlowSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultGlowSoftness_MetaData), NewProp_bOverrideDefaultGlowSoftness_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowSoftness = { "GlowSoftness", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, GlowSoftness), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GlowSoftness_MetaData), NewProp_GlowSoftness_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bOverrideDefaultOutlineScale = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale = { "bOverrideDefaultOutlineScale", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bOverrideDefaultOutlineScale_MetaData), NewProp_bOverrideDefaultOutlineScale_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OutlineScale = { "OutlineScale", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, OutlineScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OutlineScale_MetaData), NewProp_OutlineScale_MetaData) }; +void Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke_SetBit(void* Obj) +{ + ((UMaterialProgressBar*)Obj)->bUseStroke = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke = { "bUseStroke", nullptr, (EPropertyFlags)0x0040000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UMaterialProgressBar), &Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseStroke_MetaData), NewProp_bUseStroke_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_StrokeMaterial = { "StrokeMaterial", nullptr, (EPropertyFlags)0x0144000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, StrokeMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StrokeMaterial_MetaData), NewProp_StrokeMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_NoStrokeMaterial = { "NoStrokeMaterial", nullptr, (EPropertyFlags)0x0144000000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, NoStrokeMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NoStrokeMaterial_MetaData), NewProp_NoStrokeMaterial_MetaData) }; +#if WITH_EDITORONLY_DATA +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_DesignTime_Progress = { "DesignTime_Progress", nullptr, (EPropertyFlags)0x0040000800000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, DesignTime_Progress), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DesignTime_Progress_MetaData), NewProp_DesignTime_Progress_MetaData) }; +#endif // WITH_EDITORONLY_DATA +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Image_Bar = { "Image_Bar", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, Image_Bar), Z_Construct_UClass_UImage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Image_Bar_MetaData), NewProp_Image_Bar_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_BoundAnim_FillBar = { "BoundAnim_FillBar", nullptr, (EPropertyFlags)0x0144000000002014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, BoundAnim_FillBar), Z_Construct_UClass_UWidgetAnimation_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundAnim_FillBar_MetaData), NewProp_BoundAnim_FillBar_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedMID = { "CachedMID", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMaterialProgressBar, CachedMID), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedMID_MetaData), NewProp_CachedMID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OnFillAnimationFinished, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorA, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorB, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultColorBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedColorBackground, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegments, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Segments, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultSegmentEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_SegmentEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultFillEdgeSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_FillEdgeSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowEdge, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultGlowSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_GlowSoftness, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bOverrideDefaultOutlineScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_OutlineScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_bUseStroke, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_StrokeMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_NoStrokeMaterial, +#if WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_DesignTime_Progress, +#endif // WITH_EDITORONLY_DATA + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_Image_Bar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_BoundAnim_FillBar, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMaterialProgressBar_Statics::NewProp_CachedMID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UMaterialProgressBar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UMaterialProgressBar_Statics::ClassParams = { + &UMaterialProgressBar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::PropPointers), + 0, + 0x00A010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UMaterialProgressBar_Statics::Class_MetaDataParams), Z_Construct_UClass_UMaterialProgressBar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UMaterialProgressBar() +{ + if (!Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton, Z_Construct_UClass_UMaterialProgressBar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UMaterialProgressBar.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UMaterialProgressBar::StaticClass(); +} +UMaterialProgressBar::UMaterialProgressBar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UMaterialProgressBar); +UMaterialProgressBar::~UMaterialProgressBar() {} +// End Class UMaterialProgressBar + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UMaterialProgressBar, UMaterialProgressBar::StaticClass, TEXT("UMaterialProgressBar"), &Z_Registration_Info_UClass_UMaterialProgressBar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UMaterialProgressBar), 2059522219U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_654435084(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.generated.h new file mode 100644 index 00000000..82f0fe84 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/MaterialProgressBar.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Basic/MaterialProgressBar.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FLinearColor; +#ifdef LYRAGAME_MaterialProgressBar_generated_h +#error "MaterialProgressBar.generated.h already included, missing '#pragma once' in MaterialProgressBar.h" +#endif +#define LYRAGAME_MaterialProgressBar_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_52_DELEGATE \ +static LYRAGAME_API void FOnFillAnimationFinished_DelegateWrapper(const FMulticastScriptDelegate& OnFillAnimationFinished); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execAnimateProgressFromCurrent); \ + DECLARE_FUNCTION(execAnimateProgressFromStart); \ + DECLARE_FUNCTION(execSetColorBackground); \ + DECLARE_FUNCTION(execSetColorB); \ + DECLARE_FUNCTION(execSetColorA); \ + DECLARE_FUNCTION(execSetStartProgress); \ + DECLARE_FUNCTION(execSetProgress); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUMaterialProgressBar(); \ + friend struct Z_Construct_UClass_UMaterialProgressBar_Statics; \ +public: \ + DECLARE_CLASS(UMaterialProgressBar, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UMaterialProgressBar) + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UMaterialProgressBar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UMaterialProgressBar(UMaterialProgressBar&&); \ + UMaterialProgressBar(const UMaterialProgressBar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UMaterialProgressBar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UMaterialProgressBar); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UMaterialProgressBar) \ + NO_API virtual ~UMaterialProgressBar(); + + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_14_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Basic_MaterialProgressBar_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp new file mode 100644 index 00000000..3778af20 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.gen.cpp @@ -0,0 +1,117 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/Physics/PhysicalMaterialWithTags.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePhysicalMaterialWithTags() {} + +// Begin Cross Module References +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +LYRAGAME_API UClass* Z_Construct_UClass_UPhysicalMaterialWithTags(); +LYRAGAME_API UClass* Z_Construct_UClass_UPhysicalMaterialWithTags_NoRegister(); +PHYSICSCORE_API UClass* Z_Construct_UClass_UPhysicalMaterial(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin Class UPhysicalMaterialWithTags +void UPhysicalMaterialWithTags::StaticRegisterNativesUPhysicalMaterialWithTags() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPhysicalMaterialWithTags); +UClass* Z_Construct_UClass_UPhysicalMaterialWithTags_NoRegister() +{ + return UPhysicalMaterialWithTags::StaticClass(); +} +struct Z_Construct_UClass_UPhysicalMaterialWithTags_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraWeaponInstance\n *\n * A piece of equipment representing a weapon spawned and applied to a pawn\n */" }, +#endif + { "HideCategories", "Object" }, + { "IncludePath", "Physics/PhysicalMaterialWithTags.h" }, + { "ModuleRelativePath", "Physics/PhysicalMaterialWithTags.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraWeaponInstance\n\nA piece of equipment representing a weapon spawned and applied to a pawn" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Tags_MetaData[] = { + { "Category", "PhysicalProperties" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// A container of gameplay tags that game code can use to reason about this physical material\n" }, +#endif + { "ModuleRelativePath", "Physics/PhysicalMaterialWithTags.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A container of gameplay tags that game code can use to reason about this physical material" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Tags; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::NewProp_Tags = { "Tags", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPhysicalMaterialWithTags, Tags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Tags_MetaData), NewProp_Tags_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::NewProp_Tags, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPhysicalMaterial, + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::ClassParams = { + &UPhysicalMaterialWithTags::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::PropPointers), + 0, + 0x000020A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::Class_MetaDataParams), Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPhysicalMaterialWithTags() +{ + if (!Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton, Z_Construct_UClass_UPhysicalMaterialWithTags_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPhysicalMaterialWithTags.OuterSingleton; +} +template<> LYRAGAME_API UClass* StaticClass() +{ + return UPhysicalMaterialWithTags::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPhysicalMaterialWithTags); +UPhysicalMaterialWithTags::~UPhysicalMaterialWithTags() {} +// End Class UPhysicalMaterialWithTags + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPhysicalMaterialWithTags, UPhysicalMaterialWithTags::StaticClass, TEXT("UPhysicalMaterialWithTags"), &Z_Registration_Info_UClass_UPhysicalMaterialWithTags, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPhysicalMaterialWithTags), 2613712870U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_3324888955(TEXT("/Script/LyraGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h new file mode 100644 index 00000000..deebd112 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/PhysicalMaterialWithTags.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Physics/PhysicalMaterialWithTags.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_PhysicalMaterialWithTags_generated_h +#error "PhysicalMaterialWithTags.generated.h already included, missing '#pragma once' in PhysicalMaterialWithTags.h" +#endif +#define LYRAGAME_PhysicalMaterialWithTags_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPhysicalMaterialWithTags(); \ + friend struct Z_Construct_UClass_UPhysicalMaterialWithTags_Statics; \ +public: \ + DECLARE_CLASS(UPhysicalMaterialWithTags, UPhysicalMaterial, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraGame"), NO_API) \ + DECLARE_SERIALIZER(UPhysicalMaterialWithTags) + + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPhysicalMaterialWithTags(UPhysicalMaterialWithTags&&); \ + UPhysicalMaterialWithTags(const UPhysicalMaterialWithTags&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPhysicalMaterialWithTags); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPhysicalMaterialWithTags); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPhysicalMaterialWithTags) \ + NO_API virtual ~UPhysicalMaterialWithTags(); + + +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_17_PROLOG +#define FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_Physics_PhysicalMaterialWithTags_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp new file mode 100644 index 00000000..80ce7174 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.gen.cpp @@ -0,0 +1,112 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraGame/UI/Weapons/SCircumferenceMarkerWidget.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSCircumferenceMarkerWidget() {} + +// Begin Cross Module References +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry(); +UPackage* Z_Construct_UPackage__Script_LyraGame(); +// End Cross Module References + +// Begin ScriptStruct FCircumferenceMarkerEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry; +class UScriptStruct* FCircumferenceMarkerEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry, (UObject*)Z_Construct_UPackage__Script_LyraGame(), TEXT("CircumferenceMarkerEntry")); + } + return Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.OuterSingleton; +} +template<> LYRAGAME_API UScriptStruct* StaticStruct() +{ + return FCircumferenceMarkerEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PositionAngle_MetaData[] = { + { "Category", "CircumferenceMarkerEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The angle to place this marker around the circle (in degrees)\n" }, +#endif + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The angle to place this marker around the circle (in degrees)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ImageRotationAngle_MetaData[] = { + { "Category", "CircumferenceMarkerEntry" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The angle to rotate the marker image (in degrees)\n" }, +#endif + { "ForceUnits", "deg" }, + { "ModuleRelativePath", "UI/Weapons/SCircumferenceMarkerWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The angle to rotate the marker image (in degrees)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_PositionAngle; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ImageRotationAngle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_PositionAngle = { "PositionAngle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCircumferenceMarkerEntry, PositionAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PositionAngle_MetaData), NewProp_PositionAngle_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_ImageRotationAngle = { "ImageRotationAngle", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCircumferenceMarkerEntry, ImageRotationAngle), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ImageRotationAngle_MetaData), NewProp_ImageRotationAngle_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_PositionAngle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewProp_ImageRotationAngle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_LyraGame, + nullptr, + &NewStructOps, + "CircumferenceMarkerEntry", + Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::PropPointers), + sizeof(FCircumferenceMarkerEntry), + alignof(FCircumferenceMarkerEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FCircumferenceMarkerEntry() +{ + if (!Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry.InnerSingleton; +} +// End ScriptStruct FCircumferenceMarkerEntry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FCircumferenceMarkerEntry::StaticStruct, Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics::NewStructOps, TEXT("CircumferenceMarkerEntry"), &Z_Registration_Info_UScriptStruct_CircumferenceMarkerEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FCircumferenceMarkerEntry), 3476315904U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_3083010810(TEXT("/Script/LyraGame"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h new file mode 100644 index 00000000..027fc20c --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/SCircumferenceMarkerWidget.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UI/Weapons/SCircumferenceMarkerWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef LYRAGAME_SCircumferenceMarkerWidget_generated_h +#error "SCircumferenceMarkerWidget.generated.h already included, missing '#pragma once' in SCircumferenceMarkerWidget.h" +#endif +#define LYRAGAME_SCircumferenceMarkerWidget_generated_h + +#define FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h_22_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FCircumferenceMarkerEntry_Statics; \ + LYRAGAME_API static class UScriptStruct* StaticStruct(); + + +template<> LYRAGAME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Source_LyraGame_UI_Weapons_SCircumferenceMarkerWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/Timestamp b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/Timestamp new file mode 100644 index 00000000..fbbef605 --- /dev/null +++ b/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/Timestamp @@ -0,0 +1,220 @@ +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySourceInterface.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilityTagRelationshipMapping.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySystemComponent.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayAbilityTargetData_SingleTargetHit.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayEffectContext.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraAbilitySystemGlobals.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGameplayCueManager.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_InventoryItem.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraTaggedActor.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_PlayerTagStack.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Reset.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraAttributeSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Death.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraGameplayAbility_Jump.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraHealthSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Attributes\LyraCombatSet.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Phases\LyraGamePhaseAbility.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Phases\LyraGamePhaseSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Executions\LyraHealExecution.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Executions\LyraDamageExecution.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraAssistInterface.h +E:\Projects\cross_platform\Source\LyraGame\Animation\LyraAnimInstance.h +E:\Projects\cross_platform\Source\LyraGame\Audio\LyraAudioMixEffectsSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraMode_ThirdPerson.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraComponent.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraUICameraManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Audio\LyraAudioSettings.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacterMovementComponent.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraPenetrationAvoidanceFeeler.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraHealthComponent.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacter.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraCameraMode.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraHeroComponent.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawn.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraCharacterWithAbilities.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraControllerComponent_CharacterParts.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCharacterPartTypes.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticDeveloperSettings.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticCheats.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraCosmeticAnimationTypes.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraPlatformEmulationSettings.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraBotCheats.h +E:\Projects\cross_platform\Source\LyraGame\Development\LyraDeveloperSettings.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraPickupDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraEquipmentInstance.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\AnimNotify_LyraContextEffects.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraGameplayAbility_FromEquipment.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectComponent.h +E:\Projects\cross_platform\Source\LyraGame\Equipment\LyraQuickBarComponent.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsLibrary.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraDamagePopStyle.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraDamagePopStyleNiagara.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent_MeshText.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\NumberPops\LyraNumberPopComponent_NiagaraText.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddAbilities.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddGameplayCuePath.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddInputBinding.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\LyraGlobalAbilitySystem.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddInputContextMapping.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_SplitscreenConfig.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_AddWidget.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\GameFeatureAction_WorldActionBase.h +E:\Projects\cross_platform\Source\LyraGame\GameFeatures\LyraGameFeaturePolicy.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\AsyncAction_ExperienceReady.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraBotCreationComponent.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceActionSet.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceManager.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraGameMode.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceDefinition.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraUserFacingExperienceDefinition.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraExperienceManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraWorldSettings.h +E:\Projects\cross_platform\Source\LyraGame\GameModes\LyraGameState.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraHotfixManager.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraRuntimeOptions.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputComponent.h +E:\Projects\cross_platform\Source\LyraGame\Hotfix\LyraTextHotfixConfig.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputModifiers.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraAimSensitivityData.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraPlayerMappableKeyProfile.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputConfig.h +E:\Projects\cross_platform\Source\LyraGame\Input\LyraInputUserSettings.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\IInteractionInstigator.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\IInteractableTarget.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionOption.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionQuery.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\InteractionStatics.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\LyraInteractionDurationMessage.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Abilities\GameplayAbilityTargetActor_Interact.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_GrantNearbyInteraction.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Abilities\LyraGameplayAbility_Interact.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_WaitForInteractableTargets.h +E:\Projects\cross_platform\Source\LyraGame\Interaction\Tasks\AbilityTask_WaitForInteractableTargets_SingleLineTrace.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_PickupIcon.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_QuickBarIcon.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_SetStats.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\IPickupable.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\InventoryFragment_EquippableItem.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryItemDefinition.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryItemInstance.h +E:\Projects\cross_platform\Source\LyraGame\Messages\GameplayMessageProcessor.h +E:\Projects\cross_platform\Source\LyraGame\Inventory\LyraInventoryManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraNotificationMessage.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessage.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessageReplication.h +E:\Projects\cross_platform\Source\LyraGame\Messages\LyraVerbMessageHelpers.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceSettings.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceStatSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Performance\LyraPerformanceStatTypes.h +E:\Projects\cross_platform\Source\LyraGame\Physics\PhysicalMaterialWithTags.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraCheatManager.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraDebugCameraController.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraLocalPlayer.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerBotController.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerController.h +E:\Projects\cross_platform\Source\LyraGame\Replays\AsyncAction_QueryReplays.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerState.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerSpawningManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraGameSettingRegistry.h +E:\Projects\cross_platform\Source\LyraGame\Replays\LyraReplaySubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraSettingsShared.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingAction_SafeZoneEditor.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingKeyboardInput.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_Language.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscreteDynamic_AudioOutputDevice.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_MobileFPSType.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_Resolution.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_PerfStat.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Screens\LyraSafeZoneEditor.h +E:\Projects\cross_platform\Source\LyraGame\Settings\CustomSettings\LyraSettingValueDiscrete_OverallQuality.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Widgets\LyraSettingsListEntrySetting_KeyboardInput.h +E:\Projects\cross_platform\Source\LyraGame\System\GameplayTagStack.h +E:\Projects\cross_platform\Source\LyraGame\Settings\Screens\LyraBrightnessEditor.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilityCost_ItemTagStack.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraAssetManager.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameData.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraDevelopmentStatics.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameEngine.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameSession.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraph.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraphSettings.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraReplicationGraphTypes.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraGameInstance.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraSystemStatics.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraSignificanceManager.h +E:\Projects\cross_platform\Source\LyraGame\Teams\AsyncAction_ObserveTeamColors.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamCheats.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamAgentInterface.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamInfoBase.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamPrivateInfo.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamPublicInfo.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamCreationComponent.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamStatics.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\Tests\LyraGameplayRpcRegistrationComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraGameViewportClient.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraHUD.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraActivatableWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraHUDLayout.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraJoystickWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraTaggedWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraTouchRegion.h +E:\Projects\cross_platform\Source\LyraGame\UI\Basic\MaterialProgressBar.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraBoundActionButton.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraListView.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraTabButtonBase.h +E:\Projects\cross_platform\Source\LyraGame\AbilitySystem\Abilities\LyraAbilitySimpleFailureMessage.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraWidgetFactory_Class.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraWidgetFactory.h +E:\Projects\cross_platform\Source\LyraGame\UI\Common\LyraTabListWidgetBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraActionWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraConfirmationScreen.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraButtonBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraLoadingScreenSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IActorIndicatorWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\ApplyFrontendPerfSettingsAction.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\LyraLobbyBackground.h +E:\Projects\cross_platform\Source\LyraGame\UI\Frontend\LyraFrontendStateComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorDescriptor.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\LyraIndicatorManagerComponent.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorLayer.h +E:\Projects\cross_platform\Source\LyraGame\UI\IndicatorSystem\IndicatorLibrary.h +E:\Projects\cross_platform\Source\LyraGame\UI\PerformanceStats\LyraPerfStatContainerBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\PerformanceStats\LyraPerfStatWidgetBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Subsystem\LyraUIManagerSubsystem.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\LyraReticleWidgetBase.h +E:\Projects\cross_platform\Source\LyraGame\UI\Foundation\LyraControllerDisconnectedScreen.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\InventoryFragment_ReticleConfig.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\CircumferenceMarkerWidget.h +E:\Projects\cross_platform\Source\LyraGame\Camera\LyraPlayerCameraManager.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraGameplayAbility_RangedWeapon.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraRangedWeaponInstance.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraDamageLogDebuggerComponent.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponDebugSettings.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponInstance.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponSpawner.h +E:\Projects\cross_platform\Source\LyraGame\Weapons\LyraWeaponStateComponent.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawnData.h +E:\Projects\cross_platform\Source\LyraGame\Character\LyraPawnExtensionComponent.h +E:\Projects\cross_platform\Source\LyraGame\Cosmetics\LyraPawnComponent_CharacterParts.h +E:\Projects\cross_platform\Source\LyraGame\Feedback\ContextEffects\LyraContextEffectsInterface.h +E:\Projects\cross_platform\Source\LyraGame\Player\LyraPlayerStart.h +E:\Projects\cross_platform\Source\LyraGame\Settings\LyraSettingsLocal.h +E:\Projects\cross_platform\Source\LyraGame\System\LyraActorUtilities.h +E:\Projects\cross_platform\Source\LyraGame\Teams\AsyncAction_ObserveTeam.h +E:\Projects\cross_platform\Source\LyraGame\Teams\LyraTeamDisplayAsset.h +E:\Projects\cross_platform\Source\LyraGame\Tests\LyraTestControllerBootTest.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraSettingScreen.h +E:\Projects\cross_platform\Source\LyraGame\UI\LyraSimulatedInputWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Subsystem\LyraUIMessaging.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\LyraWeaponUserInterface.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\HitMarkerConfirmationWidget.h +E:\Projects\cross_platform\Source\LyraGame\UI\Weapons\SCircumferenceMarkerWidget.h diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.Cpp20.h new file mode 100644 index 00000000..40de22a7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.Cpp20.h @@ -0,0 +1,98 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Core.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.RTTI.Cpp20.h new file mode 100644 index 00000000..a4a8021b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.RTTI.Cpp20.h @@ -0,0 +1,98 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Core.RTTI.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.cpp new file mode 100644 index 00000000..8487b7de --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Core.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h new file mode 100644 index 00000000..48607822 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Core/Public/CoreSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.Cpp20.h" +#include "Runtime/Core/Public/CoreSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h.obj.rsp new file mode 100644 index 00000000..fdc4fee7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.Cpp20.h.obj.rsp @@ -0,0 +1,58 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.Cpp20.cpp" +/I "." +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Core.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.cpp new file mode 100644 index 00000000..5d2a713c --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Core.RTTI.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h new file mode 100644 index 00000000..31e28fd6 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Core/Public/CoreSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedDefinitions.Core.RTTI.Cpp20.h" +#include "Runtime/Core/Public/CoreSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h.obj.rsp new file mode 100644 index 00000000..6db37426 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Core/SharedPCH.Core.RTTI.Cpp20.h.obj.rsp @@ -0,0 +1,58 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.RTTI.Cpp20.cpp" +/I "." +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Core.RTTI.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.RTTI.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.RTTI.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.RTTI.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Core\SharedPCH.Core.RTTI.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h new file mode 100644 index 00000000..b5b9abd5 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h @@ -0,0 +1,101 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for CoreUObject.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Cpp20.h new file mode 100644 index 00000000..08fc6dc0 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Cpp20.h @@ -0,0 +1,101 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for CoreUObject.RTTI.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp new file mode 100644 index 00000000..e7e6a04b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.CoreUObject.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h new file mode 100644 index 00000000..27f46998 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h" +#include "Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp new file mode 100644 index 00000000..311b1f3b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp @@ -0,0 +1,64 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.CoreUObject.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.cpp new file mode 100644 index 00000000..491fefc8 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.CoreUObject.RTTI.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h new file mode 100644 index 00000000..81e4a57f --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Cpp20.h" +#include "Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h.obj.rsp new file mode 100644 index 00000000..b85f6841 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/CoreUObject/SharedPCH.CoreUObject.RTTI.Cpp20.h.obj.rsp @@ -0,0 +1,64 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.RTTI.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.CoreUObject.RTTI.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.RTTI.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.RTTI.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.RTTI.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\CoreUObject\SharedPCH.CoreUObject.RTTI.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Cpp20.h new file mode 100644 index 00000000..9934fda8 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Cpp20.h @@ -0,0 +1,290 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 1 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define FIELDNOTIFICATION_API DLLIMPORT +#define NETCORE_API DLLIMPORT +#define NETCOMMON_API DLLIMPORT +#define IMAGECORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define JSONUTILITIES_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define SLATE_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define MESSAGING_API DLLIMPORT +#define MESSAGINGCOMMON_API DLLIMPORT +#define RENDERCORE_API DLLIMPORT +#define OPENGLDRV_API DLLIMPORT +#define ANALYTICSET_API DLLIMPORT +#define ANALYTICS_API DLLIMPORT +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API DLLIMPORT +#define ASSETREGISTRY_API DLLIMPORT +#define ENGINEMESSAGES_API DLLIMPORT +#define ENGINESETTINGS_API DLLIMPORT +#define SYNTHBENCHMARK_API DLLIMPORT +#define GAMEPLAYTAGS_API DLLIMPORT +#define PACKETHANDLER_API DLLIMPORT +#define RELIABILITYHANDLERCOMPONENT_API DLLIMPORT +#define AUDIOPLATFORMCONFIGURATION_API DLLIMPORT +#define MESHDESCRIPTION_API DLLIMPORT +#define STATICMESHDESCRIPTION_API DLLIMPORT +#define SKELETALMESHDESCRIPTION_API DLLIMPORT +#define ANIMATIONCORE_API DLLIMPORT +#define PAKFILE_API DLLIMPORT +#define RSA_API DLLIMPORT +#define NETWORKREPLAYSTREAMING_API DLLIMPORT +#define PHYSICSCORE_API DLLIMPORT +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 1 +#define CHAOSCORE_API DLLIMPORT +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API DLLIMPORT +#define VORONOI_API DLLIMPORT +#define GEOMETRYCORE_API DLLIMPORT +#define CHAOSVDRUNTIME_API DLLIMPORT +#define SIGNALPROCESSING_API DLLIMPORT +#define AUDIOEXTENSIONS_API DLLIMPORT +#define AUDIOMIXERCORE_API DLLIMPORT +#define AUDIOMIXER_API DLLIMPORT +#define TARGETPLATFORM_API DLLIMPORT +#define TEXTUREFORMAT_API DLLIMPORT +#define DESKTOPPLATFORM_API DLLIMPORT +#define AUDIOLINKENGINE_API DLLIMPORT +#define AUDIOLINKCORE_API DLLIMPORT +#define COOKONTHEFLY_API DLLIMPORT +#define NETWORKING_API DLLIMPORT +#define TEXTUREBUILDUTILITIES_API DLLIMPORT +#define HORDE_API DLLIMPORT +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API DLLIMPORT +#define IRISCORE_API DLLIMPORT +#define MOVIESCENECAPTURE_API DLLIMPORT +#define RENDERER_API DLLIMPORT +#define TYPEDELEMENTFRAMEWORK_API DLLIMPORT +#define TYPEDELEMENTRUNTIME_API DLLIMPORT +#define ANIMATIONDATACONTROLLER_API DLLIMPORT +#define ANIMATIONBLUEPRINTEDITOR_API DLLIMPORT +#define KISMET_API DLLIMPORT +#define PERSONA_API DLLIMPORT +#define SKELETONEDITOR_API DLLIMPORT +#define ANIMATIONWIDGETS_API DLLIMPORT +#define TOOLWIDGETS_API DLLIMPORT +#define TOOLMENUS_API DLLIMPORT +#define ANIMATIONEDITOR_API DLLIMPORT +#define ADVANCEDPREVIEWSCENE_API DLLIMPORT +#define PROPERTYEDITOR_API DLLIMPORT +#define EDITORCONFIG_API DLLIMPORT +#define EDITORFRAMEWORK_API DLLIMPORT +#define EDITORSUBSYSTEM_API DLLIMPORT +#define INTERACTIVETOOLSFRAMEWORK_API DLLIMPORT +#define WITH_RECAST 1 +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define UNREALED_API DLLIMPORT +#define ASSETTAGSEDITOR_API DLLIMPORT +#define COLLECTIONMANAGER_API DLLIMPORT +#define UE_CONTENTBROWSER_NEW_STYLE 0 +#define CONTENTBROWSER_API DLLIMPORT +#define ASSETTOOLS_API DLLIMPORT +#define ASSETDEFINITION_API DLLIMPORT +#define MERGE_API DLLIMPORT +#define CONTENTBROWSERDATA_API DLLIMPORT +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 1 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 1 +#define PROJECTS_API DLLIMPORT +#define MESHUTILITIES_API DLLIMPORT +#define MESHMERGEUTILITIES_API DLLIMPORT +#define MESHREDUCTIONINTERFACE_API DLLIMPORT +#define RAWMESH_API DLLIMPORT +#define MATERIALUTILITIES_API DLLIMPORT +#define KISMETCOMPILER_API DLLIMPORT +#define GAMEPLAYTASKS_API DLLIMPORT +#define CLASSVIEWER_API DLLIMPORT +#define DIRECTORYWATCHER_API DLLIMPORT +#define DOCUMENTATION_API DLLIMPORT +#define MAINFRAME_API DLLIMPORT +#define SANDBOXFILE_API DLLIMPORT +#define SOURCE_CONTROL_WITH_SLATE 1 +#define SOURCECONTROL_API DLLIMPORT +#define UNCONTROLLEDCHANGELISTS_API DLLIMPORT +#define UNREALEDMESSAGES_API DLLIMPORT +#define BLUEPRINTGRAPH_API DLLIMPORT +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define CURL_ENABLE_NO_TIMEOUTS_OPTION 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API DLLIMPORT +#define FUNCTIONALTESTING_API DLLIMPORT +#define AUTOMATIONCONTROLLER_API DLLIMPORT +#define AUTOMATIONTEST_API DLLIMPORT +#define LOCALIZATION_API DLLIMPORT +#define WITH_SNDFILE_IO 1 +#define AUDIOEDITOR_API DLLIMPORT +#define UELIBSAMPLERATE_API DLLIMPORT +#define LEVELEDITOR_API DLLIMPORT +#define COMMONMENUEXTENSIONS_API DLLIMPORT +#define SETTINGS_API DLLIMPORT +#define VREDITOR_API DLLIMPORT +#define VIEWPORTINTERACTION_API DLLIMPORT +#define HEADMOUNTEDDISPLAY_API DLLIMPORT +#define LANDSCAPE_API DLLIMPORT +#define DETAILCUSTOMIZATIONS_API DLLIMPORT +#define GRAPHEDITOR_API DLLIMPORT +#define STRUCTVIEWER_API DLLIMPORT +#define NETWORKFILESYSTEM_API DLLIMPORT +#define UMG_API DLLIMPORT +#define MOVIESCENE_API DLLIMPORT +#define TIMEMANAGEMENT_API DLLIMPORT +#define UNIVERSALOBJECTLOCATOR_API DLLIMPORT +#define MOVIESCENETRACKS_API DLLIMPORT +#define CONSTRAINTS_API DLLIMPORT +#define PROPERTYPATH_API DLLIMPORT +#define NAVIGATIONSYSTEM_API DLLIMPORT +#define GEOMETRYCOLLECTIONENGINE_API DLLIMPORT +#define FIELDSYSTEMENGINE_API DLLIMPORT +#define CHAOSSOLVERENGINE_API DLLIMPORT +#define DATAFLOWCORE_API DLLIMPORT +#define DATAFLOWENGINE_API DLLIMPORT +#define DATAFLOWSIMULATION_API DLLIMPORT +#define MESHBUILDER_API DLLIMPORT +#define MESHUTILITIESCOMMON_API DLLIMPORT +#define MATERIALSHADERQUALITYSETTINGS_API DLLIMPORT +#define TOOLMENUSEDITOR_API DLLIMPORT +#define STATUSBAR_API DLLIMPORT +#define INTERCHANGECORE_API DLLIMPORT +#define INTERCHANGEENGINE_API DLLIMPORT +#define DEVELOPERTOOLSETTINGS_API DLLIMPORT +#define SUBOBJECTDATAINTERFACE_API DLLIMPORT +#define SUBOBJECTEDITOR_API DLLIMPORT +#define PHYSICSUTILITIES_API DLLIMPORT +#define WIDGETREGISTRATION_API DLLIMPORT +#define AUDIOMIXERXAUDIO2_API DLLIMPORT +#define ACTORPICKERMODE_API DLLIMPORT +#define SCENEDEPTHPICKERMODE_API DLLIMPORT +#define ANIMATIONEDITMODE_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..d0f243bd --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h @@ -0,0 +1,292 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.Project.ValApi.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 1 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define FIELDNOTIFICATION_API DLLIMPORT +#define NETCORE_API DLLIMPORT +#define NETCOMMON_API DLLIMPORT +#define IMAGECORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define JSONUTILITIES_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define SLATE_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define MESSAGING_API DLLIMPORT +#define MESSAGINGCOMMON_API DLLIMPORT +#define RENDERCORE_API DLLIMPORT +#define OPENGLDRV_API DLLIMPORT +#define ANALYTICSET_API DLLIMPORT +#define ANALYTICS_API DLLIMPORT +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API DLLIMPORT +#define ASSETREGISTRY_API DLLIMPORT +#define ENGINEMESSAGES_API DLLIMPORT +#define ENGINESETTINGS_API DLLIMPORT +#define SYNTHBENCHMARK_API DLLIMPORT +#define GAMEPLAYTAGS_API DLLIMPORT +#define PACKETHANDLER_API DLLIMPORT +#define RELIABILITYHANDLERCOMPONENT_API DLLIMPORT +#define AUDIOPLATFORMCONFIGURATION_API DLLIMPORT +#define MESHDESCRIPTION_API DLLIMPORT +#define STATICMESHDESCRIPTION_API DLLIMPORT +#define SKELETALMESHDESCRIPTION_API DLLIMPORT +#define ANIMATIONCORE_API DLLIMPORT +#define PAKFILE_API DLLIMPORT +#define RSA_API DLLIMPORT +#define NETWORKREPLAYSTREAMING_API DLLIMPORT +#define PHYSICSCORE_API DLLIMPORT +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 1 +#define CHAOSCORE_API DLLIMPORT +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API DLLIMPORT +#define VORONOI_API DLLIMPORT +#define GEOMETRYCORE_API DLLIMPORT +#define CHAOSVDRUNTIME_API DLLIMPORT +#define SIGNALPROCESSING_API DLLIMPORT +#define AUDIOEXTENSIONS_API DLLIMPORT +#define AUDIOMIXERCORE_API DLLIMPORT +#define AUDIOMIXER_API DLLIMPORT +#define TARGETPLATFORM_API DLLIMPORT +#define TEXTUREFORMAT_API DLLIMPORT +#define DESKTOPPLATFORM_API DLLIMPORT +#define AUDIOLINKENGINE_API DLLIMPORT +#define AUDIOLINKCORE_API DLLIMPORT +#define COOKONTHEFLY_API DLLIMPORT +#define NETWORKING_API DLLIMPORT +#define TEXTUREBUILDUTILITIES_API DLLIMPORT +#define HORDE_API DLLIMPORT +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API DLLIMPORT +#define IRISCORE_API DLLIMPORT +#define MOVIESCENECAPTURE_API DLLIMPORT +#define RENDERER_API DLLIMPORT +#define TYPEDELEMENTFRAMEWORK_API DLLIMPORT +#define TYPEDELEMENTRUNTIME_API DLLIMPORT +#define ANIMATIONDATACONTROLLER_API DLLIMPORT +#define ANIMATIONBLUEPRINTEDITOR_API DLLIMPORT +#define KISMET_API DLLIMPORT +#define PERSONA_API DLLIMPORT +#define SKELETONEDITOR_API DLLIMPORT +#define ANIMATIONWIDGETS_API DLLIMPORT +#define TOOLWIDGETS_API DLLIMPORT +#define TOOLMENUS_API DLLIMPORT +#define ANIMATIONEDITOR_API DLLIMPORT +#define ADVANCEDPREVIEWSCENE_API DLLIMPORT +#define PROPERTYEDITOR_API DLLIMPORT +#define EDITORCONFIG_API DLLIMPORT +#define EDITORFRAMEWORK_API DLLIMPORT +#define EDITORSUBSYSTEM_API DLLIMPORT +#define INTERACTIVETOOLSFRAMEWORK_API DLLIMPORT +#define WITH_RECAST 1 +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define UNREALED_API DLLIMPORT +#define ASSETTAGSEDITOR_API DLLIMPORT +#define COLLECTIONMANAGER_API DLLIMPORT +#define UE_CONTENTBROWSER_NEW_STYLE 0 +#define CONTENTBROWSER_API DLLIMPORT +#define ASSETTOOLS_API DLLIMPORT +#define ASSETDEFINITION_API DLLIMPORT +#define MERGE_API DLLIMPORT +#define CONTENTBROWSERDATA_API DLLIMPORT +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 1 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 1 +#define PROJECTS_API DLLIMPORT +#define MESHUTILITIES_API DLLIMPORT +#define MESHMERGEUTILITIES_API DLLIMPORT +#define MESHREDUCTIONINTERFACE_API DLLIMPORT +#define RAWMESH_API DLLIMPORT +#define MATERIALUTILITIES_API DLLIMPORT +#define KISMETCOMPILER_API DLLIMPORT +#define GAMEPLAYTASKS_API DLLIMPORT +#define CLASSVIEWER_API DLLIMPORT +#define DIRECTORYWATCHER_API DLLIMPORT +#define DOCUMENTATION_API DLLIMPORT +#define MAINFRAME_API DLLIMPORT +#define SANDBOXFILE_API DLLIMPORT +#define SOURCE_CONTROL_WITH_SLATE 1 +#define SOURCECONTROL_API DLLIMPORT +#define UNCONTROLLEDCHANGELISTS_API DLLIMPORT +#define UNREALEDMESSAGES_API DLLIMPORT +#define BLUEPRINTGRAPH_API DLLIMPORT +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define CURL_ENABLE_NO_TIMEOUTS_OPTION 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API DLLIMPORT +#define FUNCTIONALTESTING_API DLLIMPORT +#define AUTOMATIONCONTROLLER_API DLLIMPORT +#define AUTOMATIONTEST_API DLLIMPORT +#define LOCALIZATION_API DLLIMPORT +#define WITH_SNDFILE_IO 1 +#define AUDIOEDITOR_API DLLIMPORT +#define UELIBSAMPLERATE_API DLLIMPORT +#define LEVELEDITOR_API DLLIMPORT +#define COMMONMENUEXTENSIONS_API DLLIMPORT +#define SETTINGS_API DLLIMPORT +#define VREDITOR_API DLLIMPORT +#define VIEWPORTINTERACTION_API DLLIMPORT +#define HEADMOUNTEDDISPLAY_API DLLIMPORT +#define LANDSCAPE_API DLLIMPORT +#define DETAILCUSTOMIZATIONS_API DLLIMPORT +#define GRAPHEDITOR_API DLLIMPORT +#define STRUCTVIEWER_API DLLIMPORT +#define NETWORKFILESYSTEM_API DLLIMPORT +#define UMG_API DLLIMPORT +#define MOVIESCENE_API DLLIMPORT +#define TIMEMANAGEMENT_API DLLIMPORT +#define UNIVERSALOBJECTLOCATOR_API DLLIMPORT +#define MOVIESCENETRACKS_API DLLIMPORT +#define CONSTRAINTS_API DLLIMPORT +#define PROPERTYPATH_API DLLIMPORT +#define NAVIGATIONSYSTEM_API DLLIMPORT +#define GEOMETRYCOLLECTIONENGINE_API DLLIMPORT +#define FIELDSYSTEMENGINE_API DLLIMPORT +#define CHAOSSOLVERENGINE_API DLLIMPORT +#define DATAFLOWCORE_API DLLIMPORT +#define DATAFLOWENGINE_API DLLIMPORT +#define DATAFLOWSIMULATION_API DLLIMPORT +#define MESHBUILDER_API DLLIMPORT +#define MESHUTILITIESCOMMON_API DLLIMPORT +#define MATERIALSHADERQUALITYSETTINGS_API DLLIMPORT +#define TOOLMENUSEDITOR_API DLLIMPORT +#define STATUSBAR_API DLLIMPORT +#define INTERCHANGECORE_API DLLIMPORT +#define INTERCHANGEENGINE_API DLLIMPORT +#define DEVELOPERTOOLSETTINGS_API DLLIMPORT +#define SUBOBJECTDATAINTERFACE_API DLLIMPORT +#define SUBOBJECTEDITOR_API DLLIMPORT +#define PHYSICSUTILITIES_API DLLIMPORT +#define WIDGETREGISTRATION_API DLLIMPORT +#define AUDIOMIXERXAUDIO2_API DLLIMPORT +#define ACTORPICKERMODE_API DLLIMPORT +#define SCENEDEPTHPICKERMODE_API DLLIMPORT +#define ANIMATIONEDITMODE_API DLLIMPORT +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_INTERNAL_API 1 diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.cpp new file mode 100644 index 00000000..9959e13a --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h new file mode 100644 index 00000000..93cd2643 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp new file mode 100644 index 00000000..2ae0fc9a --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp @@ -0,0 +1,345 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp new file mode 100644 index 00000000..362732e7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.Project.ValApi.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..748e16a2 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp new file mode 100644 index 00000000..2440d6f6 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp @@ -0,0 +1,345 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Makefile.bin b/Intermediate/Build/Win64/x64/LyraEditor/Development/Makefile.bin new file mode 100644 index 00000000..ae5759cf Binary files /dev/null and b/Intermediate/Build/Win64/x64/LyraEditor/Development/Makefile.bin differ diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedDefinitions.Slate.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedDefinitions.Slate.Cpp20.h new file mode 100644 index 00000000..79260f96 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedDefinitions.Slate.Cpp20.h @@ -0,0 +1,121 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Slate.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define SLATE_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define IMAGECORE_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.cpp new file mode 100644 index 00000000..a9793e35 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Slate.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h new file mode 100644 index 00000000..3b5d3354 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Slate/Public/SlateSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedDefinitions.Slate.Cpp20.h" +#include "Runtime/Slate/Public/SlateSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp new file mode 100644 index 00000000..621e88dd --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp @@ -0,0 +1,82 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Slate\SharedPCH.Slate.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "Runtime\ImageWrapper\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Slate.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Slate\SharedPCH.Slate.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Slate\SharedPCH.Slate.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Slate\SharedPCH.Slate.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\Slate\SharedPCH.Slate.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/TargetMetadata.dat b/Intermediate/Build/Win64/x64/LyraEditor/Development/TargetMetadata.dat new file mode 100644 index 00000000..4d91e392 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/TargetMetadata.dat @@ -0,0 +1 @@ +E:\Projects\cross_platform\Binaries\Win64\UnrealEditor.modulesLyraGameUnrealEditor-LyraGame.dllLyraEditorUnrealEditor-LyraEditor.dllE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor.modulesCommonLoadingScreenUnrealEditor-CommonLoadingScreen.dllCommonStartupLoadingScreenUnrealEditor-CommonStartupLoadingScreen.dllE:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor.modulesModularGameplayActorsUnrealEditor-ModularGameplayActors.dllE:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor.modulesGameSettingsUnrealEditor-GameSettings.dllE:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor.modulesCommonUserUnrealEditor-CommonUser.dllE:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor.modulesCommonGameUnrealEditor-CommonGame.dllE:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor.modulesGameSubtitlesUnrealEditor-GameSubtitles.dllE:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor.modulesPocketWorldsUnrealEditor-PocketWorlds.dllE:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor.modulesUIExtensionUnrealEditor-UIExtension.dllE:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor.modulesAsyncMixinUnrealEditor-AsyncMixin.dllE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor.modulesGameplayMessageRuntimeUnrealEditor-GameplayMessageRuntime.dllGameplayMessageNodesUnrealEditor-GameplayMessageNodes.dllE:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor.modulesShooterCoreRuntimeUnrealEditor-ShooterCoreRuntime.dllE:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor.modulesTopDownArenaRuntimeUnrealEditor-TopDownArenaRuntime.dllE:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor.modulesShooterTestsRuntimeUnrealEditor-ShooterTestsRuntime.dllE:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor.modulesLyraExtToolUnrealEditor-LyraExtTool.dllE:\Projects\cross_platform\LyraStarterGame.uprojectSDKNot Applicablex64RemoteSessionBackChannelAppleImageUtilsMediaIOFrameworkOpenColorIOXRBaseActorPaletteAESGCMHandlerComponentPlatformCryptoDTLSHandlerComponentGameplayAbilitiesGameplayTagsEditorNiagaraPythonScriptPluginContentBrowserFileDataSourceDataRegistryGauntletCommonLoadingScreenCommonConversationGameFeaturesModularGameplayAssetReferenceRestrictionsDataValidationPluginUtilsModularGameplayActorsEnhancedInputWinDualShockVolumetricsBlueprintMaterialTextureNodesLandmassReplicationGraphSignificanceManagerWaterGeometryProcessingCommonUIControlFlowsGameSettingsCommonUserOnlineSubsystemOnlineBaseOnlineSubsystemUtilsOnlineServicesCommonGameOnlineFrameworkGameSubtitlesPocketWorldsUIExtensionAsyncMixinMetasoundAudioWidgetsAudioSynesthesiaWaveTableOnlineSubsystemEOSEOSSharedEOSVoiceChatSocketSubsystemEOSEOSOverlayInputProviderOnlineServicesEOSOnlineServicesEOSGSOnlineServicesNullOnlineServicesOSSAdapterOnlineSubsystemSteamSteamSharedGameplayMessageRouterSteamSocketsModelingToolsEditorModeMeshModelingToolsetProxyLODPluginPlanarCutMeshModelingToolsetExpMeshLODToolsetGeometryFlowEditorScriptingUtilitiesToolPresetsStylusInputGeometryScriptingAnimationLocomotionLibraryAudioModulationAudioInsightsAudioGameplayVolumeAudioGameplaySoundUtilitiesAnimationWarpingAnimationModifierLibraryMovieRenderPipelineActorLayerUtilitiesConsoleVariablesConcertSyncClientConcertSyncCoreConcertMainSQLiteCoreConcertSharedSlateLevelSequenceEditorSequencerScriptingChaosClothAssetChaosClothChaosCachingTakesAudioCaptureGeometryCacheDataflowBaseCharacterFXEditorProceduralMeshComponentMoviePipelineMaskRenderPassAssetSearchStudioTelemetryGameplayInsightsSpatializationShooterCoreLyraExampleContentShooterMapsTopDownArenaFunctionalTestingEditorShooterExplorerShooterTestsCQTestCQTestEnhancedInputGameplayInteractionsStateTreePropertyAccessEditorSmartObjectsTargetingSystemWorldConditionsPropertyBindingUtilsContextualAnimationMotionWarpingIKRigControlRigRigVMFullBodyIKNavCorridorGameplayStateTreeGameplayBehaviorSmartObjectsGameplayBehaviorsRuntimeTestsLyraExtToolPaper2DAISupportEnvironmentQueryEditorACLPluginAnimationDataBlendSpaceMotionAnalysisControlRigModulesControlRigSplineBridgeMetaHumanSDKHairStrandsDeformerGraphComputeFrameworkRigLogicCameraShakePreviewerGameplayCamerasTemplateSequenceEngineCamerasChaosVDCmdLinkServerOodleNetworkAnimationSharingCLionSourceCodeAccessCodeLiteSourceCodeAccessDumpGPUServicesGitSourceControlKDevelopSourceCodeAccessN10XSourceCodeAccessNullSourceCodeAccessPerforceSourceControlPixWinPluginPlasticSourceControlPropertyAccessNodeRenderDocPluginRiderSourceCodeAccessSubversionSourceControlTextureFormatOodleUObjectPluginVisualStudioCodeSourceCodeAccessVisualStudioSourceCodeAccessXCodeSourceCodeAccessAssetManagerEditorContentBrowserAssetDataSourceBlueprintHeaderViewChangelistReviewColorGradingObjectMixerContentBrowserClassDataSourceCryptoKeysCurveEditorToolsEditorDebugToolsEngineAssetDefinitionsFacialAnimationGeometryModePortableObjectFileDataSourceMacGraphicsSwitchingMaterialAnalyzerMobileLauncherProfileWizardLightMixerPluginBrowserSequencerAnimToolsSpeedTreeImporterUMGWidgetPreviewUVEditorWorldPartitionHLODUtilitiesDatasmithContentVariantManagerContentGLTFExporterInterchangeUSDCoreLiveLinkVariantManagerInterchangeAssetsAdvancedRenamerSkeletalMeshModelingToolsAutomationUtilsChaosEditorGeometryCollectionPluginChaosSolverPluginFractureChaosNiagaraChaosUserDataPTCharacterAIEditorDataStorageEditorPerformanceEditorTelemetryLocalizableMessageNFORDenoiseSkeletalReductionFabFastBuildControllerNiagaraSimCachingAlembicImporterInterchangeEditorAndroidMediaAvfMediaImgMediaMediaPlayerEditorMediaCompositingMediaPlateHoldoutCompositeWmfMediaMeshPaintingTcpMessagingUdpMessagingActorSequenceNNEDenoiserNNERuntimeORTOnlineSubsystemGooglePlayAndroidPermissionOnlineSubsystemIOSOnlineSubsystemNullLauncherChunkInstallerRenderGraphInsightsAndroidDeviceProfileSelectorAndroidFileServerAndroidMoviePlayerAppleMoviePlayerArchVisCharacterAssetTagsCableComponentChunkDownloaderCustomMeshComponentExampleDeviceProfileSelectorGoogleCloudMessagingGooglePADInputDebuggingIOSDeviceProfileSelectorLinuxDeviceProfileSelectorLocationServicesBPLibraryMobilePatchingUtilsMsQuicSoundFieldsSynthesisWebMMoviePlayerWebMMediaWindowsDeviceProfileSelectorWindowsMoviePlayerXInputDeviceInterchangeTestsTraceUtilitiesUbaControllerWorldMetricsXGEControllerE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor.exeExecutableE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Cmd.exeExecutableE:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraGame.dllDynamicLibraryE:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraGame.pdbSymbolFileE:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraEditor.dllDynamicLibraryE:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraEditor.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Experimental\RemoteSession\Binaries\Win64\UnrealEditor-RemoteSession.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\RemoteSession\Binaries\Win64\UnrealEditor-RemoteSessionEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\BackChannel\Binaries\Win64\UnrealEditor-BackChannel.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UnrealEditor-AppleImageUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UnrealEditor-AppleImageUtilsBlueprintSupport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaIOFramework\Binaries\Win64\UnrealEditor-MediaIOCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaIOFramework\Binaries\Win64\UnrealEditor-MediaIOEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaIOFramework\Binaries\Win64\UnrealEditor-GPUTextureTransfer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Compositing\OpenColorIO\Binaries\Win64\UnrealEditor-OpenColorIO.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Compositing\OpenColorIO\Binaries\Win64\UnrealEditor-OpenColorIOEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\XRBase\Binaries\Win64\UnrealEditor-XRBase.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\XRBase\Binaries\Win64\UnrealEditor-XRBaseEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ActorPalette\Binaries\Win64\UnrealEditor-ActorPalette.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\AESGCMHandlerComponent\Binaries\Win64\UnrealEditor-AESGCMHandlerComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCrypto.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCryptoTypes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor-PlatformCryptoOpenSSL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Binaries\Win64\UnrealEditor-DTLSHandlerComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayAbilities\Binaries\Win64\UnrealEditor-GameplayAbilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayAbilities\Binaries\Win64\UnrealEditor-GameplayAbilitiesEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\GameplayTagsEditor\Binaries\Win64\UnrealEditor-GameplayTagsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-Niagara.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraAnimNotifies.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraShader.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraVertexFactories.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraBlueprintNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor-NiagaraEditorWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PythonScriptPlugin\Binaries\Win64\UnrealEditor-PythonScriptPluginPreload.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PythonScriptPlugin\Binaries\Win64\UnrealEditor-PythonScriptPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserFileDataSource\Binaries\Win64\UnrealEditor-ContentBrowserFileDataSource.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\DataRegistry\Binaries\Win64\UnrealEditor-DataRegistry.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\DataRegistry\Binaries\Win64\UnrealEditor-DataRegistryEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Gauntlet\Binaries\Win64\UnrealEditor-Gauntlet.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonLoadingScreen.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonLoadingScreen.pdbSymbolFileE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonStartupLoadingScreen.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonStartupLoadingScreen.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Experimental\CommonConversation\Binaries\Win64\UnrealEditor-CommonConversationRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\CommonConversation\Binaries\Win64\UnrealEditor-CommonConversationGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\CommonConversation\Binaries\Win64\UnrealEditor-CommonConversationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameFeatures\Binaries\Win64\UnrealEditor-GameFeatures.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameFeatures\Binaries\Win64\UnrealEditor-GameFeaturesEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ModularGameplay\Binaries\Win64\UnrealEditor-ModularGameplay.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\AssetReferenceRestrictions\Binaries\Win64\UnrealEditor-AssetReferenceRestrictions.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\DataValidation\Binaries\Win64\UnrealEditor-DataValidation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\PluginUtils\Binaries\Win64\UnrealEditor-PluginUtils.dllDynamicLibraryE:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor-ModularGameplayActors.dllDynamicLibraryE:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor-ModularGameplayActors.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-EnhancedInput.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-InputBlueprintNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor-InputEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\WinDualShock\Binaries\Win64\UnrealEditor-WinDualShock.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintMaterialTextureNodes\Binaries\Win64\UnrealEditor-BlueprintMaterialTextureNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Landmass\Binaries\Win64\UnrealEditor-Landmass.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Landmass\Binaries\Win64\UnrealEditor-LandmassEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ReplicationGraph\Binaries\Win64\UnrealEditor-ReplicationGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SignificanceManager\Binaries\Win64\UnrealEditor-SignificanceManager.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Water\Binaries\Win64\UnrealEditor-Water.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Water\Binaries\Win64\UnrealEditor-WaterEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor-GeometryAlgorithms.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor-DynamicMesh.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor-MeshFileUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\CommonUI\Binaries\Win64\UnrealEditor-CommonUI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\CommonUI\Binaries\Win64\UnrealEditor-CommonUIEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\CommonUI\Binaries\Win64\UnrealEditor-CommonInput.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ControlFlows\Binaries\Win64\UnrealEditor-ControlFlows.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor-GameSettings.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor-GameSettings.pdbSymbolFileE:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor-CommonUser.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor-CommonUser.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystem\Binaries\Win64\UnrealEditor-OnlineSubsystem.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineBase\Binaries\Win64\UnrealEditor-OnlineBase.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UnrealEditor-OnlineSubsystemUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UnrealEditor-OnlineBlueprintSupport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor-OnlineServicesCommonEngineUtils.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor-CommonGame.dllDynamicLibraryE:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor-CommonGame.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-Qos.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-Party.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-Lobby.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-PatchCheck.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-Hotfix.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-Rejoin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-PlayTimeLimit.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor-LoginFlow.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor-GameSubtitles.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor-GameSubtitles.pdbSymbolFileE:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor-PocketWorlds.dllDynamicLibraryE:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor-PocketWorlds.pdbSymbolFileE:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor-UIExtension.dllDynamicLibraryE:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor-UIExtension.pdbSymbolFileE:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor-AsyncMixin.dllDynamicLibraryE:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor-AsyncMixin.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundGraphCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundGenerator.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundFrontend.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundStandardNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEngineTest.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor-MetasoundEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioWidgets\Binaries\Win64\UnrealEditor-AudioWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioWidgets\Binaries\Win64\UnrealEditor-AudioWidgetsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesiaCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesia.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor-AudioSynesthesiaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WaveTable\Binaries\Win64\UnrealEditor-WaveTable.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WaveTable\Binaries\Win64\UnrealEditor-WaveTableEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemEOS\Binaries\Win64\UnrealEditor-OnlineSubsystemEOS.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemEOS\Binaries\Win64\UnrealEditor-OnlineSubsystemEOSPlus.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\EOSShared\Binaries\Win64\UnrealEditor-EOSShared.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\VoiceChat\EOSVoiceChat\Binaries\Win64\UnrealEditor-EOSVoiceChat.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\SocketSubsystemEOS\Binaries\Win64\UnrealEditor-SocketSubsystemEOS.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOS\Binaries\Win64\UnrealEditor-OnlineServicesEOS.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOSGS\Binaries\Win64\UnrealEditor-OnlineServicesEOSGS.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesNull\Binaries\Win64\UnrealEditor-OnlineServicesNull.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesOSSAdapter\Binaries\Win64\UnrealEditor-OnlineServicesOSSAdapter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemSteam\Binaries\Win64\UnrealEditor-OnlineSubsystemSteam.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamShared\Binaries\Win64\UnrealEditor-SteamShared.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageRuntime.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageRuntime.pdbSymbolFileE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageNodes.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageNodes.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamSockets\Binaries\Win64\UnrealEditor-SteamSockets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ModelingToolsEditorMode\Binaries\Win64\UnrealEditor-ModelingToolsEditorMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-MeshModelingTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-MeshModelingToolsEditorOnly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingComponents.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingComponentsEditorOnly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingOperators.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor-ModelingOperatorsEditorOnly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ProxyLODPlugin\Binaries\Win64\UnrealEditor-ProxyLODMeshReduction.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\PlanarCutPlugin\Binaries\Win64\UnrealEditor-PlanarCut.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-MeshModelingToolsExp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-MeshModelingToolsEditorOnlyExp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-GeometryProcessingAdapters.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-ModelingEditorUI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-ModelingUI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor-SkeletalMeshModifiers.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\MeshLODToolset\Binaries\Win64\UnrealEditor-MeshLODToolset.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowMeshProcessing.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor-GeometryFlowMeshProcessingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\EditorScriptingUtilities\Binaries\Win64\UnrealEditor-EditorScriptingUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ToolPresets\Binaries\Win64\UnrealEditor-ToolPresetAsset.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ToolPresets\Binaries\Win64\UnrealEditor-ToolPresetEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\StylusInput\Binaries\Win64\UnrealEditor-StylusInput.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\StylusInput\Binaries\Win64\UnrealEditor-StylusInputDebugWidget.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryScripting\Binaries\Win64\UnrealEditor-GeometryScriptingCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryScripting\Binaries\Win64\UnrealEditor-GeometryScriptingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationLocomotionLibrary\Binaries\Win64\UnrealEditor-AnimationLocomotionLibraryRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationLocomotionLibrary\Binaries\Win64\UnrealEditor-AnimationLocomotionLibraryEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioModulation\Binaries\Win64\UnrealEditor-AudioModulation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioModulation\Binaries\Win64\UnrealEditor-AudioModulationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioInsights\Binaries\Win64\UnrealEditor-AudioInsights.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioInsights\Binaries\Win64\UnrealEditor-AudioInsightsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioGameplayVolume\Binaries\Win64\UnrealEditor-AudioGameplayVolume.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioGameplayVolume\Binaries\Win64\UnrealEditor-AudioGameplayVolumeEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioGameplay\Binaries\Win64\UnrealEditor-AudioGameplay.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AudioGameplay\Binaries\Win64\UnrealEditor-AudioGameplayTests.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundUtilities\Binaries\Win64\UnrealEditor-SoundUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundUtilities\Binaries\Win64\UnrealEditor-SoundUtilitiesEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationWarping\Binaries\Win64\UnrealEditor-AnimationWarpingRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationWarping\Binaries\Win64\UnrealEditor-AnimationWarpingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationModifierLibrary\Binaries\Win64\UnrealEditor-AnimationModifierLibrary.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor-MovieRenderPipelineCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor-MovieRenderPipelineSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor-MovieRenderPipelineRenderPasses.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor-MovieRenderPipelineEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor-UEOpenExrRTTI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ActorLayerUtilities\Binaries\Win64\UnrealEditor-ActorLayerUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ActorLayerUtilities\Binaries\Win64\UnrealEditor-ActorLayerUtilitiesEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ConsoleVariablesEditor\Binaries\Win64\UnrealEditor-ConsoleVariablesEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ConsoleVariablesEditor\Binaries\Win64\UnrealEditor-ConsoleVariablesEditorRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncClient\Binaries\Win64\UnrealEditor-ConcertSyncClient.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncCore\Binaries\Win64\UnrealEditor-ConcertSyncCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\Binaries\Win64\UnrealEditor-Concert.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\Binaries\Win64\UnrealEditor-ConcertClient.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\Binaries\Win64\UnrealEditor-ConcertServer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\Binaries\Win64\UnrealEditor-ConcertTransport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Database\SQLiteCore\Binaries\Win64\UnrealEditor-SQLiteCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertUI\ConcertSharedSlate\Binaries\Win64\UnrealEditor-ConcertSharedSlate.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\LevelSequenceEditor\Binaries\Win64\UnrealEditor-LevelSequenceEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\SequencerScripting\Binaries\Win64\UnrealEditor-SequencerScripting.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\SequencerScripting\Binaries\Win64\UnrealEditor-SequencerScriptingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosClothAsset\Binaries\Win64\UnrealEditor-ChaosClothAsset.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosClothAsset\Binaries\Win64\UnrealEditor-ChaosClothAssetEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosCloth\Binaries\Win64\UnrealEditor-ChaosCloth.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosCloth\Binaries\Win64\UnrealEditor-ChaosClothEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosCaching\Binaries\Win64\UnrealEditor-ChaosCaching.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosCaching\Binaries\Win64\UnrealEditor-ChaosCachingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakesCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeTrackRecorders.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeRecorderSources.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeRecorder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeMovieScene.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-TakeSequencer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor-CacheTrackRecorder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UnrealEditor-AudioCapture.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UnrealEditor-AudioCaptureEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheEd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheSequencer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheStreamer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCache.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor-GeometryCacheTracks.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowAssetTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowEnginePlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor-DataflowNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterFXEditor\BaseCharacterFXEditor\Binaries\Win64\UnrealEditor-BaseCharacterFXEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UnrealEditor-ProceduralMeshComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UnrealEditor-ProceduralMeshComponentEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\MoviePipelineMaskRenderPass\Binaries\Win64\UnrealEditor-MoviePipelineMaskRenderPass.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\AssetSearch\Binaries\Win64\UnrealEditor-AssetSearch.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-AnalyticsLog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-AnalyticsHorde.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor-StudioTelemetry.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-GameplayInsights.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-GameplayInsightsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-RewindDebugger.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-RewindDebuggerVLog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-RewindDebuggerRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor-RewindDebuggerVLogRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Spatialization\Binaries\Win64\UnrealEditor-Spatialization.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Spatialization\Binaries\Win64\UnrealEditor-SpatializationEditor.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor-ShooterCoreRuntime.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor-ShooterCoreRuntime.pdbSymbolFileE:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor-TopDownArenaRuntime.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor-TopDownArenaRuntime.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Tests\FunctionalTestingEditor\Binaries\Win64\UnrealEditor-FunctionalTestingEditor.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor-ShooterTestsRuntime.dllDynamicLibraryE:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor-ShooterTestsRuntime.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Tests\CQTest\Binaries\Win64\UnrealEditor-CQTestTests.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Tests\CQTestEnhancedInput\Binaries\Win64\UnrealEditor-CQTestEnhancedInput.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Tests\CQTestEnhancedInput\Binaries\Win64\UnrealEditor-CQTestEnhancedInputTests.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayInteractions\Binaries\Win64\UnrealEditor-GameplayInteractionsModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\StateTree\Binaries\Win64\UnrealEditor-StateTreeModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\StateTree\Binaries\Win64\UnrealEditor-StateTreeTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\StateTree\Binaries\Win64\UnrealEditor-StateTreeEditorModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyAccess\Binaries\Win64\UnrealEditor-PropertyAccessEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SmartObjects\Binaries\Win64\UnrealEditor-SmartObjectsModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SmartObjects\Binaries\Win64\UnrealEditor-SmartObjectsTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SmartObjects\Binaries\Win64\UnrealEditor-SmartObjectsEditorModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayTargetingSystem\Binaries\Win64\UnrealEditor-TargetingSystem.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WorldConditions\Binaries\Win64\UnrealEditor-WorldConditions.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WorldConditions\Binaries\Win64\UnrealEditor-WorldConditionsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WorldConditions\Binaries\Win64\UnrealEditor-WorldConditionsTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyBindingUtils\Binaries\Win64\UnrealEditor-PropertyBindingUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyBindingUtils\Binaries\Win64\UnrealEditor-PropertyBindingUtilsTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\ContextualAnimation\Binaries\Win64\UnrealEditor-ContextualAnimation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\ContextualAnimation\Binaries\Win64\UnrealEditor-ContextualAnimationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\MotionWarping\Binaries\Win64\UnrealEditor-MotionWarping.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRig.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRigDeveloper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor-IKRigEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRig.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRigDeveloper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor-ControlRigEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVM.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVMDeveloper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor-RigVMEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\FullBodyIK\Binaries\Win64\UnrealEditor-FullBodyIK.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\FullBodyIK\Binaries\Win64\UnrealEditor-PBIK.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\NavCorridor\Binaries\Win64\UnrealEditor-NavCorridor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayStateTree\Binaries\Win64\UnrealEditor-GameplayStateTreeModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayBehaviorSmartObjects\Binaries\Win64\UnrealEditor-GameplayBehaviorSmartObjectsModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayBehaviors\Binaries\Win64\UnrealEditor-GameplayBehaviorsModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayBehaviors\Binaries\Win64\UnrealEditor-GameplayBehaviorsEditorModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Tests\RuntimeTests\Binaries\Win64\UnrealEditor-RuntimeTests.dllDynamicLibraryE:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor-LyraExtTool.dllDynamicLibraryE:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor-LyraExtTool.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-Paper2D.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-Paper2DEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-PaperSpriteSheetImporter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-PaperTiledImporter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor-SmartSnapping.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AI\AISupport\Binaries\Win64\UnrealEditor-AISupportModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\AI\EnvironmentQueryEditor\Binaries\Win64\UnrealEditor-EnvironmentQueryEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ACLPlugin\Binaries\Win64\UnrealEditor-ACLPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ACLPlugin\Binaries\Win64\UnrealEditor-ACLPluginEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationData\Binaries\Win64\UnrealEditor-AnimationData.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\BlendSpaceMotionAnalysis\Binaries\Win64\UnrealEditor-BlendSpaceMotionAnalysis.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRigSpline\Binaries\Win64\UnrealEditor-ControlRigSpline.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-Bridge.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-Bridge.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-MegascansPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor-MegascansPlugin.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\Experimental\MetaHuman\MetaHumanSDK\Binaries\Win64\UnrealEditor-MetaHumanSDKEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\MetaHuman\MetaHumanSDK\Binaries\Win64\UnrealEditor-MetaHumanSDKRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor-HairStrandsCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor-HairStrandsDeformer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor-HairStrandsRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor-HairStrandsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor-HairCardGeneratorFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\Binaries\Win64\UnrealEditor-OptimusSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\Binaries\Win64\UnrealEditor-OptimusCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\Binaries\Win64\UnrealEditor-OptimusDeveloper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\Binaries\Win64\UnrealEditor-OptimusEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ComputeFramework\Binaries\Win64\UnrealEditor-ComputeFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ComputeFramework\Binaries\Win64\UnrealEditor-ComputeFrameworkEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor-RigLogicLib.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor-RigLogicLibTest.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor-RigLogicModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor-RigLogicDeveloper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor-RigLogicEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Cameras\CameraShakePreviewer\Binaries\Win64\UnrealEditor-CameraShakePreviewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor-GameplayCameras.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor-GameplayCamerasUncookedOnly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor-GameplayCamerasEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\TemplateSequence\Binaries\Win64\UnrealEditor-TemplateSequence.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\TemplateSequence\Binaries\Win64\UnrealEditor-TemplateSequenceEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Cameras\EngineCameras\Binaries\Win64\UnrealEditor-EngineCameras.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosVD\Binaries\Win64\UnrealEditor-ChaosVD.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\ChaosVD\Binaries\Win64\UnrealEditor-ChaosVDBlueprint.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\CmdLinkServer\Binaries\Win64\UnrealEditor-CmdLinkServer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Compression\OodleNetwork\Binaries\Win64\UnrealEditor-OodleNetworkHandlerComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UnrealEditor-AnimationSharing.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UnrealEditor-AnimationSharingEd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\CLionSourceCodeAccess\Binaries\Win64\UnrealEditor-CLionSourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\DumpGPUServices\Binaries\Win64\UnrealEditor-DumpGPUServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\GitSourceControl\Binaries\Win64\UnrealEditor-GitSourceControl.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\N10XSourceCodeAccess\Binaries\Win64\UnrealEditor-N10XSourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\PerforceSourceControl\Binaries\Win64\UnrealEditor-PerforceSourceControl.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\PixWinPlugin\Binaries\Win64\UnrealEditor-PixWinPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\PlasticSourceControl\Binaries\Win64\UnrealEditor-PlasticSourceControl.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\PropertyAccessNode\Binaries\Win64\UnrealEditor-PropertyAccessNode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\RenderDocPlugin\Binaries\Win64\UnrealEditor-RenderDocPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\RiderSourceCodeAccess\Binaries\Win64\UnrealEditor-RiderSourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\SubversionSourceControl\Binaries\Win64\UnrealEditor-SubversionSourceControl.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\TextureFormatOodle\Binaries\Win64\UnrealEditor-TextureFormatOodle.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\UObjectPlugin\Binaries\Win64\UnrealEditor-UObjectPlugin.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioCodeSourceCodeAccess\Binaries\Win64\UnrealEditor-VisualStudioCodeSourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioSourceCodeAccess\Binaries\Win64\UnrealEditor-VisualStudioSourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\AssetManagerEditor\Binaries\Win64\UnrealEditor-AssetManagerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserAssetDataSource\Binaries\Win64\UnrealEditor-ContentBrowserAssetDataSource.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintHeaderView\Binaries\Win64\UnrealEditor-BlueprintHeaderView.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ChangelistReview\Binaries\Win64\UnrealEditor-ChangelistReview.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ColorGrading\Binaries\Win64\UnrealEditor-ColorGradingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\ObjectMixer\Binaries\Win64\UnrealEditor-ObjectMixerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserClassDataSource\Binaries\Win64\UnrealEditor-ContentBrowserClassDataSource.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UnrealEditor-CryptoKeys.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UnrealEditor-CryptoKeysOpenSSL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\CurveEditorTools\Binaries\Win64\UnrealEditor-CurveEditorTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\EditorDebugTools\Binaries\Win64\UnrealEditor-EditorDebugTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\EngineAssetDefinitions\Binaries\Win64\UnrealEditor-EngineAssetDefinitions.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UnrealEditor-FacialAnimation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UnrealEditor-FacialAnimationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-GeometryMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-BspMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor-TextureAlignMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\Localization\PortableObjectFileDataSource\Binaries\Win64\UnrealEditor-PortableObjectFileDataSource.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\MaterialAnalyzer\Binaries\Win64\UnrealEditor-MaterialAnalyzer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\MobileLauncherProfileWizard\Binaries\Win64\UnrealEditor-MobileLauncherProfileWizard.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\LightMixer\Binaries\Win64\UnrealEditor-LightMixer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\PluginBrowser\Binaries\Win64\UnrealEditor-PluginBrowser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\SequencerAnimTools\Binaries\Win64\UnrealEditor-SequencerAnimTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\SpeedTreeImporter\Binaries\Win64\UnrealEditor-SpeedTreeImporter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\UMGWidgetPreview\Binaries\Win64\UnrealEditor-UMGWidgetPreview.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditorTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor-UVEditorToolsEditorOnly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Editor\WorldPartitionHLODUtilities\Binaries\Win64\UnrealEditor-WorldPartitionHLODUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UnrealEditor-DatasmithContent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UnrealEditor-DatasmithContentEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UnrealEditor-VariantManagerContent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UnrealEditor-VariantManagerContentEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\GLTFExporter\Binaries\Win64\UnrealEditor-GLTFExporter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-GLTFCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeFactoryNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeImport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeExport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangePipelines.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeDispatcher.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeCommonParser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor-InterchangeFbxParser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\USDCore\Binaries\Win64\UnrealEditor-UnrealUSDWrapper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\USDCore\Binaries\Win64\UnrealEditor-USDUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\USDCore\Binaries\Win64\UnrealEditor-USDClasses.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLink.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkComponents.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkGraphNode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkMovieScene.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkSequencer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor-LiveLinkMultiUser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManager\Binaries\Win64\UnrealEditor-VariantManager.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\AdvancedRenamer\Binaries\Win64\UnrealEditor-AdvancedRenamer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\SkeletalMeshModelingTools\Binaries\Win64\UnrealEditor-SkeletalMeshModelingTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UnrealEditor-AutomationUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UnrealEditor-AutomationUtilsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosEditor\Binaries\Win64\UnrealEditor-FractureEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionTracks.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionSequencer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor-GeometryCollectionDepNodes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosSolverPlugin\Binaries\Win64\UnrealEditor-ChaosSolverEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Fracture\Binaries\Win64\UnrealEditor-FractureEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosNiagara\Binaries\Win64\UnrealEditor-ChaosNiagara.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosUserDataPT\Binaries\Win64\UnrealEditor-ChaosUserDataPT.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterAI\Binaries\Win64\UnrealEditor-CharacterAI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorDataStorage\Binaries\Win64\UnrealEditor-TedsCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorDataStorage\Binaries\Win64\UnrealEditor-TedsUI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorPerformance\Binaries\Win64\UnrealEditor-EditorPerformance.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorTelemetry\Binaries\Win64\UnrealEditor-EditorTelemetry.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\LocalizableMessage\Binaries\Win64\UnrealEditor-LocalizableMessage.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\LocalizableMessage\Binaries\Win64\UnrealEditor-LocalizableMessageBlueprint.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\NFORDenoise\Binaries\Win64\UnrealEditor-NFORDenoise.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\SkeletalReduction\Binaries\Win64\UnrealEditor-SkeletalMeshReduction.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Fab\Binaries\Win64\UnrealEditor-Fab.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Fab\Binaries\Win64\UnrealEditor-Fab.pdbSymbolFileE:\Games\UE_5.5\Engine\Plugins\FastBuildController\Binaries\Win64\UnrealEditor-FastBuildController.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\NiagaraSimCaching\Binaries\Win64\UnrealEditor-NiagaraSimCaching.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\FX\NiagaraSimCaching\Binaries\Win64\UnrealEditor-NiagaraSimCachingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Importers\AlembicImporter\Binaries\Win64\UnrealEditor-AlembicImporter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Importers\AlembicImporter\Binaries\Win64\UnrealEditor-AlembicLibrary.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditorPipelines.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor-InterchangeEditorUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UnrealEditor-AndroidMediaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UnrealEditor-AndroidMediaFactory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UnrealEditor-AvfMediaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UnrealEditor-AvfMediaFactory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMedia.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ImgMediaFactory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-OpenExrWrapper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor-ExrReaderGpu.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlayerEditor\Binaries\Win64\UnrealEditor-MediaPlayerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UnrealEditor-MediaCompositing.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UnrealEditor-MediaCompositingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlate\Binaries\Win64\UnrealEditor-MediaPlate.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlate\Binaries\Win64\UnrealEditor-MediaPlateEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Experimental\Compositing\HoldoutComposite\Binaries\Win64\UnrealEditor-HoldoutComposite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMedia.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMediaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor-WmfMediaFactory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MeshPainting\Binaries\Win64\UnrealEditor-MeshPaintEditorMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MeshPainting\Binaries\Win64\UnrealEditor-MeshPaintingToolset.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Messaging\TcpMessaging\Binaries\Win64\UnrealEditor-TcpMessaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Messaging\UdpMessaging\Binaries\Win64\UnrealEditor-UdpMessaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UnrealEditor-ActorSequence.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UnrealEditor-ActorSequenceEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\NNE\NNEDenoiser\Binaries\Win64\UnrealEditor-NNEDenoiser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\NNE\NNEDenoiser\Binaries\Win64\UnrealEditor-NNEDenoiserShaders.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\NNE\NNERuntimeORT\Binaries\Win64\UnrealEditor-NNERuntimeORT.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidPermission\Binaries\Win64\UnrealEditor-AndroidPermission.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemNull\Binaries\Win64\UnrealEditor-OnlineSubsystemNull.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Portal\LauncherChunkInstaller\Binaries\Win64\UnrealEditor-LauncherChunkInstaller.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\RenderGraphInsights\Binaries\Win64\UnrealEditor-RenderGraphInsights.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidDeviceProfileSelector\Binaries\Win64\UnrealEditor-AndroidDeviceProfileSelector.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidDeviceProfileSelector\Binaries\Win64\UnrealEditor-AndroidDeviceProfileCommandlets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidFileServer\Binaries\Win64\UnrealEditor-AndroidFileServer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidFileServer\Binaries\Win64\UnrealEditor-AndroidFileServerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ArchVisCharacter\Binaries\Win64\UnrealEditor-ArchVisCharacter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\AssetTags\Binaries\Win64\UnrealEditor-AssetTags.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\CableComponent\Binaries\Win64\UnrealEditor-CableComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ChunkDownloader\Binaries\Win64\UnrealEditor-ChunkDownloader.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\CustomMeshComponent\Binaries\Win64\UnrealEditor-CustomMeshComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\Binaries\Win64\UnrealEditor-ExampleDeviceProfileSelector.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GooglePAD\Binaries\Win64\UnrealEditor-GooglePAD.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\GooglePAD\Binaries\Win64\UnrealEditor-GooglePADEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\InputDebugging\Binaries\Win64\UnrealEditor-InputDebugging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\InputDebugging\Binaries\Win64\UnrealEditor-InputDebuggingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\LocationServicesBPLibrary\Binaries\Win64\UnrealEditor-LocationServicesBPLibrary.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MobilePatchingUtils\Binaries\Win64\UnrealEditor-MobilePatchingUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\MsQuic\Binaries\Win64\UnrealEditor-MsQuicRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundFields\Binaries\Win64\UnrealEditor-SoundFields.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Synthesis\Binaries\Win64\UnrealEditor-Synthesis.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Synthesis\Binaries\Win64\UnrealEditor-SynthesisEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WebMMoviePlayer\Binaries\Win64\UnrealEditor-WebMMoviePlayer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMedia.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMediaEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor-WebMMediaFactory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsDeviceProfileSelector\Binaries\Win64\UnrealEditor-WindowsDeviceProfileSelector.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsMoviePlayer\Binaries\Win64\UnrealEditor-WindowsMoviePlayer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\XInputDevice\Binaries\Win64\UnrealEditor-XInputDevice.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Tests\InterchangeTests\Binaries\Win64\UnrealEditor-InterchangeTests.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\Tests\InterchangeTests\Binaries\Win64\UnrealEditor-InterchangeTestEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\TraceUtilities\Binaries\Win64\UnrealEditor-TraceUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\TraceUtilities\Binaries\Win64\UnrealEditor-EditorTraceUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\UbaController\Binaries\Win64\UnrealEditor-UbaController.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-WorldMetricsCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-WorldMetricsTest.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor-CsvMetrics.dllDynamicLibraryE:\Games\UE_5.5\Engine\Plugins\XGEController\Binaries\Win64\UnrealEditor-XGEController.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BuildSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceLog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DirectoryWatcher.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NetCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Sockets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SSL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Json.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Zen.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DerivedDataCache.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ApplicationCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DesktopPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Projects.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CorePreciseFP.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CoreUObject.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InputCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DeveloperSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SlateCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ImageCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ImageWrapper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Settings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Slate.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Networking.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CookOnTheFly.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NullDrv.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorAnalyticsSession.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TelemetryUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AssetRegistry.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MessageLog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ToolMenus.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TypedElementFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ToolWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorSubsystem.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AssetDefinition.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AssetTagsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BSPUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioPlatformConfiguration.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Analytics.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureFormat.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DeveloperToolSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EngineSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WorkspaceMenuStructure.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SessionMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SourceCodeAccess.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UnrealEdMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TurnkeyIO.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LauncherServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FieldNotification.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorConfig.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GeometryCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshDescription.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InteractiveToolsFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TypedElementRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NetCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-IrisCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TimeManagement.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UniversalObjectLocator.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MovieScene.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ContentBrowserData.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClassViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PackagesDialog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UncontrolledChangelists.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UnsavedAssetsTracker.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SourceControlWindows.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RSA.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PakFile.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WidgetCarousel.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AddContentDialog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LocalizationService.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Documentation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-JsonUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Localization.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LocalizationCommandletExecution.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TranslationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ExternalImagePicker.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SharedSettingsWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DeviceProfileEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UndoHistory.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UndoHistoryEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InterchangeCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshUtilitiesCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RawMesh.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GeometryProcessingInterfaces.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StaticMeshDescription.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshDescription.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ChaosCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Voronoi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ChaosVDRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Chaos.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PhysicsCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshUtilitiesCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InterchangeEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ProjectTargetPlatformEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EventLoop.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HTTP.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LauncherPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MathCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Foliage.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MaterialBaking.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorInteractiveToolsFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationEditMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshConversion.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DataflowCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DataflowEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DataflowSimulation.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ChaosSolverEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FieldSystemEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DesktopWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NaniteUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-QuadricMeshReduction.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NaniteBuilder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GeometryCollectionEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimGraphRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationBlueprintLibrary.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshBoneReduction.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshReductionInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HierarchicalLODUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GraphColor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshBuilderCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshUtilitiesEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationModifiers.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HeadMountedDisplay.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SlateRHIRenderer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PropertyPath.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SceneOutliner.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DataLayerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SignalProcessing.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioMixerCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioExtensions.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Constraints.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MovieSceneTracks.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UMG.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ActorPickerMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CinematicCamera.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SequencerWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CurveEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LiveLinkInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AdvancedPreviewScene.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MaterialEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NetworkReplayStreaming.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SequencerCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AVIWriter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ImageWriteQueue.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NonRealtimeAudioRenderer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SoundFieldRendering.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioLinkCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioLinkEngine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioMixer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MovieSceneCapture.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EngineMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SessionServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MovieSceneCaptureDialog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ViewportInteraction.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SerializedRecorderInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SubobjectDataInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UniversalObjectLocatorEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Sequencer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SequenceRecorder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-XmlParser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MovieSceneTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AdvancedWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MoviePlayerProxy.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MoviePlayer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SettingsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InternationalizationSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HardwareTargeting.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Navmesh.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NavigationSystem.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayTasks.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AITestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DrawPrimitiveDebugger.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayDebugger.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayDebuggerEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayTags.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AIModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ConfigEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ComponentVisualizers.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PinnedCommandList.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SkeletonEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioSettingsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DataTableEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CollectionManager.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WidgetRegistration.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PlacementMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VirtualTexturingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Layers.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DetailCustomizations.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UMGEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothingSystemEditorInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CommonMenuExtensions.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Persona.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationBlueprintEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SceneDepthPickerMode.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PhysicsUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SkeletalMeshEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StaticMeshEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshMergeUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MaterialUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothingSystemRuntimeNv.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshBuilder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ActionableMessage.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Landscape.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StatsViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PIEPreviewDeviceSpecification.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DeviceProfileServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HierarchicalLODOutliner.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MaterialShaderQualitySettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PixelInspectorModule.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EnvironmentLightingViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SubobjectEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-OutputLog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DerivedDataEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DeviceManager.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationTest.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ScreenShotComparisonTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationController.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationWindow.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NewLevelDialog.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LandscapeEditorUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LandscapeEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FoliageEdit.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WorldBrowser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WorldPartitionEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VREditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MergeActors.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ScreenShotComparison.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SessionFrontend.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LevelEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HotReload.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LocalizationDashboard.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MainFrame.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StatusBar.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ContentBrowser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-KismetWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BlueprintGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ScriptDisassembler.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-KismetCompiler.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StructViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GraphEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Merge.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BlueprintEditorLibrary.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-JsonObjectGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LiveCoding.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BlueprintRuntime.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Kismet.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CurveTableEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FontEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AssetTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameProjectGeneration.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UATHelper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TurnkeySupport.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ShaderPreprocessor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FileUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ShaderCompilerCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ShaderFormatOpenGL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VectorVM.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ShaderFormatVectorVM.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureBuildUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-OpenColorIOWrapper.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureCompressor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureBuild.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureFormatIntelISPCTexComp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ShaderFormatD3D.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureFormatDXT.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureFormatUncompressed.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AdpcmAudioDecoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioFormatADPCM.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VorbisAudioDecoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioFormatOgg.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-OpusAudioDecoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioFormatOpus.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioFormatBink.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioFormatRad.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VulkanShaderFormat.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TargetPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EyeTracker.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Renderer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Media.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MediaUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MediaAssets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LevelSequence.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CookMetadata.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-IESFile.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureUtilitiesCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SwarmInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TargetDeviceServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshPaint.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnalyticsET.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothingSystemEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PIEPreviewDeviceProfileSelector.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SandboxFile.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-IoStoreUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PakFileUtilities.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Cbor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceAnalysis.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CookOnTheFlyNetServer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VirtualizationEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RHICore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-D3D12RHI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CUDA.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AVEncoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayMediaEncoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsPlatformFeatures.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-FunctionalTesting.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NetworkFileSystem.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ToolMenusEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsMMDeviceEnumeration.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioMixerXAudio2.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TextureEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-DistCurveEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Cascade.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InputBindingEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorSettingsViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PhysicsAssetEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StringTableEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Blutility.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ScriptableEditorWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RenderResourceViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ProjectSettingsViewer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AIGraph.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BehaviorTreeEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ViewportSnapping.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GameplayTasksEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MessagingCommon.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Messaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MessagingRpc.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PortalServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PortalMessages.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PortalProxies.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Overlay.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-OverlayEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClothPainter.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CSVtoSVG.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SourceControlWindowExtender.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StructUtilsTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ProjectLauncher.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PListEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationDriver.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceInsightsCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceInsights.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UnrealEd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-EditorStyle.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PropertyEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SlateReflector.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AppFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Icmp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PortalRpc.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HTTPServer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PerfCounters.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CollisionAnalyzer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LogVisualizer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CoreOnline.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SynthBenchmark.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ReliabilityHandlerComponent.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PacketHandler.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Horde.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SparseVolumeTexture.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RadAudioDecoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BinkAudioDecoder.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MRMesh.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StreamingPauseRendering.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SlateNullRenderer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationDataController.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CookedEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsTargetPlatformSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsTargetPlatformControls.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsTargetPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WindowsPlatformEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NullNetworkReplayStreaming.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LocalFileNetworkReplayStreaming.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-HttpNetworkReplayStreaming.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Advertising.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MassEntityTestSuite.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MassEntity.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LevelInstanceEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MassEntityDebugger.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MassEntityEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\Linux\UnrealEditor-LinuxTargetPlatformSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\Linux\UnrealEditor-LinuxTargetPlatformControls.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\Linux\UnrealEditor-LinuxTargetPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\LinuxArm64\UnrealEditor-LinuxArm64TargetPlatformSettings.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\LinuxArm64\UnrealEditor-LinuxArm64TargetPlatformControls.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\LinuxArm64\UnrealEditor-LinuxArm64TargetPlatform.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Engine.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-D3D11RHI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VirtualFileCache.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-BuildPatchServices.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-PreLoadScreen.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VulkanRHI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-OpenGLDrv.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RHI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RenderCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-SourceControl.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Virtualization.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Core.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Serialization.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InstallBundleManager.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NetworkFile.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StreamingFile.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AutomationWorker.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StorageServerClient.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StorageServerClientDebug.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioMixerPlatformAudioLink.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioPlatformSupportWasapi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioMixerWasapi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ProfileVisualizer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RealtimeProfiler.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Voice.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ClientPilot.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ExternalRpcRegistry.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-InputDevice.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AugmentedReality.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CEF3Utils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-WebBrowser.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioAnalyzer.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-GeometryFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-MeshConversionEngineTypes.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-StructUtilsEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioCaptureCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioCaptureWasapi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AudioCaptureRtAudio.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RewindDebuggerInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-RewindDebuggerRuntimeInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CQTest.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-VisualGraphUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-AnimationEditorWidgets.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-ChaosVDData.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TreeMap.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-CurveAssetEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LiveLinkAnimationCore.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-LiveLinkMessageBusFramework.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NNEEditor.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-NNE.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\Android\UnrealEditor-AndroidDeviceDetection.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-TraceInsightsFrontend.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-UbaCoordinatorHorde.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\EOSSDK-Win64-Shipping.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.5.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.6.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.7.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.8.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.9.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.10.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.11.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.12.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\python311.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\hdStorm.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\sdrGlslfx.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usdAbc.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usdShaders.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ar.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_arch.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_cameraUtil.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_garch.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_geomUtil.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_gf.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_glf.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdar.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdGp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdMtlx.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdsi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdSt.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdx.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hf.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgiGL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgiInterop.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hio.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_js.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_kind.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ndr.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_pcp.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_plug.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_pxOsd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_sdf.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_sdr.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_tf.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_trace.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ts.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usd.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdAppUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdBakeMtlx.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdGeom.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdHydra.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdImaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdImagingGL.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdLux.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdMedia.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdMtlx.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdPhysics.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdProc.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdProcImaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRender.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRi.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRiPxrImaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdShade.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdSkel.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdSkelImaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdUI.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdUtils.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdVol.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdVolImaging.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_vt.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\usd_work.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\ar\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\shaders\pcfShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\shaders\simpleLighting.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\codegenTemplates\schemaClass.cppRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\codegenTemplates\schemaClass.hRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdGp\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\basisCurves.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\compute.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\domeLight.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\edgeId.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackLighting.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackLightingShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackMaterialNetwork.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackVolume.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\frustumCull.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\imageShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\instancing.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\invalidMaterialNetwork.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\mesh.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshFaceCull.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshNormal.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshWire.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\pointId.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\points.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\ptexTexture.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\renderPass.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\renderPassShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\simpleLightingShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\surfaceHelpers.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\terminals.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\visibility.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\volume.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\textures\fallbackBlackDomeLight.pngRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdStorm\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\boundingBox.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\colorChannel.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\colorCorrection.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\fullscreen.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\oitResolveImageShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\outline.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPass.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorAndSelectionShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorWithOccludedSelectionShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassIdShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitOpaqueShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitVolumeShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassPickingShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassShadowShader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\selection.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\skydome.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\visualize.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\textures\StinsonBeach.hdrRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\textures\StinsonBeach.texRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hgiGL\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hio\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\ndr\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\sdf\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\sdrGlslfx\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\unreal\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\api.hRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\schemaClass.cppRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\schemaClass.hRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\tokens.cppRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\tokens.hRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\wrapSchemaClass.cppRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\wrapTokens.cppRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\usd\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdAbc\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\usdGeom\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\shaders\empty.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\shaders\shaderDefs.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\usdHydra\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdImaging\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdImagingGL\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\usdLux\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\usdMedia\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMtlx\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\usdPhysics\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\usdProc\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProcImaging\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\usdRender\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\usdRi\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRiPxrImaging\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\usdShade\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\previewSurface.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\primvarReader.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\shaderDefs.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\transform2d.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\uvTexture.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\usdSkel\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkelImaging\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkelImaging\resources\shaders\skinning.glslfxRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\usdUI\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\generatedSchema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\usdVol\schema.usdaRequiredResourceE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVolImaging\resources\plugInfo.jsonRequiredResourceE:\Games\UE_5.5\Engine\Binaries\Win64\boost_atomic-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_chrono-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_filesystem-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_iostreams-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_program_options-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_python311-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_regex-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_system-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\boost_thread-mt-x64.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\tbb.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\tbb.pdbSymbolFileE:\Games\UE_5.5\Engine\Binaries\Win64\tbbmalloc.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\tbbmalloc.pdbSymbolFileE:\Games\UE_5.5\Engine\Binaries\Win64\OpenColorIO_2_3.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\AgentInterface.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\AgentInterface.pdbSymbolFileE:\Games\UE_5.5\Engine\Binaries\Win64\NNEEditorOnnxTools.dllDynamicLibraryE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor.versionRequiredResourceE:\Projects\cross_platform\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\RemoteSession\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\BackChannel\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\MediaIOFramework\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Compositing\OpenColorIO\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\XRBase\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ActorPalette\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\AESGCMHandlerComponent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayAbilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\GameplayTagsEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\PythonScriptPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserFileDataSource\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\DataRegistry\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Gauntlet\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\CommonConversation\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GameFeatures\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ModularGameplay\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\AssetReferenceRestrictions\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\DataValidation\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\PluginUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\EnhancedInput\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\WinDualShock\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintMaterialTextureNodes\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Landmass\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ReplicationGraph\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\SignificanceManager\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Water\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryProcessing\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\CommonUI\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ControlFlows\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystem\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineBase\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServices\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioWidgets\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioSynesthesia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\WaveTable\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemEOS\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\EOSShared\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\VoiceChat\EOSVoiceChat\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\SocketSubsystemEOS\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOS\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOSGS\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesNull\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesOSSAdapter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemSteam\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamShared\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamSockets\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ModelingToolsEditorMode\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ProxyLODPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\PlanarCutPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\MeshLODToolset\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryFlow\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\EditorScriptingUtilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ToolPresets\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\StylusInput\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryScripting\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationLocomotionLibrary\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioModulation\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\AudioInsights\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\AudioGameplayVolume\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\AudioGameplay\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundUtilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationWarping\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationModifierLibrary\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ActorLayerUtilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ConsoleVariablesEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncClient\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncCore\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Database\SQLiteCore\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertUI\ConcertSharedSlate\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\LevelSequenceEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\SequencerScripting\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\ChaosClothAsset\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\ChaosCloth\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosCaching\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterFXEditor\BaseCharacterFXEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\MoviePipelineMaskRenderPass\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\AssetSearch\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\StudioTelemetry\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Spatialization\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Tests\FunctionalTestingEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Tests\CQTest\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Tests\CQTestEnhancedInput\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayInteractions\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\StateTree\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\SmartObjects\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayTargetingSystem\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\WorldConditions\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyBindingUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\ContextualAnimation\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\MotionWarping\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\IKRig\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRig\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\RigVM\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\FullBodyIK\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\NavCorridor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayStateTree\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayBehaviorSmartObjects\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayBehaviors\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Tests\RuntimeTests\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\AI\AISupport\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\AI\EnvironmentQueryEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\ACLPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationData\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\BlendSpaceMotionAnalysis\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRigSpline\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Bridge\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\MetaHuman\MetaHumanSDK\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ComputeFramework\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Cameras\CameraShakePreviewer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Cameras\GameplayCameras\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\TemplateSequence\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Cameras\EngineCameras\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\ChaosVD\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\CmdLinkServer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Compression\OodleNetwork\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\CLionSourceCodeAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\DumpGPUServices\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\GitSourceControl\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\N10XSourceCodeAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\PerforceSourceControl\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\PixWinPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\PlasticSourceControl\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\PropertyAccessNode\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\RenderDocPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\RiderSourceCodeAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\SubversionSourceControl\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\TextureFormatOodle\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\UObjectPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioCodeSourceCodeAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioSourceCodeAccess\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\AssetManagerEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserAssetDataSource\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintHeaderView\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ChangelistReview\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ColorGrading\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\ObjectMixer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserClassDataSource\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\CurveEditorTools\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\EditorDebugTools\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\EngineAssetDefinitions\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\GeometryMode\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\Localization\PortableObjectFileDataSource\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\MaterialAnalyzer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\MobileLauncherProfileWizard\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\LightMixer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\PluginBrowser\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\SequencerAnimTools\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\SpeedTreeImporter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\UMGWidgetPreview\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\UVEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Editor\WorldPartitionHLODUtilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Enterprise\GLTFExporter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\USDCore\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManager\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\AdvancedRenamer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\SkeletalMeshModelingTools\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosSolverPlugin\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Fracture\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosNiagara\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosUserDataPT\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterAI\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorDataStorage\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorPerformance\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorTelemetry\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\LocalizableMessage\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\NFORDenoise\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\SkeletalReduction\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Fab\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\FastBuildController\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\FX\NiagaraSimCaching\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Importers\AlembicImporter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Interchange\Editor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlayerEditor\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlate\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Experimental\Compositing\HoldoutComposite\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MeshPainting\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Messaging\TcpMessaging\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Messaging\UdpMessaging\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\NNE\NNEDenoiser\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\NNE\NNERuntimeORT\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidPermission\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemNull\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Portal\LauncherChunkInstaller\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\RenderGraphInsights\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidDeviceProfileSelector\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidFileServer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ArchVisCharacter\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\AssetTags\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\CableComponent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ChunkDownloader\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\CustomMeshComponent\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\GooglePAD\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\InputDebugging\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\LocationServicesBPLibrary\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\MobilePatchingUtils\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\MsQuic\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundFields\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Synthesis\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\WebMMoviePlayer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsDeviceProfileSelector\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsMoviePlayer\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\XInputDevice\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\Tests\InterchangeTests\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\TraceUtilities\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\UbaController\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\WorldMetrics\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Plugins\XGEController\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Binaries\Win64\Linux\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Binaries\Win64\LinuxArm64\UnrealEditor.modulesRequiredResourceE:\Games\UE_5.5\Engine\Binaries\Win64\Android\UnrealEditor.modulesRequiredResourceDevelopmentfalseE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor.exeE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor-Cmd.exeWin64RemoteSessiontrueE:\Projects\cross_platformE:\Projects\cross_platform\LyraStarterGame.uprojectE:\Projects\cross_platform\LyraStarterGame.uprojectUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\RemoteSession\RemoteSession.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\BackChannel\BackChannel.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AppleImageUtils\AppleImageUtils.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\MediaIOFramework\MediaIOFramework.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Compositing\OpenColorIO\OpenColorIO.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\XRBase\XRBase.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ActorPalette\ActorPalette.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\AESGCMHandlerComponent\AESGCMHandlerComponent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\PlatformCrypto\PlatformCrypto.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\DTLSHandlerComponent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayAbilities\GameplayAbilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\GameplayTagsEditor\GameplayTagsEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\FX\Niagara\Niagara.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\PythonScriptPlugin\PythonScriptPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserFileDataSource\ContentBrowserFileDataSource.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\DataRegistry\DataRegistry.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Gauntlet\Gauntlet.upluginUFSE:\Projects\cross_platform\Plugins\CommonLoadingScreen\CommonLoadingScreen.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\CommonConversation\CommonConversation.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GameFeatures\GameFeatures.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ModularGameplay\ModularGameplay.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\AssetReferenceRestrictions\AssetReferenceRestrictions.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\DataValidation\DataValidation.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\PluginUtils\PluginUtils.upluginUFSE:\Projects\cross_platform\Plugins\ModularGameplayActors\ModularGameplayActors.upluginUFSE:\Games\UE_5.5\Engine\Plugins\EnhancedInput\EnhancedInput.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\WinDualShock\WinDualShock.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Volumetrics\Volumetrics.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintMaterialTextureNodes\BlueprintMaterialTextureNodes.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Landmass\Landmass.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ReplicationGraph\ReplicationGraph.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\SignificanceManager\SignificanceManager.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Water\Water.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryProcessing\GeometryProcessing.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\CommonUI\CommonUI.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ControlFlows\ControlFlows.upluginUFSE:\Projects\cross_platform\Plugins\GameSettings\GameSettings.upluginUFSE:\Projects\cross_platform\Plugins\CommonUser\CommonUser.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystem\OnlineSubsystem.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineBase\OnlineBase.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemUtils\OnlineSubsystemUtils.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServices\OnlineServices.upluginUFSE:\Projects\cross_platform\Plugins\CommonGame\CommonGame.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineFramework\OnlineFramework.upluginUFSE:\Projects\cross_platform\Plugins\GameSubtitles\GameSubtitles.upluginUFSE:\Projects\cross_platform\Plugins\PocketWorlds\PocketWorlds.upluginUFSE:\Projects\cross_platform\Plugins\UIExtension\UIExtension.upluginUFSE:\Projects\cross_platform\Plugins\AsyncMixin\AsyncMixin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Metasound\Metasound.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioWidgets\AudioWidgets.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioSynesthesia\AudioSynesthesia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\WaveTable\WaveTable.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemEOS\OnlineSubsystemEOS.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\EOSShared\EOSShared.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\VoiceChat\EOSVoiceChat\EOSVoiceChat.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\SocketSubsystemEOS\SocketSubsystemEOS.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\EOSOverlayInputProvider\EOSOverlayInputProvider.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOS\OnlineServicesEOS.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesEOSGS\OnlineServicesEOSGS.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesNull\OnlineServicesNull.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineServicesOSSAdapter\OnlineServicesOSSAdapter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemSteam\OnlineSubsystemSteam.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamShared\SteamShared.upluginUFSE:\Projects\cross_platform\Plugins\GameplayMessageRouter\GameplayMessageRouter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Steam\SteamSockets\SteamSockets.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ModelingToolsEditorMode\ModelingToolsEditorMode.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\MeshModelingToolset\MeshModelingToolset.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ProxyLODPlugin\ProxyLODPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\PlanarCutPlugin\PlanarCut.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\MeshModelingToolsetExp\MeshModelingToolsetExp.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\MeshLODToolset\MeshLODToolset.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryFlow\GeometryFlow.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\EditorScriptingUtilities\EditorScriptingUtilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ToolPresets\ToolPresets.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\StylusInput\StylusInput.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryScripting\GeometryScripting.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationLocomotionLibrary\AnimationLocomotionLibrary.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioModulation\AudioModulation.upluginUFSE:\Games\UE_5.5\Engine\Plugins\AudioInsights\AudioInsights.upluginUFSE:\Games\UE_5.5\Engine\Plugins\AudioGameplayVolume\AudioGameplayVolume.upluginUFSE:\Games\UE_5.5\Engine\Plugins\AudioGameplay\AudioGameplay.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundUtilities\SoundUtilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationWarping\AnimationWarping.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationModifierLibrary\AnimationModifierLibrary.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\MovieRenderPipeline\MovieRenderPipeline.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ActorLayerUtilities\ActorLayerUtilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ConsoleVariablesEditor\ConsoleVariables.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncClient\ConcertSyncClient.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertSync\ConcertSyncCore\ConcertSyncCore.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertMain\ConcertMain.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Database\SQLiteCore\SQLiteCore.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\Concert\ConcertUI\ConcertSharedSlate\ConcertSharedSlate.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\LevelSequenceEditor\LevelSequenceEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\SequencerScripting\SequencerScripting.upluginUFSE:\Games\UE_5.5\Engine\Plugins\ChaosClothAsset\ChaosClothAsset.upluginUFSE:\Games\UE_5.5\Engine\Plugins\ChaosCloth\ChaosCloth.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosCaching\ChaosCaching.upluginUFSE:\Games\UE_5.5\Engine\Plugins\VirtualProduction\Takes\Takes.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AudioCapture\AudioCapture.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GeometryCache\GeometryCache.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Dataflow\Dataflow.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterFXEditor\BaseCharacterFXEditor\BaseCharacterFXEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ProceduralMeshComponent\ProceduralMeshComponent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\MoviePipelineMaskRenderPass\MoviePipelineMaskRenderPass.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\AssetSearch\AssetSearch.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\StudioTelemetry\StudioTelemetry.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\GameplayInsights\GameplayInsights.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Spatialization\Spatialization.upluginUFSE:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\ShooterCore.upluginUFSE:\Projects\cross_platform\Plugins\LyraExampleContent\LyraExampleContent.upluginUFSE:\Projects\cross_platform\Plugins\GameFeatures\ShooterMaps\ShooterMaps.upluginUFSE:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\TopDownArena.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Tests\FunctionalTestingEditor\FunctionalTestingEditor.upluginUFSE:\Projects\cross_platform\Plugins\GameFeatures\ShooterExplorer\ShooterExplorer.upluginUFSE:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\ShooterTests.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Tests\CQTest\CQTest.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Tests\CQTestEnhancedInput\CQTestEnhancedInput.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayInteractions\GameplayInteractions.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\StateTree\StateTree.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyAccess\PropertyAccessEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\SmartObjects\SmartObjects.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayTargetingSystem\TargetingSystem.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\WorldConditions\WorldConditions.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\PropertyBindingUtils\PropertyBindingUtils.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\ContextualAnimation\ContextualAnimation.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\MotionWarping\MotionWarping.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\IKRig\IKRig.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRig\ControlRig.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\RigVM\RigVM.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\FullBodyIK\FullBodyIK.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\NavCorridor\NavCorridor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayStateTree\GameplayStateTree.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GameplayBehaviorSmartObjects\GameplayBehaviorSmartObjects.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\GameplayBehaviors\GameplayBehaviors.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Tests\RuntimeTests\RuntimeTests.upluginUFSE:\Projects\cross_platform\Plugins\LyraExtTool\LyraExtTool.upluginUFSE:\Games\UE_5.5\Engine\Plugins\2D\Paper2D\Paper2D.upluginUFSE:\Games\UE_5.5\Engine\Plugins\AI\AISupport\AISupport.upluginUFSE:\Games\UE_5.5\Engine\Plugins\AI\EnvironmentQueryEditor\EnvironmentQueryEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\ACLPlugin\ACLPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\AnimationData\AnimationData.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\BlendSpaceMotionAnalysis\BlendSpaceMotionAnalysis.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRigModules\ControlRigModules.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\ControlRigSpline\ControlRigSpline.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Bridge\Bridge.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\MetaHuman\MetaHumanSDK\MetaHumanSDK.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\HairStrands\HairStrands.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\DeformerGraph\DeformerGraph.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ComputeFramework\ComputeFramework.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\RigLogic\RigLogic.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Cameras\CameraShakePreviewer\CameraShakePreviewer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Cameras\GameplayCameras\GameplayCameras.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\TemplateSequence\TemplateSequence.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Cameras\EngineCameras\EngineCameras.upluginUFSE:\Games\UE_5.5\Engine\Plugins\ChaosVD\ChaosVD.upluginUFSE:\Games\UE_5.5\Engine\Plugins\CmdLinkServer\CmdLinkServer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Compression\OodleNetwork\OodleNetwork.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\AnimationSharing\AnimationSharing.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\CLionSourceCodeAccess\CLionSourceCodeAccess.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\DumpGPUServices\DumpGPUServices.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\GitSourceControl\GitSourceControl.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\N10XSourceCodeAccess\N10XSourceCodeAccess.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\PerforceSourceControl\PerforceSourceControl.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\PixWinPlugin\PixWinPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\PlasticSourceControl\PlasticSourceControl.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\PropertyAccessNode\PropertyAccessNode.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\RenderDocPlugin\RenderDocPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\RiderSourceCodeAccess\RiderSourceCodeAccess.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\SubversionSourceControl\SubversionSourceControl.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\TextureFormatOodle\TextureFormatOodle.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\UObjectPlugin\UObjectPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioCodeSourceCodeAccess\VisualStudioCodeSourceCodeAccess.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Developer\VisualStudioSourceCodeAccess\VisualStudioSourceCodeAccess.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\AssetManagerEditor\AssetManagerEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserAssetDataSource\ContentBrowserAssetDataSource.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\BlueprintHeaderView\BlueprintHeaderView.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ChangelistReview\ChangelistReview.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ColorGrading\ColorGrading.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\ObjectMixer\ObjectMixer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ContentBrowser\ContentBrowserClassDataSource\ContentBrowserClassDataSource.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\CryptoKeys\CryptoKeys.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\CurveEditorTools\CurveEditorTools.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\EditorDebugTools\EditorDebugTools.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\EngineAssetDefinitions\EngineAssetDefinitions.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\FacialAnimation\FacialAnimation.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\GeometryMode\GeometryMode.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\Localization\PortableObjectFileDataSource\PortableObjectFileDataSource.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\MaterialAnalyzer\MaterialAnalyzer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\MobileLauncherProfileWizard\MobileLauncherProfileWizard.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\ObjectMixer\LightMixer\LightMixer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\PluginBrowser\PluginBrowser.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\SequencerAnimTools\SequencerAnimTools.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\SpeedTreeImporter\SpeedTreeImporter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\UMGWidgetPreview\UMGWidgetPreview.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\UVEditor\UVEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Editor\WorldPartitionHLODUtilities\WorldPartitionHLODUtilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Enterprise\DatasmithContent\DatasmithContent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManagerContent\VariantManagerContent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Enterprise\GLTFExporter\GLTFExporter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Interchange\Runtime\Interchange.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\USDCore\USDCore.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Animation\LiveLink\LiveLink.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Enterprise\VariantManager\VariantManager.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Interchange\Assets\InterchangeAssets.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\AdvancedRenamer\AdvancedRenamer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Animation\SkeletalMeshModelingTools\SkeletalMeshModelingTools.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\AutomationUtils\AutomationUtils.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosEditor\ChaosEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\GeometryCollectionPlugin\GeometryCollectionPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosSolverPlugin\ChaosSolverPlugin.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Fracture\Fracture.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosNiagara\ChaosNiagara.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\ChaosUserDataPT\ChaosUserDataPT.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\CharacterAI\CharacterAI.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorDataStorage\EditorDataStorage.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorPerformance\EditorPerformance.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\EditorTelemetry\EditorTelemetry.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\LocalizableMessage\LocalizableMessage.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\NFORDenoise\NFORDenoise.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\SkeletalReduction\SkeletalReduction.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Fab\Fab.upluginUFSE:\Games\UE_5.5\Engine\Plugins\FastBuildController\FastBuildController.upluginUFSE:\Games\UE_5.5\Engine\Plugins\FX\NiagaraSimCaching\NiagaraSimCaching.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Importers\AlembicImporter\AlembicImporter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Interchange\Editor\InterchangeEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\AndroidMedia\AndroidMedia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\AvfMedia\AvfMedia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\ImgMedia\ImgMedia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlayerEditor\MediaPlayerEditor.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\MediaCompositing\MediaCompositing.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\MediaPlate\MediaPlate.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Experimental\Compositing\HoldoutComposite\HoldoutComposite.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\WmfMedia\WmfMedia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MeshPainting\MeshPainting.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Messaging\TcpMessaging\TcpMessaging.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Messaging\UdpMessaging\UdpMessaging.upluginUFSE:\Games\UE_5.5\Engine\Plugins\MovieScene\ActorSequence\ActorSequence.upluginUFSE:\Games\UE_5.5\Engine\Plugins\NNE\NNEDenoiser\NNEDenoiser.upluginUFSE:\Games\UE_5.5\Engine\Plugins\NNE\NNERuntimeORT\NNERuntimeORT.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\Android\OnlineSubsystemGooglePlay\OnlineSubsystemGooglePlay.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidPermission\AndroidPermission.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\IOS\OnlineSubsystemIOS\OnlineSubsystemIOS.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Online\OnlineSubsystemNull\OnlineSubsystemNull.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Portal\LauncherChunkInstaller\LauncherChunkInstaller.upluginUFSE:\Games\UE_5.5\Engine\Plugins\RenderGraphInsights\RenderGraphInsights.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidDeviceProfileSelector\AndroidDeviceProfileSelector.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AndroidFileServer\AndroidFileServer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ArchVisCharacter\ArchVisCharacter.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\AssetTags\AssetTags.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\CableComponent\CableComponent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ChunkDownloader\ChunkDownloader.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\CustomMeshComponent\CustomMeshComponent.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\ExampleDeviceProfileSelector.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\GooglePAD\GooglePAD.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\InputDebugging\InputDebugging.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\LocationServicesBPLibrary\LocationServicesBPLibrary.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\MobilePatchingUtils\MobilePatchingUtils.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\MsQuic\MsQuic.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\SoundFields\SoundFields.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Synthesis\Synthesis.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\WebMMoviePlayer\WebMMoviePlayer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Media\WebMMedia\WebMMedia.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsDeviceProfileSelector\WindowsDeviceProfileSelector.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\WindowsMoviePlayer\WindowsMoviePlayer.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Runtime\Windows\XInputDevice\XInputDevice.upluginUFSE:\Games\UE_5.5\Engine\Plugins\Tests\InterchangeTests\InterchangeTests.upluginUFSE:\Games\UE_5.5\Engine\Plugins\TraceUtilities\TraceUtilities.upluginUFSE:\Games\UE_5.5\Engine\Plugins\UbaController\UbaController.upluginUFSE:\Games\UE_5.5\Engine\Plugins\WorldMetrics\WorldMetrics.upluginUFSE:\Games\UE_5.5\Engine\Plugins\XGEController\XGEController.upluginUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\NVIDIA\GPUDirect\Win64\dvp.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\LICENSE.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\NEWS.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\python.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\python3.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\python311.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\pythonw.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\vcruntime140.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\vcruntime140_1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\libcrypto-3.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\libffi-8.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\libssl-3.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\py.icoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\pyc.icoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\pyd.icoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\pyexpat.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\python_lib.catNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\python_tools.catNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\select.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\sqlite3.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\tcl86t.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\tk86t.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\unicodedata.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\winsound.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_asyncio.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_bz2.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_ctypes.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_ctypes_test.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_decimal.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_elementtree.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_hashlib.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_lzma.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_msi.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_multiprocessing.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_overlapped.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_queue.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_socket.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_sqlite3.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_ssl.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testbuffer.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testcapi.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testconsole.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testimportmultiple.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testinternalcapi.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_testmultiphase.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_tkinter.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_uuid.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\DLLs\_zoneinfo.pydNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\aifc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\antigravity.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\argparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ast.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asynchat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncore.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\base64.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\bdb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\bisect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\bz2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\calendar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\cgi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\cgitb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\chunk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\code.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\codecs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\codeop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\colorsys.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\compileall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\configparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\contextlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\contextvars.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\copy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\copyreg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\cProfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\crypt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\csv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dataclasses.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\datetime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\decimal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\difflib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dis.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\doctest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\enum.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\filecmp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\fileinput.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\fnmatch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\fractions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ftplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\genericpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\getopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\getpass.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\gettext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\glob.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\graphlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\gzip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\hashlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\heapq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\hmac.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\imaplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\imghdr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\imp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\inspect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\io.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ipaddress.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\keyword.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\linecache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\locale.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lzma.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\mailbox.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\mailcap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\mimetypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\modulefinder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\netrc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\nntplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ntpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\nturl2path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\numbers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\opcode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\operator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\optparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\os.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pathlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pdb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pickle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pickletools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pipes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pkgutil.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\platform.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\plistlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\poplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\posixpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pprint.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\profile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pstats.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pyclbr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pydoc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\py_compile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\queue.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\quopri.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\random.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\reprlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\rlcompleter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\runpy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sched.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\secrets.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\selectors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\shelve.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\shlex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\shutil.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\signal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\smtpd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\smtplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sndhdr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\socket.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\socketserver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sre_compile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sre_constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sre_parse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ssl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\stat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\statistics.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\string.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\stringprep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\struct.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sunau.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\symtable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tabnanny.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tarfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\telnetlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tempfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\textwrap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\this.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\threading.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\timeit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\token.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tokenize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\trace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\traceback.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tracemalloc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\typing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\uu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\uuid.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\warnings.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wave.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\weakref.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\webbrowser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xdrlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zipapp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zipfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zipimport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_aix_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_bootsubprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_collections_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_compat_pickle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_compression.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_markupbase.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_osx_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_pydecimal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_pyio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_py_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_sitebuiltins.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_strptime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_threading_local.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\_weakrefset.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__future__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__hello__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Scripts\pip.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Scripts\pip3.11.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Scripts\pip3.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl86t.libNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tclConfig.shNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tclooConfig.shNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tclstub86.libNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk86t.libNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tkstub86.libNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\base_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\base_futures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\base_subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\base_tasks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\coroutines.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\format_helpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\futures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\locks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\mixins.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\proactor_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\protocols.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\queues.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\runners.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\selector_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\sslproto.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\staggered.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\streams.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\taskgroups.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\tasks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\timeouts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\transports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\trsock.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\unix_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\windows_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\windows_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\asyncio\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\collections\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\collections\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\concurrent\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\wintypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\_aix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\_endian.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\curses\ascii.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\curses\has_key.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\curses\panel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\curses\textpad.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\curses\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dbm\dumb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dbm\gnu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dbm\ndbm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\dbm\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\archive_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\bcppcompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\ccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\cygwinccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\debug.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\dep_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\dir_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\dist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\errors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\extension.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\fancy_getopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\filelist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\file_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\msvc9compiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\msvccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\spawn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\text_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\unixccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\versionpredicate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\_msvccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\architecture.rstNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\base64mime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\charset.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\contentmanager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\encoders.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\errors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\feedparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\generator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\header.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\headerregistry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\iterators.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\message.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\policy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\quoprimime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\_encoded_words.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\_header_value_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\_parseaddr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\_policybase.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\aliases.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\ascii.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\base64_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\big5.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\big5hkscs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\bz2_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\charmap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp037.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1006.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1026.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1125.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1140.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1250.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1251.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1252.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1253.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1254.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1255.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1256.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1257.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp1258.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp273.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp424.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp437.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp500.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp720.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp737.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp775.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp850.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp852.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp855.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp856.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp857.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp858.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp860.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp861.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp862.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp863.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp864.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp865.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp866.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp869.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp874.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp875.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp932.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp949.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\cp950.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\euc_jisx0213.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\euc_jis_2004.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\euc_jp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\euc_kr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\gb18030.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\gb2312.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\gbk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\hex_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\hp_roman8.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\hz.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\idna.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp_1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp_2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp_2004.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp_3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_jp_ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso2022_kr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_10.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_11.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_13.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_14.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_15.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_16.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_4.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_5.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_6.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_7.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_8.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\iso8859_9.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\johab.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\koi8_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\koi8_t.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\koi8_u.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\kz1048.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\latin_1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_arabic.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_croatian.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_cyrillic.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_farsi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_greek.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_iceland.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_latin2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_roman.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_romanian.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mac_turkish.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\mbcs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\oem.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\palmos.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\ptcp154.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\punycode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\quopri_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\raw_unicode_escape.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\rot_13.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\shift_jis.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\shift_jisx0213.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\shift_jis_2004.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\tis_620.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\undefined.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\unicode_escape.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_16.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_16_be.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_16_le.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_32.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_32_be.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_32_le.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_7.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_8.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\utf_8_sig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\uu_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\zlib_codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\encodings\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ensurepip\_uninstall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ensurepip\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ensurepip\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\html\entities.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\html\parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\html\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\http\client.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\http\cookiejar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\http\cookies.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\http\server.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\http\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\autocomplete.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\autocomplete_w.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\autoexpand.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\browser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\calltip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\calltip_w.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\ChangeLogNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\codecontext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\colorizer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config-extensions.defNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config-highlight.defNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config-keys.defNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config-main.defNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\configdialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\config_key.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\CREDITS.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\debugger.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\debugger_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\debugobj.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\debugobj_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\delegator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\dynoption.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\editor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\extend.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\filelist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\format.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\grep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\help.htmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\help.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\help_about.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\history.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\HISTORY.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\hyperparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle.batNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle.pywNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\iomenu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\macosx.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\mainmenu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\multicall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\NEWS2x.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\News3.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\outwin.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\parenmatch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\pathbrowser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\percolator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\pyparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\pyshell.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\query.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\README.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\redirector.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\replace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\rpc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\run.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\runscript.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\scrolledlist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\search.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\searchbase.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\searchengine.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\sidebar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\squeezer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\stackviewer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\statusbar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\textview.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\TODO.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\tooltip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\tree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\undo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\window.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\zoomheight.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\zzdummy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\machinery.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\readers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\simple.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\_bootstrap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\_bootstrap_external.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\json\decoder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\json\encoder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\json\scanner.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\json\tool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\json\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\btm_matcher.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\btm_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixer_base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixer_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\Grammar.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\patcomp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\PatternGrammar.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pygram.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pytree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\refactor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\logging\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\logging\handlers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\logging\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\msilib\schema.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\msilib\sequence.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\msilib\text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\msilib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\connection.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\forkserver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\heap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\managers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\pool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\popen_fork.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\popen_forkserver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\popen_spawn_posix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\popen_spawn_win32.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\process.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\queues.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\reduction.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\resource_sharer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\resource_tracker.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\sharedctypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\shared_memory.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\spawn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\synchronize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pydoc_data\topics.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pydoc_data\_pydoc.cssNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\pydoc_data\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\re\_casefix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\re\_compiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\re\_constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\re\_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\re\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\distutils-precedence.pthNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\README.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sqlite3\dbapi2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sqlite3\dump.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\sqlite3\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\.ruff.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\archiver_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiotest.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiotests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audit-tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\autotest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\bisect_cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\clinic.test.cNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cmath_testcases.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\curses_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\datetimetester.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dis_module.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\empty.vbsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\exception_hierarchy.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\floating_points.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\fork_wait.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\formatfloat_testcases.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ieee754.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imp_dummy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\list_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\lock_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mailcap.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mapping_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\math_testcases.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\memory_watchdog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mime.typesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mock_socket.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mp_fork_bomb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\mp_preload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\multibytecodec_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pickletester.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\profilee.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pstats.pckNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pyclbr_input.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pydocfodder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pydoc_mod.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\pythoninfo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\randv2_32.pckNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\randv2_64.pckNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\randv3.pckNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\recursion.tarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\regrtest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\relimport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\reperf.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\re_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\seq_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\signalinterproctester.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\Sine-1000Hz-300ms.aifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sortperf.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ssltests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ssl_servers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\string_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\testcodec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\testtar.tarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\testtar.tar.xzNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_abstract_numbers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_aifc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_argparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_array.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asdl_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ast.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncgen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asynchat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncore.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_atexit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_audioop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_audit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_augassign.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_base64.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_baseexception.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bdb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bigaddrspace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bigmem.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_binascii.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_binop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bisect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_buffer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bufio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_builtin.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bytes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_bz2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_calendar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_call.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cgi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cgitb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_charmapcodec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_check_c_globals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_class.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_clinic.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cmath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cmd_line.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cmd_line_script.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_code.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codeccallbacks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_cn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_hk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_iso2022.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_jp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_kr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecencodings_tw.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecmaps_cn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecmaps_hk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecmaps_jp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecmaps_kr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecmaps_tw.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codecs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_codeop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_code_module.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_collections.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_colorsys.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_compare.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_compile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_compileall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_complex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_configparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_contains.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_contextlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_contextlib_async.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_copy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_copyreg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_coroutines.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cprofile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_crashers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_crypt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_csv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ctypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_curses.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_c_locale_coercion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_datetime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dbm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dbm_dumb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dbm_gnu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dbm_ndbm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_decimal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_decorators.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_defaultdict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_deque.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_descr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_descrtut.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_devpoll.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dictcomps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dictviews.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dict_version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_difflib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_difflib_expect.htmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dis.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_distutils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_docxmlrpc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dtrace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dynamic.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dynamicclassattribute.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_eintr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_embed.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ensurepip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_enum.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_enumerate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_eof.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_epoll.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_errno.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_exception_group.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_exception_hierarchy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_exception_variations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_except_star.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_extcall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_faulthandler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fcntl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_filecmp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fileinput.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fileio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fileutils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_file_eintr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_finalization.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_float.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_flufl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fnmatch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fork1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_format.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fractions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_frame.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_frozen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_fstring.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ftplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_funcattrs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_generators.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_generator_stop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_genericalias.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_genericclass.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_genericpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_genexps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_getopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_getpass.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_getpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gettext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_glob.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_global.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_grammar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_graphlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_grp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gzip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_hash.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_hashlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_heapq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_hmac.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_html.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_htmlparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_httplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_httpservers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_http_cookiejar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_http_cookies.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_idle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_imaplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_imghdr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_imp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_index.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_int.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_interpreters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_int_literal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_io.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ioctl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ipaddress.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_isinstance.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_iter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_iterlen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_keyword.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_keywordonlyarg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_kqueue.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_largefile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_launcher.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_lib2to3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_linecache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_list.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_listcomps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_lltrace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_locale.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_logging.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_long.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_longexp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_lzma.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_mailbox.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_mailcap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_marshal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_math.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_memoryio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_memoryview.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_metaclass.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_mimetypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_minidom.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_mmap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_modulefinder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_msilib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multibytecodec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_main_handling.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_named_expressions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_netrc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_nis.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_nntplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ntpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_numeric_tower.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_opcache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_opcodes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_openpty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_operator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_optparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ordered_dict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_os.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ossaudiodev.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_osx_env.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pathlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_patma.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pdb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peepholer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pep646_syntax.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pickle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_picklebuffer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pickletools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pipes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pkg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pkgutil.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_platform.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_plistlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_poll.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_popen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_poplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_positional_only_arg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_posix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_posixpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pow.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pprint.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_print.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_profile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_property.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pstats.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pulldom.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pwd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pyclbr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pydoc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_pyexpat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_py_compile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_queue.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_quopri.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_raise.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_random.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_range.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_re.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_readline.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_regrtest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_repl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_reprlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_resource.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_richcmp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_rlcompleter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_robotparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_runpy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sax.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sched.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_scope.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_script_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_secrets.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_select.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_selectors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_set.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_setcomps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_shelve.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_shlex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_shutil.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_signal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_site.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_slice.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_smtpd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_smtplib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_smtpnet.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sndhdr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_socket.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_socketserver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sort.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_source_encoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_spwd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ssl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_stable_abi_ctypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_startfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_stat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_statistics.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_strftime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_string.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_stringprep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_string_literals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_strptime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_strtod.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_struct.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_structseq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_subclassinit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sunau.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sundry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_super.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_symtable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_syntax.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sys.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_syslog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sys_setprofile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sys_settrace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tabnanny.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tarfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tcl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_telnetlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tempfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_termios.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_textwrap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_thread.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_threadedtempfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_threading.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_threading_local.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_threadsignals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_time.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_timeit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_timeout.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tokenize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_trace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_traceback.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tracemalloc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ttk_guionly.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ttk_textonly.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tuple.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_turtle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_typechecks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_type_annotations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_type_cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_type_comments.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_typing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_ucn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unary.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unicodedata.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unicode_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unicode_file_functions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unicode_identifiers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unittest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_univnewlines.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unpack.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unpack_ex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_unparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllib2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllib2net.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllib2_localnet.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllibnet.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urllib_response.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_urlparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_userdict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_userlist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_userstring.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_utf8source.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_utf8_mode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_uu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_uuid.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_venv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_wait3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_wait4.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_wave.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_weakref.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_weakset.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_webbrowser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_winconsoleio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_winreg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_winsound.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_with.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_wsgiref.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xdrlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xmlrpc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xmlrpc_net.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xml_dom_minicompat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xml_etree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xml_etree_c.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xxlimited.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_xxtestfuzz.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_yield_from.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zipapp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zipfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zipfile64.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zipimport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zipimport_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test__locale.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test__opcode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test__osx_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test__xxsubinterpreters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test___all__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tf_inherit_check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\time_hashlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\win_console_handler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\zipdir.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\zip_cp437_header.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_atexit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_eintr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_embed_set_config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_embed_structseq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_multiprocessing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\_test_venv_multiprocessing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\colorchooser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\commondialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\dialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\dnd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\filedialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\font.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\messagebox.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\scrolledtext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\simpledialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\tix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\ttk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tomllib\_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tomllib\_re.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tomllib\_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tomllib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\bytedesign.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\chaos.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\clock.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\colormixer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\forest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\fractalcurves.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\lindenmayer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\minimal_hanoi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\nim.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\paint.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\peace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\penrose.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\planet_and_moon.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\rosette.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\round_dance.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\sorting_animate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\tree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\turtle.cfgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\two_canvases.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\yinyang.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\turtledemo\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\async_case.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\case.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\mock.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\result.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\runner.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\signals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\suite.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\_log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\error.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\parse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\request.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\response.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\robotparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\urllib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\handlers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\headers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\simple_server.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\validate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\wsgiref\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xmlrpc\client.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xmlrpc\server.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xmlrpc\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zoneinfo\_common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zoneinfo\_tzpath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zoneinfo\_zoneinfo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\zoneinfo\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__phello__\spam.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__phello__\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\dde1.4\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\dde1.4\tcldde14.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\nmake\nmakehlp.cNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\nmake\rules.vcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\nmake\targets.vcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\nmake\tcl.nmakeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\nmake\x86_64-w64-mingw32-nmakehlp.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\reg1.3\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\reg1.3\tclreg13.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\auto.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\clock.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\history.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\init.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\package.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\parray.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\safe.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tclIndexNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tm.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\word.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Balloon.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\BtnBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\ChkList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\CObjView.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\ComboBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Compat.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Console.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Control.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DefSchm.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DialogS.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DirBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DirDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DirList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DirTree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DragDrop.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\DtlList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\EFileBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\EFileDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Event.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\FileBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\FileCbx.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\FileDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\FileEnt.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\FloatEnt.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\fs.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Grid.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\HList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\HListDD.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\IconView.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Init.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\LabEntry.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\LabFrame.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\LabWidg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\ListNBk.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\MakefileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Meter.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\MultView.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\NoteBook.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\OldUtil.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\OptMenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\PanedWin.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\PopMenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Primitiv.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\ResizeH.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Select.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SGrid.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Shell.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SHList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SimpDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SListBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\StackWin.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\StatBar.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\StdBBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\StdShell.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SText.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\STList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SWidget.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\SWindow.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Tix.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\tix84.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\tix84.libNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\TList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Tree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Utils.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\Variable.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\VResize.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\VStack.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\VTree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\WInfo.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\bgerror.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\button.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\choosedir.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\clrpick.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\comdlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\console.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\dialog.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\entry.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\focus.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\fontchooser.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\iconlist.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\icons.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\license.termsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\listbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\megawidget.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\menu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\mkpsenc.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\obsolete.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\optMenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\palette.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\panedwindow.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\safetk.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\scale.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\scrlbar.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\spinbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\tclIndexNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\tearoff.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\text.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\tk.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\tkfbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\unsupported.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\xmfbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\beer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\eiffel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\hanoi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\life.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\markov.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\mcast.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\queens.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\redemo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\rpython.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\rpythond.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\sortvisu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\spreadsheet.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\demo\vector.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\i18n\makelocalealias.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\i18n\msgfmt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\i18n\pygettext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\2to3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\abitype.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\analyze_dxp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\byext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\byteyears.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\checkpip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\cleanfuture.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\combinerefs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\copytime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\crlf.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\db2pickle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\deepfreeze.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\diff.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\dutree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\eptags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\find-uname.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\finddiv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\findlinksto.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\findnocoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\find_recursionlimit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\fixcid.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\fixdiv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\fixheader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\fixnotice.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\fixps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\freeze_modules.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_global_objects.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_opcode_h.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_re_casefix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_sre_constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_stdlib_module_names.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\generate_token.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\get-remote-certificate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\google.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\gprof2html.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\highlight.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\ifdef.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\import_diagnostics.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\lfcr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\linktree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\lll.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\mailerdaemon.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\make_ctype.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\md5sum.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\mkreal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\ndiff.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\nm2def.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\objgraph.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\parseentities.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\parse_html5_entities.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\patchcheck.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pathfix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pdeps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pep384_macrocheck.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pickle2db.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pindent.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\ptags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pydoc3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\pysource.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\reindent-rst.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\reindent.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\rgrep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\run_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\smelly.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\stable_abi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\startuptime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\suff.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\summarize_stats.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\texi2html.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\umarshal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\untabify.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\update_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\var_access_benchmark.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\verify_ensurepip_wheels.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\which.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Tools\scripts\win_add2path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\concurrent\futures\process.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\concurrent\futures\thread.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\concurrent\futures\_base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\concurrent\futures\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\dyld.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\dylib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\fetch_macholibNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\fetch_macholib.batNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\framework.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\README.ctypesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\macholib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_anon.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_arrays.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_array_in_pointer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_as_parameter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_bitfields.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_buffers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_bytes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_byteswap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_callbacks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_cast.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_cfuncs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_checkretval.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_delattr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_errno.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_find.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_frombuffer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_funcptr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_functions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_incomplete.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_init.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_internals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_keeprefs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_libc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_loading.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_macholib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_memfunctions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_numbers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_objects.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_parameters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_pep3118.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_pickling.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_pointers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_prototypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_python_api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_random_things.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_refcounts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_repr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_returnfuncptrs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_simplesubclasses.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_sizes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_slicing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_stringptr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_strings.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_struct_fields.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_unaligned_structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_values.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_varsize_struct.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_win32.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\test_wintypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ctypes\test\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\bdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\bdist_dumb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\bdist_rpm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\build.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\build_clib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\build_ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\build_py.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\build_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\clean.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\command_templateNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install_egg_info.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install_headers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install_lib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\install_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\register.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\sdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\upload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\command\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\includetest.rstNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\Setup.sampleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_archive_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_bdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_bdist_dumb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_bdist_rpm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_build.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_build_clib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_build_ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_build_py.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_build_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_clean.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_config_cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_cygwinccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_dep_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_dir_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_dist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_extension.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_filelist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_file_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_install_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_install_headers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_install_lib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_install_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_msvc9compiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_msvccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_register.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_sdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_spawn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_text_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_unixccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_upload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\test_versionpredicate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\distutils\tests\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\application.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\audio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\image.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\message.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\multipart.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\nonmultipart.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\email\mime\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ensurepip\_bundled\pip-24.0-py3-none-any.whlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\ensurepip\_bundled\setuptools-65.5.0-py3-none-any.whlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\folder.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle.icoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_16.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_16.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_256.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_32.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_32.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_48.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\idle_48.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\minusnode.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\openfolder.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\plusnode.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\python.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\README.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\Icons\tk.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\example_noextNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\example_stub.pyiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\htest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\mock_idle.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\mock_tk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\README.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\template.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_autocomplete.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_autocomplete_w.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_autoexpand.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_browser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_calltip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_calltip_w.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_codecontext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_colorizer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_configdialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_config_key.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_debugger.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_debugger_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_debugobj.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_debugobj_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_delegator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_editmenu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_editor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_filelist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_format.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_grep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_help.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_help_about.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_history.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_hyperparser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_iomenu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_macosx.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_mainmenu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_multicall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_outwin.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_parenmatch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_pathbrowser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_percolator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_pyparse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_pyshell.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_query.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_redirector.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_replace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_rpc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_run.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_runscript.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_scrolledlist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_search.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_searchbase.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_searchengine.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_sidebar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_squeezer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_stackviewer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_statusbar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_textview.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_tooltip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_tree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_undo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_warning.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_window.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_zoomheight.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\test_zzdummy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\tkinter_testing_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\idlelib\idle_test\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_collections.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_meta.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\_text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\metadata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\readers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\simple.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\_adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\_common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\importlib\resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_apply.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_asserts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_basestring.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_buffer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_dict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_except.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_exec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_execfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_exitfunc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_filter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_funcattrs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_future.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_getcwdu.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_has_key.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_idioms.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_import.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_imports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_imports2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_input.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_intern.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_isinstance.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_itertools_imports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_long.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_map.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_metaclass.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_methodattrs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_ne.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_next.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_nonzero.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_numliterals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_operator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_paren.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_print.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_raise.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_raw_input.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_reduce.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_reload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_renames.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_repr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_set_literal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_standarderror.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_sys_exc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_throw.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_tuple_params.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_urllib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_ws_comma.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_xrange.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_xreadlines.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\fix_zip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\fixes\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\conv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\driver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\grammar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\literals.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\parse.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\pgen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\token.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\tokenize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\pgen2\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\pytree_idempotency.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_all_fixers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_fixers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_pytree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_refactor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\test_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\dummy\connection.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\multiprocessing\dummy\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\__pip-runner__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\AUTHORS.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\entry_points.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\INSTALLERNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\LICENSE.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\METADATANonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\RECORDNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\REQUESTEDNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\top_level.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip-24.0.dist-info\WHEELNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\archive_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\build_meta.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\cli-32.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\cli-64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\cli-arm64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\cli.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\depends.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\dep_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\discovery.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\dist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\errors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\extension.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\glob.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\gui-32.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\gui-64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\gui-arm64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\gui.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\installer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\launch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\logging.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\monkey.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\msvc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\namespaces.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\package_index.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\py34compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\sandbox.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\script (dev).tmplNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\script.tmplNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\unicode_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\windows_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_deprecation_warning.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_entry_points.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_imp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_importlib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_reqs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\entry_points.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\INSTALLERNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\LICENSENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\METADATANonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\RECORDNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\REQUESTEDNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\top_level.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools-65.5.0.dist-info\WHEELNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\_distutils_hack\override.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\_distutils_hack\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-alaw.aifcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm16.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm16.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm16.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm24.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm24.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm24.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm32.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm32.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm32.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm8.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm8.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-pcm8.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-ulaw.aifcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\audiodata\pluck-ulaw.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\allsans.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\badcert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\badkey.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\ffdh3072.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\idnsans.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycert.passwd.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycert2.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycert3.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycert4.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\keycertecc.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\make_ssl_certs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\nokia.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\nosan.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\nullbytecert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\nullcert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\pycacert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\pycakey.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\revocation.crlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\secp384r1.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\selfsigned_pythontestdotnet.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\ssl_cert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\ssl_key.passwd.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\ssl_key.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\talos-2019-0758.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\big5-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\big5.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\big5hkscs-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\big5hkscs.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\cp949-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\cp949.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_jisx0213-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_jisx0213.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_jp-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_jp.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_kr-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\euc_kr.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gb18030-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gb18030.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gb2312-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gb2312.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gbk-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\gbk.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\hz-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\hz.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\iso2022_jp-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\iso2022_jp.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\iso2022_kr-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\iso2022_kr.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\johab-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\johab.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\shift_jis-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\shift_jis.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\shift_jisx0213-utf8.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\cjkencodings\shift_jisx0213.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\configdata\cfgparser.1NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\configdata\cfgparser.2NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\configdata\cfgparser.3NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\bogus_code_obj.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\gc_inspection.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\infinite_loop_re.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\mutation_inside_cyclegc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\recursive_call.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\trace_at_recursion_limit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\crashers\underlying_dict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\data\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\abs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\add.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\and.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\base.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\clamp.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\class.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\compare.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\comparetotal.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\comparetotmag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\copy.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\copyabs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\copynegate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\copysign.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddAbs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddAdd.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddAnd.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddBase.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCanonical.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddClass.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCompare.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCompareSig.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCompareTotal.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCompareTotalMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCopy.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCopyAbs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCopyNegate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddCopySign.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddDivide.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddDivideInt.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddEncode.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddFMA.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddInvert.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddLogB.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMax.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMaxMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMin.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMinMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMinus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddMultiply.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddNextMinus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddNextPlus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddNextToward.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddOr.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddPlus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddQuantize.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddReduce.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddRemainder.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddRemainderNear.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddRotate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddSameQuantum.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddScaleB.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddShift.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddSubtract.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddToIntegral.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ddXor.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\decDouble.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\decQuad.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\decSingle.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\divide.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\divideint.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqAbs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqAdd.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqAnd.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqBase.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCanonical.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqClass.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCompare.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCompareSig.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCompareTotal.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCompareTotalMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCopy.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCopyAbs.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCopyNegate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqCopySign.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqDivide.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqDivideInt.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqEncode.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqFMA.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqInvert.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqLogB.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMax.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMaxMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMin.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMinMag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMinus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqMultiply.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqNextMinus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqNextPlus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqNextToward.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqOr.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqPlus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqQuantize.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqReduce.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqRemainder.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqRemainderNear.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqRotate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqSameQuantum.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqScaleB.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqShift.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqSubtract.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqToIntegral.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dqXor.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dsBase.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\dsEncode.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\exp.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\extra.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\fma.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\inexact.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\invert.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\ln.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\log10.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\logb.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\max.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\maxmag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\min.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\minmag.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\minus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\multiply.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\nextminus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\nextplus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\nexttoward.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\or.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\plus.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\power.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\powersqrt.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\quantize.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\randomBound32.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\randoms.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\reduce.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\remainder.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\remainderNear.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\rescale.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\rotate.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\rounding.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\samequantum.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\scaleb.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\shift.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\squareroot.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\subtract.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\testall.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\tointegral.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\tointegralx.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\decimaltestdata\xor.decTestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\assert_usable.dNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\assert_usable.stpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\call_stack.dNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\call_stack.d.expectedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\call_stack.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\call_stack.stpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\call_stack.stp.expectedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\gc.dNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\gc.d.expectedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\gc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\gc.stpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\gc.stp.expectedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\instance.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\line.dNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\line.d.expectedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\dtracedata\line.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\encoded_modules\module_iso_8859_1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\encoded_modules\module_koi8_r.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\encoded_modules\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python-raw.jpgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.bmpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.exrNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.jpgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.pbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.pgmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.ppmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.rasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.sgiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.tiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.webpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\imghdrdata\python.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\leakers\README.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\leakers\test_ctypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\leakers\test_selftype.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\leakers\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\cmdline.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\filter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\findtests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\logger.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\mypy.iniNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\pgo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\refleak.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\result.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\results.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\runtests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\run_workers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\save_env.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\setup.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\single.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\testresult.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\win_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\worker.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\libregrtest\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.8svxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.aifcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.hcomNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.sndtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.vocNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\sndhdrdata\sndhdr.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\subprocessdata\fd_status.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\subprocessdata\input_reader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\subprocessdata\qcat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\subprocessdata\qgrep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\subprocessdata\sigchild_ignore.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\bytecode_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\hashlib_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\import_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\interpreters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\logging_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\os_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\pty_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\script_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\socket_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\threading_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\warnings_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\support\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\echo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\echo2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\echo3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\functional.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_base_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_buffered_proto.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_futures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_futures2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_locks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_pep492.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_proactor_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_protocols.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_queues.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_runners.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_selector_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_sendfile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_server.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_sock_lowlevel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_ssl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_sslproto.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_streams.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_taskgroups.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_tasks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_timeouts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_transports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_unix_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_waitfor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_windows_events.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\test_windows_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_asyncio\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_codecs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_eval_code_ex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_getargs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_structmembers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\test_unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_capi\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\executor.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_as_completed.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_deadlock.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_future.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_init.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_process_pool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_shutdown.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_thread_pool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\test_wait.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_concurrent_futures\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cppext\extension.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cppext\setup.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_cppext\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\dataclass_module_1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\dataclass_module_1_str.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\dataclass_module_2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\dataclass_module_2_str.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\dataclass_textanno.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_dataclasses\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\doctest_aliases.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\doctest_lineno.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\sample_doctest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\sample_doctest_no_docstrings.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\sample_doctest_no_doctests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest2.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest3.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\test_doctest4.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_doctest\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_asian_codecs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_contentmanager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_defect_handling.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_email.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_generator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_headerregistry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_inversion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_message.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_pickleable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_policy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test__encoded_words.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\test__header_value_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\torture_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future10.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future4.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future5.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future6.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future7.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future8.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\badsyntax_future9.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\future_test1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\future_test2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\test_future.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\test_future_flags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\test_future_multiple_features.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\test_future_multiple_imports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\test_future_single_import.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_future_stmt\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\gdb_sample.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\test_backtrace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\test_cfunction.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\test_cfunction_full.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\test_pretty_print.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_gdb\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\fixtures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\stubs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_compatibilty_files.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_contents.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_files.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_lazy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_locks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_metadata_api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_namespace_pkgs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_open.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_pkg_import.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_read.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_reader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_resource.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_spec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_threaded_import.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_windows.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\test_zip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\threaded_import_hangers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\update-zips.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\inspect_fodder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\inspect_fodder2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\inspect_stock_annotations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\inspect_stringized_annotations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\inspect_stringized_annotations_2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\test_inspect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_inspect\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_decode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_default.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_dump.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_encode_basestring_ascii.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_enum.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_fail.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_float.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_indent.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_pass1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_pass2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_pass3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_recursion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_scanstring.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_separators.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_speedups.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_tool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\test_unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_json\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\bad_getattr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\bad_getattr2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\bad_getattr3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\final_a.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\final_b.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\good_getattr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_module\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_fork\test_manager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_fork\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_fork\test_processes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_fork\test_threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_fork\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_forkserver\test_manager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_forkserver\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_forkserver\test_processes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_forkserver\test_threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_forkserver\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_spawn\test_manager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_spawn\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_spawn\test_processes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_spawn\test_threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_multiprocessing_spawn\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\test_c_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\test_first_sets.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\test_grammar_validator.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\test_pegen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_peg_generator\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_backup.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_dbapi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_dump.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_factory.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_hooks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_regression.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_transactions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\test_userfunctions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_sqlite3\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\burntsushi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\test_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\test_error.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_fixcid.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_freeze.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_gprof2html.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_i18n.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_lll.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_md5sum.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_pathfix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_pdeps.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_pindent.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_reindent.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\test_sundry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tools\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_warnings\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_warnings\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\test_zoneinfo.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\_support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\badsyntax_3131.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\badsyntax_pep3120.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\bad_coding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\bad_coding2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\coding20731.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\tokenize_tests.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tokenizedata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tracedmodules\testmod.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\tracedmodules\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module3.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module4.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module5.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module6.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module7.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module8.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\ann_module9.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\mod_generics_cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\_typed_dict_helper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\typinganndata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\expat224_utf8_bug.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\simple-ns.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\simple.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\test.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\test.xml.outNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ziptestdata\exe_with_z64NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ziptestdata\exe_with_zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ziptestdata\header.shNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ziptestdata\README.mdNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\ziptestdata\testdata_module_inside_zip.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\widget_tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\dummy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_assertions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_async_case.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_break.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_case.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_discovery.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_functiontestcase.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_program.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_result.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_runner.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_setups.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_skipping.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\test_suite.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\_test_warnings.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\domreg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\expatbuilder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\minicompat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\minidom.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\NodeFilter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\pulldom.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\xmlbuilder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\dom\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\etree\cElementTree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\etree\ElementInclude.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\etree\ElementPath.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\etree\ElementTree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\etree\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\parsers\expat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\parsers\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\expatreader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\handler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\saxutils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\xmlreader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\_exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\xml\sax\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__phello__\ham\eggs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\__phello__\ham\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8\8.4\platform-1.0.18.tmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8\8.5\msgcat-1.6.1.tmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8\8.5\tcltest-2.5.3.tmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8\8.6\http-2.9.5.tmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\ascii.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\big5.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cns11643.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1250.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1251.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1252.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1253.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1254.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1255.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1256.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1257.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp1258.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp437.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp737.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp775.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp850.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp852.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp855.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp857.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp860.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp861.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp862.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp863.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp864.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp865.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp866.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp869.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp874.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp932.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp936.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp949.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\cp950.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\dingbats.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\ebcdic.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\euc-cn.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\euc-jp.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\euc-kr.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\gb12345.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\gb1988.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\gb2312-raw.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\gb2312.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso2022-jp.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso2022-kr.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso2022.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-1.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-10.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-11.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-13.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-14.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-15.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-16.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-2.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-3.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-4.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-5.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-6.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-7.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-8.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\iso8859-9.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\jis0201.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\jis0208.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\jis0212.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\koi8-r.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\koi8-u.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\ksc5601.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macCentEuro.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macCroatian.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macCyrillic.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macDingbats.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macGreek.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macIceland.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macJapan.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macRoman.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macRomania.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macThai.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macTurkish.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\macUkraine.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\shiftjis.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\symbol.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\encoding\tis-620.encNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\http1.0\http.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\http1.0\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\af.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\af_za.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ar.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ar_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ar_jo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ar_lb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ar_sy.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\be.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\bg.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\bn.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\bn_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ca.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\cs.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\da.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\de.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\de_at.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\de_be.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\el.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_au.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_be.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_bw.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_ca.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_gb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_hk.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_ie.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_nz.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_ph.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_sg.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_za.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\en_zw.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\eo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_ar.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_bo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_cl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_co.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_cr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_do.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_ec.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_gt.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_hn.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_mx.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_ni.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_pa.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_pe.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_pr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_py.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_sv.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_uy.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\es_ve.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\et.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\eu.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\eu_es.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fa.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fa_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fa_ir.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fi.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fo_fo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fr_be.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fr_ca.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\fr_ch.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ga.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ga_ie.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\gl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\gl_es.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\gv.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\gv_gb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\he.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\hi.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\hi_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\hr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\hu.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\id.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\id_id.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\is.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\it.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\it_ch.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ja.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kl_gl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ko.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kok.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kok_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ko_kr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kw.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\kw_gb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\lt.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\lv.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\mk.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\mr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\mr_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ms.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ms_my.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\mt.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\nb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\nl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\nl_be.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\nn.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\pl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\pt.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\pt_br.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ro.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ru.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ru_ua.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sh.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sk.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sq.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sv.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\sw.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ta.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\ta_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\te.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\te_in.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\th.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\tr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\uk.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\vi.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\zh.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\zh_cn.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\zh_hk.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\zh_sg.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\msgs\zh_tw.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\opt0.4\optparse.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\opt0.4\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\CETNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\CST6CDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\CubaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\EETNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\EgyptNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\EireNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\ESTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\EST5EDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GBNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GB-EireNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GMTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GMT+0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GMT-0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GMT0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\GreenwichNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\HongkongNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\HSTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\IcelandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\IranNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\IsraelNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\JamaicaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\JapanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\KwajaleinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\LibyaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\METNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\MSTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\MST7MDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\NavajoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\NZNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\NZ-CHATNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\PolandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\PortugalNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\PRCNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\PST8PDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\ROCNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\ROKNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SingaporeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\TurkeyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\UCTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\UniversalNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\UTCNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\W-SUNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\WETNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\ZuluNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\act_fold.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\act_fold.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\act_fold.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\balarrow.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\cbxarrow.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\ck_def.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\ck_off.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\ck_on.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\cross.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\decr.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\drop.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\file.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\file.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\file.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\folder.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\folder.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\folder.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\harddisk.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\hourglas.maskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\hourglas.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\incr.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\info.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\info.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\maximize.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minimize.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minus.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minus.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minus.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minusarm.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minusarm.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\minusarm.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\mktransgif.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\network.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\no_entry.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\no_entry.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\openfile.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\openfold.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\openfold.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\openfold.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plus.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plus.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plus.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plusarm.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plusarm.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\plusarm.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\resize1.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\resize2.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\restore.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\srcfile.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\srcfile.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\srcfile.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\system.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\textfile.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\textfile.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\textfile.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\tick.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\warning.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\bitmaps\warning.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\MkChoose.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\MkDirLis.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\MkSample.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\MkScroll.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\tclIndexNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\tixwidgets.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\widgetNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\10Point.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\10Point.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\12Point.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\12Point.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\14Point.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\14Point.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Bisque.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Bisque.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Blue.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Blue.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Gray.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Gray.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\MakefileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Old12Pt.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\Old14Pt.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\pkgIndex.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\SGIGray.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\SGIGray.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TixGray.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TixGray.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\tixmkprefNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TK.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TK.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TK.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TK.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TkWin.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TkWin.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TkWin.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\TkWin.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.csNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.cscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.fsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.fscNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\pref\WmDefault.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\anilabel.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\aniwave.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\arrow.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\bind.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\bitmap.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\browseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\button.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\check.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\clrpick.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\colors.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\combo.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\cscroll.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ctext.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\dialog1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\dialog2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\en.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\entry1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\entry2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\entry3.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\filebox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\floor.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\fontchoose.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\form.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\goldberg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\helloNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\hscale.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\icon.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\image1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\image2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\items.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ixsetNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\knightstour.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\label.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\labelframe.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\license.termsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\mclist.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\menu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\menubu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\msgbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\nl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\paned1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\paned2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\pendulum.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\plot.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\puzzle.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\radio.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\rmtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\rolodexNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ruler.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\sayings.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\search.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\spin.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\squareNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\states.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\style.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\tclIndexNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\tcolorNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\text.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\textpeer.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\timerNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\toolbar.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\tree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttkbut.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttkmenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttknote.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttkpane.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttkprogress.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\ttkscale.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\twind.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\unicodeout.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\vscale.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\widgetNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\logo.epsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\logo100.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\logo64.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\logoLarge.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\logoMed.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo.epsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo100.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo150.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo175.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo200.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\pwrdLogo75.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\images\tai-ku.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\cs.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\da.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\de.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\el.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\en.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\en_gb.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\eo.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\es.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\fr.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\hu.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\it.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\nl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\pl.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\pt.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\ru.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\msgs\sv.msgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\altTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\aquaTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\button.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\clamTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\classicTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\combobox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\cursors.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\defaults.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\entry.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\fonts.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\menubutton.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\notebook.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\panedwindow.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\progress.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\scale.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\scrollbar.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\sizegrip.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\spinbox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\treeview.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\ttk.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\utils.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\vistaTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\winTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\ttk\xpTheme.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\bom.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\crlf.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\different_encoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\false_encoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\infinite_recursion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\py2_test_grammar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\py3_test_grammar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\build_env.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\configuration.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\pyproject.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\self_outdated_check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\wheel_builder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\six.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\typing_extensions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\vendor.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\extern\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\appdirs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\zipp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\alias.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\bdist_egg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\bdist_rpm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\build.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\build_clib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\build_ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\build_py.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\develop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\dist_info.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\easy_install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\editable_wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\egg_info.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\install_egg_info.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\install_lib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\install_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\launcher manifest.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\py36compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\register.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\rotate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\saveopts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\sdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\setopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\upload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\upload_docs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\command\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\expand.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\pyprojecttoml.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\setupcfg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_apply_pyprojecttoml.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\extern\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\archive_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\bcppcompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\ccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\cygwinccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\debug.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\dep_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\dir_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\dist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\errors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\extension.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\fancy_getopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\filelist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\file_util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\msvc9compiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\msvccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\py38compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\py39compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\spawn.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\text_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\unixccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\versionpredicate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\_collections.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\_functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\_macos_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\_msvccompiler.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\ordered_set.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\typing_extensions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\zipp.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\4e1295a3.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\5ed36f99.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\6e88d7b8.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\99d0fa06.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\b1930218.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\certdata\capath\ceff1710.0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\regrtestdata\import_from_tests\test_regrtest_a.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\regrtestdata\import_from_tests\test_regrtest_c.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_01.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_02.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_03.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_04.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_05.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_06.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_07.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_08.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_09.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_10.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_11.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_12.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_12a.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_13.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_14.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_15.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_16.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_17.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_18.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_19.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_20.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_21.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_22.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_23.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_24.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_25.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_26.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_27.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_28.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_29.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_30.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_31.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_32.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_33.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_34.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_35.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_36.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_37.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_38.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_39.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_40.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_41.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_42.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_43.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_44.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_45.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_46.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\msg_47.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.bmpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.exrNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.jpgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.pbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.pgmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.ppmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.rasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.sgiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.tiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.webpNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\python.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\sndhdr.aifcNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\sndhdr.aiffNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\sndhdr.auNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_email\data\sndhdr.wavNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\double_const.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\builtin\test_finder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\builtin\test_loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\builtin\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\builtin\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data\example-21.12-py3-none-any.whlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data\example-21.12-py3.6.eggNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data\example2-1.0.0-py3-none-any.whlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\binary.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\utf-16.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\utf-8.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data02\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data03\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\test_case_sensitivity.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\test_finder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\test_loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\test_path_hook.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\extension\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\frozen\test_finder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\frozen\test_loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\frozen\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\frozen\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_caching.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_fromlist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_meta_path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_packages.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_path.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test_relative_imports.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test___loader__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\test___package__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\import_\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespacedata01\binary.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespacedata01\utf-16.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespacedata01\utf-8.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\missing_directory.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\nested_portion1.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\top_level_portion1.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\partial\cfimport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\partial\pool_in_threads.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\resources\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\test_case_sensitivity.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\test_file_loader.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\test_finder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\test_path_hook.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\test_source_encoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\source\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\zipdata01\ziptestdata.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\zipdata01\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\zipdata02\ziptestdata.zipNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\zipdata02\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_warnings\data\import_warning.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_warnings\data\stacklevel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\data\update_test_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_zoneinfo\data\zoneinfo_data.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nComment.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nPrefixQname.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nPrefixQnameXpathElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nQname.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nQnameElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nQnameXpathElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\c14nTrim.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\doc.dtdNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\doc.xslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N1.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N2.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N3.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N4.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N5.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inC14N6.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsContent.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsPushdown.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsRedecl.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsSort.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsSuperfluous.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\inNsXml.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N1_c14nComment.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N1_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N2_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N2_c14nTrim.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N3_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N3_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N3_c14nTrim.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N4_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N4_c14nTrim.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N5_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N5_c14nTrim.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inC14N6_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsContent_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsContent_c14nPrefixQnameXpathElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsContent_c14nQnameElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsContent_c14nQnameXpathElem.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsDefault_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsDefault_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsPushdown_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsPushdown_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsRedecl_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsRedecl_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsSort_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsSort_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsSuperfluous_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsSuperfluous_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsXml_c14nDefault.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsXml_c14nPrefix.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsXml_c14nPrefixQname.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\out_inNsXml_c14nQname.xmlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\READMENonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\xmltestdata\c14n-20\world.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_colorchooser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_font.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_geometry_managers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_images.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_loadtk.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_messagebox.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_simpledialog.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_variables.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\test_widgets.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_tkinter\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_ttk\test_extensions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_ttk\test_style.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_ttk\test_widgets.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\tkinter\test\test_ttk\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\support.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testasync.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testcallable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testhelpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testmagicmethods.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testmock.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testpatch.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testsealable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testsentinel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\testwith.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\unittest\test\testmock\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\common\activateNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\common\Activate.ps1NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\nt\activate.batNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\nt\deactivate.batNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\nt\python.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\nt\pythonw.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\posix\activate.cshNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\venv\scripts\posix\activate.fishNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8\8.4\platform\shell-1.1.4.tmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\AbidjanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\AccraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\Addis_AbabaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\AlgiersNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\AsmaraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\AsmeraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BamakoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BanguiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BanjulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BissauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BlantyreNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BrazzavilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\BujumburaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\CairoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\CasablancaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\CeutaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\ConakryNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\DakarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\Dar_es_SalaamNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\DjiboutiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\DoualaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\El_AaiunNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\FreetownNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\GaboroneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\HarareNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\JohannesburgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\JubaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\KampalaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\KhartoumNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\KigaliNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\KinshasaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LagosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LibrevilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LomeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LuandaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LubumbashiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\LusakaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MalaboNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MaputoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MaseruNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MbabaneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MogadishuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\MonroviaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\NairobiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\NdjamenaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\NiameyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\NouakchottNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\OuagadougouNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\Porto-NovoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\Sao_TomeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\TimbuktuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\TripoliNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\TunisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Africa\WindhoekNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AdakNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AnchorageNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AnguillaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AntiguaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AraguainaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ArubaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AsuncionNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AtikokanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\AtkaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BahiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Bahia_BanderasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BarbadosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BelemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BelizeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Blanc-SablonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Boa_VistaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BogotaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\BoiseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Buenos_AiresNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Cambridge_BayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Campo_GrandeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CancunNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CaracasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CatamarcaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CayenneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CaymanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ChicagoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ChihuahuaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Coral_HarbourNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CordobaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Costa_RicaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CrestonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CuiabaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\CuracaoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\DanmarkshavnNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\DawsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Dawson_CreekNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\DenverNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\DetroitNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\DominicaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\EdmontonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\EirunepeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\El_SalvadorNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\EnsenadaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\FortalezaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Fort_NelsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Fort_WayneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Glace_BayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GodthabNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Goose_BayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Grand_TurkNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GrenadaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GuadeloupeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GuatemalaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GuayaquilNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\GuyanaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\HalifaxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\HavanaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\HermosilloNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\IndianapolisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\InuvikNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\IqaluitNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\JamaicaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\JujuyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\JuneauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Knox_INNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\KralendijkNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\La_PazNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\LimaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Los_AngelesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\LouisvilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Lower_PrincesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MaceioNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ManaguaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ManausNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MarigotNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MartiniqueNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MatamorosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MazatlanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MendozaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MenomineeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MeridaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MetlakatlaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Mexico_CityNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MiquelonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MonctonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MonterreyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MontevideoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MontrealNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\MontserratNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\NassauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\New_YorkNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\NipigonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\NomeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\NoronhaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\NuukNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\OjinagaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\PanamaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\PangnirtungNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ParamariboNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\PhoenixNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Port-au-PrinceNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Porto_AcreNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Porto_VelhoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Port_of_SpainNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Puerto_RicoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Punta_ArenasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Rainy_RiverNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Rankin_InletNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\RecifeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ReginaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ResoluteNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Rio_BrancoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\RosarioNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\SantaremNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Santa_IsabelNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\SantiagoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Santo_DomingoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Sao_PauloNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ScoresbysundNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ShiprockNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\SitkaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_BarthelemyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_JohnsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_KittsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_LuciaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_ThomasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\St_VincentNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Swift_CurrentNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\TegucigalpaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\ThuleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Thunder_BayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\TijuanaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\TorontoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\TortolaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\VancouverNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\VirginNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\WhitehorseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\WinnipegNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\YakutatNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\YellowknifeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\CaseyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\DavisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\DumontDUrvilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\MacquarieNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\MawsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\McMurdoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\PalmerNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\RotheraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\South_PoleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\SyowaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\TrollNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Antarctica\VostokNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Arctic\LongyearbyenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AdenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AlmatyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AmmanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AnadyrNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AqtauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AqtobeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AshgabatNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AshkhabadNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\AtyrauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BaghdadNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BahrainNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BakuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BangkokNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BarnaulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BeirutNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BishkekNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\BruneiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\CalcuttaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ChitaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ChoibalsanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ChongqingNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ChungkingNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ColomboNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DaccaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DamascusNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DhakaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DiliNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DubaiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\DushanbeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\FamagustaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\GazaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\HarbinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\HebronNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Hong_KongNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\HovdNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Ho_Chi_MinhNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\IrkutskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\IstanbulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\JakartaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\JayapuraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\JerusalemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KabulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KamchatkaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KarachiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KashgarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KathmanduNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KatmanduNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KhandygaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KolkataNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KrasnoyarskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Kuala_LumpurNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KuchingNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\KuwaitNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\MacaoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\MacauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\MagadanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\MakassarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ManilaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\MuscatNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\NicosiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\NovokuznetskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\NovosibirskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\OmskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\OralNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Phnom_PenhNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\PontianakNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\PyongyangNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\QatarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\QostanayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\QyzylordaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\RangoonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\RiyadhNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SaigonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SakhalinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SamarkandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SeoulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ShanghaiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SingaporeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\SrednekolymskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TaipeiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TashkentNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TbilisiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TehranNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Tel_AvivNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ThimbuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\ThimphuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TokyoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\TomskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Ujung_PandangNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\UlaanbaatarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Ulan_BatorNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\UrumqiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\Ust-NeraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\VientianeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\VladivostokNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\YakutskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\YangonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\YekaterinburgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Asia\YerevanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\AzoresNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\BermudaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\CanaryNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\Cape_VerdeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\FaeroeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\FaroeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\Jan_MayenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\MadeiraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\ReykjavikNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\South_GeorgiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\StanleyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Atlantic\St_HelenaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\ACTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\AdelaideNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\BrisbaneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\Broken_HillNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\CanberraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\CurrieNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\DarwinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\EuclaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\HobartNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\LHINonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\LindemanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\Lord_HoweNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\MelbourneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\NorthNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\NSWNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\PerthNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\QueenslandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\SouthNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\SydneyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\TasmaniaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\VictoriaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\WestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Australia\YancowinnaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Brazil\AcreNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Brazil\DeNoronhaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Brazil\EastNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Brazil\WestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\AtlanticNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\CentralNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\East-SaskatchewanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\EasternNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\MountainNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\NewfoundlandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\PacificNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\SaskatchewanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Canada\YukonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Chile\ContinentalNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Chile\EasterIslandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+1NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+10NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+11NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+12NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+2NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+3NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+4NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+5NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+6NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+7NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+8NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT+9NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-1NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-10NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-11NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-12NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-13NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-14NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-2NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-3NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-4NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-5NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-6NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-7NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-8NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT-9NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GMT0NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\GreenwichNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\UCTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\UniversalNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\UTCNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Etc\ZuluNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\AmsterdamNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\AndorraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\AstrakhanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\AthensNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BelfastNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BelgradeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BerlinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BratislavaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BrusselsNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BucharestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BudapestNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\BusingenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ChisinauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\CopenhagenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\DublinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\GibraltarNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\GuernseyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\HelsinkiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\Isle_of_ManNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\IstanbulNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\JerseyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\KaliningradNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\KievNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\KirovNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\LisbonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\LjubljanaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\LondonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\LuxembourgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MadridNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MaltaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MariehamnNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MinskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MonacoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\MoscowNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\NicosiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\OsloNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ParisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\PodgoricaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\PragueNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\RigaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\RomeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SamaraNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\San_MarinoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SarajevoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SaratovNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SimferopolNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SkopjeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\SofiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\StockholmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\TallinnNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\TiraneNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\TiraspolNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\UlyanovskNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\UzhgorodNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\VaduzNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\VaticanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ViennaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\VilniusNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\VolgogradNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\WarsawNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ZagrebNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ZaporozhyeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Europe\ZurichNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\AntananarivoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\ChagosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\ChristmasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\CocosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\ComoroNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\KerguelenNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\MaheNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\MaldivesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\MauritiusNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\MayotteNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Indian\ReunionNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Mexico\BajaNorteNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Mexico\BajaSurNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Mexico\GeneralNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\ApiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\AucklandNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\BougainvilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\ChathamNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\ChuukNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\EasterNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\EfateNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\EnderburyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\FakaofoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\FijiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\FunafutiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\GalapagosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\GambierNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\GuadalcanalNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\GuamNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\HonoluluNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\JohnstonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\KantonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\KiritimatiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\KosraeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\KwajaleinNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\MajuroNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\MarquesasNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\MidwayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\NauruNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\NiueNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\NorfolkNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\NoumeaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\Pago_PagoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\PalauNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\PitcairnNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\PohnpeiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\PonapeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\Port_MoresbyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\RarotongaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\SaipanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\SamoaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\TahitiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\TarawaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\TongatapuNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\TrukNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\WakeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\WallisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\Pacific\YapNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\AST4NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\AST4ADTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\CST6NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\CST6CDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\EST5NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\EST5EDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\HST10NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\MST7NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\MST7MDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\PST8NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\PST8PDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\YST9NonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\SystemV\YST9YDTNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\AlaskaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\AleutianNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\ArizonaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\CentralNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\East-IndianaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\EasternNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\HawaiiNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\Indiana-StarkeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\MichiganNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\MountainNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\PacificNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\Pacific-NewNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\US\SamoaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\about.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\bold.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\capital.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\centerj.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\code.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\combobox.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\combobox.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\drivea.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\drivea.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\exit.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\filebox.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\filebox.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\harddisk.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\harddisk.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\italic.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\justify.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\leftj.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\netw.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\netw.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\network.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\network.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\optmenu.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\rightj.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\select.xpmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\tix.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\bitmaps\underlin.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\AllSampl.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\ArrowBtn.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Balloon.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\BtnBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\ChkList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CmpImg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CmpImg1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CmpImg2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CmpImg3.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CmpImg4.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\CObjView.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\ComboBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Control.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\DirDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\DirList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\DirTree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\DragDrop.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\DynTree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\EditGrid.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\EFileDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\FileDlg.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\FileEnt.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\HList1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\LabEntry.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\LabFrame.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\ListNBK.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Meter.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\NoteBook.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\OptMenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\PanedWin.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\PopMenu.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Sample.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Select.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SGrid0.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SGrid1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SHList.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SHList2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SListBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\StdBBox.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SText.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\STList1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\STList2.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\STList3.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\SWindow.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Tree.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Xpm.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tix8.4.3\demos\samples\Xpm1.tclNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\earth.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\earthmenu.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\earthris.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\flagdown.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\flagup.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\gray25.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\letters.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\noletter.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\ouster.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\pattern.xbmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\tcllogo.gifNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tk8.6\demos\images\teapot.ppmNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\bad_order.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\no_fixer_cls.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\parrot_example.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\autocompletion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\base_command.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\cmdoptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\command_context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\main.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\main_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\progress_bars.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\req_command.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\spinners.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\status_codes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\cli\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\completion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\configuration.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\debug.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\download.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\freeze.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\hash.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\help.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\index.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\inspect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\list.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\search.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\show.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\uninstall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\commands\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\distributions\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\distributions\installed.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\distributions\sdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\distributions\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\distributions\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\index\collector.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\index\package_finder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\index\sources.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\index\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\locations\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\locations\_distutils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\locations\_sysconfig.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\locations\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\pkg_resources.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\_json.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\candidate.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\direct_url.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\format_control.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\index.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\installation_report.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\link.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\scheme.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\search_scope.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\selection_prefs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\target_python.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\models\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\auth.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\download.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\lazy_wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\session.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\xmlrpc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\network\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\freeze.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\prepare.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\constructors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\req_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\req_install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\req_set.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\req_uninstall.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\req\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\appdirs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\compatibility_tags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\datetime.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\deprecation.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\direct_url_helpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\egg_link.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\encoding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\entrypoints.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\filesystem.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\filetypes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\glibc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\hashes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\logging.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\misc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\models.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\packaging.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\setuptools_build.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\subprocess.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\temp_dir.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\unpacking.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\urls.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\virtualenv.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\_jaraco_text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\_log.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\utils\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\bazaar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\git.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\mercurial.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\subversion.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\versioncontrol.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\vcs\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\adapter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\controller.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\filewrapper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\heuristics.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\serialize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\wrapper.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\_cmd.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\certifi\cacert.pemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\certifi\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\certifi\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\certifi\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\certifi\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\big5freq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\big5prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\chardistribution.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\charsetgroupprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\charsetprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\codingstatemachine.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\codingstatemachinedict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\cp949prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\enums.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\escprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\escsm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\eucjpprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\euckrfreq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\euckrprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\euctwfreq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\euctwprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\gb2312freq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\gb2312prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\hebrewprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\jisfreq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\johabfreq.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\johabprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\jpcntx.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langbulgarianmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langgreekmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langhebrewmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langhungarianmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langrussianmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langthaimodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\langturkishmodel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\latin1prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\macromanprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\mbcharsetprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\mbcsgroupprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\mbcssm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\resultdict.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\sbcharsetprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\sbcsgroupprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\sjisprober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\universaldetector.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\utf1632prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\utf8prober.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\ansi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\ansitowin32.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\initialise.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\win32.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\winterm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\database.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\index.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\locators.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\manifest.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\markers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\metadata.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\resources.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\t32.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\t64-arm.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\t64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\w32.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\w64-arm.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\w64.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distlib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distro\distro.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distro\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distro\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\distro\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\codec.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\idnadata.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\intranges.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\package_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\uts46data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\idna\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\msgpack\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\msgpack\ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\msgpack\fallback.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\msgpack\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\markers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\requirements.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\specifiers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\tags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\_manylinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\_musllinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\_structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\__about__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\packaging\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pkg_resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\android.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\macos.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\unix.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\windows.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\platformdirs\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\cmdline.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\console.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\filter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\lexer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\modeline.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\plugin.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\regexopt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\scanner.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\sphinxext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\style.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\token.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\unistring.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\actions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\helpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\results.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\testing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyproject_hooks\_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyproject_hooks\_impl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyproject_hooks\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\auth.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\certs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\cookies.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\help.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\hooks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\models.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\packages.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\sessions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\status_codes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\_internal_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\requests\__version__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\providers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\reporters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\resolvers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\structs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\align.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\ansi.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\bar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\box.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\cells.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\color.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\color_triplet.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\columns.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\console.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\constrain.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\containers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\control.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\default_styles.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\diagnose.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\emoji.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\errors.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\filesize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\file_proxy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\highlighter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\json.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\jupyter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\layout.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\live.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\live_render.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\logging.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\markup.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\measure.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\padding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\pager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\palette.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\panel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\pretty.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\progress.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\progress_bar.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\prompt.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\protocol.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\region.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\repr.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\rule.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\scope.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\screen.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\segment.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\spinner.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\status.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\style.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\styled.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\syntax.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\table.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\terminal_theme.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\theme.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\themes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\traceback.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\tree.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_cell_widths.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_emoji_codes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_emoji_replace.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_export_format.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_extension.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_fileno.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_inspect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_log_render.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_loop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_null_file.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_palettes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_pick.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_ratio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_spinners.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_stack.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_timer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_win32_console.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_windows.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_windows_renderer.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\_wrap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\rich\__main__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\after.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\before.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\before_sleep.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\nap.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\retry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\stop.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\tornadoweb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\wait.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\_asyncio.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\_utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tenacity\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tomli\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tomli\_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tomli\_re.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tomli\_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\tomli\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\py.typedNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\_api.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\_macos.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\_openssl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\_ssl_constants.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\_windows.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\truststore\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\connection.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\connectionpool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\fields.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\filepost.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\poolmanager.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\request.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\response.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\_collections.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\_version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\webencodings\labels.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\webencodings\mklabels.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\webencodings\tests.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\webencodings\x_user_defined.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\webencodings\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\readers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\simple.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\_adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\_common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\importlib_resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\jaraco\context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\jaraco\functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\jaraco\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\more_itertools\more.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\more_itertools\recipes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\more_itertools\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\markers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\requirements.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\specifiers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\tags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\_manylinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\_musllinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\_structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\__about__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\packaging\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\actions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\helpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\results.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\testing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\error_reporting.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\extra_validations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\fastjsonschema_exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\fastjsonschema_validations.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\formats.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\config\_validate_pyproject\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\bdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\bdist_dumb.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\bdist_rpm.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\build.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\build_clib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\build_ext.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\build_py.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\build_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\check.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\clean.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\config.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install_data.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install_egg_info.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install_headers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install_lib.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\install_scripts.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\py37compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\register.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\sdist.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\upload.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\_framework_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_distutils\command\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_collections.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_meta.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\_text.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_metadata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\readers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\simple.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\_adapters.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\_common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\_itertools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\importlib_resources\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\jaraco\context.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\jaraco\functools.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\jaraco\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\more_itertools\more.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\more_itertools\recipes.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\more_itertools\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\markers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\requirements.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\specifiers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\tags.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\version.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\_manylinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\_musllinux.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\_structures.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\__about__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\packaging\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\actions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\common.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\core.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\exceptions.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\helpers.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\results.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\testing.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\unicode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\tomli\_parser.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\tomli\_re.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\tomli\_types.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\tomli\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\regrtestdata\import_from_tests\test_regrtest_b\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\regrtestdata\import_from_tests\test_regrtest_b\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\basic.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\basic2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\binding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\binding2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\from_cycle1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\from_cycle2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\indirect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\rebinding.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\rebinding2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\source.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpackage.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\use.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\package\submodule.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\package\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\package2\submodule1.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\package2\submodule2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\unwritable\x.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\unwritable\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\subdirectory\binary.fileNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data01\subdirectory\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data02\one\resource1.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data02\one\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data02\two\resource2.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data02\two\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data03\namespace\resource1.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\module_and_namespace_package\a_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array-missing-comma.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\basic-str-ends-in-escape.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table-missing-comma.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\invalid-comment-char.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\invalid-escaped-unicode.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\invalid-hex.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\missing-closing-double-square-bracket.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\missing-closing-square-bracket.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\non-scalar-escaped.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\unclosed-multiline-string.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\unclosed-string.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\apostrophes-in-literal-string.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\apostrophes-in-literal-string.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\boolean.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\boolean.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\empty-inline-table.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\empty-inline-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\five-quotes.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\five-quotes.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\hex-char.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\hex-char.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\no-newlines.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\no-newlines.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\trailing-comma.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\trailing-comma.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\Buenos_AiresNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\CatamarcaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\ComodRivadaviaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\CordobaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\JujuyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\La_RiojaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\MendozaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\Rio_GallegosNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\SaltaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\San_JuanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\San_LuisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\TucumanNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Argentina\UshuaiaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\IndianapolisNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\KnoxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\MarengoNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\PetersburgNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\Tell_CityNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\VevayNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\VincennesNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Indiana\WinamacNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Kentucky\LouisvilleNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\Kentucky\MonticelloNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\North_Dakota\BeulahNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\North_Dakota\CenterNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\tcl\tcl8.6\tzdata\America\North_Dakota\New_SalemNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\fix_explicit.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\fix_first.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\fix_last.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\fix_parrot.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\fix_preorder.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\lib2to3\tests\data\fixers\myfixes\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\importlib\_compat.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\importlib\_dists.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\importlib\_envs.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\metadata\importlib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\build_tracker.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\metadata.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\metadata_editable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\metadata_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\wheel_editable.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\wheel_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\build\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\install\editable_legacy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\install\wheel.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\operations\install\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\legacy\resolver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\legacy\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\base.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\candidates.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\factory.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\found_candidates.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\provider.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\reporter.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\requirements.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\resolver.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_internal\resolution\resolvelib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\caches\file_cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\caches\redis_cache.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\cachecontrol\caches\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\cli\chardetect.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\cli\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\metadata\languages.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\chardet\metadata\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\ansitowin32_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\ansi_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\initialise_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\isatty_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\utils.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\winterm_test.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\colorama\tests\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\filters\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\bbcode.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\groff.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\html.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\img.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\irc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\latex.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\other.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\pangomarkup.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\rtf.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\svg.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\terminal.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\terminal256.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\_mapping.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\formatters\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\lexers\python.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\lexers\_mapping.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\lexers\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pygments\styles\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyparsing\diagram\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\compat\collections_abc.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\resolvelib\compat\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\appengine.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\ntlmpool.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\pyopenssl.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\securetransport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\socks.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\_appengine_environ.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\packages\six.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\packages\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\connection.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\proxy.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\queue.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\request.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\response.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\retry.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\ssltransport.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\ssl_.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\ssl_match_hostname.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\timeout.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\url.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\wait.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\util\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\jaraco\text\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pkg_resources\_vendor\pyparsing\diagram\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\jaraco\text\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\setuptools\_vendor\pyparsing\diagram\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpkg\subpackage2.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpkg\util.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpkg2\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data03\namespace\portion1\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\data03\namespace\portion2\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\both_portions\foo\one.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\both_portions\foo\two.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\module_and_namespace_package\a_test\emptyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\not_a_namespace_pkg\foo\one.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\not_a_namespace_pkg\foo\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\portion1\foo\one.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\portion2\foo\two.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array\file-end-after-val.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array\unclosed-after-item.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array\unclosed-empty.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array-of-tables\overwrite-array-in-parent.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\array-of-tables\overwrite-bool-with-aot.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\boolean\invalid-false-casing.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\boolean\invalid-true-casing.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\dates-and-times\invalid-day.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\dotted-keys\access-non-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\dotted-keys\extend-defined-aot.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\dotted-keys\extend-defined-table-with-subtable.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\dotted-keys\extend-defined-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\define-twice-in-subtable.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\define-twice.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\file-end-after-key-val.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\mutate.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\override-val-in-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\override-val-with-array.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\override-val-with-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\overwrite-implicitly.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\overwrite-value-in-inner-array.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\overwrite-value-in-inner-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\inline-table\unclosed-empty.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\keys-and-vals\ends-early-table-def.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\keys-and-vals\ends-early.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\keys-and-vals\no-value.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\keys-and-vals\only-ws-after-dot.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\keys-and-vals\overwrite-with-deep-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\literal-str\unclosed.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-basic-str\carriage-return.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-basic-str\escape-only.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-basic-str\file-ends-after-opening.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-basic-str\last-line-escape.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-basic-str\unclosed-ends-in-whitespace-escape.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-literal-str\file-ends-after-opening.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\multiline-literal-str\unclosed.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\table\eof-after-opening.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\table\redefine-1.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\invalid\table\redefine-2.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\array\array-subtables.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\array\array-subtables.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\array\open-parent-table.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\array\open-parent-table.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\dates-and-times\datetimes.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\dates-and-times\datetimes.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\dates-and-times\localtime.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\dates-and-times\localtime.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\multiline-basic-str\ends-in-whitespace-escape.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_tomllib\data\valid\multiline-basic-str\ends-in-whitespace-escape.tomlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\_securetransport\bindings.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\_securetransport\low_level.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\contrib\_securetransport\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\packages\backports\makefile.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\packages\backports\weakref_finalize.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\site-packages\pip\_vendor\urllib3\packages\backports\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpkg2\parent\child.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_import\data\circular_imports\subpkg2\parent\__init__.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\project1\parent\child\one.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\project2\parent\child\two.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Python3\Win64\Lib\test\test_importlib\namespace_pkgs\project3\parent\child\three.pyNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\EOSSDK-Win64-Shipping.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Windows\WinPixEventRuntime\x64\WinPixEventRuntime.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\apr_crypto_openssl-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\apr_dbd_odbc-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\apr_dbm_db-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\apr_ldap-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\changelog.txtNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\diff.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\diff3.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\diff4.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libapr-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libapriconv-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libaprutil-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libdb62.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libeay32.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsasl.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libserf-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvnjavahl-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_client-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_delta-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_diff-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_fs-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_ra-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_repos-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_subr-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_swig_perl-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_swig_py-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\libsvn_wc-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\MSVCP100.DLLNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\MSVCR100.DLLNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslANONYMOUS.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslCRAMMD5.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslDIGESTMD5.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslLOGIN.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslNTLM.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslOTP.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslPLAIN.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslSASLDB.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslSCRAM.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\saslSRP.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\ssleay32.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svn-populate-node-origins-index.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svn.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnadmin.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnauthz-validate.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnauthz.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnbench.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svndumpfilter.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnfsfs.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnlook.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnmucc.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnraisetreeconflict.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnrdump.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnserve.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnsync.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\svnversion.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\zlib1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\adobe-stdenc.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\adobe-symbol.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\adobe-zdingbats.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\big5.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cns11643-plane1.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cns11643-plane14.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cns11643-plane2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp037.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp038.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10000.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10006.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10007.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10029.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp1006.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10079.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp10081.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp1026.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp273.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp274.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp275.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp277.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp278.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp280.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp281.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp284.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp285.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp290.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp297.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp420.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp423.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp424.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp437.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp500.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp737.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp775.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp850.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp851.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp852.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp855.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp856.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp857.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp860.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp861.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp862.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp863.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp864.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp865.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp866.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp868.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp869.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp870.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp871.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp874.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp875.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp880.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp891.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp903.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp904.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp905.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp918.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp932.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp936.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp949.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\cp950.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\dec-mcs.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-at-de-a.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-at-de.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-ca-fr.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-dk-no-a.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-dk-no.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-es-a.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-es-s.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-es.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-fi-se-a.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-fi-se.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-fr.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-it.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-pt.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-uk.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ebcdic-us.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\euc-jp.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\euc-kr.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\euc-tw.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\gb12345.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\gb2312.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\gb_2312-80.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\hp-roman8.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-10646-ucs-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-10646-ucs-4.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-2022-cn.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-2022-jp-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-2022-jp.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-2022-kr.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-1.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-10.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-13.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-14.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-15.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-3.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-4.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-5.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-6.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-7.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-8.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-8859-9.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-10.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-102.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-103.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-11.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-111.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-121.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-122.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-123.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-128.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-13.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-139.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-14.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-141.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-142.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-143.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-146.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-147.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-15.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-150.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-151.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-152.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-153.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-154.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-155.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-158.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-16.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-17.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-18.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-19.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-21.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-25.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-27.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-37.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-4.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-47.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-49.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-50.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-51.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-54.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-55.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-57.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-60.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-61.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-69.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-70.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-8-1.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-8-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-84.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-85.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-86.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-88.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-89.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-9-1.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-9-2.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-90.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-91.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-92.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-93.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-94.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-95.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-96.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-98.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso-ir-99.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso646-dk.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\iso646-kr.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\jis_x0201.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\jis_x0208-1983.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\jis_x0212-1990.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\johab.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\koi8-r.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\koi8-ru.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\koi8-u.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ksx1001.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-ce.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-croatian.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-cyrillic.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-dingbats.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-greek.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-iceland.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-japan.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-roman.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-romania.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-thai.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-turkish.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\mac-ukraine.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\macintosh.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\osd_ebcdic_df04_1.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\osd_ebcdic_df04_15.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\shift_jis.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ucs2-internal.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\ucs4-internal.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\unicode-1-1-utf-7.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\us-ascii.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\utf-16.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\utf-8.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1250.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1251.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1252.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1253.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1254.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1255.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1256.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1257.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\windows-1258.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\iconv\_tbl_simple.soNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\APR-Iconv.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\APR-Util.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\APR.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\Berkeley-DB.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\CyrusSASL.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\OpenSSL.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\Serf.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\Subversion.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\Swig.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\svn\Win64\license\ZLib.licenseNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.5.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.6.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.7.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.8.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.9.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.10.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.11.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\oo2tex_win64_2.9.12.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\README.mdNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\disney_brdf_2012.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\disney_brdf_2015.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\gltf_pbr.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\open_pbr_surface.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\standard_surface.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\usd_preview_surface.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_add.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_conductor.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_dielectric.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_diffuse.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_emission.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_layer.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_mix.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_sheen.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_sss.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\lama\lama_translucent.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\bxdf\translation\standard_surface_to_usd.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\lights\lights_defs.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\lights\genglsl\lights_genglsl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\lights\genglsl\mx_directional_light.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\lights\genglsl\mx_point_light.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\lights\genglsl\mx_spot_light.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\cm.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\core.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\hsv.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\noise.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\pbrlib.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\sampling.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\stdlib.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\mdl\materialx\swizzle.mdlNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\pbrlib_defs.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\pbrlib_ng.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_add_edf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_anisotropic_vdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_artistic_ior.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_burley_diffuse_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_conductor_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_dielectric_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_displacement_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_displacement_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_generalized_schlick_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_oren_nayar_diffuse_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_roughness_anisotropy.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_roughness_dual.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_sheen_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_subsurface_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_translucent_bsdf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\mx_uniform_edf.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\pbrlib_genglsl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_environment_fis.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_environment_none.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_environment_prefilter.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_microfacet.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_microfacet_diffuse.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_microfacet_sheen.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_microfacet_specular.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_shadow.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_table.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_transmission_opacity.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genglsl\lib\mx_transmission_refract.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genmdl\pbrlib_genmdl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_anisotropic_vdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_artistic_ior.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_burley_diffuse_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_conductor_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_dielectric_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_displacement_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_displacement_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_generalized_schlick_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_oren_nayar_diffuse_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_roughness_anisotropy.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_roughness_dual.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_sheen_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_subsurface_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_surface.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_translucent_bsdf.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\mx_uniform_edf.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\pbrlib_genosl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\lib\mx_microfacet.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\lib\mx_microfacet_sheen.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\pbrlib\genosl\lib\mx_microfacet_specular.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\stdlib_defs.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\stdlib_ng.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_aastep.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_absval.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_acos.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_add.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_add_surfaceshader.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ap1_to_rec709_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ap1_to_rec709_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_asin.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_atan2.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_burn_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_burn_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_burn_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ceil.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_cellnoise2d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_cellnoise3d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_clamp.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_constant.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_cos.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_crossproduct.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_determinant.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_difference.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_disjointover_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_divide.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dodge.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dodge_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dodge_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dodge_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dot.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_dotproduct.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_exp.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_floor.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_fa_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_fa_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_fa_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_fractal3d_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_g22_ap1_to_lin_rec709_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_g22_ap1_to_lin_rec709_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma18_to_linear_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma18_to_linear_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma22_to_linear_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma22_to_linear_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma24_to_linear_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_gamma24_to_linear_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_hsvtorgb_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_hsvtorgb_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_image_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_inside.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_invert.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_invertM.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_in_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ln.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_luminance_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_luminance_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_magnitude.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_mask_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_matte_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_max.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_min.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_minus.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_mix.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_mix_surfaceshader.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_modulo.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_multiply.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_multiply_surfaceshader_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_multiply_surfaceshader_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_fa_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_fa_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_fa_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise2d_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_fa_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_fa_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_fa_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_noise3d_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_normalize.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_normalmap.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_outside.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_out_color2.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_out_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_overlay.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_overlay_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_overlay_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_overlay_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_over_color2.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_over_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_plus.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power_color3_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power_color4_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power_vector2_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power_vector3_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_power_vector4_float.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_premult_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramplr_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramplr_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramplr_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramplr_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramptb_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramptb_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramptb_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_ramptb_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_remap.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_rgbtohsv_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_rgbtohsv_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_rotate_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_rotate_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_screen.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_sign.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_sin.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec2FA.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec3FA.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_smoothstep_vec4FA.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splitlr_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splitlr_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splitlr_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splitlr_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splittb_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splittb_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splittb_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_splittb_vector4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_sqrt.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_srgb_texture_to_lin_rec709_color3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_srgb_texture_to_lin_rec709_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_subtract.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_tan.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_transformmatrix.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_transformmatrix_vector2M3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_transformmatrix_vector3M4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_transpose.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_unpremult_color4.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise2d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise2d_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise2d_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise3d_float.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise3d_vector2.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\mx_worleynoise3d_vector3.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\stdlib_genglsl_cm_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\stdlib_genglsl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\stdlib_genglsl_unit_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_hsv.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_math.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_noise.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_sampling.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_transform_color.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_transform_uv.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genglsl\lib\mx_transform_uv_vflip.glslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genmdl\stdlib_genmdl_cm_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genmdl\stdlib_genmdl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genmdl\stdlib_genmdl_unit_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_absval.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_acos.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_add.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ambientocclusion_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ap1_to_rec709_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ap1_to_rec709_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_asin.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_atan2.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_bitangent_vector3.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_burn_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_burn_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_burn_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ceil.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_cellnoise2d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_cellnoise3d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_clamp.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_constant.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_contrast.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_cos.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_crossproduct.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_determinant.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_difference.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_disjointover_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_divide.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_dodge_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_dodge_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_dodge_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_dot.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_dotproduct.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_exp.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_floor.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_fa_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_fa_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_fa_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_fa_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_fa_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_fractal3d_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_frame_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_g22_ap1_to_lin_rec709_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_g22_ap1_to_lin_rec709_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma18_to_linear_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma18_to_linear_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma22_to_linear_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma22_to_linear_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma24_to_linear_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_gamma24_to_linear_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geomcolor_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geomcolor_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geomcolor_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_boolean.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_integer.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_string.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_geompropvalue_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_heighttonormal_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_hsvtorgb_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_hsvtorgb_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_image_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_in.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_inside.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_invert.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_invertM.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ln.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_luminance_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_luminance_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_magnitude.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_mask.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_matte_color4.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_max.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_min.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_minus.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_mix.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_modulo.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_modulo_color3FA.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_modulo_vector3FA.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_multiply.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_fa_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_fa_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_fa_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_fa_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_fa_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise2d_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_fa_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_fa_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_fa_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_fa_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_fa_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_noise3d_vector4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_normalize.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_normalmap.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_normal_vector3.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_out.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_outside.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_over.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_overlay.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_overlay_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_overlay_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_plus.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_position_vector3.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_power.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_premult_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ramplr.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_ramptb.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_remap.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_rgbtohsv_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_rgbtohsv_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_rotate_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_rotate_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_screen.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_sign.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_sin.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_smoothstep.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_splitlr.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_splittb.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_sqrt.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_srgb_texture_to_lin_rec709_color3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_srgb_texture_to_lin_rec709_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_subtract.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_surface_unlit.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_tan.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_tangent_vector3.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_texcoord_vector2.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_texcoord_vector3.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_time_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transformmatrix.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transformmatrix_vector2M3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transformnormal.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transformpoint.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transformvector.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_transpose.inlineNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_unpremult_color4.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise2d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise2d_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise2d_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise3d_float.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise3d_vector2.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\mx_worleynoise3d_vector3.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\stdlib_genosl_cm_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\stdlib_genosl_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\stdlib_genosl_unit_impl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\include\color4.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\include\matrix33.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\include\mx_funcs.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\include\vector2.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\include\vector4.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\lib\mx_sampling.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\lib\mx_transform_color.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\lib\mx_transform_uv.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\stdlib\genosl\lib\mx_transform_uv_vflip.oslNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\targets\essl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\targets\genglsl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\targets\genmdl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MaterialX\libraries\targets\genosl.mtlxNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\python311.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\hdStorm.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\sdrGlslfx.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usdAbc.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usdShaders.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ar.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_arch.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_cameraUtil.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_garch.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_geomUtil.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_gf.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_glf.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hd.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdar.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdGp.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdMtlx.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdsi.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdSt.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hdx.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hf.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgi.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgiGL.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hgiInterop.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_hio.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_js.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_kind.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ndr.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_pcp.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_plug.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_pxOsd.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_sdf.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_sdr.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_tf.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_trace.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_ts.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usd.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdAppUtils.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdBakeMtlx.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdGeom.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdHydra.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdImaging.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdImagingGL.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdLux.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdMedia.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdMtlx.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdPhysics.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdProc.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdProcImaging.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRender.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRi.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdRiPxrImaging.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdShade.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdSkel.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdSkelImaging.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdUI.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdUtils.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdVol.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_usdVolImaging.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_vt.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\usd_work.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\ar\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\shaders\pcfShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\glf\resources\shaders\simpleLighting.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\codegenTemplates\schemaClass.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hd\resources\codegenTemplates\schemaClass.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdGp\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\basisCurves.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\compute.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\domeLight.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\edgeId.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackLighting.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackLightingShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackMaterialNetwork.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\fallbackVolume.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\frustumCull.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\imageShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\instancing.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\invalidMaterialNetwork.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\mesh.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshFaceCull.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshNormal.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\meshWire.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\pointId.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\points.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\ptexTexture.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\renderPass.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\renderPassShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\simpleLightingShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\surfaceHelpers.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\terminals.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\visibility.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\shaders\volume.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdSt\resources\textures\fallbackBlackDomeLight.pngNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdStorm\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\boundingBox.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\colorChannel.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\colorCorrection.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\fullscreen.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\oitResolveImageShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\outline.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPass.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorAndSelectionShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassColorWithOccludedSelectionShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassIdShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitOpaqueShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassOitVolumeShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassPickingShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\renderPassShadowShader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\selection.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\skydome.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\shaders\visualize.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\textures\StinsonBeach.hdrNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hdx\resources\textures\StinsonBeach.texNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hgiGL\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\hio\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\ndr\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\sdf\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\sdrGlslfx\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\unreal\resources\unreal\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\api.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\schemaClass.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\schemaClass.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\tokens.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\tokens.hNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\wrapSchemaClass.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\codegenTemplates\wrapTokens.cppNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usd\resources\usd\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdAbc\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdGeom\resources\usdGeom\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\shaders\empty.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\shaders\shaderDefs.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdHydra\resources\usdHydra\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdImaging\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdImagingGL\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdLux\resources\usdLux\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMedia\resources\usdMedia\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdMtlx\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdPhysics\resources\usdPhysics\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProc\resources\usdProc\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdProcImaging\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRender\resources\usdRender\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRi\resources\usdRi\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdRiPxrImaging\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShade\resources\usdShade\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\previewSurface.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\primvarReader.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\shaderDefs.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\transform2d.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdShaders\resources\shaders\uvTexture.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkel\resources\usdSkel\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkelImaging\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdSkelImaging\resources\shaders\skinning.glslfxNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdUI\resources\usdUI\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\generatedSchema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVol\resources\usdVol\schema.usdaNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\USD\UsdResources\Win64\plugins\usdVolImaging\resources\plugInfo.jsonNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_atomic-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_chrono-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_filesystem-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_iostreams-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_program_options-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_python311-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_regex-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_system-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\boost_thread-mt-x64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\tbb.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\tbb.pdbDebugNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\tbbmalloc.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\tbbmalloc.pdbDebugNonUFSE:\Games\UE_5.5\Engine\Plugins\NNE\NNERuntimeORT\Binaries\ThirdParty\Onnxruntime\Win64\onnxruntime.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\MsQuic\v220\win64\msquic.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Ogg\Win64\VS2015\libogg_64.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Vorbis\Win64\VS2015\libvorbis_64.dllNonUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\DroidSansFallback.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\DroidSansMono.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\NotoNaskhArabicUI-Regular.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\NotoSansThai-Regular.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Black.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-BlackItalic.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Bold.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-BoldCondensed.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-BoldCondensedItalic.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-BoldItalic.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Italic.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Light.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Medium.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto-Regular.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Roboto-Bold.ttfUFSE:\Games\UE_5.5\Engine\Content\Slate\Checkerboard.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\DeveloperDirectoryContent.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\EditorGroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\ErrorFilter.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\ExcludedTestsFilter.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\Fail.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\GameGroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\Groups.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\InProcess.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\NoSessionWarning.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\NotEnoughParticipants.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\NotRun.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\Participant.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\ParticipantsWarning.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\RefreshTests.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\RefreshWorkers.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\RunTests.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\SmokeTest.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\SmokeTestFilter.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\SmokeTestParent.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\StopTests.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\Success.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\TrackTestHistory.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\VisualCommandlet.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\Warning.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Automation\WarningFilter.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\BoxShadow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Button.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Button_Disabled.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Button_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Button_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Check.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox_Checked.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox_Checked_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox_Undetermined.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CheckBox_Undetermined_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Checker.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Circle.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorGradingWheel.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorPicker_Mode_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorPicker_Separator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorPicker_SliderHandle.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorSpectrum.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColorWheel.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColumnHeader.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColumnHeaderMenuButton_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColumnHeaderMenuButton_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColumnHeader_Arrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ColumnHeader_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ComboArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\CursorPing.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DarkGroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DebugBorder.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Delimiter.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DownArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DropZoneIndicator_Above.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DropZoneIndicator_Below.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\DropZoneIndicator_Onto.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\EditableTextSelectionBackground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\EventMessage_Default.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ExpansionButton_CloseOverlay.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\GroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\GroupBorder_Shape.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\HeaderSplitterGrip.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\LastColumnHeader_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\LeftArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\LightGroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\NoiseBackground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\PlainBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProfileVisualizer_Mono.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProfileVisualizer_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProfileVisualizer_Selected.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProgressBar_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProgressBar_Fill.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ProgressBar_Marquee.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\RadioButton_SelectedBack_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\RadioButton_Selected_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\RadioButton_Unselected_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\RoundedSelection_16x.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Scrollbar_Background_Horizontal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Scrollbar_Background_Vertical.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Scrollbar_Thumb.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBorderShadowBottom.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBorderShadowTop.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBoxShadowBottom.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBoxShadowLeft.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBoxShadowRight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\ScrollBoxShadowTop.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SearchGlass.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Selection.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Selector.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Separator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheck.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox_Checked.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox_Checked_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox_Undetermined.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SmallCheckBox_Undetermined_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SortDownArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SortDownArrows.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SortUpArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SortUpArrows.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SpinArrows.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox_Fill.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox_Fill_Dark.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox_Fill_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox_Fill_Hovered_Dark.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Spinbox_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SplitterHandleHighlight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\SubmenuArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TableViewHeader.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TableViewMajorColumn.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBlockHighlightShape.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBlockHighlightShape_Empty.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBoxLabelBorder.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_Dark.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_Hovered_Dark.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_ReadOnly.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_Special.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TextBox_Special_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Throbber_Piece.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TreeArrow_Collapsed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TreeArrow_Collapsed_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TreeArrow_Expanded.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\TreeArrow_Expanded_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\UpArrow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VerticalBoxDragIndicator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VerticalBoxDragIndicatorShort.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VolumeControl_High.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VolumeControl_Low.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VolumeControl_Mid.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VolumeControl_Muted.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\VolumeControl_Off.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\WhiteGroupBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\X.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowBackground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Close_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Close_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Close_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Maximize_Disabled.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Maximize_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Maximize_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Maximize_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Minimize_Disabled.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Minimize_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Minimize_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Minimize_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Restore_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Restore_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowButton_Restore_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowOutline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowTitle.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowTitle_Flashing.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Common\Window\WindowTitle_Inactive.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\CrashTracker\MouseCursor.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\CrashTracker\Record.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTabContentArea.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTabWellSeparator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_Active.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_ColorOverlay.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_ColorOverlayIcon.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_Foreground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\AppTab_Inactive.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\CloseApp_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\CloseApp_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\CloseApp_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\DockingIndicator_Center.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\OuterDockingIndicator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\ShowTabwellButton_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\ShowTabwellButton_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\ShowTabwellButton_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\TabContentArea.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\TabWellSeparator.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_Active.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_ColorOverlay.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_ColorOverlayIcon.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_Foreground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_Inactive.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Docking\Tab_Shape.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\BackIcon.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Cross_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\cursor_cardinal_cross.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\cursor_grab.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\DefaultAppIcon.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\denied_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\ellipsis_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Empty_14x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\eyedropper_16px.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_Downloads_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_error_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_generic_toolbar.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_help_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_info_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_redo_16px.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_tab_toolbar_16px.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_tab_Tools_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_tab_WidgetReflector_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_tab_WidgetReflector_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_undo_16px.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\icon_warning_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\NextIcon.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\notificationlist_fail.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\notificationlist_success.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PlusSymbol_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\toolbar_expand_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\TrashCan.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\TrashCan_Small.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Copy_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Cut_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Delete_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Duplicate_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Paste_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Edit\icon_Edit_Rename_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButton.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButtonBottom.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButtonCentre.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButtonLeft.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButtonRight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\SmallRoundedButtonTop.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_025x_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_025x_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_025x_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_05x_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_05x_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_05x_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_1x_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_1x_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_1x_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_Screen_Rotation_Hovered.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_Screen_Rotation_Normal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\PIEWindow\WindowButton_Screen_Rotation_Pressed.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\GroupBorder-16Gray.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Average_Event_Graph_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Border_L_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Border_R_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Border_TB_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_Calls_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_CollapseAll_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_CollapseSelection_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_CollapseThread_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_CopyToClipboard_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_CulledEvents_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Culled_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Cull_Events_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Custom_Tooltip_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Data_Capture_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_Disconnect_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Events_Flat_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Events_Flat_Coalesced_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Events_Hierarchial_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_Event_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ExpandAll_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ExpandHotPath_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ExpandSelection_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ExpandThread_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Filtered_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Filter_Events_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Filter_Presets_Tab_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_FPS_Chart_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_GameThread_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_GenericFilter_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_GenericGroup_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Graph_View_Tab_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Has_Culled_Children_12x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_History_Back_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_History_Fwd_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_HotPath_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_LoadMultiple_Profiler_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Load_Profiler_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Max_Event_Graph_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_Memory_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_mem_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_Number_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_OpenEventGraph_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_RenderThread_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ResetColumn_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ResetToDefault_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_SelectStack_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_SetRoot_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Settings_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ShowGraphData_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_SortAscending_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_SortBy_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_SortDescending_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_stats_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_sync_40x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_Tab_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\Profiler_ThreadView_SampleBorder_16x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Icons\Profiler\profiler_ViewColumn_32x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\All_Platforms_128x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\All_Platforms_24x.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Commandlet.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Editor.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Game.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Other.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Server.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Instance_Unknown.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Advanced.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Back.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Build.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Delete.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Deploy.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_EditSettings.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Launch.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Launcher\Launcher_Run.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\MessageLog\Log_Error.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\MessageLog\Log_Note.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\MessageLog\Log_Warning.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Border.PNGUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Button.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\DashedBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\HyperlinkDotted.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\HyperlinkUnderline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Menu_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Menu_Background_Inverted_Border_Bold.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Notification_Border_Flash.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\ToolBar_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\ToolTip_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\ToolTip_BrightBackground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\White.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\ActionMenuButtonBG.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\ArrowBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\ArrowLeft.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Arrow_D.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Arrow_L.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Arrow_R.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Arrow_U.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\bigdot.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\blank.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\BoxEdgeHighlight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CalloutBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CalloutBox2.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CalloutBox3.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Callout_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Callout_Glow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Callout_Outline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CircleBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CircleBox2.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CodeBlock_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CodeBlock_Glow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\CodeBlock_Outline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DiamondBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DiamondBox_B.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DiamondBox_T.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_L.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_LR.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_LR_E.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_L_E.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_R.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedCircleBox_R_E.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedSquareBox_L.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedSquareBox_LR.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedSquareBox_LR_E.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedSquareBox_R.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\DottedSquareBox_R_E.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Hat.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\PrePost_RoundedBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\PrePost_RoundedBox_B.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\PrePost_RoundedBox_T.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\QMark.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\RoundedBoxBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\RoundedTileFaded.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\RoundedTile_Background.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\RoundedTile_Glow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\RoundedTile_Outline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\smalldot.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\SolidWhite.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\SquareBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\SquareBox_Solid_L.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\SquigglyBox.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Tile_Highlight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Underline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Outer\alertOutline.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\Outer\alertSolid.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\ping.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_glow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_head.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_head_glow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_highlight.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_shadow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\pin\pin_stick.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\selectionbar\selectionbar_0.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\selectionbar\selectionbar_1.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Old\Tiles\selectionbar\selectionbar_2.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\checker.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\color-grading-spinbox-selector.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Dash_Horizontal.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Dash_Vertical.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\DropTargetBackground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\UELogo.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\ProgressBar\ProgressMarquee.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\SegmentedBox\left.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\SegmentedBox\right.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\DockTab_Active.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\DockTab_Foreground.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\DockTab_Hover.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\Dock_Tab_Active.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\drawer-shadow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Notifications\Throbber.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\StatusBar\drawer-shadow-bottom.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\BrushWireframe.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\DefaultPawn_16px.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\FlatColorSquare.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\Hyperlink.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\Lit.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\NewLevelBlank.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\TestRotation.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\Unlit.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Testing\Wireframe.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Tutorials\TutorialBorder.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Tutorials\TutorialShadow.pngUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Advanced.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\alert-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\alert-triangle-64.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\alert-triangle-large.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\alert-triangle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\AllSavedAssets.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\arrow-down.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\arrow-left.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\arrow-right.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\arrow-up.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\AutomationTools.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\badge-modified.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\badge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\blueprint.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\box-perspective.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\bullet-point.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\bullet-point16.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Calendar.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\caret-down.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\caret-right.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\check-circle-large.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\check-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\check.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\chevron-down.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\chevron-left.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\chevron-right.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\chevron-up.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\circle-arrow-down.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\circle-arrow-left.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\circle-arrow-right.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\circle-arrow-up.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\close-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\close-small.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\close.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\color-grading-cross.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\color-grading-selector.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Console.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Copy.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\CPP.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\curve-editor-append-key-20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Cut.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\cylinder.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\delete-outline.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Delete.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Developer.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\drag-handle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Duplicate.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\edit.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\ellipsis-horizontal-narrow.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\ellipsis-vertical-narrow.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\export.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\export_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\EyeDropper.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Favorite.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\favorites-category.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\fieldnotify_off.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\fieldnotify_on.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\file-tree-open.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\file-tree.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\file.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\filled-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\filter.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\FilterAuto.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\FlipHorizontal.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\FlipVertical.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-cleanup.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-closed.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-open.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-plus.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-virtual-closed.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\folder-virtual-open.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Group_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\help.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\hidden.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\HiddenInGame.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\import.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\import_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Info.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\layout-header-body.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\layout-spreadsheet.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Layout.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Linked.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\lock-unlocked.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\lock.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\LookAt.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\menu.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Merge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\minus-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\minus.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Monitor.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\normalize.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\OutputLog.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\ParentHierarchy.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Paste.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\play.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\PlayerController.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\plus-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\plus.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Preferences.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\ProjectLauncher.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\pyriamid.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Recent.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Redo.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\refresh.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\reject.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Rename.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Role.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Rotate180.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Rotate90Clockwise.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Rotate90Counterclockwise.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\save-modified.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\save.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\search.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Search_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\server.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\SessionFrontend.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\settings.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\SortDown.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\SortUp.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\sphere.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\stop.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Test.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\tile.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\UELogo.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Undo.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\UndoHistory.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Unlinked.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\unreal-circle-thick.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\unreal-circle-thin.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\unreal-small.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\UnsavedAssets.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\UnsavedAssetsWarning.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Update.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\visible.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\VisibleInGame.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\Visualizer.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\world.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Common\x-circle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\check.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\CheckBoxIndeterminate_12.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\CheckBoxIndeterminate_14.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\indeterminate.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\radio-off.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\CheckBox\radio-on.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\ComboBox\corner-dropdown.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\ComboBox\wide-chevron-down.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\FilterBar\FilterColorSegment.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\NumericEntryBox\NarrowDecorator.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\SegmentedBox\left.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\SegmentedBox\right.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\TableView\sort-down-arrow.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\TableView\sort-down-arrows.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\TableView\sort-up-arrow.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\TableView\sort-up-arrows.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\Window\close.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\Window\maximize.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\Window\minimize.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\CoreWidgets\Window\restore.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\pin.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Docking\show-tab-well.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\AllTracks_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\AutoScrollDown_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\AutoScrollRight_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Callees.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Callees_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Callers.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Callers_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Connection.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ControlsFirst.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ControlsLast.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ControlsNext.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ControlsPrevious.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Counter.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Counter_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\CpuGpuTracks_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Filter.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\FilterConfig.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Frames.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Frames_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Function.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\HotPath_12.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\InfoTag_12.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Log.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Log_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\MemAllocTable.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\MemInvestigation.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\MemInvestigation_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Memory.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\MemTags.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\MemTags_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\NetStats.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\NetStats_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Networking.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\PacketContent.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\PacketContent_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Packets.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Packets_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\PluginTracks_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Session.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeLarge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeLarge_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeMedium.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeMedium_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeSmall.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SizeSmall_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\SpecialTracks_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Tasks.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Tasks_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Timer.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Timer_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Timing.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\Timing_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceStore.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceStore_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\UnrealInsights.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\UTrace.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ViewMode_20.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\ZeroCountFilter.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\RecordTraceCenter.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\RecordTraceOutline.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\RecordTraceRecording.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\TracePause.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\TraceResume.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\TraceSnapshot.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\TraceStart.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Insights\TraceTools\TraceStop.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\Launcher\PaperAirplane.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\icon_SCC_Change_Source_Control_Settings.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\icon_SCC_History.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\icon_SCC_Revert.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Added.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_BranchModifiedBadge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckCircleLine.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckedBranch.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckedBranchBadge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckedOther.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckedOtherBadge.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckIn.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckInAvailable.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_CheckInAvailableRewound.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Conflicted.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_ConflictedState.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_ConflictResolution_Clear.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_ConflictResolution_OpenExternal.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Diff.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_DiskSize.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_File.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_LineCircle.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_MarkedForAdd.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Modified.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_ModifiedLocally.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_NewerVersion.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Promote.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Promote_Large.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Removed.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Rewind.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Rewound.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_StatusLocalUpload.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_StatusLocalUpToDate.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_StatusRemoteDownload.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_StatusRemoteUpToDate.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_Sync.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_SyncAndCheckOut.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_VerticalLine.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_VerticalLineDashed.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\RC_VerticalLineStart.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_Action_Diff.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_Action_Integrate.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_Branched.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_Changelist.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_CheckedOut.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_ContentAdd.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_DlgCheckedOutOther.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_DlgNotCurrent.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_DlgReadOnly.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_Lock.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_MarkedForDelete.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_ModifiedOtherBranch.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SCC_NotInDepot.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\SourceControl.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\Status\RevisionControl.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\Status\RevisionControlBadgeConnected.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Starship\SourceControl\Status\RevisionControlBadgeWarning.svgUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\DroidSans.tpsUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Noto.tpsUFSE:\Games\UE_5.5\Engine\Content\Slate\Fonts\Roboto.tpsUFSE:\Games\UE_5.5\Engine\Content\SlateDebug\Fonts\LastResort.tpsDebugNonUFSE:\Games\UE_5.5\Engine\Content\SlateDebug\Fonts\LastResort.ttfDebugNonUFSE:\Games\UE_5.5\Engine\Content\Slate\Cursor\invisible.curNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\libsndfile\Win64\libsndfile-1.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\OpenColorIO_2_3.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\Windows\DirectX\x64\d3dcompiler_47.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\ShaderConductor\Win64\dxcompiler.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\ShaderConductor\Win64\ShaderConductor.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\ShaderConductor\Win64\dxil.dllNonUFSE:\Games\UE_5.5\Engine\Content\Renderer\TessellationTable.binNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\AgentInterface.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\AgentInterface.pdbDebugNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\FreeImage\Win64\FreeImage.dllNonUFSE:\Games\UE_5.5\Engine\Extras\GPUDumpViewer\GPUDumpViewer.htmlDebugNonUFSE:\Games\UE_5.5\Engine\Extras\GPUDumpViewer\OpenGPUDumpViewer.batDebugNonUFSE:\Games\UE_5.5\Engine\Extras\GPUDumpViewer\OpenGPUDumpViewer.shDebugNonUFSE:\Games\UE_5.5\Engine\Binaries\ThirdParty\DbgHelp\dbghelp.dllNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\EpicWebHelper.exeNonUFSE:\Games\UE_5.5\Engine\Binaries\Win64\NNEEditorOnnxTools.dllNonUFSLyraEditorEditor++UE5+Release-5.5376706304057460837670630falsefalse554E:\Projects\cross_platform\Binaries\Win64\LyraEditor.targetE:\Games\UE_5.5\Engine\Binaries\Win64\UnrealEditor.version \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Cpp20.h new file mode 100644 index 00000000..d9870897 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Cpp20.h @@ -0,0 +1,290 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for UnrealEd.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 1 +#define WITH_RECAST 1 +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define UNREALED_API DLLIMPORT +#define ASSETDEFINITION_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define ASSETREGISTRY_API DLLIMPORT +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define ENGINE_API DLLIMPORT +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API DLLIMPORT +#define FIELDNOTIFICATION_API DLLIMPORT +#define NETCORE_API DLLIMPORT +#define NETCOMMON_API DLLIMPORT +#define IMAGECORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define JSONUTILITIES_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define SLATE_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define MESSAGING_API DLLIMPORT +#define MESSAGINGCOMMON_API DLLIMPORT +#define RENDERCORE_API DLLIMPORT +#define OPENGLDRV_API DLLIMPORT +#define ANALYTICSET_API DLLIMPORT +#define ANALYTICS_API DLLIMPORT +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API DLLIMPORT +#define ENGINEMESSAGES_API DLLIMPORT +#define ENGINESETTINGS_API DLLIMPORT +#define SYNTHBENCHMARK_API DLLIMPORT +#define GAMEPLAYTAGS_API DLLIMPORT +#define PACKETHANDLER_API DLLIMPORT +#define RELIABILITYHANDLERCOMPONENT_API DLLIMPORT +#define AUDIOPLATFORMCONFIGURATION_API DLLIMPORT +#define MESHDESCRIPTION_API DLLIMPORT +#define STATICMESHDESCRIPTION_API DLLIMPORT +#define SKELETALMESHDESCRIPTION_API DLLIMPORT +#define ANIMATIONCORE_API DLLIMPORT +#define PAKFILE_API DLLIMPORT +#define RSA_API DLLIMPORT +#define NETWORKREPLAYSTREAMING_API DLLIMPORT +#define PHYSICSCORE_API DLLIMPORT +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 1 +#define CHAOSCORE_API DLLIMPORT +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API DLLIMPORT +#define VORONOI_API DLLIMPORT +#define GEOMETRYCORE_API DLLIMPORT +#define CHAOSVDRUNTIME_API DLLIMPORT +#define SIGNALPROCESSING_API DLLIMPORT +#define AUDIOEXTENSIONS_API DLLIMPORT +#define AUDIOMIXERCORE_API DLLIMPORT +#define AUDIOMIXER_API DLLIMPORT +#define TARGETPLATFORM_API DLLIMPORT +#define TEXTUREFORMAT_API DLLIMPORT +#define DESKTOPPLATFORM_API DLLIMPORT +#define AUDIOLINKENGINE_API DLLIMPORT +#define AUDIOLINKCORE_API DLLIMPORT +#define COOKONTHEFLY_API DLLIMPORT +#define NETWORKING_API DLLIMPORT +#define TEXTUREBUILDUTILITIES_API DLLIMPORT +#define HORDE_API DLLIMPORT +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API DLLIMPORT +#define IRISCORE_API DLLIMPORT +#define MOVIESCENECAPTURE_API DLLIMPORT +#define RENDERER_API DLLIMPORT +#define TYPEDELEMENTFRAMEWORK_API DLLIMPORT +#define TYPEDELEMENTRUNTIME_API DLLIMPORT +#define ANIMATIONDATACONTROLLER_API DLLIMPORT +#define ANIMATIONBLUEPRINTEDITOR_API DLLIMPORT +#define KISMET_API DLLIMPORT +#define PERSONA_API DLLIMPORT +#define SKELETONEDITOR_API DLLIMPORT +#define ANIMATIONWIDGETS_API DLLIMPORT +#define TOOLWIDGETS_API DLLIMPORT +#define TOOLMENUS_API DLLIMPORT +#define ANIMATIONEDITOR_API DLLIMPORT +#define ADVANCEDPREVIEWSCENE_API DLLIMPORT +#define PROPERTYEDITOR_API DLLIMPORT +#define EDITORCONFIG_API DLLIMPORT +#define EDITORFRAMEWORK_API DLLIMPORT +#define EDITORSUBSYSTEM_API DLLIMPORT +#define INTERACTIVETOOLSFRAMEWORK_API DLLIMPORT +#define ACTORPICKERMODE_API DLLIMPORT +#define SCENEDEPTHPICKERMODE_API DLLIMPORT +#define ANIMATIONEDITMODE_API DLLIMPORT +#define INTERCHANGECORE_API DLLIMPORT +#define DIRECTORYWATCHER_API DLLIMPORT +#define DOCUMENTATION_API DLLIMPORT +#define MAINFRAME_API DLLIMPORT +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 1 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 1 +#define PROJECTS_API DLLIMPORT +#define SANDBOXFILE_API DLLIMPORT +#define SOURCE_CONTROL_WITH_SLATE 1 +#define SOURCECONTROL_API DLLIMPORT +#define UNCONTROLLEDCHANGELISTS_API DLLIMPORT +#define UNREALEDMESSAGES_API DLLIMPORT +#define BLUEPRINTGRAPH_API DLLIMPORT +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define CURL_ENABLE_NO_TIMEOUTS_OPTION 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API DLLIMPORT +#define FUNCTIONALTESTING_API DLLIMPORT +#define AUTOMATIONCONTROLLER_API DLLIMPORT +#define AUTOMATIONTEST_API DLLIMPORT +#define LOCALIZATION_API DLLIMPORT +#define WITH_SNDFILE_IO 1 +#define AUDIOEDITOR_API DLLIMPORT +#define LEVELEDITOR_API DLLIMPORT +#define COMMONMENUEXTENSIONS_API DLLIMPORT +#define SETTINGS_API DLLIMPORT +#define VREDITOR_API DLLIMPORT +#define VIEWPORTINTERACTION_API DLLIMPORT +#define HEADMOUNTEDDISPLAY_API DLLIMPORT +#define LANDSCAPE_API DLLIMPORT +#define DETAILCUSTOMIZATIONS_API DLLIMPORT +#define CLASSVIEWER_API DLLIMPORT +#define GRAPHEDITOR_API DLLIMPORT +#define STRUCTVIEWER_API DLLIMPORT +#define UE_CONTENTBROWSER_NEW_STYLE 0 +#define CONTENTBROWSER_API DLLIMPORT +#define ASSETTOOLS_API DLLIMPORT +#define MERGE_API DLLIMPORT +#define COLLECTIONMANAGER_API DLLIMPORT +#define CONTENTBROWSERDATA_API DLLIMPORT +#define UELIBSAMPLERATE_API DLLIMPORT +#define NETWORKFILESYSTEM_API DLLIMPORT +#define UMG_API DLLIMPORT +#define MOVIESCENE_API DLLIMPORT +#define TIMEMANAGEMENT_API DLLIMPORT +#define UNIVERSALOBJECTLOCATOR_API DLLIMPORT +#define MOVIESCENETRACKS_API DLLIMPORT +#define CONSTRAINTS_API DLLIMPORT +#define PROPERTYPATH_API DLLIMPORT +#define NAVIGATIONSYSTEM_API DLLIMPORT +#define GEOMETRYCOLLECTIONENGINE_API DLLIMPORT +#define FIELDSYSTEMENGINE_API DLLIMPORT +#define CHAOSSOLVERENGINE_API DLLIMPORT +#define DATAFLOWCORE_API DLLIMPORT +#define DATAFLOWENGINE_API DLLIMPORT +#define DATAFLOWSIMULATION_API DLLIMPORT +#define MESHBUILDER_API DLLIMPORT +#define MESHUTILITIESCOMMON_API DLLIMPORT +#define MATERIALSHADERQUALITYSETTINGS_API DLLIMPORT +#define TOOLMENUSEDITOR_API DLLIMPORT +#define STATUSBAR_API DLLIMPORT +#define INTERCHANGEENGINE_API DLLIMPORT +#define DEVELOPERTOOLSETTINGS_API DLLIMPORT +#define SUBOBJECTDATAINTERFACE_API DLLIMPORT +#define SUBOBJECTEDITOR_API DLLIMPORT +#define PHYSICSUTILITIES_API DLLIMPORT +#define WIDGETREGISTRATION_API DLLIMPORT +#define GAMEPLAYTASKS_API DLLIMPORT +#define AUDIOMIXERXAUDIO2_API DLLIMPORT +#define ASSETTAGSEDITOR_API DLLIMPORT +#define MESHUTILITIES_API DLLIMPORT +#define MESHMERGEUTILITIES_API DLLIMPORT +#define MESHREDUCTIONINTERFACE_API DLLIMPORT +#define RAWMESH_API DLLIMPORT +#define MATERIALUTILITIES_API DLLIMPORT +#define KISMETCOMPILER_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..b92b8650 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h @@ -0,0 +1,292 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for UnrealEd.Project.ValApi.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 1 +#define WITH_RECAST 1 +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define UNREALED_API DLLIMPORT +#define ASSETDEFINITION_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define ASSETREGISTRY_API DLLIMPORT +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define ENGINE_API DLLIMPORT +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API DLLIMPORT +#define FIELDNOTIFICATION_API DLLIMPORT +#define NETCORE_API DLLIMPORT +#define NETCOMMON_API DLLIMPORT +#define IMAGECORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define JSONUTILITIES_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define SLATE_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define MESSAGING_API DLLIMPORT +#define MESSAGINGCOMMON_API DLLIMPORT +#define RENDERCORE_API DLLIMPORT +#define OPENGLDRV_API DLLIMPORT +#define ANALYTICSET_API DLLIMPORT +#define ANALYTICS_API DLLIMPORT +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API DLLIMPORT +#define ENGINEMESSAGES_API DLLIMPORT +#define ENGINESETTINGS_API DLLIMPORT +#define SYNTHBENCHMARK_API DLLIMPORT +#define GAMEPLAYTAGS_API DLLIMPORT +#define PACKETHANDLER_API DLLIMPORT +#define RELIABILITYHANDLERCOMPONENT_API DLLIMPORT +#define AUDIOPLATFORMCONFIGURATION_API DLLIMPORT +#define MESHDESCRIPTION_API DLLIMPORT +#define STATICMESHDESCRIPTION_API DLLIMPORT +#define SKELETALMESHDESCRIPTION_API DLLIMPORT +#define ANIMATIONCORE_API DLLIMPORT +#define PAKFILE_API DLLIMPORT +#define RSA_API DLLIMPORT +#define NETWORKREPLAYSTREAMING_API DLLIMPORT +#define PHYSICSCORE_API DLLIMPORT +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 1 +#define CHAOSCORE_API DLLIMPORT +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API DLLIMPORT +#define VORONOI_API DLLIMPORT +#define GEOMETRYCORE_API DLLIMPORT +#define CHAOSVDRUNTIME_API DLLIMPORT +#define SIGNALPROCESSING_API DLLIMPORT +#define AUDIOEXTENSIONS_API DLLIMPORT +#define AUDIOMIXERCORE_API DLLIMPORT +#define AUDIOMIXER_API DLLIMPORT +#define TARGETPLATFORM_API DLLIMPORT +#define TEXTUREFORMAT_API DLLIMPORT +#define DESKTOPPLATFORM_API DLLIMPORT +#define AUDIOLINKENGINE_API DLLIMPORT +#define AUDIOLINKCORE_API DLLIMPORT +#define COOKONTHEFLY_API DLLIMPORT +#define NETWORKING_API DLLIMPORT +#define TEXTUREBUILDUTILITIES_API DLLIMPORT +#define HORDE_API DLLIMPORT +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API DLLIMPORT +#define IRISCORE_API DLLIMPORT +#define MOVIESCENECAPTURE_API DLLIMPORT +#define RENDERER_API DLLIMPORT +#define TYPEDELEMENTFRAMEWORK_API DLLIMPORT +#define TYPEDELEMENTRUNTIME_API DLLIMPORT +#define ANIMATIONDATACONTROLLER_API DLLIMPORT +#define ANIMATIONBLUEPRINTEDITOR_API DLLIMPORT +#define KISMET_API DLLIMPORT +#define PERSONA_API DLLIMPORT +#define SKELETONEDITOR_API DLLIMPORT +#define ANIMATIONWIDGETS_API DLLIMPORT +#define TOOLWIDGETS_API DLLIMPORT +#define TOOLMENUS_API DLLIMPORT +#define ANIMATIONEDITOR_API DLLIMPORT +#define ADVANCEDPREVIEWSCENE_API DLLIMPORT +#define PROPERTYEDITOR_API DLLIMPORT +#define EDITORCONFIG_API DLLIMPORT +#define EDITORFRAMEWORK_API DLLIMPORT +#define EDITORSUBSYSTEM_API DLLIMPORT +#define INTERACTIVETOOLSFRAMEWORK_API DLLIMPORT +#define ACTORPICKERMODE_API DLLIMPORT +#define SCENEDEPTHPICKERMODE_API DLLIMPORT +#define ANIMATIONEDITMODE_API DLLIMPORT +#define INTERCHANGECORE_API DLLIMPORT +#define DIRECTORYWATCHER_API DLLIMPORT +#define DOCUMENTATION_API DLLIMPORT +#define MAINFRAME_API DLLIMPORT +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 1 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 1 +#define PROJECTS_API DLLIMPORT +#define SANDBOXFILE_API DLLIMPORT +#define SOURCE_CONTROL_WITH_SLATE 1 +#define SOURCECONTROL_API DLLIMPORT +#define UNCONTROLLEDCHANGELISTS_API DLLIMPORT +#define UNREALEDMESSAGES_API DLLIMPORT +#define BLUEPRINTGRAPH_API DLLIMPORT +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define CURL_ENABLE_NO_TIMEOUTS_OPTION 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API DLLIMPORT +#define FUNCTIONALTESTING_API DLLIMPORT +#define AUTOMATIONCONTROLLER_API DLLIMPORT +#define AUTOMATIONTEST_API DLLIMPORT +#define LOCALIZATION_API DLLIMPORT +#define WITH_SNDFILE_IO 1 +#define AUDIOEDITOR_API DLLIMPORT +#define LEVELEDITOR_API DLLIMPORT +#define COMMONMENUEXTENSIONS_API DLLIMPORT +#define SETTINGS_API DLLIMPORT +#define VREDITOR_API DLLIMPORT +#define VIEWPORTINTERACTION_API DLLIMPORT +#define HEADMOUNTEDDISPLAY_API DLLIMPORT +#define LANDSCAPE_API DLLIMPORT +#define DETAILCUSTOMIZATIONS_API DLLIMPORT +#define CLASSVIEWER_API DLLIMPORT +#define GRAPHEDITOR_API DLLIMPORT +#define STRUCTVIEWER_API DLLIMPORT +#define UE_CONTENTBROWSER_NEW_STYLE 0 +#define CONTENTBROWSER_API DLLIMPORT +#define ASSETTOOLS_API DLLIMPORT +#define MERGE_API DLLIMPORT +#define COLLECTIONMANAGER_API DLLIMPORT +#define CONTENTBROWSERDATA_API DLLIMPORT +#define UELIBSAMPLERATE_API DLLIMPORT +#define NETWORKFILESYSTEM_API DLLIMPORT +#define UMG_API DLLIMPORT +#define MOVIESCENE_API DLLIMPORT +#define TIMEMANAGEMENT_API DLLIMPORT +#define UNIVERSALOBJECTLOCATOR_API DLLIMPORT +#define MOVIESCENETRACKS_API DLLIMPORT +#define CONSTRAINTS_API DLLIMPORT +#define PROPERTYPATH_API DLLIMPORT +#define NAVIGATIONSYSTEM_API DLLIMPORT +#define GEOMETRYCOLLECTIONENGINE_API DLLIMPORT +#define FIELDSYSTEMENGINE_API DLLIMPORT +#define CHAOSSOLVERENGINE_API DLLIMPORT +#define DATAFLOWCORE_API DLLIMPORT +#define DATAFLOWENGINE_API DLLIMPORT +#define DATAFLOWSIMULATION_API DLLIMPORT +#define MESHBUILDER_API DLLIMPORT +#define MESHUTILITIESCOMMON_API DLLIMPORT +#define MATERIALSHADERQUALITYSETTINGS_API DLLIMPORT +#define TOOLMENUSEDITOR_API DLLIMPORT +#define STATUSBAR_API DLLIMPORT +#define INTERCHANGEENGINE_API DLLIMPORT +#define DEVELOPERTOOLSETTINGS_API DLLIMPORT +#define SUBOBJECTDATAINTERFACE_API DLLIMPORT +#define SUBOBJECTEDITOR_API DLLIMPORT +#define PHYSICSUTILITIES_API DLLIMPORT +#define WIDGETREGISTRATION_API DLLIMPORT +#define GAMEPLAYTASKS_API DLLIMPORT +#define AUDIOMIXERXAUDIO2_API DLLIMPORT +#define ASSETTAGSEDITOR_API DLLIMPORT +#define MESHUTILITIES_API DLLIMPORT +#define MESHMERGEUTILITIES_API DLLIMPORT +#define MESHREDUCTIONINTERFACE_API DLLIMPORT +#define RAWMESH_API DLLIMPORT +#define MATERIALUTILITIES_API DLLIMPORT +#define KISMETCOMPILER_API DLLIMPORT +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_INTERNAL_API 1 diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.RTTI.Cpp20.h new file mode 100644 index 00000000..b1a9de3b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.RTTI.Cpp20.h @@ -0,0 +1,290 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for UnrealEd.RTTI.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_EDITOR 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 1 +#define WITH_PERF_AUTOMATION_TESTS 1 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 1 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 0 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 1 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 1 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 1 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 1 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 1 +#define WITH_IOSTORE_IN_EDITOR 1 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 1 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 1 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealEditor.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealEditor-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Editor +#define UE_APP_NAME "UnrealEditor" +#define UE_WARNINGS_AS_ERRORS 0 +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_DEVELOPMENT 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 1 +#define WITH_RECAST 1 +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define UNREALED_API DLLIMPORT +#define ASSETDEFINITION_API DLLIMPORT +#define UE_MEMORY_TAGS_TRACE_ENABLED 1 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 1 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define PLATFORM_SUPPORTS_PLATFORM_EVENTS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_VIRTUAL_MEMORY_HOOKS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_MODULE_DIAGNOSTICS 1 +#define PLATFORM_SUPPORTS_TRACE_WIN32_CALLSTACK 1 +#define UE_MEMORY_TRACE_AVAILABLE 1 +#define WITH_MALLOC_STOMP 1 +#define UE_MERGED_MODULES 0 +#define CORE_API DLLIMPORT +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API DLLIMPORT +#define WITH_VERSE_COMPILER 1 +#define COREUOBJECT_API DLLIMPORT +#define COREPRECISEFP_API DLLIMPORT +#define ASSETREGISTRY_API DLLIMPORT +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define ENGINE_API DLLIMPORT +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API DLLIMPORT +#define FIELDNOTIFICATION_API DLLIMPORT +#define NETCORE_API DLLIMPORT +#define NETCOMMON_API DLLIMPORT +#define IMAGECORE_API DLLIMPORT +#define JSON_API DLLIMPORT +#define JSONUTILITIES_API DLLIMPORT +#define WITH_FREETYPE 1 +#define SLATECORE_API DLLIMPORT +#define DEVELOPERSETTINGS_API DLLIMPORT +#define INPUTCORE_API DLLIMPORT +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API DLLIMPORT +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_WANT_RESOURCE_INFO 1 +#define RHI_API DLLIMPORT +#define SLATE_API DLLIMPORT +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API DLLIMPORT +#define WITH_LIBTIFF 1 +#define MESSAGING_API DLLIMPORT +#define MESSAGINGCOMMON_API DLLIMPORT +#define RENDERCORE_API DLLIMPORT +#define OPENGLDRV_API DLLIMPORT +#define ANALYTICSET_API DLLIMPORT +#define ANALYTICS_API DLLIMPORT +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API DLLIMPORT +#define ENGINEMESSAGES_API DLLIMPORT +#define ENGINESETTINGS_API DLLIMPORT +#define SYNTHBENCHMARK_API DLLIMPORT +#define GAMEPLAYTAGS_API DLLIMPORT +#define PACKETHANDLER_API DLLIMPORT +#define RELIABILITYHANDLERCOMPONENT_API DLLIMPORT +#define AUDIOPLATFORMCONFIGURATION_API DLLIMPORT +#define MESHDESCRIPTION_API DLLIMPORT +#define STATICMESHDESCRIPTION_API DLLIMPORT +#define SKELETALMESHDESCRIPTION_API DLLIMPORT +#define ANIMATIONCORE_API DLLIMPORT +#define PAKFILE_API DLLIMPORT +#define RSA_API DLLIMPORT +#define NETWORKREPLAYSTREAMING_API DLLIMPORT +#define PHYSICSCORE_API DLLIMPORT +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 1 +#define CHAOSCORE_API DLLIMPORT +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API DLLIMPORT +#define VORONOI_API DLLIMPORT +#define GEOMETRYCORE_API DLLIMPORT +#define CHAOSVDRUNTIME_API DLLIMPORT +#define SIGNALPROCESSING_API DLLIMPORT +#define AUDIOEXTENSIONS_API DLLIMPORT +#define AUDIOMIXERCORE_API DLLIMPORT +#define AUDIOMIXER_API DLLIMPORT +#define TARGETPLATFORM_API DLLIMPORT +#define TEXTUREFORMAT_API DLLIMPORT +#define DESKTOPPLATFORM_API DLLIMPORT +#define AUDIOLINKENGINE_API DLLIMPORT +#define AUDIOLINKCORE_API DLLIMPORT +#define COOKONTHEFLY_API DLLIMPORT +#define NETWORKING_API DLLIMPORT +#define TEXTUREBUILDUTILITIES_API DLLIMPORT +#define HORDE_API DLLIMPORT +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API DLLIMPORT +#define IRISCORE_API DLLIMPORT +#define MOVIESCENECAPTURE_API DLLIMPORT +#define RENDERER_API DLLIMPORT +#define TYPEDELEMENTFRAMEWORK_API DLLIMPORT +#define TYPEDELEMENTRUNTIME_API DLLIMPORT +#define ANIMATIONDATACONTROLLER_API DLLIMPORT +#define ANIMATIONBLUEPRINTEDITOR_API DLLIMPORT +#define KISMET_API DLLIMPORT +#define PERSONA_API DLLIMPORT +#define SKELETONEDITOR_API DLLIMPORT +#define ANIMATIONWIDGETS_API DLLIMPORT +#define TOOLWIDGETS_API DLLIMPORT +#define TOOLMENUS_API DLLIMPORT +#define ANIMATIONEDITOR_API DLLIMPORT +#define ADVANCEDPREVIEWSCENE_API DLLIMPORT +#define PROPERTYEDITOR_API DLLIMPORT +#define EDITORCONFIG_API DLLIMPORT +#define EDITORFRAMEWORK_API DLLIMPORT +#define EDITORSUBSYSTEM_API DLLIMPORT +#define INTERACTIVETOOLSFRAMEWORK_API DLLIMPORT +#define ACTORPICKERMODE_API DLLIMPORT +#define SCENEDEPTHPICKERMODE_API DLLIMPORT +#define ANIMATIONEDITMODE_API DLLIMPORT +#define INTERCHANGECORE_API DLLIMPORT +#define DIRECTORYWATCHER_API DLLIMPORT +#define DOCUMENTATION_API DLLIMPORT +#define MAINFRAME_API DLLIMPORT +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 1 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 1 +#define PROJECTS_API DLLIMPORT +#define SANDBOXFILE_API DLLIMPORT +#define SOURCE_CONTROL_WITH_SLATE 1 +#define SOURCECONTROL_API DLLIMPORT +#define UNCONTROLLEDCHANGELISTS_API DLLIMPORT +#define UNREALEDMESSAGES_API DLLIMPORT +#define BLUEPRINTGRAPH_API DLLIMPORT +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define CURL_ENABLE_NO_TIMEOUTS_OPTION 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API DLLIMPORT +#define FUNCTIONALTESTING_API DLLIMPORT +#define AUTOMATIONCONTROLLER_API DLLIMPORT +#define AUTOMATIONTEST_API DLLIMPORT +#define LOCALIZATION_API DLLIMPORT +#define WITH_SNDFILE_IO 1 +#define AUDIOEDITOR_API DLLIMPORT +#define LEVELEDITOR_API DLLIMPORT +#define COMMONMENUEXTENSIONS_API DLLIMPORT +#define SETTINGS_API DLLIMPORT +#define VREDITOR_API DLLIMPORT +#define VIEWPORTINTERACTION_API DLLIMPORT +#define HEADMOUNTEDDISPLAY_API DLLIMPORT +#define LANDSCAPE_API DLLIMPORT +#define DETAILCUSTOMIZATIONS_API DLLIMPORT +#define CLASSVIEWER_API DLLIMPORT +#define GRAPHEDITOR_API DLLIMPORT +#define STRUCTVIEWER_API DLLIMPORT +#define UE_CONTENTBROWSER_NEW_STYLE 0 +#define CONTENTBROWSER_API DLLIMPORT +#define ASSETTOOLS_API DLLIMPORT +#define MERGE_API DLLIMPORT +#define COLLECTIONMANAGER_API DLLIMPORT +#define CONTENTBROWSERDATA_API DLLIMPORT +#define UELIBSAMPLERATE_API DLLIMPORT +#define NETWORKFILESYSTEM_API DLLIMPORT +#define UMG_API DLLIMPORT +#define MOVIESCENE_API DLLIMPORT +#define TIMEMANAGEMENT_API DLLIMPORT +#define UNIVERSALOBJECTLOCATOR_API DLLIMPORT +#define MOVIESCENETRACKS_API DLLIMPORT +#define CONSTRAINTS_API DLLIMPORT +#define PROPERTYPATH_API DLLIMPORT +#define NAVIGATIONSYSTEM_API DLLIMPORT +#define GEOMETRYCOLLECTIONENGINE_API DLLIMPORT +#define FIELDSYSTEMENGINE_API DLLIMPORT +#define CHAOSSOLVERENGINE_API DLLIMPORT +#define DATAFLOWCORE_API DLLIMPORT +#define DATAFLOWENGINE_API DLLIMPORT +#define DATAFLOWSIMULATION_API DLLIMPORT +#define MESHBUILDER_API DLLIMPORT +#define MESHUTILITIESCOMMON_API DLLIMPORT +#define MATERIALSHADERQUALITYSETTINGS_API DLLIMPORT +#define TOOLMENUSEDITOR_API DLLIMPORT +#define STATUSBAR_API DLLIMPORT +#define INTERCHANGEENGINE_API DLLIMPORT +#define DEVELOPERTOOLSETTINGS_API DLLIMPORT +#define SUBOBJECTDATAINTERFACE_API DLLIMPORT +#define SUBOBJECTEDITOR_API DLLIMPORT +#define PHYSICSUTILITIES_API DLLIMPORT +#define WIDGETREGISTRATION_API DLLIMPORT +#define GAMEPLAYTASKS_API DLLIMPORT +#define AUDIOMIXERXAUDIO2_API DLLIMPORT +#define ASSETTAGSEDITOR_API DLLIMPORT +#define MESHUTILITIES_API DLLIMPORT +#define MESHMERGEUTILITIES_API DLLIMPORT +#define MESHREDUCTIONINTERFACE_API DLLIMPORT +#define RAWMESH_API DLLIMPORT +#define MATERIALUTILITIES_API DLLIMPORT +#define KISMETCOMPILER_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.cpp new file mode 100644 index 00000000..097c74ac --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.UnrealEd.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h new file mode 100644 index 00000000..5d096f47 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Editor/UnrealEd/Public/UnrealEdSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Cpp20.h" +#include "Editor/UnrealEd/Public/UnrealEdSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h.obj.rsp new file mode 100644 index 00000000..f6abc2d4 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Cpp20.h.obj.rsp @@ -0,0 +1,345 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "ThirdParty\libSampleRate\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "Editor\AssetTagsEditor\Public" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.UnrealEd.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.cpp new file mode 100644 index 00000000..54924840 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..5bf3307d --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Editor/UnrealEd/Public/UnrealEdSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#include "Editor/UnrealEd/Public/UnrealEdSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj.rsp new file mode 100644 index 00000000..095eaf4f --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj.rsp @@ -0,0 +1,345 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "ThirdParty\libSampleRate\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "Editor\AssetTagsEditor\Public" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.cpp new file mode 100644 index 00000000..8f21bd07 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.UnrealEd.RTTI.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h new file mode 100644 index 00000000..db7617aa --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Editor/UnrealEd/Public/UnrealEdSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.RTTI.Cpp20.h" +#include "Editor/UnrealEd/Public/UnrealEdSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h.obj.rsp new file mode 100644 index 00000000..a2c82b28 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedPCH.UnrealEd.RTTI.Cpp20.h.obj.rsp @@ -0,0 +1,345 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.RTTI.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "ThirdParty\libSampleRate\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "Editor\AssetTagsEditor\Public" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.UnrealEd.RTTI.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.RTTI.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.RTTI.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.RTTI.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.RTTI.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Cpp20.h new file mode 100644 index 00000000..09e8bd2a --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Cpp20.h @@ -0,0 +1,93 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Core.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Exceptions.Cpp20.h new file mode 100644 index 00000000..8058dedd --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Exceptions.Cpp20.h @@ -0,0 +1,93 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Core.Exceptions.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.RTTI.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.RTTI.Exceptions.Cpp20.h new file mode 100644 index 00000000..a30ce335 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.RTTI.Exceptions.Cpp20.h @@ -0,0 +1,93 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Core.RTTI.Exceptions.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.cpp new file mode 100644 index 00000000..8487b7de --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Core.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h new file mode 100644 index 00000000..e4afbb9d --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Core/Public/CoreSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Cpp20.h" +#include "Runtime/Core/Public/CoreSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h.obj.rsp new file mode 100644 index 00000000..128647e3 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Cpp20.h.obj.rsp @@ -0,0 +1,60 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Cpp20.cpp" +/I "." +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Core.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.cpp new file mode 100644 index 00000000..ac73c238 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Core.Exceptions.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h new file mode 100644 index 00000000..6e37416c --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Core/Public/CoreSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.Exceptions.Cpp20.h" +#include "Runtime/Core/Public/CoreSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h.obj.rsp new file mode 100644 index 00000000..6db56abf --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.Exceptions.Cpp20.h.obj.rsp @@ -0,0 +1,60 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Exceptions.Cpp20.cpp" +/I "." +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Core.Exceptions.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Exceptions.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Exceptions.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Exceptions.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.Exceptions.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.cpp new file mode 100644 index 00000000..99181f9d --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Core.RTTI.Exceptions.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h new file mode 100644 index 00000000..db435921 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Core/Public/CoreSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedDefinitions.Core.RTTI.Exceptions.Cpp20.h" +#include "Runtime/Core/Public/CoreSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h.obj.rsp new file mode 100644 index 00000000..59e95e4c --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Core/SharedPCH.Core.RTTI.Exceptions.Cpp20.h.obj.rsp @@ -0,0 +1,60 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.RTTI.Exceptions.Cpp20.cpp" +/I "." +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Core.RTTI.Exceptions.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.RTTI.Exceptions.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.RTTI.Exceptions.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.RTTI.Exceptions.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Core\SharedPCH.Core.RTTI.Exceptions.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h new file mode 100644 index 00000000..51e4d3bb --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h @@ -0,0 +1,96 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for CoreUObject.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define COREPRECISEFP_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Exceptions.Cpp20.h new file mode 100644 index 00000000..194dcb04 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Exceptions.Cpp20.h @@ -0,0 +1,96 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for CoreUObject.RTTI.Exceptions.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define COREPRECISEFP_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp new file mode 100644 index 00000000..e7e6a04b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.CoreUObject.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h new file mode 100644 index 00000000..40183cd3 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.Cpp20.h" +#include "Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp new file mode 100644 index 00000000..ba413a00 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.Cpp20.h.obj.rsp @@ -0,0 +1,66 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.CoreUObject.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.cpp new file mode 100644 index 00000000..e9424d57 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h new file mode 100644 index 00000000..4cef11d7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedDefinitions.CoreUObject.RTTI.Exceptions.Cpp20.h" +#include "Runtime/CoreUObject/Public/CoreUObjectSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.obj.rsp new file mode 100644 index 00000000..4a9bcd9a --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/CoreUObject/SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.obj.rsp @@ -0,0 +1,66 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\CoreUObject\SharedPCH.CoreUObject.RTTI.Exceptions.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Cpp20.h new file mode 100644 index 00000000..bac2ef26 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Cpp20.h @@ -0,0 +1,176 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 0 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define COREPRECISEFP_API +#define FIELDNOTIFICATION_API +#define NETCORE_API +#define NETCOMMON_API +#define IMAGECORE_API +#define JSON_API +#define JSONUTILITIES_API +#define WITH_FREETYPE 1 +#define SLATECORE_API +#define DEVELOPERSETTINGS_API +#define INPUTCORE_API +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_API +#define SLATE_API +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API +#define WITH_LIBTIFF 1 +#define MESSAGING_API +#define MESSAGINGCOMMON_API +#define RENDERCORE_API +#define OPENGLDRV_API +#define ANALYTICSET_API +#define ANALYTICS_API +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API +#define ASSETREGISTRY_API +#define ENGINEMESSAGES_API +#define ENGINESETTINGS_API +#define SYNTHBENCHMARK_API +#define GAMEPLAYTAGS_API +#define PACKETHANDLER_API +#define RELIABILITYHANDLERCOMPONENT_API +#define AUDIOPLATFORMCONFIGURATION_API +#define MESHDESCRIPTION_API +#define STATICMESHDESCRIPTION_API +#define SKELETALMESHDESCRIPTION_API +#define ANIMATIONCORE_API +#define PAKFILE_API +#define RSA_API +#define NETWORKREPLAYSTREAMING_API +#define PHYSICSCORE_API +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 0 +#define CHAOSCORE_API +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API +#define VORONOI_API +#define GEOMETRYCORE_API +#define SIGNALPROCESSING_API +#define AUDIOEXTENSIONS_API +#define AUDIOMIXERCORE_API +#define AUDIOMIXER_API +#define TARGETPLATFORM_API +#define TEXTUREFORMAT_API +#define DESKTOPPLATFORM_API +#define AUDIOLINKENGINE_API +#define AUDIOLINKCORE_API +#define COOKONTHEFLY_API +#define NETWORKING_API +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API +#define IRISCORE_API +#define MOVIESCENECAPTURE_API +#define RENDERER_API +#define TYPEDELEMENTFRAMEWORK_API +#define TYPEDELEMENTRUNTIME_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Exceptions.Cpp20.h new file mode 100644 index 00000000..af7c7fbd --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Exceptions.Cpp20.h @@ -0,0 +1,176 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.Exceptions.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 0 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define COREPRECISEFP_API +#define FIELDNOTIFICATION_API +#define NETCORE_API +#define NETCOMMON_API +#define IMAGECORE_API +#define JSON_API +#define JSONUTILITIES_API +#define WITH_FREETYPE 1 +#define SLATECORE_API +#define DEVELOPERSETTINGS_API +#define INPUTCORE_API +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_API +#define SLATE_API +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API +#define WITH_LIBTIFF 1 +#define MESSAGING_API +#define MESSAGINGCOMMON_API +#define RENDERCORE_API +#define OPENGLDRV_API +#define ANALYTICSET_API +#define ANALYTICS_API +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API +#define ASSETREGISTRY_API +#define ENGINEMESSAGES_API +#define ENGINESETTINGS_API +#define SYNTHBENCHMARK_API +#define GAMEPLAYTAGS_API +#define PACKETHANDLER_API +#define RELIABILITYHANDLERCOMPONENT_API +#define AUDIOPLATFORMCONFIGURATION_API +#define MESHDESCRIPTION_API +#define STATICMESHDESCRIPTION_API +#define SKELETALMESHDESCRIPTION_API +#define ANIMATIONCORE_API +#define PAKFILE_API +#define RSA_API +#define NETWORKREPLAYSTREAMING_API +#define PHYSICSCORE_API +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 0 +#define CHAOSCORE_API +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API +#define VORONOI_API +#define GEOMETRYCORE_API +#define SIGNALPROCESSING_API +#define AUDIOEXTENSIONS_API +#define AUDIOMIXERCORE_API +#define AUDIOMIXER_API +#define TARGETPLATFORM_API +#define TEXTUREFORMAT_API +#define DESKTOPPLATFORM_API +#define AUDIOLINKENGINE_API +#define AUDIOLINKCORE_API +#define COOKONTHEFLY_API +#define NETWORKING_API +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API +#define IRISCORE_API +#define MOVIESCENECAPTURE_API +#define RENDERER_API +#define TYPEDELEMENTFRAMEWORK_API +#define TYPEDELEMENTRUNTIME_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..1f773311 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h @@ -0,0 +1,178 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.Project.ValApi.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 0 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define COREPRECISEFP_API +#define FIELDNOTIFICATION_API +#define NETCORE_API +#define NETCOMMON_API +#define IMAGECORE_API +#define JSON_API +#define JSONUTILITIES_API +#define WITH_FREETYPE 1 +#define SLATECORE_API +#define DEVELOPERSETTINGS_API +#define INPUTCORE_API +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_API +#define SLATE_API +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API +#define WITH_LIBTIFF 1 +#define MESSAGING_API +#define MESSAGINGCOMMON_API +#define RENDERCORE_API +#define OPENGLDRV_API +#define ANALYTICSET_API +#define ANALYTICS_API +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API +#define ASSETREGISTRY_API +#define ENGINEMESSAGES_API +#define ENGINESETTINGS_API +#define SYNTHBENCHMARK_API +#define GAMEPLAYTAGS_API +#define PACKETHANDLER_API +#define RELIABILITYHANDLERCOMPONENT_API +#define AUDIOPLATFORMCONFIGURATION_API +#define MESHDESCRIPTION_API +#define STATICMESHDESCRIPTION_API +#define SKELETALMESHDESCRIPTION_API +#define ANIMATIONCORE_API +#define PAKFILE_API +#define RSA_API +#define NETWORKREPLAYSTREAMING_API +#define PHYSICSCORE_API +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 0 +#define CHAOSCORE_API +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API +#define VORONOI_API +#define GEOMETRYCORE_API +#define SIGNALPROCESSING_API +#define AUDIOEXTENSIONS_API +#define AUDIOMIXERCORE_API +#define AUDIOMIXER_API +#define TARGETPLATFORM_API +#define TEXTUREFORMAT_API +#define DESKTOPPLATFORM_API +#define AUDIOLINKENGINE_API +#define AUDIOLINKCORE_API +#define COOKONTHEFLY_API +#define NETWORKING_API +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API +#define IRISCORE_API +#define MOVIESCENECAPTURE_API +#define RENDERER_API +#define TYPEDELEMENTFRAMEWORK_API +#define TYPEDELEMENTRUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_INTERNAL_API 1 diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.RTTI.Cpp20.h new file mode 100644 index 00000000..dc6fb3b9 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.RTTI.Cpp20.h @@ -0,0 +1,176 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Engine.RTTI.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define WITH_CLOTH_COLLISION_DETECTION 1 +#define WITH_CHAOS_VISUAL_DEBUGGER 0 +#define GPUPARTICLE_LOCAL_VF_ONLY 0 +#define WITH_ODSC 0 +#define UE_WITH_IRIS 1 +#define ENGINE_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define PLATFORM_MAX_LOCAL_PLAYERS 0 +#define COREONLINE_API +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define COREPRECISEFP_API +#define FIELDNOTIFICATION_API +#define NETCORE_API +#define NETCOMMON_API +#define IMAGECORE_API +#define JSON_API +#define JSONUTILITIES_API +#define WITH_FREETYPE 1 +#define SLATECORE_API +#define DEVELOPERSETTINGS_API +#define INPUTCORE_API +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_API +#define SLATE_API +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API +#define WITH_LIBTIFF 1 +#define MESSAGING_API +#define MESSAGINGCOMMON_API +#define RENDERCORE_API +#define OPENGLDRV_API +#define ANALYTICSET_API +#define ANALYTICS_API +#define SOCKETS_PACKAGE 1 +#define SOCKETS_API +#define ASSETREGISTRY_API +#define ENGINEMESSAGES_API +#define ENGINESETTINGS_API +#define SYNTHBENCHMARK_API +#define GAMEPLAYTAGS_API +#define PACKETHANDLER_API +#define RELIABILITYHANDLERCOMPONENT_API +#define AUDIOPLATFORMCONFIGURATION_API +#define MESHDESCRIPTION_API +#define STATICMESHDESCRIPTION_API +#define SKELETALMESHDESCRIPTION_API +#define ANIMATIONCORE_API +#define PAKFILE_API +#define RSA_API +#define NETWORKREPLAYSTREAMING_API +#define PHYSICSCORE_API +#define COMPILE_WITHOUT_UNREAL_SUPPORT 0 +#define CHAOS_CHECKED 0 +#define CHAOS_DEBUG_NAME 0 +#define CHAOSCORE_API +#define INTEL_ISPC 1 +#define CHAOS_MEMORY_TRACKING 0 +#define CHAOS_API +#define VORONOI_API +#define GEOMETRYCORE_API +#define SIGNALPROCESSING_API +#define AUDIOEXTENSIONS_API +#define AUDIOMIXERCORE_API +#define AUDIOMIXER_API +#define TARGETPLATFORM_API +#define TEXTUREFORMAT_API +#define DESKTOPPLATFORM_API +#define AUDIOLINKENGINE_API +#define AUDIOLINKCORE_API +#define COOKONTHEFLY_API +#define NETWORKING_API +#define CLOTHINGSYSTEMRUNTIMEINTERFACE_API +#define IRISCORE_API +#define MOVIESCENECAPTURE_API +#define RENDERER_API +#define TYPEDELEMENTFRAMEWORK_API +#define TYPEDELEMENTRUNTIME_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.cpp new file mode 100644 index 00000000..9959e13a --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h new file mode 100644 index 00000000..de684a5b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp new file mode 100644 index 00000000..8f134c25 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Cpp20.h.obj.rsp @@ -0,0 +1,177 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.cpp new file mode 100644 index 00000000..acca8fb3 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.Exceptions.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h new file mode 100644 index 00000000..372ac75c --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Exceptions.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h.obj.rsp new file mode 100644 index 00000000..e7d6b54b --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Exceptions.Cpp20.h.obj.rsp @@ -0,0 +1,177 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Exceptions.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.Exceptions.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Exceptions.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Exceptions.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Exceptions.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Exceptions.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp new file mode 100644 index 00000000..362732e7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.Project.ValApi.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h new file mode 100644 index 00000000..0f4b46c6 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp new file mode 100644 index 00000000..80298d76 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.Project.ValApi.Cpp20.h.obj.rsp @@ -0,0 +1,177 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.cpp new file mode 100644 index 00000000..524e51ae --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Engine.RTTI.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h new file mode 100644 index 00000000..48837260 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Engine/Public/EngineSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.RTTI.Cpp20.h" +#include "Runtime/Engine/Public/EngineSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h.obj.rsp new file mode 100644 index 00000000..6067cba3 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedPCH.Engine.RTTI.Cpp20.h.obj.rsp @@ -0,0 +1,177 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.RTTI.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Engine.RTTI.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.RTTI.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.RTTI.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.RTTI.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.RTTI.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedDefinitions.Slate.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedDefinitions.Slate.Cpp20.h new file mode 100644 index 00000000..b1275a96 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedDefinitions.Slate.Cpp20.h @@ -0,0 +1,115 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared Definitions for Slate.Cpp20 +#pragma once +#define IS_PROGRAM 0 +#define UE_GAME 1 +#define USE_SHADER_COMPILER_WORKER_TRACE 0 +#define UE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR 1 +#define WITH_VERSE_VM 0 +#define ENABLE_PGO_PROFILE 0 +#define USE_VORBIS_FOR_STREAMING 1 +#define USE_XMA2_FOR_STREAMING 1 +#define WITH_DEV_AUTOMATION_TESTS 0 +#define WITH_PERF_AUTOMATION_TESTS 0 +#define WITH_LOW_LEVEL_TESTS 0 +#define EXPLICIT_TESTS_TARGET 0 +#define WITH_TESTS 0 +#define UNICODE 1 +#define _UNICODE 1 +#define __UNREAL__ 1 +#define IS_MONOLITHIC 1 +#define IS_MERGEDMODULES 0 +#define WITH_ENGINE 1 +#define WITH_UNREAL_DEVELOPER_TOOLS 0 +#define WITH_UNREAL_TARGET_DEVELOPER_TOOLS 0 +#define WITH_APPLICATION_CORE 1 +#define WITH_COREUOBJECT 1 +#define UE_TRACE_ENABLED 0 +#define UE_TRACE_FORCE_ENABLED 0 +#define WITH_VERSE 1 +#define UE_USE_VERSE_PATHS 1 +#define WITH_VERSE_BPVM 1 +#define USE_STATS_WITHOUT_ENGINE 0 +#define WITH_PLUGIN_SUPPORT 0 +#define WITH_ACCESSIBILITY 1 +#define WITH_PERFCOUNTERS 0 +#define WITH_FIXED_TIME_STEP_SUPPORT 1 +#define USE_LOGGING_IN_SHIPPING 0 +#define ALLOW_CONSOLE_IN_SHIPPING 0 +#define ALLOW_PROFILEGPU_IN_TEST 0 +#define ALLOW_PROFILEGPU_IN_SHIPPING 0 +#define WITH_LOGGING_TO_MEMORY 0 +#define USE_CACHE_FREED_OS_ALLOCS 1 +#define USE_CHECKS_IN_SHIPPING 0 +#define USE_UTF8_TCHARS 0 +#define USE_ESTIMATED_UTCNOW 0 +#define UE_ALLOW_EXEC_COMMANDS_IN_SHIPPING 1 +#define WITH_EDITOR 0 +#define WITH_EDITORONLY_DATA 0 +#define WITH_CLIENT_CODE 1 +#define WITH_SERVER_CODE 1 +#define UE_FNAME_OUTLINE_NUMBER 0 +#define WITH_PUSH_MODEL 0 +#define WITH_CEF3 1 +#define WITH_LIVE_CODING 0 +#define WITH_CPP_MODULES 0 +#define WITH_CPP_COROUTINES 0 +#define WITH_PROCESS_PRIORITY_CONTROL 0 +#define UBT_MODULE_MANIFEST "UnrealGame-Win64-Shipping.modules" +#define UBT_MODULE_MANIFEST_DEBUGGAME "UnrealGame-Win64-DebugGame.modules" +#define UBT_COMPILED_PLATFORM Win64 +#define UBT_COMPILED_TARGET Game +#define UE_APP_NAME "UnrealGame" +#define UE_WARNINGS_AS_ERRORS 0 +#define UE_ENGINE_DIRECTORY "../../../../Games/UE_5.5/Engine/" +#define NDIS_MINIPORT_MAJOR_VERSION 0 +#define WIN32 1 +#define _WIN32_WINNT 0x0601 +#define WINVER 0x0601 +#define PLATFORM_WINDOWS 1 +#define PLATFORM_MICROSOFT 1 +#define OVERRIDE_PLATFORM_HEADER_NAME Windows +#define RHI_RAYTRACING 1 +#define WINDOWS_MAX_NUM_TLS_SLOTS 2048 +#define WINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS 512 +#define NDEBUG 1 +#define UE_BUILD_SHIPPING 1 +#define UE_IS_ENGINE_MODULE 1 +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define SLATE_API +#define UE_ENABLE_ICU 1 +#define WITH_ADDITIONAL_CRASH_CONTEXTS 1 +#define WITH_VS_PERF_PROFILER 0 +#define WITH_CONCURRENCYVIEWER_PROFILER 0 +#define WITH_DIRECTXMATH 0 +#define UE_WITH_IRIS 1 +#define WITH_MALLOC_STOMP 0 +#define UE_MERGED_MODULES 0 +#define CORE_API +#define GSL_NO_IOSTREAMS 1 +#define TRACELOG_API +#define WITH_VERSE_COMPILER 0 +#define COREUOBJECT_API +#define COREPRECISEFP_API +#define INPUTCORE_API +#define JSON_API +#define WITH_FREETYPE 1 +#define SLATECORE_API +#define DEVELOPERSETTINGS_API +#define UE_WINDOWS_USING_UIA 1 +#define APPLICATIONCORE_API +#define RHI_NEW_GPU_PROFILER 0 +#define WITH_MGPU 1 +#define RHI_API +#define WITH_UNREALPNG 1 +#define WITH_UNREALJPEG 1 +#define WITH_LIBJPEGTURBO 1 +#define WITH_UNREALEXR 1 +#define WITH_UNREALEXR_MINIMAL 0 +#define IMAGEWRAPPER_API +#define WITH_LIBTIFF 1 +#define IMAGECORE_API diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.cpp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.cpp new file mode 100644 index 00000000..a9793e35 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.cpp @@ -0,0 +1,2 @@ +// Compiler: 14.43.34809 +#include "SharedPCH.Slate.Cpp20.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h new file mode 100644 index 00000000..4127db43 --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h @@ -0,0 +1,3 @@ +// PCH for Runtime/Slate/Public/SlateSharedPCH.h +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedDefinitions.Slate.Cpp20.h" +#include "Runtime/Slate/Public/SlateSharedPCH.h" diff --git a/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp new file mode 100644 index 00000000..ceac1afc --- /dev/null +++ b/Intermediate/Build/Win64/x64/LyraGame/Shipping/Slate/SharedPCH.Slate.Cpp20.h.obj.rsp @@ -0,0 +1,84 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Slate\SharedPCH.Slate.Cpp20.cpp" +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "Runtime\ImageWrapper\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/Yc"SharedPCH.Slate.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Slate\SharedPCH.Slate.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Slate\SharedPCH.Slate.Cpp20.h.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Slate\SharedPCH.Slate.Cpp20.h.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Slate\SharedPCH.Slate.Cpp20.h.dep.json" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/wd5048 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/AssetTypeActions_LyraContextEffectsLibrary.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/AssetTypeActions_LyraContextEffectsLibrary.cpp.obj.rsp new file mode 100644 index 00000000..72299a8e --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/AssetTypeActions_LyraContextEffectsLibrary.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Private\AssetTypeActions_LyraContextEffectsLibrary.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\AssetTypeActions_LyraContextEffectsLibrary.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\AssetTypeActions_LyraContextEffectsLibrary.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\AssetTypeActions_LyraContextEffectsLibrary.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CheckChaosMeshCollision.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CheckChaosMeshCollision.cpp.obj.rsp new file mode 100644 index 00000000..5175c164 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CheckChaosMeshCollision.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Utilities\CheckChaosMeshCollision.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CheckChaosMeshCollision.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CheckChaosMeshCollision.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CheckChaosMeshCollision.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/ContentValidationCommandlet.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/ContentValidationCommandlet.cpp.obj.rsp new file mode 100644 index 00000000..a95833bf --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/ContentValidationCommandlet.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Commandlets\ContentValidationCommandlet.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\ContentValidationCommandlet.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\ContentValidationCommandlet.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\ContentValidationCommandlet.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CreateRedirectorPackage.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CreateRedirectorPackage.cpp.obj.rsp new file mode 100644 index 00000000..810b7daf --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/CreateRedirectorPackage.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Utilities\CreateRedirectorPackage.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CreateRedirectorPackage.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CreateRedirectorPackage.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CreateRedirectorPackage.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Default.rc2.res.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Default.rc2.res.rsp new file mode 100644 index 00000000..2768fd38 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-LyraEditor.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Definitions.LyraEditor.h b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Definitions.LyraEditor.h new file mode 100644 index 00000000..bda87e92 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/Definitions.LyraEditor.h @@ -0,0 +1,65 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for LyraEditor +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef LYRAEDITOR_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define WITH_RPC_REGISTRY 1 +#define WITH_HTTPSERVER_LISTENERS 1 +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define UE_MODULE_NAME "LyraEditor" +#define UE_PLUGIN_NAME "" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define EDITORSTYLE_API DLLIMPORT +#define DATAVALIDATION_API DLLIMPORT +#define MESSAGELOG_API DLLIMPORT +#define USE_RPC_REGISTRY_IN_SHIPPING 0 +#define EXTERNALRPCREGISTRY_API DLLIMPORT +#define HTTPSERVER_API DLLIMPORT +#define LYRAEDITOR_API DLLEXPORT +#define GAMEPLAYTAGSEDITOR_API DLLIMPORT +#define GAMEPLAYTASKSEDITOR_API DLLIMPORT +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define GAMEPLAYABILITIES_API DLLIMPORT +#define DATAREGISTRY_API DLLIMPORT +#define GAMEPLAYABILITIESEDITOR_API DLLIMPORT +#define STUDIOTELEMETRY_API DLLIMPORT +#define LYRAGAME_API DLLIMPORT +#define AIMODULE_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define REPLICATIONGRAPH_API DLLIMPORT +#define GAMEFEATURES_API DLLIMPORT +#define SIGNIFICANCEMANAGER_API DLLIMPORT +#define HOTFIX_API DLLIMPORT +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define INSTALLBUNDLEMANAGER_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLIMPORT +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API DLLIMPORT +#define NIAGARACORE_API DLLIMPORT +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API DLLIMPORT +#define NIAGARASHADER_API DLLIMPORT +#define NIAGARAVERTEXFACTORIES_API DLLIMPORT +#define ASYNCMIXIN_API DLLIMPORT +#define CONTROLFLOWS_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/DiffCollectionReferenceSupport.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/DiffCollectionReferenceSupport.cpp.obj.rsp new file mode 100644 index 00000000..7b29f8e9 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/DiffCollectionReferenceSupport.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Utilities\DiffCollectionReferenceSupport.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\DiffCollectionReferenceSupport.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\DiffCollectionReferenceSupport.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\DiffCollectionReferenceSupport.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator.cpp.obj.rsp new file mode 100644 index 00000000..7878640a --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Blueprints.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Blueprints.cpp.obj.rsp new file mode 100644 index 00000000..e085556c --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Blueprints.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Blueprints.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Blueprints.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Blueprints.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Blueprints.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Load.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Load.cpp.obj.rsp new file mode 100644 index 00000000..e70321f1 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_Load.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_Load.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Load.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Load.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Load.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_MaterialFunctions.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_MaterialFunctions.cpp.obj.rsp new file mode 100644 index 00000000..393c061a --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_MaterialFunctions.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_MaterialFunctions.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_MaterialFunctions.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_MaterialFunctions.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_MaterialFunctions.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_SourceControl.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_SourceControl.cpp.obj.rsp new file mode 100644 index 00000000..d81d913b --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/EditorValidator_SourceControl.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Validation\EditorValidator_SourceControl.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_SourceControl.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_SourceControl.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_SourceControl.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/GameEditorStyle.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/GameEditorStyle.cpp.obj.rsp new file mode 100644 index 00000000..fd1fdb0e --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/GameEditorStyle.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Private\GameEditorStyle.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\GameEditorStyle.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\GameEditorStyle.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\GameEditorStyle.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LiveCodingInfo.json b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LiveCodingInfo.json new file mode 100644 index 00000000..5a2fc05f --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LiveCodingInfo.json @@ -0,0 +1,5 @@ +{ + "RemapUnityFiles": + { + } +} \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraContextEffectsLibraryFactory.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraContextEffectsLibraryFactory.cpp.obj.rsp new file mode 100644 index 00000000..394ebe7c --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraContextEffectsLibraryFactory.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\Private\LyraContextEffectsLibraryFactory.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraContextEffectsLibraryFactory.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraContextEffectsLibraryFactory.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraContextEffectsLibraryFactory.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.Shared.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.Shared.rsp new file mode 100644 index 00000000..7f4f7598 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.Shared.rsp @@ -0,0 +1,380 @@ +/I "." +/I "E:\Projects\cross_platform\Source\LyraEditor\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "Runtime\ImageWrapper\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "Editor\EditorStyle\Public" +/I "..\Plugins\Editor\DataValidation\Intermediate\Build\Win64\UnrealEditor\Inc\DataValidation\UHT" +/I "..\Plugins\Editor\DataValidation\Source" +/I "..\Plugins\Editor\DataValidation\Source\DataValidation\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "Developer\MessageLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ExternalRpcRegistry\UHT" +/I "Runtime\ExternalRPCRegistry\Public" +/I "Runtime\Online\HTTPServer\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraEditor\UHT" +/I "E:\Projects\cross_platform\Source\LyraEditor" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Editor\GameplayTagsEditor\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTagsEditor\UHT" +/I "..\Plugins\Editor\GameplayTagsEditor\Source" +/I "..\Plugins\Editor\GameplayTagsEditor\Source\GameplayTagsEditor\Classes" +/I "..\Plugins\Editor\GameplayTagsEditor\Source\GameplayTagsEditor\Public" +/I "..\Plugins\Editor\GameplayTagsEditor\Source\GameplayTagsEditor\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasksEditor\UHT" +/I "Editor\GameplayTasksEditor\Classes" +/I "Editor\GameplayTasksEditor\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealEditor\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilitiesEditor\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilitiesEditor\Public" +/I "..\Plugins\Experimental\StudioTelemetry\Source" +/I "..\Plugins\Experimental\StudioTelemetry\Source\StudioTelemetry\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealEditor\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealEditor\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealEditor\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealEditor\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.cpp.obj.rsp new file mode 100644 index 00000000..93670398 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\LyraEditor.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.init.gen.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.init.gen.cpp.obj.rsp new file mode 100644 index 00000000..d5543489 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditor.init.gen.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraEditor\UHT\LyraEditor.init.gen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.init.gen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.init.gen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.init.gen.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditorEngine.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditorEngine.cpp.obj.rsp new file mode 100644 index 00000000..de29335e --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/LyraEditorEngine.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Source\LyraEditor\LyraEditorEngine.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditorEngine.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditorEngine.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditorEngine.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp.obj.rsp new file mode 100644 index 00000000..3db55fe4 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/PerModuleInline.gen.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Definitions.LyraEditor.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.dll.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.dll.rsp new file mode 100644 index 00000000..56220d0d --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.dll.rsp @@ -0,0 +1,110 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.init.gen.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditorEngine.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\ContentValidationCommandlet.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\AssetTypeActions_LyraContextEffectsLibrary.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\GameEditorStyle.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraContextEffectsLibraryFactory.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CheckChaosMeshCollision.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CreateRedirectorPackage.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\DiffCollectionReferenceSupport.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Blueprints.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Load.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_MaterialFunctions.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_SourceControl.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ToolMenus\UnrealEditor-ToolMenus.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\EditorStyle\UnrealEditor-EditorStyle.lib" +"..\Plugins\Editor\DataValidation\Intermediate\Build\Win64\x64\UnrealEditor\Development\DataValidation\UnrealEditor-DataValidation.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\MessageLog\UnrealEditor-MessageLog.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Projects\UnrealEditor-Projects.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\DeveloperToolSettings\UnrealEditor-DeveloperToolSettings.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CollectionManager\UnrealEditor-CollectionManager.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SourceControl\UnrealEditor-SourceControl.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Chaos\UnrealEditor-Chaos.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ExternalRpcRegistry\UnrealEditor-ExternalRpcRegistry.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\HTTPServer\UnrealEditor-HTTPServer.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\EditorFramework\UnrealEditor-EditorFramework.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UnrealEd\UnrealEditor-UnrealEd.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PhysicsCore\UnrealEditor-PhysicsCore.lib" +"..\Plugins\Editor\GameplayTagsEditor\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTagsEditor\UnrealEditor-GameplayTagsEditor.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTasksEditor\UnrealEditor-GameplayTasksEditor.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilities\UnrealEditor-GameplayAbilities.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilitiesEditor\UnrealEditor-GameplayAbilitiesEditor.lib" +"..\Plugins\Experimental\StudioTelemetry\Intermediate\Build\Win64\x64\UnrealEditor\Development\StudioTelemetry\UnrealEditor-StudioTelemetry.lib" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\UnrealEditor-LyraGame.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraEditor.dll" +/PDB:"E:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraEditor.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.lib.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.lib.rsp new file mode 100644 index 00000000..5054e416 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraEditor/UnrealEditor-LyraEditor.lib.rsp @@ -0,0 +1,27 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-LyraEditor.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.init.gen.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditor.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraEditorEngine.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\ContentValidationCommandlet.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\AssetTypeActions_LyraContextEffectsLibrary.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\GameEditorStyle.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\LyraContextEffectsLibraryFactory.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CheckChaosMeshCollision.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\CreateRedirectorPackage.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\DiffCollectionReferenceSupport.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Blueprints.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_Load.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_MaterialFunctions.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\EditorValidator_SourceControl.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\PerModuleInline.gen.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraEditor\UnrealEditor-LyraEditor.lib" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Default.rc2.res.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Default.rc2.res.rsp new file mode 100644 index 00000000..4f52ecb8 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-LyraGame.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Definitions.LyraGame.h b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Definitions.LyraGame.h new file mode 100644 index 00000000..49d264f5 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Definitions.LyraGame.h @@ -0,0 +1,89 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for LyraGame +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef LYRAGAME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 1 +#define WITH_HTTPSERVER_LISTENERS 1 +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define UE_NET_HAS_IRIS_FASTARRAY_BINDING 1 +#define UE_MODULE_NAME "LyraGame" +#define UE_PLUGIN_NAME "" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define ENHANCEDINPUT_API DLLIMPORT +#define GAUNTLET_API DLLIMPORT +#define COMMONUI_API DLLIMPORT +#define WIDGETCAROUSEL_API DLLIMPORT +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT +#define GAMESETTINGS_API DLLIMPORT +#define COMMONGAME_API DLLIMPORT +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API DLLIMPORT +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define AIMODULE_API DLLIMPORT +#define GAMESUBTITLES_API DLLIMPORT +#define OVERLAY_API DLLIMPORT +#define GAMEPLAYMESSAGERUNTIME_API DLLIMPORT +#define UIEXTENSION_API DLLIMPORT +#define CLIENTPILOT_API DLLIMPORT +#define WITH_AUDIOMODULATION 1 +#define WITH_AUDIOMODULATION_METASOUND_SUPPORT 1 +#define AUDIOMODULATION_API DLLIMPORT +#define WAVETABLE_API DLLIMPORT +#define UE_WITH_DTLS 1 +#define DTLSHANDLERCOMPONENT_API DLLIMPORT +#define SSL_PACKAGE 1 +#define WITH_SSL 1 +#define SSL_API DLLIMPORT +#define USE_RPC_REGISTRY_IN_SHIPPING 0 +#define EXTERNALRPCREGISTRY_API DLLIMPORT +#define HTTPSERVER_API DLLIMPORT +#define GAMEPLAYDEBUGGER_API DLLIMPORT +#define GAMEPLAYDEBUGGEREDITOR_API DLLIMPORT +#define LYRAGAME_API DLLEXPORT +#define GAMEPLAYABILITIES_API DLLIMPORT +#define DATAREGISTRY_API DLLIMPORT +#define REPLICATIONGRAPH_API DLLIMPORT +#define GAMEFEATURES_API DLLIMPORT +#define SIGNIFICANCEMANAGER_API DLLIMPORT +#define HOTFIX_API DLLIMPORT +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API DLLIMPORT +#define INSTALLBUNDLEMANAGER_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLIMPORT +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API DLLIMPORT +#define NIAGARACORE_API DLLIMPORT +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API DLLIMPORT +#define NIAGARASHADER_API DLLIMPORT +#define NIAGARAVERTEXFACTORIES_API DLLIMPORT +#define ASYNCMIXIN_API DLLIMPORT +#define CONTROLFLOWS_API DLLIMPORT diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LiveCodingInfo.json b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LiveCodingInfo.json new file mode 100644 index 00000000..aa531e7d --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LiveCodingInfo.json @@ -0,0 +1,255 @@ +{ + "RemapUnityFiles": + { + "Module.LyraGame.1.cpp.obj": [ + "IActorIndicatorWidget.gen.cpp.obj", + "IInteractableTarget.gen.cpp.obj", + "IInteractionInstigator.gen.cpp.obj", + "InteractionOption.gen.cpp.obj", + "InteractionQuery.gen.cpp.obj", + "LyraAbilityCost.gen.cpp.obj", + "LyraAbilitySimpleFailureMessage.gen.cpp.obj", + "LyraActionWidget.gen.cpp.obj", + "LyraCameraAssistInterface.gen.cpp.obj", + "LyraCharacterPartTypes.gen.cpp.obj", + "LyraContextEffectsInterface.gen.cpp.obj", + "LyraDamagePopStyleNiagara.gen.cpp.obj", + "LyraGame.init.gen.cpp.obj", + "LyraGameplayRpcRegistrationComponent.gen.cpp.obj", + "LyraInputUserSettings.gen.cpp.obj", + "LyraInteractionDurationMessage.gen.cpp.obj", + "LyraPenetrationAvoidanceFeeler.gen.cpp.obj", + "LyraPerformanceStatTypes.gen.cpp.obj", + "LyraPlayerMappableKeyProfile.gen.cpp.obj", + "LyraReplicationGraph.gen.cpp.obj", + "LyraReplicationGraphSettings.gen.cpp.obj", + "LyraReplicationGraphTypes.gen.cpp.obj", + "LyraVerbMessage.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "LyraAbilityCost_InventoryItem.cpp.obj", + "LyraAbilityCost_ItemTagStack.cpp.obj", + "LyraAbilityCost_PlayerTagStack.cpp.obj", + "LyraGameplayAbility.cpp.obj", + "LyraGameplayAbility_Death.cpp.obj", + "LyraGameplayAbility_Jump.cpp.obj", + "LyraGameplayAbility_Reset.cpp.obj", + "LyraAttributeSet.cpp.obj", + "LyraCombatSet.cpp.obj", + "LyraHealthSet.cpp.obj", + "LyraDamageExecution.cpp.obj", + "LyraHealExecution.cpp.obj", + "LyraAbilitySet.cpp.obj", + "LyraAbilitySourceInterface.cpp.obj", + "LyraAbilitySystemComponent.cpp.obj", + "LyraAbilitySystemGlobals.cpp.obj", + "LyraAbilityTagRelationshipMapping.cpp.obj", + "LyraGameplayAbilityTargetData_SingleTargetHit.cpp.obj", + "LyraGameplayCueManager.cpp.obj", + "LyraGameplayEffectContext.cpp.obj", + "LyraGlobalAbilitySystem.cpp.obj", + "LyraTaggedActor.cpp.obj", + "LyraGamePhaseAbility.cpp.obj", + "LyraGamePhaseSubsystem.cpp.obj", + "LyraAnimInstance.cpp.obj", + "LyraAudioMixEffectsSubsystem.cpp.obj", + "LyraAudioSettings.cpp.obj", + "LyraCameraComponent.cpp.obj", + "LyraCameraMode.cpp.obj", + "LyraCameraMode_ThirdPerson.cpp.obj" + ], + "Module.LyraGame.2.cpp.obj": [ + "LyraPlayerCameraManager.cpp.obj", + "LyraUICameraManagerComponent.cpp.obj", + "LyraCharacter.cpp.obj", + "LyraCharacterMovementComponent.cpp.obj", + "LyraCharacterWithAbilities.cpp.obj", + "LyraHealthComponent.cpp.obj", + "LyraHeroComponent.cpp.obj", + "LyraPawn.cpp.obj", + "LyraPawnData.cpp.obj", + "LyraPawnExtensionComponent.cpp.obj", + "LyraControllerComponent_CharacterParts.cpp.obj", + "LyraCosmeticAnimationTypes.cpp.obj", + "LyraCosmeticCheats.cpp.obj", + "LyraCosmeticDeveloperSettings.cpp.obj", + "LyraPawnComponent_CharacterParts.cpp.obj", + "LyraBotCheats.cpp.obj", + "LyraDeveloperSettings.cpp.obj", + "LyraPlatformEmulationSettings.cpp.obj", + "LyraEquipmentDefinition.cpp.obj", + "LyraEquipmentInstance.cpp.obj", + "LyraEquipmentManagerComponent.cpp.obj", + "LyraGameplayAbility_FromEquipment.cpp.obj", + "LyraPickupDefinition.cpp.obj", + "LyraQuickBarComponent.cpp.obj", + "AnimNotify_LyraContextEffects.cpp.obj", + "LyraContextEffectComponent.cpp.obj", + "LyraContextEffectsInterface.cpp.obj", + "LyraContextEffectsLibrary.cpp.obj", + "LyraContextEffectsSubsystem.cpp.obj", + "LyraDamagePopStyle.cpp.obj", + "LyraNumberPopComponent.cpp.obj", + "LyraNumberPopComponent_MeshText.cpp.obj", + "LyraNumberPopComponent_NiagaraText.cpp.obj", + "GameFeatureAction_AddAbilities.cpp.obj", + "GameFeatureAction_AddGameplayCuePath.cpp.obj", + "GameFeatureAction_AddInputBinding.cpp.obj", + "GameFeatureAction_AddInputContextMapping.cpp.obj", + "GameFeatureAction_AddWidget.cpp.obj", + "GameFeatureAction_SplitscreenConfig.cpp.obj", + "GameFeatureAction_WorldActionBase.cpp.obj", + "LyraGameFeaturePolicy.cpp.obj", + "AsyncAction_ExperienceReady.cpp.obj", + "LyraBotCreationComponent.cpp.obj", + "LyraExperienceActionSet.cpp.obj", + "LyraExperienceDefinition.cpp.obj", + "LyraExperienceManager.cpp.obj", + "LyraExperienceManagerComponent.cpp.obj", + "LyraGameMode.cpp.obj", + "LyraGameState.cpp.obj", + "LyraUserFacingExperienceDefinition.cpp.obj", + "LyraWorldSettings.cpp.obj", + "LyraHotfixManager.cpp.obj", + "LyraRuntimeOptions.cpp.obj", + "LyraTextHotfixConfig.cpp.obj", + "LyraAimSensitivityData.cpp.obj", + "LyraInputComponent.cpp.obj", + "LyraInputConfig.cpp.obj", + "LyraInputModifiers.cpp.obj", + "LyraInputUserSettings.cpp.obj", + "LyraPlayerMappableKeyProfile.cpp.obj", + "GameplayAbilityTargetActor_Interact.cpp.obj", + "LyraGameplayAbility_Interact.cpp.obj", + "InteractionStatics.cpp.obj", + "AbilityTask_GrantNearbyInteraction.cpp.obj", + "AbilityTask_WaitForInteractableTargets.cpp.obj", + "AbilityTask_WaitForInteractableTargets_SingleLineTrace.cpp.obj", + "InventoryFragment_EquippableItem.cpp.obj", + "InventoryFragment_PickupIcon.cpp.obj", + "InventoryFragment_QuickBarIcon.cpp.obj", + "InventoryFragment_SetStats.cpp.obj", + "IPickupable.cpp.obj", + "LyraInventoryItemDefinition.cpp.obj", + "LyraInventoryItemInstance.cpp.obj", + "LyraInventoryManagerComponent.cpp.obj", + "LyraGameModule.cpp.obj", + "LyraGameplayTags.cpp.obj", + "LyraLogChannels.cpp.obj", + "GameplayMessageProcessor.cpp.obj", + "LyraNotificationMessage.cpp.obj", + "LyraVerbMessageHelpers.cpp.obj", + "LyraVerbMessageReplication.cpp.obj", + "LyraMemoryDebugCommands.cpp.obj", + "LyraPerformanceSettings.cpp.obj", + "LyraPerformanceStatSubsystem.cpp.obj", + "PhysicalMaterialWithTags.cpp.obj", + "LyraCheatManager.cpp.obj", + "LyraDebugCameraController.cpp.obj", + "LyraLocalPlayer.cpp.obj", + "LyraPlayerBotController.cpp.obj", + "LyraPlayerController.cpp.obj", + "LyraPlayerSpawningManagerComponent.cpp.obj", + "LyraPlayerStart.cpp.obj" + ], + "Module.LyraGame.3.cpp.obj": [ + "LyraPlayerState.cpp.obj", + "AsyncAction_QueryReplays.cpp.obj", + "LyraReplaySubsystem.cpp.obj", + "LyraSettingAction_SafeZoneEditor.cpp.obj", + "LyraSettingKeyboardInput.cpp.obj", + "LyraSettingValueDiscreteDynamic_AudioOutputDevice.cpp.obj", + "LyraSettingValueDiscrete_Language.cpp.obj", + "LyraSettingValueDiscrete_MobileFPSType.cpp.obj", + "LyraSettingValueDiscrete_OverallQuality.cpp.obj", + "LyraSettingValueDiscrete_PerfStat.cpp.obj", + "LyraSettingValueDiscrete_Resolution.cpp.obj", + "LyraGameSettingRegistry.cpp.obj", + "LyraGameSettingRegistry_Audio.cpp.obj", + "LyraGameSettingRegistry_Gamepad.cpp.obj", + "LyraGameSettingRegistry_Gameplay.cpp.obj", + "LyraGameSettingRegistry_MouseAndKeyboard.cpp.obj", + "LyraGameSettingRegistry_PerfStats.cpp.obj", + "LyraGameSettingRegistry_Video.cpp.obj", + "LyraSettingsLocal.cpp.obj", + "LyraSettingsShared.cpp.obj", + "LyraBrightnessEditor.cpp.obj", + "LyraSafeZoneEditor.cpp.obj", + "LyraSettingsListEntrySetting_KeyboardInput.cpp.obj", + "GameplayTagStack.cpp.obj", + "LyraActorUtilities.cpp.obj", + "LyraAssetManager.cpp.obj", + "LyraAssetManagerStartupJob.cpp.obj", + "LyraDevelopmentStatics.cpp.obj", + "LyraGameData.cpp.obj", + "LyraGameEngine.cpp.obj", + "LyraGameInstance.cpp.obj", + "LyraGameSession.cpp.obj", + "LyraReplicationGraph.cpp.obj", + "LyraReplicationGraphSettings.cpp.obj", + "LyraSignificanceManager.cpp.obj", + "LyraSystemStatics.cpp.obj", + "AsyncAction_ObserveTeam.cpp.obj", + "AsyncAction_ObserveTeamColors.cpp.obj", + "LyraTeamAgentInterface.cpp.obj", + "LyraTeamCheats.cpp.obj", + "LyraTeamCreationComponent.cpp.obj", + "LyraTeamDisplayAsset.cpp.obj", + "LyraTeamInfoBase.cpp.obj", + "LyraTeamPrivateInfo.cpp.obj", + "LyraTeamPublicInfo.cpp.obj", + "LyraTeamStatics.cpp.obj", + "LyraTeamSubsystem.cpp.obj", + "LyraGameplayRpcRegistrationComponent.cpp.obj", + "LyraTestControllerBootTest.cpp.obj", + "MaterialProgressBar.cpp.obj", + "LyraBoundActionButton.cpp.obj", + "LyraListView.cpp.obj", + "LyraTabButtonBase.cpp.obj", + "LyraTabListWidgetBase.cpp.obj", + "LyraWidgetFactory.cpp.obj", + "LyraWidgetFactory_Class.cpp.obj", + "LyraActionWidget.cpp.obj", + "LyraButtonBase.cpp.obj", + "LyraConfirmationScreen.cpp.obj", + "LyraControllerDisconnectedScreen.cpp.obj", + "LyraLoadingScreenSubsystem.cpp.obj", + "ApplyFrontendPerfSettingsAction.cpp.obj" + ], + "Module.LyraGame.4.cpp.obj": [ + "LyraFrontendStateComponent.cpp.obj", + "LyraLobbyBackground.cpp.obj", + "IndicatorDescriptor.cpp.obj", + "IndicatorLayer.cpp.obj", + "IndicatorLibrary.cpp.obj", + "LyraIndicatorManagerComponent.cpp.obj", + "SActorCanvas.cpp.obj", + "LyraActivatableWidget.cpp.obj", + "LyraGameViewportClient.cpp.obj", + "LyraHUD.cpp.obj", + "LyraHUDLayout.cpp.obj", + "LyraJoystickWidget.cpp.obj", + "LyraSettingScreen.cpp.obj", + "LyraSimulatedInputWidget.cpp.obj", + "LyraTaggedWidget.cpp.obj", + "LyraTouchRegion.cpp.obj", + "LyraPerfStatContainerBase.cpp.obj", + "LyraPerfStatWidgetBase.cpp.obj", + "LyraUIManagerSubsystem.cpp.obj", + "LyraUIMessaging.cpp.obj", + "CircumferenceMarkerWidget.cpp.obj", + "HitMarkerConfirmationWidget.cpp.obj", + "LyraReticleWidgetBase.cpp.obj", + "LyraWeaponUserInterface.cpp.obj", + "SCircumferenceMarkerWidget.cpp.obj", + "SHitMarkerConfirmationWidget.cpp.obj", + "InventoryFragment_ReticleConfig.cpp.obj", + "LyraDamageLogDebuggerComponent.cpp.obj", + "LyraGameplayAbility_RangedWeapon.cpp.obj", + "LyraRangedWeaponInstance.cpp.obj", + "LyraWeaponDebugSettings.cpp.obj", + "LyraWeaponInstance.cpp.obj", + "LyraWeaponSpawner.cpp.obj", + "LyraWeaponStateComponent.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LyraGame.Shared.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LyraGame.Shared.rsp new file mode 100644 index 00000000..2ebf5e15 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/LyraGame.Shared.rsp @@ -0,0 +1,416 @@ +/I "." +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "Runtime\ImageWrapper\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "..\Plugins\Experimental\Gauntlet\Intermediate\Build\Win64\UnrealEditor\Inc\Gauntlet\UHT" +/I "..\Plugins\Experimental\Gauntlet\Source" +/I "..\Plugins\Experimental\Gauntlet\Source\Gauntlet\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\UnrealEditor\Inc\GameSettings\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealEditor\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealEditor\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\UnrealEditor\Inc\UIExtension\UHT" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClientPilot\UHT" +/I "Runtime\ClientPilot\Public" +/I "..\Plugins\Runtime\AudioModulation\Intermediate\Build\Win64\UnrealEditor\Inc\AudioModulation\UHT" +/I "..\Plugins\Runtime\AudioModulation\Source" +/I "..\Plugins\Runtime\AudioModulation\Source\AudioModulation\Public" +/I "..\Plugins\Runtime\WaveTable\Intermediate\Build\Win64\UnrealEditor\Inc\WaveTable\UHT" +/I "..\Plugins\Runtime\WaveTable\Source" +/I "..\Plugins\Runtime\WaveTable\Source\WaveTable\Public" +/I "..\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Source" +/I "..\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Source\Public" +/I "Runtime\Online\SSL\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ExternalRpcRegistry\UHT" +/I "Runtime\ExternalRPCRegistry\Public" +/I "Runtime\Online\HTTPServer\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayDebugger\UHT" +/I "Runtime\GameplayDebugger\Public" +/I "Editor\GameplayDebugger\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealEditor\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealEditor\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealEditor\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealEditor\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealEditor\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp new file mode 100644 index 00000000..d8b5e601 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp @@ -0,0 +1,55 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionOption.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/InteractionQuery.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGame.init.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealEditor/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Death.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Jump.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Reset.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraAttributeSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraCombatSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraHealthSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Executions/LyraDamageExecution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Executions/LyraHealExecution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySourceInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySystemComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySystemGlobals.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilityTagRelationshipMapping.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayCueManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayEffectContext.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGlobalAbilitySystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraTaggedActor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Phases/LyraGamePhaseAbility.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Phases/LyraGamePhaseSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Animation/LyraAnimInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Audio/LyraAudioMixEffectsSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Audio/LyraAudioSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraMode.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraMode_ThirdPerson.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp.obj.rsp new file mode 100644 index 00000000..f3b0a5a4 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.1.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp new file mode 100644 index 00000000..d7a4a232 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp @@ -0,0 +1,93 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraPlayerCameraManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraUICameraManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacter.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacterMovementComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacterWithAbilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraHealthComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraHeroComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawn.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawnData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawnExtensionComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraControllerComponent_CharacterParts.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticAnimationTypes.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticDeveloperSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraPawnComponent_CharacterParts.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraBotCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraDeveloperSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraPlatformEmulationSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraGameplayAbility_FromEquipment.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraPickupDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraQuickBarComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/AnimNotify_LyraContextEffects.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsLibrary.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraDamagePopStyle.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent_MeshText.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddAbilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddGameplayCuePath.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddInputBinding.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_SplitscreenConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_WorldActionBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/LyraGameFeaturePolicy.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/AsyncAction_ExperienceReady.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraBotCreationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceActionSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraGameMode.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraGameState.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraUserFacingExperienceDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraWorldSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraHotfixManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraRuntimeOptions.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraTextHotfixConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraAimSensitivityData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputModifiers.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputUserSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraPlayerMappableKeyProfile.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Abilities/GameplayAbilityTargetActor_Interact.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Abilities/LyraGameplayAbility_Interact.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/InteractionStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_GrantNearbyInteraction.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_EquippableItem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_PickupIcon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_QuickBarIcon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_SetStats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/IPickupable.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryItemDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryItemInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraGameModule.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraGameplayTags.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraLogChannels.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/GameplayMessageProcessor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraNotificationMessage.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraVerbMessageHelpers.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraVerbMessageReplication.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraMemoryDebugCommands.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraPerformanceSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraPerformanceStatSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Physics/PhysicalMaterialWithTags.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraCheatManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraDebugCameraController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraLocalPlayer.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerBotController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerSpawningManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerStart.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp.obj.rsp new file mode 100644 index 00000000..a730c73d --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.2.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp new file mode 100644 index 00000000..ac0d3e2d --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp @@ -0,0 +1,63 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerState.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Replays/AsyncAction_QueryReplays.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Replays/LyraReplaySubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingKeyboardInput.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Language.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Audio.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Gamepad.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Gameplay.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_MouseAndKeyboard.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_PerfStats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Video.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraSettingsLocal.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraSettingsShared.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Screens/LyraBrightnessEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Screens/LyraSafeZoneEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/GameplayTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraActorUtilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraAssetManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraAssetManagerStartupJob.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraDevelopmentStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameEngine.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameSession.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraReplicationGraph.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraReplicationGraphSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraSignificanceManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraSystemStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/AsyncAction_ObserveTeam.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/AsyncAction_ObserveTeamColors.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamAgentInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamCreationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamDisplayAsset.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamInfoBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamPrivateInfo.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamPublicInfo.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Tests/LyraGameplayRpcRegistrationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Tests/LyraTestControllerBootTest.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Basic/MaterialProgressBar.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraBoundActionButton.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraListView.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraTabButtonBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraTabListWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraWidgetFactory.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraWidgetFactory_Class.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraActionWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraButtonBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraConfirmationScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraControllerDisconnectedScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraLoadingScreenSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/ApplyFrontendPerfSettingsAction.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp.obj.rsp new file mode 100644 index 00000000..8ee49754 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.3.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp new file mode 100644 index 00000000..0d6bfa06 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp @@ -0,0 +1,35 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/LyraFrontendStateComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/LyraLobbyBackground.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorDescriptor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorLayer.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorLibrary.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/LyraIndicatorManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/SActorCanvas.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraActivatableWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraGameViewportClient.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraHUD.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraHUDLayout.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraJoystickWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraSettingScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraSimulatedInputWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraTaggedWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraTouchRegion.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/PerformanceStats/LyraPerfStatContainerBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/PerformanceStats/LyraPerfStatWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Subsystem/LyraUIManagerSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Subsystem/LyraUIMessaging.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/CircumferenceMarkerWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/HitMarkerConfirmationWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/LyraReticleWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/LyraWeaponUserInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/SCircumferenceMarkerWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/SHitMarkerConfirmationWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/InventoryFragment_ReticleConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraDamageLogDebuggerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraGameplayAbility_RangedWeapon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraRangedWeaponInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponDebugSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponSpawner.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponStateComponent.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp.obj.rsp new file mode 100644 index 00000000..6a8aa727 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/Module.LyraGame.4.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/PerModuleInline.gen.cpp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.dll.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.dll.rsp new file mode 100644 index 00000000..e1520713 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.dll.rsp @@ -0,0 +1,130 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +/NATVIS:"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\RenderCore\RenderCore.natvis" +/NATVIS:"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\IrisCore\IrisCore.natvis" +/NATVIS:"..\Plugins\FX\Niagara\Intermediate\Build\Win64\x64\UnrealEditor\Development\Niagara\Niagara.natvis" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\RenderCore\UnrealEditor-RenderCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\DeveloperSettings\UnrealEditor-DeveloperSettings.lib" +"..\Plugins\EnhancedInput\Intermediate\Build\Win64\x64\UnrealEditor\Development\EnhancedInput\UnrealEditor-EnhancedInput.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\NetCore\UnrealEditor-NetCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\RHI\UnrealEditor-RHI.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Projects\UnrealEditor-Projects.lib" +"..\Plugins\Experimental\Gauntlet\Intermediate\Build\Win64\x64\UnrealEditor\Development\Gauntlet\UnrealEditor-Gauntlet.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUI\UnrealEditor-CommonUI.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonInput\UnrealEditor-CommonInput.lib" +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\UnrealEditor-GameSettings.lib" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\UnrealEditor-CommonGame.lib" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\UnrealEditor-CommonUser.lib" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\UnrealEditor-GameSubtitles.lib" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\UnrealEditor-GameplayMessageRuntime.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\AudioMixer\UnrealEditor-AudioMixer.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\NetworkReplayStreaming\UnrealEditor-NetworkReplayStreaming.lib" +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\UnrealEditor-UIExtension.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ClientPilot\UnrealEditor-ClientPilot.lib" +"..\Plugins\Runtime\AudioModulation\Intermediate\Build\Win64\x64\UnrealEditor\Development\AudioModulation\UnrealEditor-AudioModulation.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\EngineSettings\UnrealEditor-EngineSettings.lib" +"..\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Intermediate\Build\Win64\x64\UnrealEditor\Development\DTLSHandlerComponent\UnrealEditor-DTLSHandlerComponent.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Json\UnrealEditor-Json.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ExternalRpcRegistry\UnrealEditor-ExternalRpcRegistry.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\HTTPServer\UnrealEditor-HTTPServer.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayDebugger\UnrealEditor-GameplayDebugger.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayDebuggerEditor\UnrealEditor-GameplayDebuggerEditor.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\IrisCore\UnrealEditor-IrisCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreOnline\UnrealEditor-CoreOnline.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ApplicationCore\UnrealEditor-ApplicationCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PhysicsCore\UnrealEditor-PhysicsCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTasks\UnrealEditor-GameplayTasks.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilities\UnrealEditor-GameplayAbilities.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\AIModule\UnrealEditor-AIModule.lib" +"..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplay\UnrealEditor-ModularGameplay.lib" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\UnrealEditor-ModularGameplayActors.lib" +"..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\x64\UnrealEditor\Development\DataRegistry\UnrealEditor-DataRegistry.lib" +"..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\x64\UnrealEditor\Development\ReplicationGraph\UnrealEditor-ReplicationGraph.lib" +"..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameFeatures\UnrealEditor-GameFeatures.lib" +"..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\x64\UnrealEditor\Development\SignificanceManager\UnrealEditor-SignificanceManager.lib" +"..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\x64\UnrealEditor\Development\Hotfix\UnrealEditor-Hotfix.lib" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\UnrealEditor-CommonLoadingScreen.lib" +"..\Plugins\FX\Niagara\Intermediate\Build\Win64\x64\UnrealEditor\Development\Niagara\UnrealEditor-Niagara.lib" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\UnrealEditor-AsyncMixin.lib" +"..\Plugins\Experimental\ControlFlows\Intermediate\Build\Win64\x64\UnrealEditor\Development\ControlFlows\UnrealEditor-ControlFlows.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PropertyPath\UnrealEditor-PropertyPath.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +"uiautomationcore.lib" +"DXGI.lib" +/OUT:"E:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraGame.dll" +/PDB:"E:\Projects\cross_platform\Binaries\Win64\UnrealEditor-LyraGame.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.lib.rsp b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.lib.rsp new file mode 100644 index 00000000..c7adcefb --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraGame/UnrealEditor-LyraGame.lib.rsp @@ -0,0 +1,15 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-LyraGame.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.1.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.2.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.3.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Module.LyraGame.4.cpp.obj" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\UnrealEditor-LyraGame.lib" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Definitions.LyraGame.h b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Definitions.LyraGame.h new file mode 100644 index 00000000..bbd27b82 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Definitions.LyraGame.h @@ -0,0 +1,119 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for LyraGame +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef LYRAGAME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 0 +#define WITH_HTTPSERVER_LISTENERS 0 +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define UE_NET_HAS_IRIS_FASTARRAY_BINDING 1 +#define UE_MODULE_NAME "LyraGame" +#define UE_PLUGIN_NAME "" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define ENHANCEDINPUT_API +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 0 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 0 +#define PROJECTS_API +#define GAUNTLET_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define COMMONUI_API +#define WIDGETCAROUSEL_API +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API +#define GAMESETTINGS_API +#define COMMONGAME_API +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API +#define MODULARGAMEPLAYACTORS_API +#define MODULARGAMEPLAY_API +#define WITH_RECAST 1 +#define AIMODULE_API +#define GAMEPLAYTASKS_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API +#define GAMESUBTITLES_API +#define OVERLAY_API +#define GAMEPLAYMESSAGERUNTIME_API +#define UIEXTENSION_API +#define CLIENTPILOT_API +#define AUTOMATIONCONTROLLER_API +#define AUTOMATIONTEST_API +#define WITH_AUDIOMODULATION 1 +#define WITH_AUDIOMODULATION_METASOUND_SUPPORT 1 +#define AUDIOMODULATION_API +#define WAVETABLE_API +#define UE_WITH_DTLS 1 +#define DTLSHANDLERCOMPONENT_API +#define SSL_PACKAGE 1 +#define WITH_SSL 1 +#define SSL_API +#define USE_RPC_REGISTRY_IN_SHIPPING 0 +#define EXTERNALRPCREGISTRY_API +#define HTTPSERVER_API +#define LYRAGAME_API +#define GAMEPLAYABILITIES_API +#define DATAREGISTRY_API +#define REPLICATIONGRAPH_API +#define GAMEFEATURES_API +#define SIGNIFICANCEMANAGER_API +#define HOTFIX_API +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API +#define INSTALLBUNDLEMANAGER_API +#define COMMONLOADINGSCREEN_API +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API +#define NIAGARACORE_API +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API +#define NIAGARASHADER_API +#define NIAGARAVERTEXFACTORIES_API +#define ASYNCMIXIN_API +#define CONTROLFLOWS_API diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/LyraGame.Shared.rsp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/LyraGame.Shared.rsp new file mode 100644 index 00000000..473bf741 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/LyraGame.Shared.rsp @@ -0,0 +1,282 @@ +/I "." +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "Runtime\ImageWrapper\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealGame\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "..\Plugins\Experimental\Gauntlet\Intermediate\Build\Win64\UnrealGame\Inc\Gauntlet\UHT" +/I "..\Plugins\Experimental\Gauntlet\Source" +/I "..\Plugins\Experimental\Gauntlet\Source\Gauntlet\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\UnrealGame\Inc\GameSettings\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealGame\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealGame\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealGame\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealGame\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\UnrealGame\Inc\UIExtension\UHT" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClientPilot\UHT" +/I "Runtime\ClientPilot\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Plugins\Runtime\AudioModulation\Intermediate\Build\Win64\UnrealGame\Inc\AudioModulation\UHT" +/I "..\Plugins\Runtime\AudioModulation\Source" +/I "..\Plugins\Runtime\AudioModulation\Source\AudioModulation\Public" +/I "..\Plugins\Runtime\WaveTable\Intermediate\Build\Win64\UnrealGame\Inc\WaveTable\UHT" +/I "..\Plugins\Runtime\WaveTable\Source" +/I "..\Plugins\Runtime\WaveTable\Source\WaveTable\Public" +/I "..\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Source" +/I "..\Plugins\Runtime\PacketHandlers\DTLSHandlerComponent\Source\Public" +/I "Runtime\Online\SSL\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ExternalRpcRegistry\UHT" +/I "Runtime\ExternalRPCRegistry\Public" +/I "Runtime\Online\HTTPServer\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealGame\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealGame\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealGame\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealGame\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealGame\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealGame\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealGame\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealGame\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp new file mode 100644 index 00000000..2f8d1637 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp @@ -0,0 +1,54 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IActorIndicatorWidget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractableTarget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/IInteractionInstigator.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionOption.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/InteractionQuery.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilityCost.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraAbilitySimpleFailureMessage.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraActionWidget.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCameraAssistInterface.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraCharacterPartTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraContextEffectsInterface.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraDamagePopStyleNiagara.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGame.init.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraGameplayRpcRegistrationComponent.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInputUserSettings.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraInteractionDurationMessage.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPenetrationAvoidanceFeeler.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPerformanceStatTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraPlayerMappableKeyProfile.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraph.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphSettings.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraReplicationGraphTypes.gen.cpp" +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/UnrealGame/Inc/LyraGame/UHT/LyraVerbMessage.gen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_InventoryItem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_ItemTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraAbilityCost_PlayerTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Death.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Jump.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Abilities/LyraGameplayAbility_Reset.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraAttributeSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraCombatSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Attributes/LyraHealthSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Executions/LyraDamageExecution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Executions/LyraHealExecution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySourceInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySystemComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilitySystemGlobals.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraAbilityTagRelationshipMapping.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayAbilityTargetData_SingleTargetHit.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayCueManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGameplayEffectContext.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraGlobalAbilitySystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/LyraTaggedActor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Phases/LyraGamePhaseAbility.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/AbilitySystem/Phases/LyraGamePhaseSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Animation/LyraAnimInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Audio/LyraAudioMixEffectsSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Audio/LyraAudioSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraMode.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraCameraMode_ThirdPerson.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp.obj.rsp new file mode 100644 index 00000000..59d1ad49 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.1.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.1.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.1.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.1.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.1.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp new file mode 100644 index 00000000..d7a4a232 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp @@ -0,0 +1,93 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraPlayerCameraManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Camera/LyraUICameraManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacter.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacterMovementComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraCharacterWithAbilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraHealthComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraHeroComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawn.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawnData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Character/LyraPawnExtensionComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraControllerComponent_CharacterParts.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticAnimationTypes.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraCosmeticDeveloperSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Cosmetics/LyraPawnComponent_CharacterParts.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraBotCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraDeveloperSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Development/LyraPlatformEmulationSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraEquipmentManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraGameplayAbility_FromEquipment.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraPickupDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Equipment/LyraQuickBarComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/AnimNotify_LyraContextEffects.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsLibrary.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/ContextEffects/LyraContextEffectsSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraDamagePopStyle.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent_MeshText.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Feedback/NumberPops/LyraNumberPopComponent_NiagaraText.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddAbilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddGameplayCuePath.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddInputBinding.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddInputContextMapping.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_AddWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_SplitscreenConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/GameFeatureAction_WorldActionBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameFeatures/LyraGameFeaturePolicy.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/AsyncAction_ExperienceReady.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraBotCreationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceActionSet.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraExperienceManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraGameMode.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraGameState.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraUserFacingExperienceDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/GameModes/LyraWorldSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraHotfixManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraRuntimeOptions.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Hotfix/LyraTextHotfixConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraAimSensitivityData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputModifiers.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraInputUserSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Input/LyraPlayerMappableKeyProfile.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Abilities/GameplayAbilityTargetActor_Interact.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Abilities/LyraGameplayAbility_Interact.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/InteractionStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_GrantNearbyInteraction.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Interaction/Tasks/AbilityTask_WaitForInteractableTargets_SingleLineTrace.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_EquippableItem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_PickupIcon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_QuickBarIcon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/InventoryFragment_SetStats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/IPickupable.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryItemDefinition.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryItemInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Inventory/LyraInventoryManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraGameModule.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraGameplayTags.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/LyraLogChannels.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/GameplayMessageProcessor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraNotificationMessage.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraVerbMessageHelpers.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Messages/LyraVerbMessageReplication.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraMemoryDebugCommands.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraPerformanceSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Performance/LyraPerformanceStatSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Physics/PhysicalMaterialWithTags.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraCheatManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraDebugCameraController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraLocalPlayer.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerBotController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerController.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerSpawningManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerStart.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp.obj.rsp new file mode 100644 index 00000000..055f80d9 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.2.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.2.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.2.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.2.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.2.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp new file mode 100644 index 00000000..ac0d3e2d --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp @@ -0,0 +1,63 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/Player/LyraPlayerState.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Replays/AsyncAction_QueryReplays.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Replays/LyraReplaySubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingAction_SafeZoneEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingKeyboardInput.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscreteDynamic_AudioOutputDevice.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Language.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_MobileFPSType.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_OverallQuality.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_PerfStat.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/CustomSettings/LyraSettingValueDiscrete_Resolution.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Audio.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Gamepad.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Gameplay.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_MouseAndKeyboard.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_PerfStats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraGameSettingRegistry_Video.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraSettingsLocal.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/LyraSettingsShared.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Screens/LyraBrightnessEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Screens/LyraSafeZoneEditor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Settings/Widgets/LyraSettingsListEntrySetting_KeyboardInput.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/GameplayTagStack.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraActorUtilities.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraAssetManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraAssetManagerStartupJob.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraDevelopmentStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameData.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameEngine.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraGameSession.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraReplicationGraph.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraReplicationGraphSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraSignificanceManager.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/System/LyraSystemStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/AsyncAction_ObserveTeam.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/AsyncAction_ObserveTeamColors.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamAgentInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamCheats.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamCreationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamDisplayAsset.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamInfoBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamPrivateInfo.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamPublicInfo.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamStatics.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Teams/LyraTeamSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Tests/LyraGameplayRpcRegistrationComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Tests/LyraTestControllerBootTest.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Basic/MaterialProgressBar.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraBoundActionButton.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraListView.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraTabButtonBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraTabListWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraWidgetFactory.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Common/LyraWidgetFactory_Class.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraActionWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraButtonBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraConfirmationScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraControllerDisconnectedScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Foundation/LyraLoadingScreenSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/ApplyFrontendPerfSettingsAction.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp.obj.rsp new file mode 100644 index 00000000..57951fb7 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.3.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.3.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.3.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.3.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.3.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp new file mode 100644 index 00000000..0d6bfa06 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp @@ -0,0 +1,35 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/LyraFrontendStateComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Frontend/LyraLobbyBackground.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorDescriptor.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorLayer.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/IndicatorLibrary.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/LyraIndicatorManagerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/IndicatorSystem/SActorCanvas.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraActivatableWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraGameViewportClient.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraHUD.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraHUDLayout.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraJoystickWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraSettingScreen.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraSimulatedInputWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraTaggedWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/LyraTouchRegion.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/PerformanceStats/LyraPerfStatContainerBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/PerformanceStats/LyraPerfStatWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Subsystem/LyraUIManagerSubsystem.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Subsystem/LyraUIMessaging.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/CircumferenceMarkerWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/HitMarkerConfirmationWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/LyraReticleWidgetBase.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/LyraWeaponUserInterface.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/SCircumferenceMarkerWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/UI/Weapons/SHitMarkerConfirmationWidget.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/InventoryFragment_ReticleConfig.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraDamageLogDebuggerComponent.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraGameplayAbility_RangedWeapon.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraRangedWeaponInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponDebugSettings.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponInstance.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponSpawner.cpp" +#include "E:/Projects/cross_platform/Source/LyraGame/Weapons/LyraWeaponStateComponent.cpp" diff --git a/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp.obj.rsp b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp.obj.rsp new file mode 100644 index 00000000..2f185fb3 --- /dev/null +++ b/Intermediate/Build/Win64/x64/UnrealGame/Shipping/LyraGame/Module.LyraGame.4.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.4.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Definitions.LyraGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.4.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.4.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\Module.LyraGame.4.cpp.dep.json" +@"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealGame\Shipping\LyraGame\LyraGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Intermediate/ScriptModules/Lyra.Automation.json b/Intermediate/ScriptModules/Lyra.Automation.json index 7d0c9990..2d0ddcdf 100644 --- a/Intermediate/ScriptModules/Lyra.Automation.json +++ b/Intermediate/ScriptModules/Lyra.Automation.json @@ -1,151 +1,154 @@ { "Version": 5, "ProjectPath": "..\\..\\Build\\Scripts\\Lyra.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:30.6934523+00:00", + "TargetBuildTime": "2025-03-31T23:26:04.2310584+02:00", "TargetPath": "..\\..\\Binaries\\DotNET\\AutomationTool\\AutomationScripts\\Lyra.Automation.dll", "ProjectReferencesAndTimes": [ { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:22.2863485+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\AutomationUtils\\AutomationUtils.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:14.1889519+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:24.9125317+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\CrowdinLocalization\\CrowdinLocalization.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:15.2160182+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:22.9798259+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Localization\\Localization.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:14.6563309+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:23.5746704+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\OneSkyLocalization\\OneSkyLocalization.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:15.05895+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:23.8900729+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\XLocLocalization\\XLocLocalization.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:14.8683471+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", - "TargetBuildTime": "2024-11-08T17:47:39.4887163+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\EpicGames.Core\\EpicGames.Core.csproj", + "TargetBuildTime": "2025-03-31T23:09:26.1294922+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", - "TargetBuildTime": "2024-11-08T17:48:26.7226753+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\AutomationTool\\Gauntlet\\Gauntlet.Automation.csproj", + "TargetBuildTime": "2025-03-31T23:20:16.8264618+02:00" }, { - "ProjectPath": "D:\\build\\\u002B\u002BUE5\\Sync\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", - "TargetBuildTime": "2024-11-08T17:47:49.1910646+00:00" + "ProjectPath": "E:\\Games\\UE_5.5\\Engine\\Source\\Programs\\UnrealBuildTool\\UnrealBuildTool.csproj", + "TargetBuildTime": "2025-03-31T23:20:13.140752+02:00" } ], "Dependencies": [ "Lyra.Automation.csproj", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\Sdk.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\UseArtifactsOutputPath.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\NuGet.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NETCoreSdk.BundledVersions.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportWorkloads.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.SupportedTargetFrameworks.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.SupportedPlatforms.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.WindowsSdkSupportedTargetPlatforms.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.SourceLink.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.Build.Tasks.Git\\build\\Microsoft.Build.Tasks.Git.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\Microsoft.SourceLink.Common.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitHub\\build\\Microsoft.SourceLink.GitHub.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitLab\\build\\Microsoft.SourceLink.GitLab.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.AzureRepos.Git\\build\\Microsoft.SourceLink.AzureRepos.Git.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Bitbucket.Git\\build\\Microsoft.SourceLink.Bitbucket.Git.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.CSharp.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackTool.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackProjectTool.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.WindowsForms.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\System.Windows.Forms.Analyzers.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.WPF.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Windows.props", - "..\\..\\..\\..\\..\\Engine\\Source\\Programs\\Shared\\UnrealEngine.csproj.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\Sdk.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.BeforeCommon.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultAssemblyInfo.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportPublishProfile.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.TargetFrameworkInference.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultOutputPaths.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultArtifactsPath.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportWorkloads.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.android\\34.0.43\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.ios\\17.0.8478\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.maccatalyst\\17.0.8478\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.macos\\14.0.8478\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.maui\\8.0.3\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.tvos\\17.0.8478\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.current\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.current\\8.0.5\\WorkloadManifest.Wasi.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.current\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.net6\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.net7\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.net6\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.net7\\8.0.5\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.aspire\\8.0.0-preview.1.23557.2\\WorkloadManifest.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.RuntimeIdentifierInference.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.EolTargetFrameworks.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.NuGetOfflineCache.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.CSharp.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Managed.Before.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.CSharp.CurrentVersion.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.CSharp.Core.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.Managed.Core.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.Managed.Core.CurrentVersions.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Common.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Common.CurrentVersion.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NET.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\NuGet.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.targets\\ImportAfter\\Microsoft.NET.Build.Extensions.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.targets\\ImportAfter\\Microsoft.TestPlatform.ImportAfter.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.TestPlatform.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Managed.After.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Common.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Shared.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.SourceLink.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.Build.Tasks.Git\\build\\Microsoft.Build.Tasks.Git.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\Microsoft.SourceLink.Common.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\InitializeSourceControlInformation.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitHub\\build\\Microsoft.SourceLink.GitHub.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitLab\\build\\Microsoft.SourceLink.GitLab.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.AzureRepos.Git\\build\\Microsoft.SourceLink.AzureRepos.Git.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Bitbucket.Git\\build\\Microsoft.SourceLink.Bitbucket.Git.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DisableStandardFrameworkResolution.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DesignerSupport.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateAssemblyInfo.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateGlobalUsings.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateSupportedRuntime.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ComposeStore.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.CrossGen.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ObsoleteReferences.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NETCoreSdk.BundledCliTools.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Publish.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackTool.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackProjectTool.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PreserveCompilationContext.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ConflictResolution.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultPackageConflictOverrides.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.CSharp.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Analyzers.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\analyzers\\build\\Microsoft.CodeAnalysis.NetAnalyzers.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\analyzers\\build\\Microsoft.CodeAnalysis.NetAnalyzers.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.Common.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.ValidatePackage.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\NuGet.Build.Tasks.Pack\\build\\NuGet.Build.Tasks.Pack.targets", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Containers\\build\\Microsoft.NET.Build.Containers.props", - "..\\..\\..\\..\\..\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Containers\\build\\Microsoft.NET.Build.Containers.targets" + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\Sdk.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\UseArtifactsOutputPath.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\NuGet.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NETCoreSdk.BundledVersions.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportWorkloads.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.SupportedTargetFrameworks.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.SupportedPlatforms.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.WindowsSdkSupportedTargetPlatforms.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.SourceLink.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.Build.Tasks.Git\\build\\Microsoft.Build.Tasks.Git.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\Microsoft.SourceLink.Common.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitHub\\build\\Microsoft.SourceLink.GitHub.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitLab\\build\\Microsoft.SourceLink.GitLab.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.AzureRepos.Git\\build\\Microsoft.SourceLink.AzureRepos.Git.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Bitbucket.Git\\build\\Microsoft.SourceLink.Bitbucket.Git.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.CSharp.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackTool.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackProjectTool.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.WindowsForms.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\System.Windows.Forms.Analyzers.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk.WindowsDesktop\\targets\\Microsoft.NET.Sdk.WindowsDesktop.WPF.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Windows.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Source\\Programs\\Shared\\UnrealEngine.csproj.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\Sdk\\Sdk.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.BeforeCommon.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultAssemblyInfo.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportPublishProfile.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.TargetFrameworkInference.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultOutputPaths.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultArtifactsPath.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.ImportWorkloads.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.android\\34.0.43\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.ios\\17.0.8478\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.maccatalyst\\17.0.8478\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.macos\\14.0.8478\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.maui\\8.0.3\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.tvos\\17.0.8478\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.current\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.current\\8.0.5\\WorkloadManifest.Wasi.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.current\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.net6\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.emscripten.net7\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.net6\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.workload.mono.toolchain.net7\\8.0.5\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk-manifests\\8.0.100\\microsoft.net.sdk.aspire\\8.0.0-preview.1.23557.2\\WorkloadManifest.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.RuntimeIdentifierInference.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.EolTargetFrameworks.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.NuGetOfflineCache.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.CSharp.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Managed.Before.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.CSharp.CurrentVersion.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.CSharp.Core.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.Managed.Core.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Roslyn\\Microsoft.Managed.Core.CurrentVersions.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Common.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Common.CurrentVersion.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NET.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\NuGet.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.targets\\ImportAfter\\Microsoft.NET.Build.Extensions.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Current\\Microsoft.Common.targets\\ImportAfter\\Microsoft.TestPlatform.ImportAfter.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.TestPlatform.targets", + "C:\\Users\\Goran\\.nuget\\packages\\system.text.json\\8.0.5\\buildTransitive\\net6.0\\System.Text.Json.targets", + "C:\\Users\\Goran\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\buildTransitive\\net8.0\\SQLitePCLRaw.lib.e_sqlite3.targets", + "C:\\Users\\Goran\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.4\\buildTransitive\\netcoreapp3.1\\Microsoft.Extensions.Logging.Abstractions.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.Managed.After.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Common.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.PackageDependencyResolution.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Shared.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.SourceLink.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.Build.Tasks.Git\\build\\Microsoft.Build.Tasks.Git.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\Microsoft.SourceLink.Common.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Common\\build\\InitializeSourceControlInformation.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitHub\\build\\Microsoft.SourceLink.GitHub.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.GitLab\\build\\Microsoft.SourceLink.GitLab.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.AzureRepos.Git\\build\\Microsoft.SourceLink.AzureRepos.Git.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.SourceLink.Bitbucket.Git\\build\\Microsoft.SourceLink.Bitbucket.Git.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DisableStandardFrameworkResolution.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DesignerSupport.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateAssemblyInfo.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateGlobalUsings.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.GenerateSupportedRuntime.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ComposeStore.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.CrossGen.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ObsoleteReferences.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Microsoft.NETCoreSdk.BundledCliTools.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Publish.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackTool.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PackProjectTool.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.PreserveCompilationContext.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ConflictResolution.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.DefaultPackageConflictOverrides.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.CSharp.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.Analyzers.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\analyzers\\build\\Microsoft.CodeAnalysis.NetAnalyzers.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\analyzers\\build\\Microsoft.CodeAnalysis.NetAnalyzers.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.Common.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.ApiCompat.ValidatePackage.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Sdks\\NuGet.Build.Tasks.Pack\\build\\NuGet.Build.Tasks.Pack.targets", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Containers\\build\\Microsoft.NET.Build.Containers.props", + "..\\..\\..\\..\\Games\\UE_5.5\\Engine\\Binaries\\ThirdParty\\DotNet\\8.0.300\\win-x64\\sdk\\8.0.300\\Containers\\build\\Microsoft.NET.Build.Containers.targets" ], "GlobbedDependencies": [ "Automation\\Localization\\CrowdinLocalizationProvider_Sample.cs", diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/AsyncMixin.Shared.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/AsyncMixin.Shared.rsp new file mode 100644 index 00000000..ee4ba8de --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/AsyncMixin.Shared.rsp @@ -0,0 +1,301 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Private" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Default.rc2.res.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Default.rc2.res.rsp new file mode 100644 index 00000000..81ccc17d --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-AsyncMixin.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Definitions.AsyncMixin.h b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Definitions.AsyncMixin.h new file mode 100644 index 00000000..e7f434dd --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Definitions.AsyncMixin.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for AsyncMixin +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef ASYNCMIXIN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "AsyncMixin" +#define UE_PLUGIN_NAME "AsyncMixin" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define ASYNCMIXIN_API DLLEXPORT diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/LiveCodingInfo.json b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/LiveCodingInfo.json new file mode 100644 index 00000000..fef13465 --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/LiveCodingInfo.json @@ -0,0 +1,10 @@ +{ + "RemapUnityFiles": + { + "Module.AsyncMixin.cpp.obj": [ + "PerModuleInline.gen.cpp.obj", + "AsyncMixin.cpp.obj", + "AsyncMixinModule.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp new file mode 100644 index 00000000..293b11b1 --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp @@ -0,0 +1,4 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/AsyncMixin/Source/Private/AsyncMixin.cpp" +#include "E:/Projects/cross_platform/Plugins/AsyncMixin/Source/Private/AsyncMixinModule.cpp" diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp new file mode 100644 index 00000000..bf01705d --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Definitions.AsyncMixin.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\AsyncMixin.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/PerModuleInline.gen.cpp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.dll.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.dll.rsp new file mode 100644 index 00000000..3dff7e3b --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.dll.rsp @@ -0,0 +1,72 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp.obj" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor-AsyncMixin.dll" +/PDB:"E:\Projects\cross_platform\Plugins\AsyncMixin\Binaries\Win64\UnrealEditor-AsyncMixin.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.lib.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.lib.rsp new file mode 100644 index 00000000..b014866c --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealEditor/Development/AsyncMixin/UnrealEditor-AsyncMixin.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-AsyncMixin.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Module.AsyncMixin.cpp.obj" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\UnrealEditor-AsyncMixin.lib" \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/AsyncMixin.Shared.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/AsyncMixin.Shared.rsp new file mode 100644 index 00000000..b8d1009f --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/AsyncMixin.Shared.rsp @@ -0,0 +1,131 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Private" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Definitions.AsyncMixin.h b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Definitions.AsyncMixin.h new file mode 100644 index 00000000..24f7716a --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Definitions.AsyncMixin.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for AsyncMixin +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef ASYNCMIXIN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "AsyncMixin" +#define UE_PLUGIN_NAME "AsyncMixin" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define ASYNCMIXIN_API diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp new file mode 100644 index 00000000..4ebe05bc --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp @@ -0,0 +1,3 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/AsyncMixin/Source/Private/AsyncMixin.cpp" +#include "E:/Projects/cross_platform/Plugins/AsyncMixin/Source/Private/AsyncMixinModule.cpp" diff --git a/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp new file mode 100644 index 00000000..f465c0dc --- /dev/null +++ b/Plugins/AsyncMixin/Intermediate/Build/Win64/x64/UnrealGame/Shipping/AsyncMixin/Module.AsyncMixin.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\Module.AsyncMixin.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\Definitions.AsyncMixin.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\Module.AsyncMixin.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\Module.AsyncMixin.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\Module.AsyncMixin.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealGame\Shipping\AsyncMixin\AsyncMixin.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp new file mode 100644 index 00000000..852eca3c --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp @@ -0,0 +1,236 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_CreateWidgetAsync.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_CreateWidgetAsync() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FCreateWidgetAsyncDelegate +struct Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms + { + UUserWidget* UserWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget = { "UserWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms, UserWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserWidget_MetaData), NewProp_UserWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "CreateWidgetAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCreateWidgetAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& CreateWidgetAsyncDelegate, UUserWidget* UserWidget) +{ + struct _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms + { + UUserWidget* UserWidget; + }; + _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms Parms; + Parms.UserWidget=UserWidget; + CreateWidgetAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCreateWidgetAsyncDelegate + +// Begin Class UAsyncAction_CreateWidgetAsync Function CreateWidgetAsync +struct Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics +{ + struct AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms + { + UObject* WorldContextObject; + TSoftClassPtr UserWidgetSoftClass; + APlayerController* OwningPlayer; + bool bSuspendInputUntilComplete; + UAsyncAction_CreateWidgetAsync* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "CPP_Default_bSuspendInputUntilComplete", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_UserWidgetSoftClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningPlayer; + static void NewProp_bSuspendInputUntilComplete_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuspendInputUntilComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_UserWidgetSoftClass = { "UserWidgetSoftClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, UserWidgetSoftClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_OwningPlayer = { "OwningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, OwningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete_SetBit(void* Obj) +{ + ((AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms*)Obj)->bSuspendInputUntilComplete = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete = { "bSuspendInputUntilComplete", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms), &Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_UserWidgetSoftClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_OwningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CreateWidgetAsync, nullptr, "CreateWidgetAsync", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CreateWidgetAsync::execCreateWidgetAsync) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_UserWidgetSoftClass); + P_GET_OBJECT(APlayerController,Z_Param_OwningPlayer); + P_GET_UBOOL(Z_Param_bSuspendInputUntilComplete); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CreateWidgetAsync**)Z_Param__Result=UAsyncAction_CreateWidgetAsync::CreateWidgetAsync(Z_Param_WorldContextObject,Z_Param_UserWidgetSoftClass,Z_Param_OwningPlayer,Z_Param_bSuspendInputUntilComplete); + P_NATIVE_END; +} +// End Class UAsyncAction_CreateWidgetAsync Function CreateWidgetAsync + +// Begin Class UAsyncAction_CreateWidgetAsync +void UAsyncAction_CreateWidgetAsync::StaticRegisterNativesUAsyncAction_CreateWidgetAsync() +{ + UClass* Class = UAsyncAction_CreateWidgetAsync::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateWidgetAsync", &UAsyncAction_CreateWidgetAsync::execCreateWidgetAsync }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_CreateWidgetAsync); +UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister() +{ + return UAsyncAction_CreateWidgetAsync::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Load the widget class asynchronously, the instance the widget after the loading completes, and return it on OnComplete.\n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_CreateWidgetAsync.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Load the widget class asynchronously, the instance the widget after the loading completes, and return it on OnComplete." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnComplete_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync, "CreateWidgetAsync" }, // 805806315 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::NewProp_OnComplete = { "OnComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_CreateWidgetAsync, OnComplete), Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnComplete_MetaData), NewProp_OnComplete_MetaData) }; // 2008477331 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::NewProp_OnComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::ClassParams = { + &UAsyncAction_CreateWidgetAsync::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton, Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_CreateWidgetAsync::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_CreateWidgetAsync); +UAsyncAction_CreateWidgetAsync::~UAsyncAction_CreateWidgetAsync() {} +// End Class UAsyncAction_CreateWidgetAsync + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_CreateWidgetAsync, UAsyncAction_CreateWidgetAsync::StaticClass, TEXT("UAsyncAction_CreateWidgetAsync"), &Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_CreateWidgetAsync), 97565782U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_1187195774(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h new file mode 100644 index 00000000..b26903cc --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_CreateWidgetAsync.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_CreateWidgetAsync; +class UObject; +class UUserWidget; +#ifdef COMMONGAME_AsyncAction_CreateWidgetAsync_generated_h +#error "AsyncAction_CreateWidgetAsync.generated.h already included, missing '#pragma once' in AsyncAction_CreateWidgetAsync.h" +#endif +#define COMMONGAME_AsyncAction_CreateWidgetAsync_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_17_DELEGATE \ +COMMONGAME_API void FCreateWidgetAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& CreateWidgetAsyncDelegate, UUserWidget* UserWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execCreateWidgetAsync); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_CreateWidgetAsync(); \ + friend struct Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_CreateWidgetAsync, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_CreateWidgetAsync) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_CreateWidgetAsync(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_CreateWidgetAsync) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_CreateWidgetAsync); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_CreateWidgetAsync); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_CreateWidgetAsync(UAsyncAction_CreateWidgetAsync&&); \ + UAsyncAction_CreateWidgetAsync(const UAsyncAction_CreateWidgetAsync&); \ +public: \ + NO_API virtual ~UAsyncAction_CreateWidgetAsync(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp new file mode 100644 index 00000000..bda3d431 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp @@ -0,0 +1,246 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_PushContentToLayerForPlayer() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FPushContentToLayerForPlayerAsyncDelegate +struct Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms + { + UCommonActivatableWidget* UserWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget = { "UserWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms, UserWidget), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserWidget_MetaData), NewProp_UserWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "PushContentToLayerForPlayerAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FPushContentToLayerForPlayerAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& PushContentToLayerForPlayerAsyncDelegate, UCommonActivatableWidget* UserWidget) +{ + struct _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms + { + UCommonActivatableWidget* UserWidget; + }; + _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms Parms; + Parms.UserWidget=UserWidget; + PushContentToLayerForPlayerAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FPushContentToLayerForPlayerAsyncDelegate + +// Begin Class UAsyncAction_PushContentToLayerForPlayer Function PushContentToLayerForPlayer +struct Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics +{ + struct AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms + { + APlayerController* OwningPlayer; + TSoftClassPtr WidgetClass; + FGameplayTag LayerName; + bool bSuspendInputUntilComplete; + UAsyncAction_PushContentToLayerForPlayer* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "CPP_Default_bSuspendInputUntilComplete", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningPlayer; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static void NewProp_bSuspendInputUntilComplete_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuspendInputUntilComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_OwningPlayer = { "OwningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, OwningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, WidgetClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +void Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete_SetBit(void* Obj) +{ + ((AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms*)Obj)->bSuspendInputUntilComplete = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete = { "bSuspendInputUntilComplete", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms), &Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_OwningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer, nullptr, "PushContentToLayerForPlayer", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_PushContentToLayerForPlayer::execPushContentToLayerForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_OwningPlayer); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_WidgetClass); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_UBOOL(Z_Param_bSuspendInputUntilComplete); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_PushContentToLayerForPlayer**)Z_Param__Result=UAsyncAction_PushContentToLayerForPlayer::PushContentToLayerForPlayer(Z_Param_OwningPlayer,Z_Param_WidgetClass,Z_Param_LayerName,Z_Param_bSuspendInputUntilComplete); + P_NATIVE_END; +} +// End Class UAsyncAction_PushContentToLayerForPlayer Function PushContentToLayerForPlayer + +// Begin Class UAsyncAction_PushContentToLayerForPlayer +void UAsyncAction_PushContentToLayerForPlayer::StaticRegisterNativesUAsyncAction_PushContentToLayerForPlayer() +{ + UClass* Class = UAsyncAction_PushContentToLayerForPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "PushContentToLayerForPlayer", &UAsyncAction_PushContentToLayerForPlayer::execPushContentToLayerForPlayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_PushContentToLayerForPlayer); +UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister() +{ + return UAsyncAction_PushContentToLayerForPlayer::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeforePush_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AfterPush_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_BeforePush; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_AfterPush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer, "PushContentToLayerForPlayer" }, // 3409641186 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_BeforePush = { "BeforePush", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_PushContentToLayerForPlayer, BeforePush), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeforePush_MetaData), NewProp_BeforePush_MetaData) }; // 3043512308 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_AfterPush = { "AfterPush", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_PushContentToLayerForPlayer, AfterPush), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AfterPush_MetaData), NewProp_AfterPush_MetaData) }; // 3043512308 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_BeforePush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_AfterPush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::ClassParams = { + &UAsyncAction_PushContentToLayerForPlayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton, Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_PushContentToLayerForPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_PushContentToLayerForPlayer); +UAsyncAction_PushContentToLayerForPlayer::~UAsyncAction_PushContentToLayerForPlayer() {} +// End Class UAsyncAction_PushContentToLayerForPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer, UAsyncAction_PushContentToLayerForPlayer::StaticClass, TEXT("UAsyncAction_PushContentToLayerForPlayer"), &Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_PushContentToLayerForPlayer), 2541959081U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_2292367203(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h new file mode 100644 index 00000000..0f836b9b --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_PushContentToLayerForPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_PushContentToLayerForPlayer; +class UCommonActivatableWidget; +struct FGameplayTag; +#ifdef COMMONGAME_AsyncAction_PushContentToLayerForPlayer_generated_h +#error "AsyncAction_PushContentToLayerForPlayer.generated.h already included, missing '#pragma once' in AsyncAction_PushContentToLayerForPlayer.h" +#endif +#define COMMONGAME_AsyncAction_PushContentToLayerForPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_17_DELEGATE \ +COMMONGAME_API void FPushContentToLayerForPlayerAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& PushContentToLayerForPlayerAsyncDelegate, UCommonActivatableWidget* UserWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execPushContentToLayerForPlayer); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_PushContentToLayerForPlayer(); \ + friend struct Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_PushContentToLayerForPlayer, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_PushContentToLayerForPlayer) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_PushContentToLayerForPlayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_PushContentToLayerForPlayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_PushContentToLayerForPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_PushContentToLayerForPlayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_PushContentToLayerForPlayer(UAsyncAction_PushContentToLayerForPlayer&&); \ + UAsyncAction_PushContentToLayerForPlayer(const UAsyncAction_PushContentToLayerForPlayer&); \ +public: \ + NO_API virtual ~UAsyncAction_PushContentToLayerForPlayer(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp new file mode 100644 index 00000000..6763fbd1 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp @@ -0,0 +1,358 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_ShowConfirmation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ShowConfirmation() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FCommonMessagingResultMCDelegate +struct Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms + { + ECommonMessagingResult Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Result_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms, Result), Z_Construct_UEnum_CommonGame_ECommonMessagingResult, METADATA_PARAMS(0, nullptr) }; // 3451816972 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "CommonMessagingResultMCDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonMessagingResultMCDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonMessagingResultMCDelegate, ECommonMessagingResult Result) +{ + struct _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms + { + ECommonMessagingResult Result; + }; + _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms Parms; + Parms.Result=Result; + CommonMessagingResultMCDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonMessagingResultMCDelegate + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationCustom +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms + { + UObject* InWorldContextObject; + UCommonGameDialogDescriptor* Descriptor; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Descriptor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_Descriptor = { "Descriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, Descriptor), Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_Descriptor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationCustom", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationCustom) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_OBJECT(UCommonGameDialogDescriptor,Z_Param_Descriptor); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationCustom(Z_Param_InWorldContextObject,Z_Param_Descriptor); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationCustom + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationOkCancel +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms + { + UObject* InWorldContextObject; + FText Title; + FText Message; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationOkCancel", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationOkCancel) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationOkCancel(Z_Param_InWorldContextObject,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationOkCancel + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationYesNo +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms + { + UObject* InWorldContextObject; + FText Title; + FText Message; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationYesNo", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationYesNo) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationYesNo(Z_Param_InWorldContextObject,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationYesNo + +// Begin Class UAsyncAction_ShowConfirmation +void UAsyncAction_ShowConfirmation::StaticRegisterNativesUAsyncAction_ShowConfirmation() +{ + UClass* Class = UAsyncAction_ShowConfirmation::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ShowConfirmationCustom", &UAsyncAction_ShowConfirmation::execShowConfirmationCustom }, + { "ShowConfirmationOkCancel", &UAsyncAction_ShowConfirmation::execShowConfirmationOkCancel }, + { "ShowConfirmationYesNo", &UAsyncAction_ShowConfirmation::execShowConfirmationYesNo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ShowConfirmation); +UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister() +{ + return UAsyncAction_ShowConfirmation::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Allows easily triggering an async confirmation dialog in blueprints that you can then wait on the result.\n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_ShowConfirmation.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows easily triggering an async confirmation dialog in blueprints that you can then wait on the result." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnResult_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetLocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Descriptor_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnResult; + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetLocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Descriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom, "ShowConfirmationCustom" }, // 4238422266 + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel, "ShowConfirmationOkCancel" }, // 106423069 + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo, "ShowConfirmationYesNo" }, // 303084914 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_OnResult = { "OnResult", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, OnResult), Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnResult_MetaData), NewProp_OnResult_MetaData) }; // 2358609143 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_TargetLocalPlayer = { "TargetLocalPlayer", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, TargetLocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetLocalPlayer_MetaData), NewProp_TargetLocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_Descriptor = { "Descriptor", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, Descriptor), Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Descriptor_MetaData), NewProp_Descriptor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_OnResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_TargetLocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_Descriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::ClassParams = { + &UAsyncAction_ShowConfirmation::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton, Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_ShowConfirmation::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ShowConfirmation); +UAsyncAction_ShowConfirmation::~UAsyncAction_ShowConfirmation() {} +// End Class UAsyncAction_ShowConfirmation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ShowConfirmation, UAsyncAction_ShowConfirmation::StaticClass, TEXT("UAsyncAction_ShowConfirmation"), &Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ShowConfirmation), 2629366151U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_1888213245(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h new file mode 100644 index 00000000..889f267b --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_ShowConfirmation.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ShowConfirmation; +class UCommonGameDialogDescriptor; +class UObject; +enum class ECommonMessagingResult : uint8; +#ifdef COMMONGAME_AsyncAction_ShowConfirmation_generated_h +#error "AsyncAction_ShowConfirmation.generated.h already included, missing '#pragma once' in AsyncAction_ShowConfirmation.h" +#endif +#define COMMONGAME_AsyncAction_ShowConfirmation_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_17_DELEGATE \ +COMMONGAME_API void FCommonMessagingResultMCDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonMessagingResultMCDelegate, ECommonMessagingResult Result); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execShowConfirmationCustom); \ + DECLARE_FUNCTION(execShowConfirmationOkCancel); \ + DECLARE_FUNCTION(execShowConfirmationYesNo); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ShowConfirmation(); \ + friend struct Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ShowConfirmation, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ShowConfirmation) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ShowConfirmation(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ShowConfirmation) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ShowConfirmation); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ShowConfirmation); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ShowConfirmation(UAsyncAction_ShowConfirmation&&); \ + UAsyncAction_ShowConfirmation(const UAsyncAction_ShowConfirmation&); \ +public: \ + NO_API virtual ~UAsyncAction_ShowConfirmation(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGame.init.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGame.init.gen.cpp new file mode 100644 index 00000000..cfb46dcb --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGame.init.gen.cpp @@ -0,0 +1,37 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGame_init() {} + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature(); + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature(); + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonGame; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonGame() + { + if (!Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonGame", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xC5B486D0, + 0xF0DD58E9, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonGame(Z_Construct_UPackage__Script_CommonGame, TEXT("/Script/CommonGame"), Z_Registration_Info_UPackage__Script_CommonGame, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xC5B486D0, 0xF0DD58E9)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameClasses.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp new file mode 100644 index 00000000..24583dd4 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp @@ -0,0 +1,289 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Messaging/CommonGameDialog.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGameDialog() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FConfirmationDialogAction(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin ScriptStruct FConfirmationDialogAction +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_ConfirmationDialogAction; +class UScriptStruct* FConfirmationDialogAction::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FConfirmationDialogAction, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ConfirmationDialogAction")); + } + return Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FConfirmationDialogAction::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "Category", "ConfirmationDialogAction" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Required: The dialog option to provide. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Required: The dialog option to provide." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OptionalDisplayText_MetaData[] = { + { "Category", "ConfirmationDialogAction" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Optional: Display Text to use instead of the action name associated with the result. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Optional: Display Text to use instead of the action name associated with the result." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Result_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Result; + static const UECodeGen_Private::FTextPropertyParams NewProp_OptionalDisplayText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FConfirmationDialogAction, Result), Z_Construct_UEnum_CommonGame_ECommonMessagingResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 3451816972 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_OptionalDisplayText = { "OptionalDisplayText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FConfirmationDialogAction, OptionalDisplayText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OptionalDisplayText_MetaData), NewProp_OptionalDisplayText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_OptionalDisplayText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "ConfirmationDialogAction", + Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers), + sizeof(FConfirmationDialogAction), + alignof(FConfirmationDialogAction), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FConfirmationDialogAction() +{ + if (!Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton, Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton; +} +// End ScriptStruct FConfirmationDialogAction + +// Begin Class UCommonGameDialogDescriptor +void UCommonGameDialogDescriptor::StaticRegisterNativesUCommonGameDialogDescriptor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameDialogDescriptor); +UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister() +{ + return UCommonGameDialogDescriptor::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameDialogDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messaging/CommonGameDialog.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Header_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The header of the message to display */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The header of the message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Body_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The body of the message to display */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The body of the message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ButtonActions_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The confirm button's input action to use. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The confirm button's input action to use." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Header; + static const UECodeGen_Private::FTextPropertyParams NewProp_Body; + static const UECodeGen_Private::FStructPropertyParams NewProp_ButtonActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ButtonActions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Header = { "Header", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, Header), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Header_MetaData), NewProp_Header_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Body = { "Body", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, Body), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Body_MetaData), NewProp_Body_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions_Inner = { "ButtonActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FConfirmationDialogAction, METADATA_PARAMS(0, nullptr) }; // 1091326187 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions = { "ButtonActions", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, ButtonActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ButtonActions_MetaData), NewProp_ButtonActions_MetaData) }; // 1091326187 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Header, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Body, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::ClassParams = { + &UCommonGameDialogDescriptor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameDialogDescriptor() +{ + if (!Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton, Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameDialogDescriptor::StaticClass(); +} +UCommonGameDialogDescriptor::UCommonGameDialogDescriptor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameDialogDescriptor); +UCommonGameDialogDescriptor::~UCommonGameDialogDescriptor() {} +// End Class UCommonGameDialogDescriptor + +// Begin Class UCommonGameDialog +void UCommonGameDialog::StaticRegisterNativesUCommonGameDialog() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameDialog); +UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister() +{ + return UCommonGameDialog::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameDialog_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messaging/CommonGameDialog.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonGameDialog_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialog_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameDialog_Statics::ClassParams = { + &UCommonGameDialog::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialog_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameDialog_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameDialog() +{ + if (!Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton, Z_Construct_UClass_UCommonGameDialog_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameDialog::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameDialog); +UCommonGameDialog::~UCommonGameDialog() {} +// End Class UCommonGameDialog + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FConfirmationDialogAction::StaticStruct, Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewStructOps, TEXT("ConfirmationDialogAction"), &Z_Registration_Info_UScriptStruct_ConfirmationDialogAction, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FConfirmationDialogAction), 1091326187U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonGameDialogDescriptor, UCommonGameDialogDescriptor::StaticClass, TEXT("UCommonGameDialogDescriptor"), &Z_Registration_Info_UClass_UCommonGameDialogDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameDialogDescriptor), 3342548326U) }, + { Z_Construct_UClass_UCommonGameDialog, UCommonGameDialog::StaticClass, TEXT("UCommonGameDialog"), &Z_Registration_Info_UClass_UCommonGameDialog, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameDialog), 2916020848U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_3429369668(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.generated.h new file mode 100644 index 00000000..6e1ee8a3 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameDialog.generated.h @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messaging/CommonGameDialog.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonGameDialog_generated_h +#error "CommonGameDialog.generated.h already included, missing '#pragma once' in CommonGameDialog.h" +#endif +#define COMMONGAME_CommonGameDialog_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameDialogDescriptor(); \ + friend struct Z_Construct_UClass_UCommonGameDialogDescriptor_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameDialogDescriptor, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameDialogDescriptor) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonGameDialogDescriptor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameDialogDescriptor(UCommonGameDialogDescriptor&&); \ + UCommonGameDialogDescriptor(const UCommonGameDialogDescriptor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameDialogDescriptor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameDialogDescriptor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonGameDialogDescriptor) \ + NO_API virtual ~UCommonGameDialogDescriptor(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_31_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameDialog(); \ + friend struct Z_Construct_UClass_UCommonGameDialog_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameDialog, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameDialog) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameDialog(UCommonGameDialog&&); \ + UCommonGameDialog(const UCommonGameDialog&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameDialog); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameDialog); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UCommonGameDialog) \ + NO_API virtual ~UCommonGameDialog(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_57_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp new file mode 100644 index 00000000..325bd1d9 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp @@ -0,0 +1,330 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonGameInstance.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGameInstance() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstance(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonGameInstance Function HandlePrivilegeChanged +struct Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics +{ + struct CommonGameInstance_eventHandlePrivilegeChanged_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OldAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldAvailability; + static const UECodeGen_Private::FBytePropertyParams NewProp_NewAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewAvailability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability = { "OldAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, OldAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability = { "NewAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, NewAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandlePrivilegeChanged", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::CommonGameInstance_eventHandlePrivilegeChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::CommonGameInstance_eventHandlePrivilegeChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandlePrivilegeChanged) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_GET_ENUM(ECommonUserAvailability,Z_Param_OldAvailability); + P_GET_ENUM(ECommonUserAvailability,Z_Param_NewAvailability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePrivilegeChanged(Z_Param_UserInfo,ECommonUserPrivilege(Z_Param_Privilege),ECommonUserAvailability(Z_Param_OldAvailability),ECommonUserAvailability(Z_Param_NewAvailability)); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandlePrivilegeChanged + +// Begin Class UCommonGameInstance Function HandlerUserInitialized +struct Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics +{ + struct CommonGameInstance_eventHandlerUserInitialized_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((CommonGameInstance_eventHandlerUserInitialized_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonGameInstance_eventHandlerUserInitialized_Parms), &Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandlerUserInitialized", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::CommonGameInstance_eventHandlerUserInitialized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::CommonGameInstance_eventHandlerUserInitialized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandlerUserInitialized) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlerUserInitialized(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandlerUserInitialized + +// Begin Class UCommonGameInstance Function HandleSystemMessage +struct Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics +{ + struct CommonGameInstance_eventHandleSystemMessage_Parms + { + FGameplayTag MessageType; + FText Title; + FText Message; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Handles errors/warnings from CommonUser, can be overridden per game */" }, +#endif + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles errors/warnings from CommonUser, can be overridden per game" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandleSystemMessage", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::CommonGameInstance_eventHandleSystemMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::CommonGameInstance_eventHandleSystemMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandleSystemMessage) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_MessageType); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSystemMessage(Z_Param_MessageType,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandleSystemMessage + +// Begin Class UCommonGameInstance +void UCommonGameInstance::StaticRegisterNativesUCommonGameInstance() +{ + UClass* Class = UCommonGameInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandlePrivilegeChanged", &UCommonGameInstance::execHandlePrivilegeChanged }, + { "HandlerUserInitialized", &UCommonGameInstance::execHandlerUserInitialized }, + { "HandleSystemMessage", &UCommonGameInstance::execHandleSystemMessage }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameInstance); +UClass* Z_Construct_UClass_UCommonGameInstance_NoRegister() +{ + return UCommonGameInstance::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonGameInstance.h" }, + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedSession_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Session the player has requested to join */" }, +#endif + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Session the player has requested to join" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_RequestedSession; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged, "HandlePrivilegeChanged" }, // 3604793383 + { &Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized, "HandlerUserInitialized" }, // 4113025410 + { &Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage, "HandleSystemMessage" }, // 211936282 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonGameInstance_Statics::NewProp_RequestedSession = { "RequestedSession", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameInstance, RequestedSession), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedSession_MetaData), NewProp_RequestedSession_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameInstance_Statics::NewProp_RequestedSession, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonGameInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstance, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameInstance_Statics::ClassParams = { + &UCommonGameInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers), + 0, + 0x009000A9u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameInstance() +{ + if (!Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton, Z_Construct_UClass_UCommonGameInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameInstance); +UCommonGameInstance::~UCommonGameInstance() {} +// End Class UCommonGameInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonGameInstance, UCommonGameInstance::StaticClass, TEXT("UCommonGameInstance"), &Z_Registration_Info_UClass_UCommonGameInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameInstance), 900315804U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_1144254567(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.generated.h new file mode 100644 index 00000000..0c63c604 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGameInstance.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonGameInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserAvailability : uint8; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +struct FGameplayTag; +#ifdef COMMONGAME_CommonGameInstance_generated_h +#error "CommonGameInstance.generated.h already included, missing '#pragma once' in CommonGameInstance.h" +#endif +#define COMMONGAME_CommonGameInstance_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandlerUserInitialized); \ + DECLARE_FUNCTION(execHandlePrivilegeChanged); \ + DECLARE_FUNCTION(execHandleSystemMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameInstance(); \ + friend struct Z_Construct_UClass_UCommonGameInstance_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameInstance, UGameInstance, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Transient), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameInstance) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameInstance(UCommonGameInstance&&); \ + UCommonGameInstance(const UCommonGameInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameInstance); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonGameInstance) \ + NO_API virtual ~UCommonGameInstance(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp new file mode 100644 index 00000000..338ed92a --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonLocalPlayer.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLocalPlayer() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonLocalPlayer +void UCommonLocalPlayer::StaticRegisterNativesUCommonLocalPlayer() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonLocalPlayer); +UClass* Z_Construct_UClass_UCommonLocalPlayer_NoRegister() +{ + return UCommonLocalPlayer::StaticClass(); +} +struct Z_Construct_UClass_UCommonLocalPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonLocalPlayer.h" }, + { "ModuleRelativePath", "Public/CommonLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonLocalPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayer, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLocalPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonLocalPlayer_Statics::ClassParams = { + &UCommonLocalPlayer::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLocalPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonLocalPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonLocalPlayer() +{ + if (!Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton, Z_Construct_UClass_UCommonLocalPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonLocalPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonLocalPlayer); +UCommonLocalPlayer::~UCommonLocalPlayer() {} +// End Class UCommonLocalPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonLocalPlayer, UCommonLocalPlayer::StaticClass, TEXT("UCommonLocalPlayer"), &Z_Registration_Info_UClass_UCommonLocalPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonLocalPlayer), 4242863829U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_4050717831(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h new file mode 100644 index 00000000..0a1667a9 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonLocalPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonLocalPlayer_generated_h +#error "CommonLocalPlayer.generated.h already included, missing '#pragma once' in CommonLocalPlayer.h" +#endif +#define COMMONGAME_CommonLocalPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonLocalPlayer(); \ + friend struct Z_Construct_UClass_UCommonLocalPlayer_Statics; \ +public: \ + DECLARE_CLASS(UCommonLocalPlayer, ULocalPlayer, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonLocalPlayer) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonLocalPlayer(UCommonLocalPlayer&&); \ + UCommonLocalPlayer(const UCommonLocalPlayer&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonLocalPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonLocalPlayer); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonLocalPlayer) \ + NO_API virtual ~UCommonLocalPlayer(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp new file mode 100644 index 00000000..ca59c442 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp @@ -0,0 +1,171 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Messaging/CommonMessagingSubsystem.h" +#include "Runtime/Engine/Classes/Engine/LocalPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonMessagingSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayerSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ECommonMessagingResult +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonMessagingResult; +static UEnum* ECommonMessagingResult_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ECommonMessagingResult, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ECommonMessagingResult")); + } + return Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ECommonMessagingResult_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Cancelled.Comment", "/** The \"ignore/cancel\" button was pressed */" }, + { "Cancelled.Name", "ECommonMessagingResult::Cancelled" }, + { "Cancelled.ToolTip", "The \"ignore/cancel\" button was pressed" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Possible results from a dialog */" }, +#endif + { "Confirmed.Comment", "/** The \"yes\" button was pressed */" }, + { "Confirmed.Name", "ECommonMessagingResult::Confirmed" }, + { "Confirmed.ToolTip", "The \"yes\" button was pressed" }, + { "Declined.Comment", "/** The \"no\" button was pressed */" }, + { "Declined.Name", "ECommonMessagingResult::Declined" }, + { "Declined.ToolTip", "The \"no\" button was pressed" }, + { "Killed.Comment", "/** The dialog was explicitly killed (no user input) */" }, + { "Killed.Name", "ECommonMessagingResult::Killed" }, + { "Killed.ToolTip", "The dialog was explicitly killed (no user input)" }, + { "ModuleRelativePath", "Public/Messaging/CommonMessagingSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Possible results from a dialog" }, +#endif + { "Unknown.Hidden", "" }, + { "Unknown.Name", "ECommonMessagingResult::Unknown" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonMessagingResult::Confirmed", (int64)ECommonMessagingResult::Confirmed }, + { "ECommonMessagingResult::Declined", (int64)ECommonMessagingResult::Declined }, + { "ECommonMessagingResult::Cancelled", (int64)ECommonMessagingResult::Cancelled }, + { "ECommonMessagingResult::Killed", (int64)ECommonMessagingResult::Killed }, + { "ECommonMessagingResult::Unknown", (int64)ECommonMessagingResult::Unknown }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ECommonMessagingResult", + "ECommonMessagingResult", + Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult() +{ + if (!Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton, Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton; +} +// End Enum ECommonMessagingResult + +// Begin Class UCommonMessagingSubsystem +void UCommonMessagingSubsystem::StaticRegisterNativesUCommonMessagingSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonMessagingSubsystem); +UClass* Z_Construct_UClass_UCommonMessagingSubsystem_NoRegister() +{ + return UCommonMessagingSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonMessagingSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Messaging/CommonMessagingSubsystem.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonMessagingSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonMessagingSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayerSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonMessagingSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonMessagingSubsystem_Statics::ClassParams = { + &UCommonMessagingSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonMessagingSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonMessagingSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonMessagingSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton, Z_Construct_UClass_UCommonMessagingSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonMessagingSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonMessagingSubsystem); +UCommonMessagingSubsystem::~UCommonMessagingSubsystem() {} +// End Class UCommonMessagingSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonMessagingResult_StaticEnum, TEXT("ECommonMessagingResult"), &Z_Registration_Info_UEnum_ECommonMessagingResult, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3451816972U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonMessagingSubsystem, UCommonMessagingSubsystem::StaticClass, TEXT("UCommonMessagingSubsystem"), &Z_Registration_Info_UClass_UCommonMessagingSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonMessagingSubsystem), 3160180513U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_2953471966(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h new file mode 100644 index 00000000..b33fd328 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messaging/CommonMessagingSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonMessagingSubsystem_generated_h +#error "CommonMessagingSubsystem.generated.h already included, missing '#pragma once' in CommonMessagingSubsystem.h" +#endif +#define COMMONGAME_CommonMessagingSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonMessagingSubsystem(); \ + friend struct Z_Construct_UClass_UCommonMessagingSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonMessagingSubsystem, ULocalPlayerSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonMessagingSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonMessagingSubsystem(UCommonMessagingSubsystem&&); \ + UCommonMessagingSubsystem(const UCommonMessagingSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonMessagingSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonMessagingSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonMessagingSubsystem) \ + NO_API virtual ~UCommonMessagingSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_33_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h + + +#define FOREACH_ENUM_ECOMMONMESSAGINGRESULT(op) \ + op(ECommonMessagingResult::Confirmed) \ + op(ECommonMessagingResult::Declined) \ + op(ECommonMessagingResult::Cancelled) \ + op(ECommonMessagingResult::Killed) \ + op(ECommonMessagingResult::Unknown) + +enum class ECommonMessagingResult : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp new file mode 100644 index 00000000..64fb021e --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonPlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonPlayerController() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController(); +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class ACommonPlayerController +void ACommonPlayerController::StaticRegisterNativesACommonPlayerController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ACommonPlayerController); +UClass* Z_Construct_UClass_ACommonPlayerController_NoRegister() +{ + return ACommonPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ACommonPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "CommonPlayerController.h" }, + { "ModuleRelativePath", "Public/CommonPlayerController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ACommonPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ACommonPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ACommonPlayerController_Statics::ClassParams = { + &ACommonPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ACommonPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ACommonPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ACommonPlayerController() +{ + if (!Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton, Z_Construct_UClass_ACommonPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return ACommonPlayerController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ACommonPlayerController); +ACommonPlayerController::~ACommonPlayerController() {} +// End Class ACommonPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ACommonPlayerController, ACommonPlayerController::StaticClass, TEXT("ACommonPlayerController"), &Z_Registration_Info_UClass_ACommonPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ACommonPlayerController), 3106237362U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_130554819(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.generated.h new file mode 100644 index 00000000..91bfbb39 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerController.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonPlayerController_generated_h +#error "CommonPlayerController.generated.h already included, missing '#pragma once' in CommonPlayerController.h" +#endif +#define COMMONGAME_CommonPlayerController_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesACommonPlayerController(); \ + friend struct Z_Construct_UClass_ACommonPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ACommonPlayerController, AModularPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(ACommonPlayerController) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ACommonPlayerController(ACommonPlayerController&&); \ + ACommonPlayerController(const ACommonPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ACommonPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ACommonPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ACommonPlayerController) \ + NO_API virtual ~ACommonPlayerController(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp new file mode 100644 index 00000000..459f756f --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp @@ -0,0 +1,1135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonPlayerInputKey.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +#include "Runtime/SlateCore/Public/Fonts/SlateFontInfo.h" +#include "Runtime/SlateCore/Public/Layout/Margin.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonPlayerInputKey() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonPlayerInputKey(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonPlayerInputKey_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FMeasuredText(); +COMMONINPUT_API UEnum* Z_Construct_UEnum_CommonInput_ECommonInputType(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FMargin(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateFontInfo(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ECommonKeybindForcedHoldStatus +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus; +static UEnum* ECommonKeybindForcedHoldStatus_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ECommonKeybindForcedHoldStatus")); + } + return Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ECommonKeybindForcedHoldStatus_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ForcedHold.Name", "ECommonKeybindForcedHoldStatus::ForcedHold" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "NeverShowHold.Name", "ECommonKeybindForcedHoldStatus::NeverShowHold" }, + { "NoForcedHold.Name", "ECommonKeybindForcedHoldStatus::NoForcedHold" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonKeybindForcedHoldStatus::NoForcedHold", (int64)ECommonKeybindForcedHoldStatus::NoForcedHold }, + { "ECommonKeybindForcedHoldStatus::ForcedHold", (int64)ECommonKeybindForcedHoldStatus::ForcedHold }, + { "ECommonKeybindForcedHoldStatus::NeverShowHold", (int64)ECommonKeybindForcedHoldStatus::NeverShowHold }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ECommonKeybindForcedHoldStatus", + "ECommonKeybindForcedHoldStatus", + Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus() +{ + if (!Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton, Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton; +} +// End Enum ECommonKeybindForcedHoldStatus + +// Begin ScriptStruct FMeasuredText +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_MeasuredText; +class UScriptStruct* FMeasuredText::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FMeasuredText, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("MeasuredText")); + } + return Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FMeasuredText::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FMeasuredText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FMeasuredText_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "MeasuredText", + nullptr, + 0, + sizeof(FMeasuredText), + alignof(FMeasuredText), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FMeasuredText_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FMeasuredText_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FMeasuredText() +{ + if (!Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton, Z_Construct_UScriptStruct_FMeasuredText_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton; +} +// End ScriptStruct FMeasuredText + +// Begin Class UCommonPlayerInputKey Function IsBoundKeyValid +struct Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics +{ + struct CommonPlayerInputKey_eventIsBoundKeyValid_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventIsBoundKeyValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventIsBoundKeyValid_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "IsBoundKeyValid", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::CommonPlayerInputKey_eventIsBoundKeyValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::CommonPlayerInputKey_eventIsBoundKeyValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execIsBoundKeyValid) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsBoundKeyValid(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function IsBoundKeyValid + +// Begin Class UCommonPlayerInputKey Function IsHoldKeybind +struct Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics +{ + struct CommonPlayerInputKey_eventIsHoldKeybind_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Get whether this keybind is a hold action. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get whether this keybind is a hold action." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventIsHoldKeybind_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventIsHoldKeybind_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "IsHoldKeybind", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::CommonPlayerInputKey_eventIsHoldKeybind_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::CommonPlayerInputKey_eventIsHoldKeybind_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execIsHoldKeybind) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHoldKeybind(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function IsHoldKeybind + +// Begin Class UCommonPlayerInputKey Function SetAxisScale +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics +{ + struct CommonPlayerInputKey_eventSetAxisScale_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the axis scale value for this keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the axis scale value for this keybind" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetAxisScale_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetAxisScale", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::CommonPlayerInputKey_eventSetAxisScale_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::CommonPlayerInputKey_eventSetAxisScale_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetAxisScale) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAxisScale(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetAxisScale + +// Begin Class UCommonPlayerInputKey Function SetBoundAction +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics +{ + struct CommonPlayerInputKey_eventSetBoundAction_Parms + { + FName NewBoundAction; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the bound action for our keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the bound action for our keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NewBoundAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::NewProp_NewBoundAction = { "NewBoundAction", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetBoundAction_Parms, NewBoundAction), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::NewProp_NewBoundAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetBoundAction", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::CommonPlayerInputKey_eventSetBoundAction_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::CommonPlayerInputKey_eventSetBoundAction_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetBoundAction) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_NewBoundAction); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundAction(Z_Param_NewBoundAction); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetBoundAction + +// Begin Class UCommonPlayerInputKey Function SetBoundKey +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics +{ + struct CommonPlayerInputKey_eventSetBoundKey_Parms + { + FKey NewBoundAction; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the bound key for our keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the bound key for our keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewBoundAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::NewProp_NewBoundAction = { "NewBoundAction", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetBoundKey_Parms, NewBoundAction), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::NewProp_NewBoundAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetBoundKey", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::CommonPlayerInputKey_eventSetBoundKey_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::CommonPlayerInputKey_eventSetBoundKey_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetBoundKey) +{ + P_GET_STRUCT(FKey,Z_Param_NewBoundAction); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundKey(Z_Param_NewBoundAction); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetBoundKey + +// Begin Class UCommonPlayerInputKey Function SetForcedHoldKeybind +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics +{ + struct CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms + { + bool InForcedHoldKeybind; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "DeprecatedFunction", "" }, + { "DeprecationMessage", "Use SetForcedHoldKeybindStatus instead" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_InForcedHoldKeybind_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_InForcedHoldKeybind; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms*)Obj)->InForcedHoldKeybind = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind = { "InForcedHoldKeybind", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetForcedHoldKeybind", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetForcedHoldKeybind) +{ + P_GET_UBOOL(Z_Param_InForcedHoldKeybind); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForcedHoldKeybind(Z_Param_InForcedHoldKeybind); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetForcedHoldKeybind + +// Begin Class UCommonPlayerInputKey Function SetForcedHoldKeybindStatus +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics +{ + struct CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms + { + ECommonKeybindForcedHoldStatus InForcedHoldKeybindStatus; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InForcedHoldKeybindStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InForcedHoldKeybindStatus; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus = { "InForcedHoldKeybindStatus", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms, InForcedHoldKeybindStatus), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, METADATA_PARAMS(0, nullptr) }; // 1810116694 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetForcedHoldKeybindStatus", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetForcedHoldKeybindStatus) +{ + P_GET_ENUM(ECommonKeybindForcedHoldStatus,Z_Param_InForcedHoldKeybindStatus); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForcedHoldKeybindStatus(ECommonKeybindForcedHoldStatus(Z_Param_InForcedHoldKeybindStatus)); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetForcedHoldKeybindStatus + +// Begin Class UCommonPlayerInputKey Function SetPresetNameOverride +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics +{ + struct CommonPlayerInputKey_eventSetPresetNameOverride_Parms + { + FName NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the preset name override value for this keybind. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the preset name override value for this keybind." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetPresetNameOverride_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetPresetNameOverride", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::CommonPlayerInputKey_eventSetPresetNameOverride_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::CommonPlayerInputKey_eventSetPresetNameOverride_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetPresetNameOverride) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetPresetNameOverride(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetPresetNameOverride + +// Begin Class UCommonPlayerInputKey Function SetShowProgressCountDown +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics +{ + struct CommonPlayerInputKey_eventSetShowProgressCountDown_Parms + { + bool bShow; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bShow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShow; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventSetShowProgressCountDown_Parms*)Obj)->bShow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow = { "bShow", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventSetShowProgressCountDown_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetShowProgressCountDown", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::CommonPlayerInputKey_eventSetShowProgressCountDown_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::CommonPlayerInputKey_eventSetShowProgressCountDown_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetShowProgressCountDown) +{ + P_GET_UBOOL(Z_Param_bShow); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowProgressCountDown(Z_Param_bShow); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetShowProgressCountDown + +// Begin Class UCommonPlayerInputKey Function StartHoldProgress +struct Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics +{ + struct CommonPlayerInputKey_eventStartHoldProgress_Parms + { + FName HoldActionName; + float HoldDuration; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called through a delegate when we start hold progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called through a delegate when we start hold progress" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_HoldActionName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_HoldDuration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldActionName = { "HoldActionName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStartHoldProgress_Parms, HoldActionName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldDuration = { "HoldDuration", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStartHoldProgress_Parms, HoldDuration), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldActionName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldDuration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "StartHoldProgress", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::CommonPlayerInputKey_eventStartHoldProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::CommonPlayerInputKey_eventStartHoldProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execStartHoldProgress) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_HoldActionName); + P_GET_PROPERTY(FFloatProperty,Z_Param_HoldDuration); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartHoldProgress(Z_Param_HoldActionName,Z_Param_HoldDuration); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function StartHoldProgress + +// Begin Class UCommonPlayerInputKey Function StopHoldProgress +struct Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics +{ + struct CommonPlayerInputKey_eventStopHoldProgress_Parms + { + FName HoldActionName; + bool bCompletedSuccessfully; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called through a delegate when we stop hold progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called through a delegate when we stop hold progress" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_HoldActionName; + static void NewProp_bCompletedSuccessfully_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCompletedSuccessfully; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_HoldActionName = { "HoldActionName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStopHoldProgress_Parms, HoldActionName), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventStopHoldProgress_Parms*)Obj)->bCompletedSuccessfully = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully = { "bCompletedSuccessfully", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventStopHoldProgress_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_HoldActionName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "StopHoldProgress", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::CommonPlayerInputKey_eventStopHoldProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::CommonPlayerInputKey_eventStopHoldProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execStopHoldProgress) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_HoldActionName); + P_GET_UBOOL(Z_Param_bCompletedSuccessfully); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StopHoldProgress(Z_Param_HoldActionName,Z_Param_bCompletedSuccessfully); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function StopHoldProgress + +// Begin Class UCommonPlayerInputKey Function UpdateKeybindWidget +struct Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Update the key and associated display based on our current Boundaction */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Update the key and associated display based on our current Boundaction" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "UpdateKeybindWidget", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execUpdateKeybindWidget) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateKeybindWidget(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function UpdateKeybindWidget + +// Begin Class UCommonPlayerInputKey +void UCommonPlayerInputKey::StaticRegisterNativesUCommonPlayerInputKey() +{ + UClass* Class = UCommonPlayerInputKey::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsBoundKeyValid", &UCommonPlayerInputKey::execIsBoundKeyValid }, + { "IsHoldKeybind", &UCommonPlayerInputKey::execIsHoldKeybind }, + { "SetAxisScale", &UCommonPlayerInputKey::execSetAxisScale }, + { "SetBoundAction", &UCommonPlayerInputKey::execSetBoundAction }, + { "SetBoundKey", &UCommonPlayerInputKey::execSetBoundKey }, + { "SetForcedHoldKeybind", &UCommonPlayerInputKey::execSetForcedHoldKeybind }, + { "SetForcedHoldKeybindStatus", &UCommonPlayerInputKey::execSetForcedHoldKeybindStatus }, + { "SetPresetNameOverride", &UCommonPlayerInputKey::execSetPresetNameOverride }, + { "SetShowProgressCountDown", &UCommonPlayerInputKey::execSetShowProgressCountDown }, + { "StartHoldProgress", &UCommonPlayerInputKey::execStartHoldProgress }, + { "StopHoldProgress", &UCommonPlayerInputKey::execStopHoldProgress }, + { "UpdateKeybindWidget", &UCommonPlayerInputKey::execUpdateKeybindWidget }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonPlayerInputKey); +UClass* Z_Construct_UClass_UCommonPlayerInputKey_NoRegister() +{ + return UCommonPlayerInputKey::StaticClass(); +} +struct Z_Construct_UClass_UCommonPlayerInputKey_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "CommonPlayerInputKey.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundAction_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Our current BoundAction */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Our current BoundAction" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AxisScale_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Scale to read when using an axis Mapping */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to read when using an axis Mapping" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundKeyFallback_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Key this widget is bound to set directly in blueprint. Used when we want to reference a specific key instead of an action. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Key this widget is bound to set directly in blueprint. Used when we want to reference a specific key instead of an action." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTypeOverride_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allows us to set the input type explicitly for the keybind widget. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows us to set the input type explicitly for the keybind widget." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresetNameOverride_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allows us to set the preset name explicitly for the keybind widget. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows us to set the preset name explicitly for the keybind widget." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForcedHoldKeybindStatus_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setting that can show this keybind as a hold or never show it as a hold (even if it is) */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setting that can show this keybind as a hold or never show it as a hold (even if it is)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsHoldKeybind_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not this keybind widget is currently set to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "ScriptName", "IsHoldKeybindValue" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not this keybind widget is currently set to be a hold keybind" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowKeybindBorder_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameSize_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowTimeCountDown_MetaData[] = { + { "Category", "Keybind Widget" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundKey_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Derived Key this widget is bound to */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Derived Key this widget is bound to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldProgressBrush_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Material for showing Progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Material for showing Progress" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyBindTextBorder_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The key bind text border. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The key bind text border." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowUnboundStatus_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Should this keybinding widget display information that it is currently unbound? */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should this keybinding widget display information that it is currently unbound?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyBindTextFont_MetaData[] = { + { "Category", "Font" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The font to apply at each size */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The font to apply at each size" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CountdownTextFont_MetaData[] = { + { "Category", "Font" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The font to apply at each size */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The font to apply at each size" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CountdownText_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindText_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindTextPadding_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindFrameMinimumSize_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PercentageMaterialParameterName_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The material parameter name for hold percentage in the HoldKeybindImage */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The material parameter name for hold percentage in the HoldKeybindImage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ProgressPercentageMID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** MID for the progress percentage */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "MID for the progress percentage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedKeyBrush_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_BoundAction; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AxisScale; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundKeyFallback; + static const UECodeGen_Private::FBytePropertyParams NewProp_InputTypeOverride_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InputTypeOverride; + static const UECodeGen_Private::FNamePropertyParams NewProp_PresetNameOverride; + static const UECodeGen_Private::FBytePropertyParams NewProp_ForcedHoldKeybindStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ForcedHoldKeybindStatus; + static void NewProp_bIsHoldKeybind_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsHoldKeybind; + static void NewProp_bShowKeybindBorder_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowKeybindBorder; + static const UECodeGen_Private::FStructPropertyParams NewProp_FrameSize; + static void NewProp_bShowTimeCountDown_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowTimeCountDown; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundKey; + static const UECodeGen_Private::FStructPropertyParams NewProp_HoldProgressBrush; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeyBindTextBorder; + static void NewProp_bShowUnboundStatus_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowUnboundStatus; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeyBindTextFont; + static const UECodeGen_Private::FStructPropertyParams NewProp_CountdownTextFont; + static const UECodeGen_Private::FStructPropertyParams NewProp_CountdownText; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindText; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindTextPadding; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindFrameMinimumSize; + static const UECodeGen_Private::FNamePropertyParams NewProp_PercentageMaterialParameterName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ProgressPercentageMID; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedKeyBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid, "IsBoundKeyValid" }, // 2382270390 + { &Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind, "IsHoldKeybind" }, // 3307235777 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale, "SetAxisScale" }, // 2014563998 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction, "SetBoundAction" }, // 1529272485 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey, "SetBoundKey" }, // 915558846 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind, "SetForcedHoldKeybind" }, // 2556677224 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus, "SetForcedHoldKeybindStatus" }, // 593847763 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride, "SetPresetNameOverride" }, // 2080915674 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown, "SetShowProgressCountDown" }, // 849344434 + { &Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress, "StartHoldProgress" }, // 1589840373 + { &Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress, "StopHoldProgress" }, // 3514158941 + { &Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget, "UpdateKeybindWidget" }, // 1346007617 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundAction = { "BoundAction", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundAction), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundAction_MetaData), NewProp_BoundAction_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_AxisScale = { "AxisScale", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, AxisScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AxisScale_MetaData), NewProp_AxisScale_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKeyFallback = { "BoundKeyFallback", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundKeyFallback), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundKeyFallback_MetaData), NewProp_BoundKeyFallback_MetaData) }; // 658672854 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride = { "InputTypeOverride", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, InputTypeOverride), Z_Construct_UEnum_CommonInput_ECommonInputType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTypeOverride_MetaData), NewProp_InputTypeOverride_MetaData) }; // 4176585250 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PresetNameOverride = { "PresetNameOverride", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, PresetNameOverride), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresetNameOverride_MetaData), NewProp_PresetNameOverride_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus = { "ForcedHoldKeybindStatus", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, ForcedHoldKeybindStatus), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForcedHoldKeybindStatus_MetaData), NewProp_ForcedHoldKeybindStatus_MetaData) }; // 1810116694 +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bIsHoldKeybind = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind = { "bIsHoldKeybind", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsHoldKeybind_MetaData), NewProp_bIsHoldKeybind_MetaData) }; +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowKeybindBorder = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder = { "bShowKeybindBorder", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowKeybindBorder_MetaData), NewProp_bShowKeybindBorder_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_FrameSize = { "FrameSize", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, FrameSize), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameSize_MetaData), NewProp_FrameSize_MetaData) }; +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowTimeCountDown = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown = { "bShowTimeCountDown", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowTimeCountDown_MetaData), NewProp_bShowTimeCountDown_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKey = { "BoundKey", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundKey), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundKey_MetaData), NewProp_BoundKey_MetaData) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_HoldProgressBrush = { "HoldProgressBrush", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, HoldProgressBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldProgressBrush_MetaData), NewProp_HoldProgressBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextBorder = { "KeyBindTextBorder", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeyBindTextBorder), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyBindTextBorder_MetaData), NewProp_KeyBindTextBorder_MetaData) }; // 4269649686 +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowUnboundStatus = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus = { "bShowUnboundStatus", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowUnboundStatus_MetaData), NewProp_bShowUnboundStatus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextFont = { "KeyBindTextFont", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeyBindTextFont), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyBindTextFont_MetaData), NewProp_KeyBindTextFont_MetaData) }; // 1633227880 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownTextFont = { "CountdownTextFont", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CountdownTextFont), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CountdownTextFont_MetaData), NewProp_CountdownTextFont_MetaData) }; // 1633227880 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownText = { "CountdownText", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CountdownText), Z_Construct_UScriptStruct_FMeasuredText, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CountdownText_MetaData), NewProp_CountdownText_MetaData) }; // 361176876 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindText = { "KeybindText", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindText), Z_Construct_UScriptStruct_FMeasuredText, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindText_MetaData), NewProp_KeybindText_MetaData) }; // 361176876 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindTextPadding = { "KeybindTextPadding", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindTextPadding), Z_Construct_UScriptStruct_FMargin, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindTextPadding_MetaData), NewProp_KeybindTextPadding_MetaData) }; // 2986890016 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindFrameMinimumSize = { "KeybindFrameMinimumSize", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindFrameMinimumSize), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindFrameMinimumSize_MetaData), NewProp_KeybindFrameMinimumSize_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PercentageMaterialParameterName = { "PercentageMaterialParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, PercentageMaterialParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PercentageMaterialParameterName_MetaData), NewProp_PercentageMaterialParameterName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ProgressPercentageMID = { "ProgressPercentageMID", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, ProgressPercentageMID), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ProgressPercentageMID_MetaData), NewProp_ProgressPercentageMID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CachedKeyBrush = { "CachedKeyBrush", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CachedKeyBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedKeyBrush_MetaData), NewProp_CachedKeyBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_AxisScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKeyFallback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PresetNameOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_FrameSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_HoldProgressBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextFont, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownTextFont, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindTextPadding, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindFrameMinimumSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PercentageMaterialParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ProgressPercentageMID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CachedKeyBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonPlayerInputKey_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::ClassParams = { + &UCommonPlayerInputKey::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonPlayerInputKey_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonPlayerInputKey() +{ + if (!Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton, Z_Construct_UClass_UCommonPlayerInputKey_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonPlayerInputKey::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonPlayerInputKey); +UCommonPlayerInputKey::~UCommonPlayerInputKey() {} +// End Class UCommonPlayerInputKey + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonKeybindForcedHoldStatus_StaticEnum, TEXT("ECommonKeybindForcedHoldStatus"), &Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1810116694U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FMeasuredText::StaticStruct, Z_Construct_UScriptStruct_FMeasuredText_Statics::NewStructOps, TEXT("MeasuredText"), &Z_Registration_Info_UScriptStruct_MeasuredText, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FMeasuredText), 361176876U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonPlayerInputKey, UCommonPlayerInputKey::StaticClass, TEXT("UCommonPlayerInputKey"), &Z_Registration_Info_UClass_UCommonPlayerInputKey, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonPlayerInputKey), 2834599380U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_1882362941(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h new file mode 100644 index 00000000..04fcbb67 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h @@ -0,0 +1,88 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonPlayerInputKey.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ECommonKeybindForcedHoldStatus : uint8; +struct FKey; +#ifdef COMMONGAME_CommonPlayerInputKey_generated_h +#error "CommonPlayerInputKey.generated.h already included, missing '#pragma once' in CommonPlayerInputKey.h" +#endif +#define COMMONGAME_CommonPlayerInputKey_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_34_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FMeasuredText_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsBoundKeyValid); \ + DECLARE_FUNCTION(execIsHoldKeybind); \ + DECLARE_FUNCTION(execStopHoldProgress); \ + DECLARE_FUNCTION(execStartHoldProgress); \ + DECLARE_FUNCTION(execSetPresetNameOverride); \ + DECLARE_FUNCTION(execSetAxisScale); \ + DECLARE_FUNCTION(execSetShowProgressCountDown); \ + DECLARE_FUNCTION(execSetForcedHoldKeybindStatus); \ + DECLARE_FUNCTION(execSetForcedHoldKeybind); \ + DECLARE_FUNCTION(execSetBoundAction); \ + DECLARE_FUNCTION(execSetBoundKey); \ + DECLARE_FUNCTION(execUpdateKeybindWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonPlayerInputKey(); \ + friend struct Z_Construct_UClass_UCommonPlayerInputKey_Statics; \ +public: \ + DECLARE_CLASS(UCommonPlayerInputKey, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonPlayerInputKey) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonPlayerInputKey(UCommonPlayerInputKey&&); \ + UCommonPlayerInputKey(const UCommonPlayerInputKey&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonPlayerInputKey); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonPlayerInputKey); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonPlayerInputKey) \ + NO_API virtual ~UCommonPlayerInputKey(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_50_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h + + +#define FOREACH_ENUM_ECOMMONKEYBINDFORCEDHOLDSTATUS(op) \ + op(ECommonKeybindForcedHoldStatus::NoForcedHold) \ + op(ECommonKeybindForcedHoldStatus::ForcedHold) \ + op(ECommonKeybindForcedHoldStatus::NeverShowHold) + +enum class ECommonKeybindForcedHoldStatus : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp new file mode 100644 index 00000000..da3c0598 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp @@ -0,0 +1,616 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonUIExtensions.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUIExtensions() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonUIExtensions(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonUIExtensions_NoRegister(); +COMMONINPUT_API UEnum* Z_Construct_UEnum_CommonInput_ECommonInputType(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonUIExtensions Function GetLocalPlayerFromController +struct Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics +{ + struct CommonUIExtensions_eventGetLocalPlayerFromController_Parms + { + APlayerController* PlayerController; + ULocalPlayer* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetLocalPlayerFromController_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetLocalPlayerFromController_Parms, ReturnValue), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "GetLocalPlayerFromController", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::CommonUIExtensions_eventGetLocalPlayerFromController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::CommonUIExtensions_eventGetLocalPlayerFromController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execGetLocalPlayerFromController) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + *(ULocalPlayer**)Z_Param__Result=UCommonUIExtensions::GetLocalPlayerFromController(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function GetLocalPlayerFromController + +// Begin Class UCommonUIExtensions Function GetOwningPlayerInputType +struct Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics +{ + struct CommonUIExtensions_eventGetOwningPlayerInputType_Parms + { + const UUserWidget* WidgetContextObject; + ECommonInputType ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetOwningPlayerInputType_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetOwningPlayerInputType_Parms, ReturnValue), Z_Construct_UEnum_CommonInput_ECommonInputType, METADATA_PARAMS(0, nullptr) }; // 4176585250 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "GetOwningPlayerInputType", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::CommonUIExtensions_eventGetOwningPlayerInputType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::CommonUIExtensions_eventGetOwningPlayerInputType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execGetOwningPlayerInputType) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonInputType*)Z_Param__Result=UCommonUIExtensions::GetOwningPlayerInputType(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function GetOwningPlayerInputType + +// Begin Class UCommonUIExtensions Function IsOwningPlayerUsingGamepad +struct Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics +{ + struct CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms + { + const UUserWidget* WidgetContextObject; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +void Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms), &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "IsOwningPlayerUsingGamepad", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execIsOwningPlayerUsingGamepad) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UCommonUIExtensions::IsOwningPlayerUsingGamepad(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function IsOwningPlayerUsingGamepad + +// Begin Class UCommonUIExtensions Function IsOwningPlayerUsingTouch +struct Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics +{ + struct CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms + { + const UUserWidget* WidgetContextObject; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +void Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms), &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "IsOwningPlayerUsingTouch", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execIsOwningPlayerUsingTouch) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UCommonUIExtensions::IsOwningPlayerUsingTouch(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function IsOwningPlayerUsingTouch + +// Begin Class UCommonUIExtensions Function PopContentFromLayer +struct Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics +{ + struct CommonUIExtensions_eventPopContentFromLayer_Parms + { + UCommonActivatableWidget* ActivatableWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivatableWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActivatableWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::NewProp_ActivatableWidget = { "ActivatableWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPopContentFromLayer_Parms, ActivatableWidget), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivatableWidget_MetaData), NewProp_ActivatableWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::NewProp_ActivatableWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PopContentFromLayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::CommonUIExtensions_eventPopContentFromLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::CommonUIExtensions_eventPopContentFromLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPopContentFromLayer) +{ + P_GET_OBJECT(UCommonActivatableWidget,Z_Param_ActivatableWidget); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::PopContentFromLayer(Z_Param_ActivatableWidget); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PopContentFromLayer + +// Begin Class UCommonUIExtensions Function PushContentToLayer_ForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics +{ + struct CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms + { + const ULocalPlayer* LocalPlayer; + FGameplayTag LayerName; + TSubclassOf WidgetClass; + UCommonActivatableWidget* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, ReturnValue), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PushContentToLayer_ForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPushContentToLayer_ForPlayer) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonActivatableWidget**)Z_Param__Result=UCommonUIExtensions::PushContentToLayer_ForPlayer(Z_Param_LocalPlayer,Z_Param_LayerName,Z_Param_WidgetClass); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PushContentToLayer_ForPlayer + +// Begin Class UCommonUIExtensions Function PushStreamedContentToLayer_ForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics +{ + struct CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms + { + const ULocalPlayer* LocalPlayer; + FGameplayTag LayerName; + TSoftClassPtr WidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, WidgetClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_WidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PushStreamedContentToLayer_ForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPushStreamedContentToLayer_ForPlayer) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_WidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::PushStreamedContentToLayer_ForPlayer(Z_Param_LocalPlayer,Z_Param_LayerName,Z_Param_WidgetClass); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PushStreamedContentToLayer_ForPlayer + +// Begin Class UCommonUIExtensions Function ResumeInputForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics +{ + struct CommonUIExtensions_eventResumeInputForPlayer_Parms + { + APlayerController* PlayerController; + FName SuspendToken; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FNamePropertyParams NewProp_SuspendToken; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventResumeInputForPlayer_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_SuspendToken = { "SuspendToken", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventResumeInputForPlayer_Parms, SuspendToken), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_SuspendToken, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "ResumeInputForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::CommonUIExtensions_eventResumeInputForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::CommonUIExtensions_eventResumeInputForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execResumeInputForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_GET_PROPERTY(FNameProperty,Z_Param_SuspendToken); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::ResumeInputForPlayer(Z_Param_PlayerController,Z_Param_SuspendToken); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function ResumeInputForPlayer + +// Begin Class UCommonUIExtensions Function SuspendInputForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics +{ + struct CommonUIExtensions_eventSuspendInputForPlayer_Parms + { + APlayerController* PlayerController; + FName SuspendReason; + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FNamePropertyParams NewProp_SuspendReason; + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_SuspendReason = { "SuspendReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, SuspendReason), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_SuspendReason, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "SuspendInputForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::CommonUIExtensions_eventSuspendInputForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::CommonUIExtensions_eventSuspendInputForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execSuspendInputForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_GET_PROPERTY(FNameProperty,Z_Param_SuspendReason); + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=UCommonUIExtensions::SuspendInputForPlayer(Z_Param_PlayerController,Z_Param_SuspendReason); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function SuspendInputForPlayer + +// Begin Class UCommonUIExtensions +void UCommonUIExtensions::StaticRegisterNativesUCommonUIExtensions() +{ + UClass* Class = UCommonUIExtensions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLocalPlayerFromController", &UCommonUIExtensions::execGetLocalPlayerFromController }, + { "GetOwningPlayerInputType", &UCommonUIExtensions::execGetOwningPlayerInputType }, + { "IsOwningPlayerUsingGamepad", &UCommonUIExtensions::execIsOwningPlayerUsingGamepad }, + { "IsOwningPlayerUsingTouch", &UCommonUIExtensions::execIsOwningPlayerUsingTouch }, + { "PopContentFromLayer", &UCommonUIExtensions::execPopContentFromLayer }, + { "PushContentToLayer_ForPlayer", &UCommonUIExtensions::execPushContentToLayer_ForPlayer }, + { "PushStreamedContentToLayer_ForPlayer", &UCommonUIExtensions::execPushStreamedContentToLayer_ForPlayer }, + { "ResumeInputForPlayer", &UCommonUIExtensions::execResumeInputForPlayer }, + { "SuspendInputForPlayer", &UCommonUIExtensions::execSuspendInputForPlayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUIExtensions); +UClass* Z_Construct_UClass_UCommonUIExtensions_NoRegister() +{ + return UCommonUIExtensions::StaticClass(); +} +struct Z_Construct_UClass_UCommonUIExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonUIExtensions.h" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController, "GetLocalPlayerFromController" }, // 2269035864 + { &Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType, "GetOwningPlayerInputType" }, // 2369320891 + { &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad, "IsOwningPlayerUsingGamepad" }, // 2401542788 + { &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch, "IsOwningPlayerUsingTouch" }, // 261819433 + { &Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer, "PopContentFromLayer" }, // 2145078514 + { &Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer, "PushContentToLayer_ForPlayer" }, // 2052751203 + { &Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer, "PushStreamedContentToLayer_ForPlayer" }, // 2943849316 + { &Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer, "ResumeInputForPlayer" }, // 3624695371 + { &Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer, "SuspendInputForPlayer" }, // 1895683987 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonUIExtensions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUIExtensions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUIExtensions_Statics::ClassParams = { + &UCommonUIExtensions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUIExtensions_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUIExtensions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUIExtensions() +{ + if (!Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton, Z_Construct_UClass_UCommonUIExtensions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonUIExtensions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUIExtensions); +UCommonUIExtensions::~UCommonUIExtensions() {} +// End Class UCommonUIExtensions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUIExtensions, UCommonUIExtensions::StaticClass, TEXT("UCommonUIExtensions"), &Z_Registration_Info_UClass_UCommonUIExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUIExtensions), 186473793U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_37907419(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.generated.h new file mode 100644 index 00000000..e0bb39fa --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonUIExtensions.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUIExtensions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UCommonActivatableWidget; +class ULocalPlayer; +class UUserWidget; +enum class ECommonInputType : uint8; +struct FGameplayTag; +#ifdef COMMONGAME_CommonUIExtensions_generated_h +#error "CommonUIExtensions.generated.h already included, missing '#pragma once' in CommonUIExtensions.h" +#endif +#define COMMONGAME_CommonUIExtensions_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execResumeInputForPlayer); \ + DECLARE_FUNCTION(execSuspendInputForPlayer); \ + DECLARE_FUNCTION(execGetLocalPlayerFromController); \ + DECLARE_FUNCTION(execPopContentFromLayer); \ + DECLARE_FUNCTION(execPushStreamedContentToLayer_ForPlayer); \ + DECLARE_FUNCTION(execPushContentToLayer_ForPlayer); \ + DECLARE_FUNCTION(execIsOwningPlayerUsingGamepad); \ + DECLARE_FUNCTION(execIsOwningPlayerUsingTouch); \ + DECLARE_FUNCTION(execGetOwningPlayerInputType); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUIExtensions(); \ + friend struct Z_Construct_UClass_UCommonUIExtensions_Statics; \ +public: \ + DECLARE_CLASS(UCommonUIExtensions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonUIExtensions) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUIExtensions(UCommonUIExtensions&&); \ + UCommonUIExtensions(const UCommonUIExtensions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUIExtensions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUIExtensions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUIExtensions) \ + NO_API virtual ~UCommonUIExtensions(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp new file mode 100644 index 00000000..0ed75963 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameUIManagerSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameUIManagerSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UGameUIManagerSubsystem +void UGameUIManagerSubsystem::StaticRegisterNativesUGameUIManagerSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameUIManagerSubsystem); +UClass* Z_Construct_UClass_UGameUIManagerSubsystem_NoRegister() +{ + return UGameUIManagerSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UGameUIManagerSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This manager is intended to be replaced by whatever your game needs to\n * actually create, so this class is abstract to prevent it from being created.\n * \n * If you just need the basic functionality you will start by sublcassing this\n * subsystem in your own game.\n */" }, +#endif + { "IncludePath", "GameUIManagerSubsystem.h" }, + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This manager is intended to be replaced by whatever your game needs to\nactually create, so this class is abstract to prevent it from being created.\n\nIf you just need the basic functionality you will start by sublcassing this\nsubsystem in your own game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentPolicy_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultUIPolicyClass_MetaData[] = { + { "Category", "GameUIManagerSubsystem" }, + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentPolicy; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultUIPolicyClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_CurrentPolicy = { "CurrentPolicy", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIManagerSubsystem, CurrentPolicy), Z_Construct_UClass_UGameUIPolicy_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentPolicy_MetaData), NewProp_CurrentPolicy_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_DefaultUIPolicyClass = { "DefaultUIPolicyClass", nullptr, (EPropertyFlags)0x0044000000004001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIManagerSubsystem, DefaultUIPolicyClass), Z_Construct_UClass_UGameUIPolicy_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultUIPolicyClass_MetaData), NewProp_DefaultUIPolicyClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_CurrentPolicy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_DefaultUIPolicyClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameUIManagerSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::ClassParams = { + &UGameUIManagerSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers), + 0, + 0x001000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameUIManagerSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameUIManagerSubsystem() +{ + if (!Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton, Z_Construct_UClass_UGameUIManagerSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UGameUIManagerSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameUIManagerSubsystem); +UGameUIManagerSubsystem::~UGameUIManagerSubsystem() {} +// End Class UGameUIManagerSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameUIManagerSubsystem, UGameUIManagerSubsystem::StaticClass, TEXT("UGameUIManagerSubsystem"), &Z_Registration_Info_UClass_UGameUIManagerSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameUIManagerSubsystem), 1955773463U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_1652200419(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h new file mode 100644 index 00000000..52d1c26a --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameUIManagerSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_GameUIManagerSubsystem_generated_h +#error "GameUIManagerSubsystem.generated.h already included, missing '#pragma once' in GameUIManagerSubsystem.h" +#endif +#define COMMONGAME_GameUIManagerSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameUIManagerSubsystem(); \ + friend struct Z_Construct_UClass_UGameUIManagerSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UGameUIManagerSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UGameUIManagerSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameUIManagerSubsystem(UGameUIManagerSubsystem&&); \ + UGameUIManagerSubsystem(const UGameUIManagerSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameUIManagerSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameUIManagerSubsystem); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameUIManagerSubsystem) \ + NO_API virtual ~UGameUIManagerSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp new file mode 100644 index 00000000..f4737e1d --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp @@ -0,0 +1,264 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameUIPolicy.h" +#include "Public/GameUIManagerSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameUIPolicy() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRootViewportLayoutInfo(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ELocalMultiplayerInteractionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode; +static UEnum* ELocalMultiplayerInteractionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ELocalMultiplayerInteractionMode")); + } + return Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ELocalMultiplayerInteractionMode_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + { "PrimaryOnly.Comment", "/**\n * \n */// Fullscreen viewport for the primary player only, regardless of the other player's existence\n" }, + { "PrimaryOnly.Name", "ELocalMultiplayerInteractionMode::PrimaryOnly" }, + { "PrimaryOnly.ToolTip", "// Fullscreen viewport for the primary player only, regardless of the other player's existence" }, + { "Simultaneous.Comment", "// Viewports displayed simultaneously for both players\n" }, + { "Simultaneous.Name", "ELocalMultiplayerInteractionMode::Simultaneous" }, + { "Simultaneous.ToolTip", "Viewports displayed simultaneously for both players" }, + { "SingleToggle.Comment", "// Fullscreen viewport for one player, but players can swap control over who's is displayed and who's is dormant\n" }, + { "SingleToggle.Name", "ELocalMultiplayerInteractionMode::SingleToggle" }, + { "SingleToggle.ToolTip", "Fullscreen viewport for one player, but players can swap control over who's is displayed and who's is dormant" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELocalMultiplayerInteractionMode::PrimaryOnly", (int64)ELocalMultiplayerInteractionMode::PrimaryOnly }, + { "ELocalMultiplayerInteractionMode::SingleToggle", (int64)ELocalMultiplayerInteractionMode::SingleToggle }, + { "ELocalMultiplayerInteractionMode::Simultaneous", (int64)ELocalMultiplayerInteractionMode::Simultaneous }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ELocalMultiplayerInteractionMode", + "ELocalMultiplayerInteractionMode", + Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode() +{ + if (!Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton, Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton; +} +// End Enum ELocalMultiplayerInteractionMode + +// Begin ScriptStruct FRootViewportLayoutInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo; +class UScriptStruct* FRootViewportLayoutInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FRootViewportLayoutInfo, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("RootViewportLayoutInfo")); + } + return Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FRootViewportLayoutInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RootLayout_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddedToViewport_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RootLayout; + static void NewProp_bAddedToViewport_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddedToViewport; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRootViewportLayoutInfo, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_RootLayout = { "RootLayout", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRootViewportLayoutInfo, RootLayout), Z_Construct_UClass_UPrimaryGameLayout_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RootLayout_MetaData), NewProp_RootLayout_MetaData) }; +void Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport_SetBit(void* Obj) +{ + ((FRootViewportLayoutInfo*)Obj)->bAddedToViewport = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport = { "bAddedToViewport", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRootViewportLayoutInfo), &Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddedToViewport_MetaData), NewProp_bAddedToViewport_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_RootLayout, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "RootViewportLayoutInfo", + Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers), + sizeof(FRootViewportLayoutInfo), + alignof(FRootViewportLayoutInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FRootViewportLayoutInfo() +{ + if (!Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton, Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton; +} +// End ScriptStruct FRootViewportLayoutInfo + +// Begin Class UGameUIPolicy +void UGameUIPolicy::StaticRegisterNativesUGameUIPolicy() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameUIPolicy); +UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister() +{ + return UGameUIPolicy::StaticClass(); +} +struct Z_Construct_UClass_UGameUIPolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "GameUIPolicy.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayoutClass_MetaData[] = { + { "Category", "GameUIPolicy" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RootViewportLayouts_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LayoutClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_RootViewportLayouts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RootViewportLayouts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_LayoutClass = { "LayoutClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIPolicy, LayoutClass), Z_Construct_UClass_UPrimaryGameLayout_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayoutClass_MetaData), NewProp_LayoutClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts_Inner = { "RootViewportLayouts", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FRootViewportLayoutInfo, METADATA_PARAMS(0, nullptr) }; // 2028361924 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts = { "RootViewportLayouts", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIPolicy, RootViewportLayouts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RootViewportLayouts_MetaData), NewProp_RootViewportLayouts_MetaData) }; // 2028361924 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_LayoutClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameUIPolicy_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameUIPolicy_Statics::ClassParams = { + &UGameUIPolicy::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameUIPolicy_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameUIPolicy() +{ + if (!Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton, Z_Construct_UClass_UGameUIPolicy_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UGameUIPolicy::StaticClass(); +} +UGameUIPolicy::UGameUIPolicy(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameUIPolicy); +UGameUIPolicy::~UGameUIPolicy() {} +// End Class UGameUIPolicy + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELocalMultiplayerInteractionMode_StaticEnum, TEXT("ELocalMultiplayerInteractionMode"), &Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2849029618U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FRootViewportLayoutInfo::StaticStruct, Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewStructOps, TEXT("RootViewportLayoutInfo"), &Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FRootViewportLayoutInfo), 2028361924U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameUIPolicy, UGameUIPolicy::StaticClass, TEXT("UGameUIPolicy"), &Z_Registration_Info_UClass_UGameUIPolicy, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameUIPolicy), 1339460388U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_521022291(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.generated.h new file mode 100644 index 00000000..01a28937 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/GameUIPolicy.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameUIPolicy.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_GameUIPolicy_generated_h +#error "GameUIPolicy.generated.h already included, missing '#pragma once' in GameUIPolicy.h" +#endif +#define COMMONGAME_GameUIPolicy_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameUIPolicy(); \ + friend struct Z_Construct_UClass_UGameUIPolicy_Statics; \ +public: \ + DECLARE_CLASS(UGameUIPolicy, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UGameUIPolicy) \ + DECLARE_WITHIN(UGameUIManagerSubsystem) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameUIPolicy(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameUIPolicy(UGameUIPolicy&&); \ + UGameUIPolicy(const UGameUIPolicy&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameUIPolicy); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameUIPolicy); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameUIPolicy) \ + NO_API virtual ~UGameUIPolicy(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_54_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h + + +#define FOREACH_ENUM_ELOCALMULTIPLAYERINTERACTIONMODE(op) \ + op(ELocalMultiplayerInteractionMode::PrimaryOnly) \ + op(ELocalMultiplayerInteractionMode::SingleToggle) \ + op(ELocalMultiplayerInteractionMode::Simultaneous) + +enum class ELocalMultiplayerInteractionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp new file mode 100644 index 00000000..72f3b3ae --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp @@ -0,0 +1,194 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PrimaryGameLayout.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePrimaryGameLayout() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout(); +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UPrimaryGameLayout Function RegisterLayer +struct Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics +{ + struct PrimaryGameLayout_eventRegisterLayer_Parms + { + FGameplayTag LayerTag; + UCommonActivatableWidgetContainerBase* LayerWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Layer" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Register a layer that widgets can be pushed onto. */" }, +#endif + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Register a layer that widgets can be pushed onto." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerTag_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LayerWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerTag = { "LayerTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PrimaryGameLayout_eventRegisterLayer_Parms, LayerTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerTag_MetaData), NewProp_LayerTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerWidget = { "LayerWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PrimaryGameLayout_eventRegisterLayer_Parms, LayerWidget), Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerWidget_MetaData), NewProp_LayerWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPrimaryGameLayout, nullptr, "RegisterLayer", nullptr, nullptr, Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PrimaryGameLayout_eventRegisterLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PrimaryGameLayout_eventRegisterLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPrimaryGameLayout::execRegisterLayer) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_LayerTag); + P_GET_OBJECT(UCommonActivatableWidgetContainerBase,Z_Param_LayerWidget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RegisterLayer(Z_Param_LayerTag,Z_Param_LayerWidget); + P_NATIVE_END; +} +// End Class UPrimaryGameLayout Function RegisterLayer + +// Begin Class UPrimaryGameLayout +void UPrimaryGameLayout::StaticRegisterNativesUPrimaryGameLayout() +{ + UClass* Class = UPrimaryGameLayout::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "RegisterLayer", &UPrimaryGameLayout::execRegisterLayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPrimaryGameLayout); +UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister() +{ + return UPrimaryGameLayout::StaticClass(); +} +struct Z_Construct_UClass_UPrimaryGameLayout_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The primary game UI layout of your game. This widget class represents how to layout, push and display all layers\n * of the UI for a single player. Each player in a split-screen game will receive their own primary game layout.\n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "PrimaryGameLayout.h" }, + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The primary game UI layout of your game. This widget class represents how to layout, push and display all layers\nof the UI for a single player. Each player in a split-screen game will receive their own primary game layout." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layers_MetaData[] = { + { "Categories", "UI.Layer" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The registered layers for the primary layout.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The registered layers for the primary layout." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Layers_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_Layers_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Layers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer, "RegisterLayer" }, // 990337099 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_ValueProp = { "Layers", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_Key_KeyProp = { "Layers_Key", nullptr, (EPropertyFlags)0x0100000000080008, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers = { "Layers", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPrimaryGameLayout, Layers), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layers_MetaData), NewProp_Layers_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPrimaryGameLayout_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPrimaryGameLayout_Statics::ClassParams = { + &UPrimaryGameLayout::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::Class_MetaDataParams), Z_Construct_UClass_UPrimaryGameLayout_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPrimaryGameLayout() +{ + if (!Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton, Z_Construct_UClass_UPrimaryGameLayout_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UPrimaryGameLayout::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPrimaryGameLayout); +UPrimaryGameLayout::~UPrimaryGameLayout() {} +// End Class UPrimaryGameLayout + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPrimaryGameLayout, UPrimaryGameLayout::StaticClass, TEXT("UPrimaryGameLayout"), &Z_Registration_Info_UClass_UPrimaryGameLayout, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPrimaryGameLayout), 3062876892U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_4023275472(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h new file mode 100644 index 00000000..f36067ed --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PrimaryGameLayout.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonActivatableWidgetContainerBase; +struct FGameplayTag; +#ifdef COMMONGAME_PrimaryGameLayout_generated_h +#error "PrimaryGameLayout.generated.h already included, missing '#pragma once' in PrimaryGameLayout.h" +#endif +#define COMMONGAME_PrimaryGameLayout_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRegisterLayer); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPrimaryGameLayout(); \ + friend struct Z_Construct_UClass_UPrimaryGameLayout_Statics; \ +public: \ + DECLARE_CLASS(UPrimaryGameLayout, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UPrimaryGameLayout) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPrimaryGameLayout(UPrimaryGameLayout&&); \ + UPrimaryGameLayout(const UPrimaryGameLayout&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPrimaryGameLayout); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPrimaryGameLayout); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPrimaryGameLayout) \ + NO_API virtual ~UPrimaryGameLayout(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_35_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/Timestamp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/Timestamp new file mode 100644 index 00000000..4035b5c1 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/Timestamp @@ -0,0 +1,13 @@ +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonGameInstance.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonLocalPlayer.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonPlayerController.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonPlayerInputKey.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonUIExtensions.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\GameUIManagerSubsystem.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\GameUIPolicy.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\PrimaryGameLayout.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_CreateWidgetAsync.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Messaging\CommonGameDialog.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_PushContentToLayerForPlayer.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_ShowConfirmation.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Messaging\CommonMessagingSubsystem.h diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp new file mode 100644 index 00000000..852eca3c --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.gen.cpp @@ -0,0 +1,236 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_CreateWidgetAsync.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_CreateWidgetAsync() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FCreateWidgetAsyncDelegate +struct Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms + { + UUserWidget* UserWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget = { "UserWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms, UserWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserWidget_MetaData), NewProp_UserWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "CreateWidgetAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCreateWidgetAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& CreateWidgetAsyncDelegate, UUserWidget* UserWidget) +{ + struct _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms + { + UUserWidget* UserWidget; + }; + _Script_CommonGame_eventCreateWidgetAsyncDelegate_Parms Parms; + Parms.UserWidget=UserWidget; + CreateWidgetAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCreateWidgetAsyncDelegate + +// Begin Class UAsyncAction_CreateWidgetAsync Function CreateWidgetAsync +struct Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics +{ + struct AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms + { + UObject* WorldContextObject; + TSoftClassPtr UserWidgetSoftClass; + APlayerController* OwningPlayer; + bool bSuspendInputUntilComplete; + UAsyncAction_CreateWidgetAsync* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "CPP_Default_bSuspendInputUntilComplete", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_UserWidgetSoftClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningPlayer; + static void NewProp_bSuspendInputUntilComplete_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuspendInputUntilComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_UserWidgetSoftClass = { "UserWidgetSoftClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, UserWidgetSoftClass), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_OwningPlayer = { "OwningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, OwningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete_SetBit(void* Obj) +{ + ((AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms*)Obj)->bSuspendInputUntilComplete = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete = { "bSuspendInputUntilComplete", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms), &Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_UserWidgetSoftClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_OwningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_bSuspendInputUntilComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CreateWidgetAsync, nullptr, "CreateWidgetAsync", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::AsyncAction_CreateWidgetAsync_eventCreateWidgetAsync_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CreateWidgetAsync::execCreateWidgetAsync) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_UserWidgetSoftClass); + P_GET_OBJECT(APlayerController,Z_Param_OwningPlayer); + P_GET_UBOOL(Z_Param_bSuspendInputUntilComplete); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CreateWidgetAsync**)Z_Param__Result=UAsyncAction_CreateWidgetAsync::CreateWidgetAsync(Z_Param_WorldContextObject,Z_Param_UserWidgetSoftClass,Z_Param_OwningPlayer,Z_Param_bSuspendInputUntilComplete); + P_NATIVE_END; +} +// End Class UAsyncAction_CreateWidgetAsync Function CreateWidgetAsync + +// Begin Class UAsyncAction_CreateWidgetAsync +void UAsyncAction_CreateWidgetAsync::StaticRegisterNativesUAsyncAction_CreateWidgetAsync() +{ + UClass* Class = UAsyncAction_CreateWidgetAsync::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateWidgetAsync", &UAsyncAction_CreateWidgetAsync::execCreateWidgetAsync }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_CreateWidgetAsync); +UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_NoRegister() +{ + return UAsyncAction_CreateWidgetAsync::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Load the widget class asynchronously, the instance the widget after the loading completes, and return it on OnComplete.\n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_CreateWidgetAsync.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Load the widget class asynchronously, the instance the widget after the loading completes, and return it on OnComplete." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnComplete_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_CreateWidgetAsync.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_CreateWidgetAsync_CreateWidgetAsync, "CreateWidgetAsync" }, // 805806315 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::NewProp_OnComplete = { "OnComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_CreateWidgetAsync, OnComplete), Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnComplete_MetaData), NewProp_OnComplete_MetaData) }; // 2008477331 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::NewProp_OnComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::ClassParams = { + &UAsyncAction_CreateWidgetAsync::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_CreateWidgetAsync() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton, Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_CreateWidgetAsync::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_CreateWidgetAsync); +UAsyncAction_CreateWidgetAsync::~UAsyncAction_CreateWidgetAsync() {} +// End Class UAsyncAction_CreateWidgetAsync + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_CreateWidgetAsync, UAsyncAction_CreateWidgetAsync::StaticClass, TEXT("UAsyncAction_CreateWidgetAsync"), &Z_Registration_Info_UClass_UAsyncAction_CreateWidgetAsync, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_CreateWidgetAsync), 97565782U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_1187195774(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h new file mode 100644 index 00000000..b26903cc --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_CreateWidgetAsync.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_CreateWidgetAsync.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_CreateWidgetAsync; +class UObject; +class UUserWidget; +#ifdef COMMONGAME_AsyncAction_CreateWidgetAsync_generated_h +#error "AsyncAction_CreateWidgetAsync.generated.h already included, missing '#pragma once' in AsyncAction_CreateWidgetAsync.h" +#endif +#define COMMONGAME_AsyncAction_CreateWidgetAsync_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_17_DELEGATE \ +COMMONGAME_API void FCreateWidgetAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& CreateWidgetAsyncDelegate, UUserWidget* UserWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execCreateWidgetAsync); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_CreateWidgetAsync(); \ + friend struct Z_Construct_UClass_UAsyncAction_CreateWidgetAsync_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_CreateWidgetAsync, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_CreateWidgetAsync) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_CreateWidgetAsync(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_CreateWidgetAsync) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_CreateWidgetAsync); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_CreateWidgetAsync); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_CreateWidgetAsync(UAsyncAction_CreateWidgetAsync&&); \ + UAsyncAction_CreateWidgetAsync(const UAsyncAction_CreateWidgetAsync&); \ +public: \ + NO_API virtual ~UAsyncAction_CreateWidgetAsync(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_CreateWidgetAsync_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp new file mode 100644 index 00000000..bda3d431 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.gen.cpp @@ -0,0 +1,246 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_PushContentToLayerForPlayer() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FPushContentToLayerForPlayerAsyncDelegate +struct Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms + { + UCommonActivatableWidget* UserWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget = { "UserWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms, UserWidget), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserWidget_MetaData), NewProp_UserWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::NewProp_UserWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "PushContentToLayerForPlayerAsyncDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::_Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FPushContentToLayerForPlayerAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& PushContentToLayerForPlayerAsyncDelegate, UCommonActivatableWidget* UserWidget) +{ + struct _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms + { + UCommonActivatableWidget* UserWidget; + }; + _Script_CommonGame_eventPushContentToLayerForPlayerAsyncDelegate_Parms Parms; + Parms.UserWidget=UserWidget; + PushContentToLayerForPlayerAsyncDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FPushContentToLayerForPlayerAsyncDelegate + +// Begin Class UAsyncAction_PushContentToLayerForPlayer Function PushContentToLayerForPlayer +struct Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics +{ + struct AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms + { + APlayerController* OwningPlayer; + TSoftClassPtr WidgetClass; + FGameplayTag LayerName; + bool bSuspendInputUntilComplete; + UAsyncAction_PushContentToLayerForPlayer* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "CPP_Default_bSuspendInputUntilComplete", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningPlayer; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static void NewProp_bSuspendInputUntilComplete_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuspendInputUntilComplete; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_OwningPlayer = { "OwningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, OwningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, WidgetClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +void Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete_SetBit(void* Obj) +{ + ((AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms*)Obj)->bSuspendInputUntilComplete = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete = { "bSuspendInputUntilComplete", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms), &Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_OwningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_bSuspendInputUntilComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer, nullptr, "PushContentToLayerForPlayer", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::AsyncAction_PushContentToLayerForPlayer_eventPushContentToLayerForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_PushContentToLayerForPlayer::execPushContentToLayerForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_OwningPlayer); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_WidgetClass); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_UBOOL(Z_Param_bSuspendInputUntilComplete); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_PushContentToLayerForPlayer**)Z_Param__Result=UAsyncAction_PushContentToLayerForPlayer::PushContentToLayerForPlayer(Z_Param_OwningPlayer,Z_Param_WidgetClass,Z_Param_LayerName,Z_Param_bSuspendInputUntilComplete); + P_NATIVE_END; +} +// End Class UAsyncAction_PushContentToLayerForPlayer Function PushContentToLayerForPlayer + +// Begin Class UAsyncAction_PushContentToLayerForPlayer +void UAsyncAction_PushContentToLayerForPlayer::StaticRegisterNativesUAsyncAction_PushContentToLayerForPlayer() +{ + UClass* Class = UAsyncAction_PushContentToLayerForPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "PushContentToLayerForPlayer", &UAsyncAction_PushContentToLayerForPlayer::execPushContentToLayerForPlayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_PushContentToLayerForPlayer); +UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_NoRegister() +{ + return UAsyncAction_PushContentToLayerForPlayer::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeforePush_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AfterPush_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_PushContentToLayerForPlayer.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_BeforePush; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_AfterPush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_PushContentToLayerForPlayer_PushContentToLayerForPlayer, "PushContentToLayerForPlayer" }, // 3409641186 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_BeforePush = { "BeforePush", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_PushContentToLayerForPlayer, BeforePush), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeforePush_MetaData), NewProp_BeforePush_MetaData) }; // 3043512308 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_AfterPush = { "AfterPush", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_PushContentToLayerForPlayer, AfterPush), Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AfterPush_MetaData), NewProp_AfterPush_MetaData) }; // 3043512308 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_BeforePush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::NewProp_AfterPush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::ClassParams = { + &UAsyncAction_PushContentToLayerForPlayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton, Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_PushContentToLayerForPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_PushContentToLayerForPlayer); +UAsyncAction_PushContentToLayerForPlayer::~UAsyncAction_PushContentToLayerForPlayer() {} +// End Class UAsyncAction_PushContentToLayerForPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer, UAsyncAction_PushContentToLayerForPlayer::StaticClass, TEXT("UAsyncAction_PushContentToLayerForPlayer"), &Z_Registration_Info_UClass_UAsyncAction_PushContentToLayerForPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_PushContentToLayerForPlayer), 2541959081U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_2292367203(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h new file mode 100644 index 00000000..0f836b9b --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_PushContentToLayerForPlayer.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_PushContentToLayerForPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UAsyncAction_PushContentToLayerForPlayer; +class UCommonActivatableWidget; +struct FGameplayTag; +#ifdef COMMONGAME_AsyncAction_PushContentToLayerForPlayer_generated_h +#error "AsyncAction_PushContentToLayerForPlayer.generated.h already included, missing '#pragma once' in AsyncAction_PushContentToLayerForPlayer.h" +#endif +#define COMMONGAME_AsyncAction_PushContentToLayerForPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_17_DELEGATE \ +COMMONGAME_API void FPushContentToLayerForPlayerAsyncDelegate_DelegateWrapper(const FMulticastScriptDelegate& PushContentToLayerForPlayerAsyncDelegate, UCommonActivatableWidget* UserWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execPushContentToLayerForPlayer); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_PushContentToLayerForPlayer(); \ + friend struct Z_Construct_UClass_UAsyncAction_PushContentToLayerForPlayer_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_PushContentToLayerForPlayer, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_PushContentToLayerForPlayer) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_PushContentToLayerForPlayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_PushContentToLayerForPlayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_PushContentToLayerForPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_PushContentToLayerForPlayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_PushContentToLayerForPlayer(UAsyncAction_PushContentToLayerForPlayer&&); \ + UAsyncAction_PushContentToLayerForPlayer(const UAsyncAction_PushContentToLayerForPlayer&); \ +public: \ + NO_API virtual ~UAsyncAction_PushContentToLayerForPlayer(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_PushContentToLayerForPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp new file mode 100644 index 00000000..6763fbd1 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.gen.cpp @@ -0,0 +1,358 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Actions/AsyncAction_ShowConfirmation.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ShowConfirmation() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation(); +COMMONGAME_API UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintAsyncActionBase(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Delegate FCommonMessagingResultMCDelegate +struct Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics +{ + struct _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms + { + ECommonMessagingResult Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Result_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms, Result), Z_Construct_UEnum_CommonGame_ECommonMessagingResult, METADATA_PARAMS(0, nullptr) }; // 3451816972 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, nullptr, "CommonMessagingResultMCDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::_Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonMessagingResultMCDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonMessagingResultMCDelegate, ECommonMessagingResult Result) +{ + struct _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms + { + ECommonMessagingResult Result; + }; + _Script_CommonGame_eventCommonMessagingResultMCDelegate_Parms Parms; + Parms.Result=Result; + CommonMessagingResultMCDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonMessagingResultMCDelegate + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationCustom +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms + { + UObject* InWorldContextObject; + UCommonGameDialogDescriptor* Descriptor; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Descriptor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_Descriptor = { "Descriptor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, Descriptor), Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_Descriptor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationCustom", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationCustom_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationCustom) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_OBJECT(UCommonGameDialogDescriptor,Z_Param_Descriptor); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationCustom(Z_Param_InWorldContextObject,Z_Param_Descriptor); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationCustom + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationOkCancel +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms + { + UObject* InWorldContextObject; + FText Title; + FText Message; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationOkCancel", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationOkCancel_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationOkCancel) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationOkCancel(Z_Param_InWorldContextObject,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationOkCancel + +// Begin Class UAsyncAction_ShowConfirmation Function ShowConfirmationYesNo +struct Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics +{ + struct AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms + { + UObject* InWorldContextObject; + FText Title; + FText Message; + UAsyncAction_ShowConfirmation* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + { "WorldContext", "InWorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InWorldContextObject; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_InWorldContextObject = { "InWorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, InWorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_InWorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_Message, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ShowConfirmation, nullptr, "ShowConfirmationYesNo", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::AsyncAction_ShowConfirmation_eventShowConfirmationYesNo_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ShowConfirmation::execShowConfirmationYesNo) +{ + P_GET_OBJECT(UObject,Z_Param_InWorldContextObject); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ShowConfirmation**)Z_Param__Result=UAsyncAction_ShowConfirmation::ShowConfirmationYesNo(Z_Param_InWorldContextObject,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UAsyncAction_ShowConfirmation Function ShowConfirmationYesNo + +// Begin Class UAsyncAction_ShowConfirmation +void UAsyncAction_ShowConfirmation::StaticRegisterNativesUAsyncAction_ShowConfirmation() +{ + UClass* Class = UAsyncAction_ShowConfirmation::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ShowConfirmationCustom", &UAsyncAction_ShowConfirmation::execShowConfirmationCustom }, + { "ShowConfirmationOkCancel", &UAsyncAction_ShowConfirmation::execShowConfirmationOkCancel }, + { "ShowConfirmationYesNo", &UAsyncAction_ShowConfirmation::execShowConfirmationYesNo }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ShowConfirmation); +UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation_NoRegister() +{ + return UAsyncAction_ShowConfirmation::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Allows easily triggering an async confirmation dialog in blueprints that you can then wait on the result.\n */" }, +#endif + { "IncludePath", "Actions/AsyncAction_ShowConfirmation.h" }, + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows easily triggering an async confirmation dialog in blueprints that you can then wait on the result." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnResult_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WorldContextObject_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetLocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Descriptor_MetaData[] = { + { "ModuleRelativePath", "Public/Actions/AsyncAction_ShowConfirmation.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnResult; + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetLocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Descriptor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationCustom, "ShowConfirmationCustom" }, // 4238422266 + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationOkCancel, "ShowConfirmationOkCancel" }, // 106423069 + { &Z_Construct_UFunction_UAsyncAction_ShowConfirmation_ShowConfirmationYesNo, "ShowConfirmationYesNo" }, // 303084914 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_OnResult = { "OnResult", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, OnResult), Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnResult_MetaData), NewProp_OnResult_MetaData) }; // 2358609143 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WorldContextObject_MetaData), NewProp_WorldContextObject_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_TargetLocalPlayer = { "TargetLocalPlayer", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, TargetLocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetLocalPlayer_MetaData), NewProp_TargetLocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_Descriptor = { "Descriptor", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ShowConfirmation, Descriptor), Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Descriptor_MetaData), NewProp_Descriptor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_OnResult, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_TargetLocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::NewProp_Descriptor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintAsyncActionBase, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::ClassParams = { + &UAsyncAction_ShowConfirmation::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::PropPointers), + 0, + 0x008000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ShowConfirmation() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton, Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UAsyncAction_ShowConfirmation::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ShowConfirmation); +UAsyncAction_ShowConfirmation::~UAsyncAction_ShowConfirmation() {} +// End Class UAsyncAction_ShowConfirmation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ShowConfirmation, UAsyncAction_ShowConfirmation::StaticClass, TEXT("UAsyncAction_ShowConfirmation"), &Z_Registration_Info_UClass_UAsyncAction_ShowConfirmation, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ShowConfirmation), 2629366151U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_1888213245(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h new file mode 100644 index 00000000..889f267b --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/AsyncAction_ShowConfirmation.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Actions/AsyncAction_ShowConfirmation.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ShowConfirmation; +class UCommonGameDialogDescriptor; +class UObject; +enum class ECommonMessagingResult : uint8; +#ifdef COMMONGAME_AsyncAction_ShowConfirmation_generated_h +#error "AsyncAction_ShowConfirmation.generated.h already included, missing '#pragma once' in AsyncAction_ShowConfirmation.h" +#endif +#define COMMONGAME_AsyncAction_ShowConfirmation_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_17_DELEGATE \ +COMMONGAME_API void FCommonMessagingResultMCDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonMessagingResultMCDelegate, ECommonMessagingResult Result); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execShowConfirmationCustom); \ + DECLARE_FUNCTION(execShowConfirmationOkCancel); \ + DECLARE_FUNCTION(execShowConfirmationYesNo); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ShowConfirmation(); \ + friend struct Z_Construct_UClass_UAsyncAction_ShowConfirmation_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ShowConfirmation, UBlueprintAsyncActionBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ShowConfirmation) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ShowConfirmation(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ShowConfirmation) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ShowConfirmation); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ShowConfirmation); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ShowConfirmation(UAsyncAction_ShowConfirmation&&); \ + UAsyncAction_ShowConfirmation(const UAsyncAction_ShowConfirmation&); \ +public: \ + NO_API virtual ~UAsyncAction_ShowConfirmation(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Actions_AsyncAction_ShowConfirmation_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGame.init.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGame.init.gen.cpp new file mode 100644 index 00000000..cfb46dcb --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGame.init.gen.cpp @@ -0,0 +1,37 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGame_init() {} + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature(); + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature(); + COMMONGAME_API UFunction* Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonGame; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonGame() + { + if (!Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_CommonMessagingResultMCDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_CreateWidgetAsyncDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonGame_PushContentToLayerForPlayerAsyncDelegate__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonGame", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xC5B486D0, + 0xF0DD58E9, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonGame.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonGame(Z_Construct_UPackage__Script_CommonGame, TEXT("/Script/CommonGame"), Z_Registration_Info_UPackage__Script_CommonGame, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xC5B486D0, 0xF0DD58E9)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameClasses.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp new file mode 100644 index 00000000..24583dd4 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.gen.cpp @@ -0,0 +1,289 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Messaging/CommonGameDialog.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGameDialog() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FConfirmationDialogAction(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin ScriptStruct FConfirmationDialogAction +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_ConfirmationDialogAction; +class UScriptStruct* FConfirmationDialogAction::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FConfirmationDialogAction, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ConfirmationDialogAction")); + } + return Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FConfirmationDialogAction::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "Category", "ConfirmationDialogAction" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Required: The dialog option to provide. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Required: The dialog option to provide." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OptionalDisplayText_MetaData[] = { + { "Category", "ConfirmationDialogAction" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Optional: Display Text to use instead of the action name associated with the result. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Optional: Display Text to use instead of the action name associated with the result." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Result_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Result; + static const UECodeGen_Private::FTextPropertyParams NewProp_OptionalDisplayText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FConfirmationDialogAction, Result), Z_Construct_UEnum_CommonGame_ECommonMessagingResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 3451816972 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_OptionalDisplayText = { "OptionalDisplayText", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FConfirmationDialogAction, OptionalDisplayText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OptionalDisplayText_MetaData), NewProp_OptionalDisplayText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_Result, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewProp_OptionalDisplayText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "ConfirmationDialogAction", + Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::PropPointers), + sizeof(FConfirmationDialogAction), + alignof(FConfirmationDialogAction), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FConfirmationDialogAction() +{ + if (!Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton, Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_ConfirmationDialogAction.InnerSingleton; +} +// End ScriptStruct FConfirmationDialogAction + +// Begin Class UCommonGameDialogDescriptor +void UCommonGameDialogDescriptor::StaticRegisterNativesUCommonGameDialogDescriptor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameDialogDescriptor); +UClass* Z_Construct_UClass_UCommonGameDialogDescriptor_NoRegister() +{ + return UCommonGameDialogDescriptor::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameDialogDescriptor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messaging/CommonGameDialog.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Header_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The header of the message to display */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The header of the message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Body_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The body of the message to display */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The body of the message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ButtonActions_MetaData[] = { + { "Category", "CommonGameDialogDescriptor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The confirm button's input action to use. */" }, +#endif + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The confirm button's input action to use." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Header; + static const UECodeGen_Private::FTextPropertyParams NewProp_Body; + static const UECodeGen_Private::FStructPropertyParams NewProp_ButtonActions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ButtonActions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Header = { "Header", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, Header), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Header_MetaData), NewProp_Header_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Body = { "Body", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, Body), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Body_MetaData), NewProp_Body_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions_Inner = { "ButtonActions", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FConfirmationDialogAction, METADATA_PARAMS(0, nullptr) }; // 1091326187 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions = { "ButtonActions", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameDialogDescriptor, ButtonActions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ButtonActions_MetaData), NewProp_ButtonActions_MetaData) }; // 1091326187 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Header, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_Body, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::NewProp_ButtonActions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::ClassParams = { + &UCommonGameDialogDescriptor::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameDialogDescriptor() +{ + if (!Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton, Z_Construct_UClass_UCommonGameDialogDescriptor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameDialogDescriptor.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameDialogDescriptor::StaticClass(); +} +UCommonGameDialogDescriptor::UCommonGameDialogDescriptor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameDialogDescriptor); +UCommonGameDialogDescriptor::~UCommonGameDialogDescriptor() {} +// End Class UCommonGameDialogDescriptor + +// Begin Class UCommonGameDialog +void UCommonGameDialog::StaticRegisterNativesUCommonGameDialog() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameDialog); +UClass* Z_Construct_UClass_UCommonGameDialog_NoRegister() +{ + return UCommonGameDialog::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameDialog_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Messaging/CommonGameDialog.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonGameDialog.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonGameDialog_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialog_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameDialog_Statics::ClassParams = { + &UCommonGameDialog::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameDialog_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameDialog_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameDialog() +{ + if (!Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton, Z_Construct_UClass_UCommonGameDialog_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameDialog.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameDialog::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameDialog); +UCommonGameDialog::~UCommonGameDialog() {} +// End Class UCommonGameDialog + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FConfirmationDialogAction::StaticStruct, Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics::NewStructOps, TEXT("ConfirmationDialogAction"), &Z_Registration_Info_UScriptStruct_ConfirmationDialogAction, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FConfirmationDialogAction), 1091326187U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonGameDialogDescriptor, UCommonGameDialogDescriptor::StaticClass, TEXT("UCommonGameDialogDescriptor"), &Z_Registration_Info_UClass_UCommonGameDialogDescriptor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameDialogDescriptor), 3342548326U) }, + { Z_Construct_UClass_UCommonGameDialog, UCommonGameDialog::StaticClass, TEXT("UCommonGameDialog"), &Z_Registration_Info_UClass_UCommonGameDialog, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameDialog), 2916020848U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_3429369668(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.generated.h new file mode 100644 index 00000000..6e1ee8a3 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameDialog.generated.h @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messaging/CommonGameDialog.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonGameDialog_generated_h +#error "CommonGameDialog.generated.h already included, missing '#pragma once' in CommonGameDialog.h" +#endif +#define COMMONGAME_CommonGameDialog_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FConfirmationDialogAction_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameDialogDescriptor(); \ + friend struct Z_Construct_UClass_UCommonGameDialogDescriptor_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameDialogDescriptor, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameDialogDescriptor) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonGameDialogDescriptor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameDialogDescriptor(UCommonGameDialogDescriptor&&); \ + UCommonGameDialogDescriptor(const UCommonGameDialogDescriptor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameDialogDescriptor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameDialogDescriptor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonGameDialogDescriptor) \ + NO_API virtual ~UCommonGameDialogDescriptor(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_31_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_34_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameDialog(); \ + friend struct Z_Construct_UClass_UCommonGameDialog_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameDialog, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameDialog) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameDialog(UCommonGameDialog&&); \ + UCommonGameDialog(const UCommonGameDialog&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameDialog); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameDialog); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UCommonGameDialog) \ + NO_API virtual ~UCommonGameDialog(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_57_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h_60_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonGameDialog_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp new file mode 100644 index 00000000..325bd1d9 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.gen.cpp @@ -0,0 +1,330 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonGameInstance.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonGameInstance() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonGameInstance_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstance(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonGameInstance Function HandlePrivilegeChanged +struct Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics +{ + struct CommonGameInstance_eventHandlePrivilegeChanged_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OldAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldAvailability; + static const UECodeGen_Private::FBytePropertyParams NewProp_NewAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewAvailability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability = { "OldAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, OldAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability = { "NewAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlePrivilegeChanged_Parms, NewAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_OldAvailability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::NewProp_NewAvailability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandlePrivilegeChanged", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::CommonGameInstance_eventHandlePrivilegeChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::CommonGameInstance_eventHandlePrivilegeChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandlePrivilegeChanged) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_GET_ENUM(ECommonUserAvailability,Z_Param_OldAvailability); + P_GET_ENUM(ECommonUserAvailability,Z_Param_NewAvailability); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePrivilegeChanged(Z_Param_UserInfo,ECommonUserPrivilege(Z_Param_Privilege),ECommonUserAvailability(Z_Param_OldAvailability),ECommonUserAvailability(Z_Param_NewAvailability)); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandlePrivilegeChanged + +// Begin Class UCommonGameInstance Function HandlerUserInitialized +struct Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics +{ + struct CommonGameInstance_eventHandlerUserInitialized_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((CommonGameInstance_eventHandlerUserInitialized_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonGameInstance_eventHandlerUserInitialized_Parms), &Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandlerUserInitialized_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandlerUserInitialized", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::CommonGameInstance_eventHandlerUserInitialized_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::CommonGameInstance_eventHandlerUserInitialized_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandlerUserInitialized) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlerUserInitialized(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandlerUserInitialized + +// Begin Class UCommonGameInstance Function HandleSystemMessage +struct Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics +{ + struct CommonGameInstance_eventHandleSystemMessage_Parms + { + FGameplayTag MessageType; + FText Title; + FText Message; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Handles errors/warnings from CommonUser, can be overridden per game */" }, +#endif + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles errors/warnings from CommonUser, can be overridden per game" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_Title; + static const UECodeGen_Private::FTextPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Title = { "Title", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, Title), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonGameInstance_eventHandleSystemMessage_Parms, Message), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Title, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonGameInstance, nullptr, "HandleSystemMessage", nullptr, nullptr, Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::CommonGameInstance_eventHandleSystemMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::CommonGameInstance_eventHandleSystemMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonGameInstance::execHandleSystemMessage) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_MessageType); + P_GET_PROPERTY(FTextProperty,Z_Param_Title); + P_GET_PROPERTY(FTextProperty,Z_Param_Message); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSystemMessage(Z_Param_MessageType,Z_Param_Title,Z_Param_Message); + P_NATIVE_END; +} +// End Class UCommonGameInstance Function HandleSystemMessage + +// Begin Class UCommonGameInstance +void UCommonGameInstance::StaticRegisterNativesUCommonGameInstance() +{ + UClass* Class = UCommonGameInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandlePrivilegeChanged", &UCommonGameInstance::execHandlePrivilegeChanged }, + { "HandlerUserInitialized", &UCommonGameInstance::execHandlerUserInitialized }, + { "HandleSystemMessage", &UCommonGameInstance::execHandleSystemMessage }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonGameInstance); +UClass* Z_Construct_UClass_UCommonGameInstance_NoRegister() +{ + return UCommonGameInstance::StaticClass(); +} +struct Z_Construct_UClass_UCommonGameInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonGameInstance.h" }, + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedSession_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Session the player has requested to join */" }, +#endif + { "ModuleRelativePath", "Public/CommonGameInstance.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Session the player has requested to join" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_RequestedSession; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonGameInstance_HandlePrivilegeChanged, "HandlePrivilegeChanged" }, // 3604793383 + { &Z_Construct_UFunction_UCommonGameInstance_HandlerUserInitialized, "HandlerUserInitialized" }, // 4113025410 + { &Z_Construct_UFunction_UCommonGameInstance_HandleSystemMessage, "HandleSystemMessage" }, // 211936282 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonGameInstance_Statics::NewProp_RequestedSession = { "RequestedSession", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonGameInstance, RequestedSession), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedSession_MetaData), NewProp_RequestedSession_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonGameInstance_Statics::NewProp_RequestedSession, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonGameInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstance, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonGameInstance_Statics::ClassParams = { + &UCommonGameInstance::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::PropPointers), + 0, + 0x009000A9u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonGameInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonGameInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonGameInstance() +{ + if (!Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton, Z_Construct_UClass_UCommonGameInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonGameInstance.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonGameInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonGameInstance); +UCommonGameInstance::~UCommonGameInstance() {} +// End Class UCommonGameInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonGameInstance, UCommonGameInstance::StaticClass, TEXT("UCommonGameInstance"), &Z_Registration_Info_UClass_UCommonGameInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonGameInstance), 900315804U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_1144254567(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.generated.h new file mode 100644 index 00000000..0c63c604 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGameInstance.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonGameInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserAvailability : uint8; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +struct FGameplayTag; +#ifdef COMMONGAME_CommonGameInstance_generated_h +#error "CommonGameInstance.generated.h already included, missing '#pragma once' in CommonGameInstance.h" +#endif +#define COMMONGAME_CommonGameInstance_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandlerUserInitialized); \ + DECLARE_FUNCTION(execHandlePrivilegeChanged); \ + DECLARE_FUNCTION(execHandleSystemMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonGameInstance(); \ + friend struct Z_Construct_UClass_UCommonGameInstance_Statics; \ +public: \ + DECLARE_CLASS(UCommonGameInstance, UGameInstance, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Transient), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonGameInstance) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonGameInstance(UCommonGameInstance&&); \ + UCommonGameInstance(const UCommonGameInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonGameInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonGameInstance); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonGameInstance) \ + NO_API virtual ~UCommonGameInstance(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonGameInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp new file mode 100644 index 00000000..338ed92a --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonLocalPlayer.h" +#include "Runtime/Engine/Classes/Engine/Engine.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLocalPlayer() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonLocalPlayer_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonLocalPlayer +void UCommonLocalPlayer::StaticRegisterNativesUCommonLocalPlayer() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonLocalPlayer); +UClass* Z_Construct_UClass_UCommonLocalPlayer_NoRegister() +{ + return UCommonLocalPlayer::StaticClass(); +} +struct Z_Construct_UClass_UCommonLocalPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonLocalPlayer.h" }, + { "ModuleRelativePath", "Public/CommonLocalPlayer.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonLocalPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayer, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLocalPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonLocalPlayer_Statics::ClassParams = { + &UCommonLocalPlayer::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLocalPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonLocalPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonLocalPlayer() +{ + if (!Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton, Z_Construct_UClass_UCommonLocalPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonLocalPlayer.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonLocalPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonLocalPlayer); +UCommonLocalPlayer::~UCommonLocalPlayer() {} +// End Class UCommonLocalPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonLocalPlayer, UCommonLocalPlayer::StaticClass, TEXT("UCommonLocalPlayer"), &Z_Registration_Info_UClass_UCommonLocalPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonLocalPlayer), 4242863829U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_4050717831(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h new file mode 100644 index 00000000..0a1667a9 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonLocalPlayer.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonLocalPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonLocalPlayer_generated_h +#error "CommonLocalPlayer.generated.h already included, missing '#pragma once' in CommonLocalPlayer.h" +#endif +#define COMMONGAME_CommonLocalPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonLocalPlayer(); \ + friend struct Z_Construct_UClass_UCommonLocalPlayer_Statics; \ +public: \ + DECLARE_CLASS(UCommonLocalPlayer, ULocalPlayer, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonLocalPlayer) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonLocalPlayer(UCommonLocalPlayer&&); \ + UCommonLocalPlayer(const UCommonLocalPlayer&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonLocalPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonLocalPlayer); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonLocalPlayer) \ + NO_API virtual ~UCommonLocalPlayer(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonLocalPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp new file mode 100644 index 00000000..ca59c442 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.gen.cpp @@ -0,0 +1,171 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Messaging/CommonMessagingSubsystem.h" +#include "Runtime/Engine/Classes/Engine/LocalPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonMessagingSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonMessagingSubsystem_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayerSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ECommonMessagingResult +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonMessagingResult; +static UEnum* ECommonMessagingResult_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ECommonMessagingResult, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ECommonMessagingResult")); + } + return Z_Registration_Info_UEnum_ECommonMessagingResult.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ECommonMessagingResult_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Cancelled.Comment", "/** The \"ignore/cancel\" button was pressed */" }, + { "Cancelled.Name", "ECommonMessagingResult::Cancelled" }, + { "Cancelled.ToolTip", "The \"ignore/cancel\" button was pressed" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Possible results from a dialog */" }, +#endif + { "Confirmed.Comment", "/** The \"yes\" button was pressed */" }, + { "Confirmed.Name", "ECommonMessagingResult::Confirmed" }, + { "Confirmed.ToolTip", "The \"yes\" button was pressed" }, + { "Declined.Comment", "/** The \"no\" button was pressed */" }, + { "Declined.Name", "ECommonMessagingResult::Declined" }, + { "Declined.ToolTip", "The \"no\" button was pressed" }, + { "Killed.Comment", "/** The dialog was explicitly killed (no user input) */" }, + { "Killed.Name", "ECommonMessagingResult::Killed" }, + { "Killed.ToolTip", "The dialog was explicitly killed (no user input)" }, + { "ModuleRelativePath", "Public/Messaging/CommonMessagingSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Possible results from a dialog" }, +#endif + { "Unknown.Hidden", "" }, + { "Unknown.Name", "ECommonMessagingResult::Unknown" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonMessagingResult::Confirmed", (int64)ECommonMessagingResult::Confirmed }, + { "ECommonMessagingResult::Declined", (int64)ECommonMessagingResult::Declined }, + { "ECommonMessagingResult::Cancelled", (int64)ECommonMessagingResult::Cancelled }, + { "ECommonMessagingResult::Killed", (int64)ECommonMessagingResult::Killed }, + { "ECommonMessagingResult::Unknown", (int64)ECommonMessagingResult::Unknown }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ECommonMessagingResult", + "ECommonMessagingResult", + Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ECommonMessagingResult() +{ + if (!Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton, Z_Construct_UEnum_CommonGame_ECommonMessagingResult_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonMessagingResult.InnerSingleton; +} +// End Enum ECommonMessagingResult + +// Begin Class UCommonMessagingSubsystem +void UCommonMessagingSubsystem::StaticRegisterNativesUCommonMessagingSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonMessagingSubsystem); +UClass* Z_Construct_UClass_UCommonMessagingSubsystem_NoRegister() +{ + return UCommonMessagingSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonMessagingSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Messaging/CommonMessagingSubsystem.h" }, + { "ModuleRelativePath", "Public/Messaging/CommonMessagingSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonMessagingSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULocalPlayerSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonMessagingSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonMessagingSubsystem_Statics::ClassParams = { + &UCommonMessagingSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonMessagingSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonMessagingSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonMessagingSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton, Z_Construct_UClass_UCommonMessagingSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonMessagingSubsystem.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonMessagingSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonMessagingSubsystem); +UCommonMessagingSubsystem::~UCommonMessagingSubsystem() {} +// End Class UCommonMessagingSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonMessagingResult_StaticEnum, TEXT("ECommonMessagingResult"), &Z_Registration_Info_UEnum_ECommonMessagingResult, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3451816972U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonMessagingSubsystem, UCommonMessagingSubsystem::StaticClass, TEXT("UCommonMessagingSubsystem"), &Z_Registration_Info_UClass_UCommonMessagingSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonMessagingSubsystem), 3160180513U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_2953471966(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h new file mode 100644 index 00000000..b33fd328 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonMessagingSubsystem.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messaging/CommonMessagingSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonMessagingSubsystem_generated_h +#error "CommonMessagingSubsystem.generated.h already included, missing '#pragma once' in CommonMessagingSubsystem.h" +#endif +#define COMMONGAME_CommonMessagingSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonMessagingSubsystem(); \ + friend struct Z_Construct_UClass_UCommonMessagingSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonMessagingSubsystem, ULocalPlayerSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonMessagingSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonMessagingSubsystem(UCommonMessagingSubsystem&&); \ + UCommonMessagingSubsystem(const UCommonMessagingSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonMessagingSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonMessagingSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonMessagingSubsystem) \ + NO_API virtual ~UCommonMessagingSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_33_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h_36_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_Messaging_CommonMessagingSubsystem_h + + +#define FOREACH_ENUM_ECOMMONMESSAGINGRESULT(op) \ + op(ECommonMessagingResult::Confirmed) \ + op(ECommonMessagingResult::Declined) \ + op(ECommonMessagingResult::Cancelled) \ + op(ECommonMessagingResult::Killed) \ + op(ECommonMessagingResult::Unknown) + +enum class ECommonMessagingResult : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp new file mode 100644 index 00000000..64fb021e --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.gen.cpp @@ -0,0 +1,92 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonPlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonPlayerController() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController(); +COMMONGAME_API UClass* Z_Construct_UClass_ACommonPlayerController_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class ACommonPlayerController +void ACommonPlayerController::StaticRegisterNativesACommonPlayerController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ACommonPlayerController); +UClass* Z_Construct_UClass_ACommonPlayerController_NoRegister() +{ + return ACommonPlayerController::StaticClass(); +} +struct Z_Construct_UClass_ACommonPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "CommonPlayerController.h" }, + { "ModuleRelativePath", "Public/CommonPlayerController.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ACommonPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AModularPlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ACommonPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ACommonPlayerController_Statics::ClassParams = { + &ACommonPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ACommonPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_ACommonPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ACommonPlayerController() +{ + if (!Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton, Z_Construct_UClass_ACommonPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ACommonPlayerController.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return ACommonPlayerController::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ACommonPlayerController); +ACommonPlayerController::~ACommonPlayerController() {} +// End Class ACommonPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ACommonPlayerController, ACommonPlayerController::StaticClass, TEXT("ACommonPlayerController"), &Z_Registration_Info_UClass_ACommonPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ACommonPlayerController), 3106237362U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_130554819(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.generated.h new file mode 100644 index 00000000..91bfbb39 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerController.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_CommonPlayerController_generated_h +#error "CommonPlayerController.generated.h already included, missing '#pragma once' in CommonPlayerController.h" +#endif +#define COMMONGAME_CommonPlayerController_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesACommonPlayerController(); \ + friend struct Z_Construct_UClass_ACommonPlayerController_Statics; \ +public: \ + DECLARE_CLASS(ACommonPlayerController, AModularPlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(ACommonPlayerController) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ACommonPlayerController(ACommonPlayerController&&); \ + ACommonPlayerController(const ACommonPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ACommonPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ACommonPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ACommonPlayerController) \ + NO_API virtual ~ACommonPlayerController(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp new file mode 100644 index 00000000..459f756f --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.gen.cpp @@ -0,0 +1,1135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonPlayerInputKey.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +#include "Runtime/SlateCore/Public/Fonts/SlateFontInfo.h" +#include "Runtime/SlateCore/Public/Layout/Margin.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonPlayerInputKey() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonPlayerInputKey(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonPlayerInputKey_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FMeasuredText(); +COMMONINPUT_API UEnum* Z_Construct_UEnum_CommonInput_ECommonInputType(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector2D(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FMargin(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateFontInfo(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ECommonKeybindForcedHoldStatus +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus; +static UEnum* ECommonKeybindForcedHoldStatus_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ECommonKeybindForcedHoldStatus")); + } + return Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ECommonKeybindForcedHoldStatus_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ForcedHold.Name", "ECommonKeybindForcedHoldStatus::ForcedHold" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "NeverShowHold.Name", "ECommonKeybindForcedHoldStatus::NeverShowHold" }, + { "NoForcedHold.Name", "ECommonKeybindForcedHoldStatus::NoForcedHold" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonKeybindForcedHoldStatus::NoForcedHold", (int64)ECommonKeybindForcedHoldStatus::NoForcedHold }, + { "ECommonKeybindForcedHoldStatus::ForcedHold", (int64)ECommonKeybindForcedHoldStatus::ForcedHold }, + { "ECommonKeybindForcedHoldStatus::NeverShowHold", (int64)ECommonKeybindForcedHoldStatus::NeverShowHold }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ECommonKeybindForcedHoldStatus", + "ECommonKeybindForcedHoldStatus", + Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus() +{ + if (!Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton, Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus.InnerSingleton; +} +// End Enum ECommonKeybindForcedHoldStatus + +// Begin ScriptStruct FMeasuredText +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_MeasuredText; +class UScriptStruct* FMeasuredText::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FMeasuredText, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("MeasuredText")); + } + return Z_Registration_Info_UScriptStruct_MeasuredText.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FMeasuredText::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FMeasuredText_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FMeasuredText_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "MeasuredText", + nullptr, + 0, + sizeof(FMeasuredText), + alignof(FMeasuredText), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FMeasuredText_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FMeasuredText_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FMeasuredText() +{ + if (!Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton, Z_Construct_UScriptStruct_FMeasuredText_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_MeasuredText.InnerSingleton; +} +// End ScriptStruct FMeasuredText + +// Begin Class UCommonPlayerInputKey Function IsBoundKeyValid +struct Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics +{ + struct CommonPlayerInputKey_eventIsBoundKeyValid_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventIsBoundKeyValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventIsBoundKeyValid_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "IsBoundKeyValid", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::CommonPlayerInputKey_eventIsBoundKeyValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x40020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::CommonPlayerInputKey_eventIsBoundKeyValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execIsBoundKeyValid) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsBoundKeyValid(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function IsBoundKeyValid + +// Begin Class UCommonPlayerInputKey Function IsHoldKeybind +struct Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics +{ + struct CommonPlayerInputKey_eventIsHoldKeybind_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Get whether this keybind is a hold action. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Get whether this keybind is a hold action." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventIsHoldKeybind_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventIsHoldKeybind_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "IsHoldKeybind", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::CommonPlayerInputKey_eventIsHoldKeybind_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::CommonPlayerInputKey_eventIsHoldKeybind_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execIsHoldKeybind) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsHoldKeybind(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function IsHoldKeybind + +// Begin Class UCommonPlayerInputKey Function SetAxisScale +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics +{ + struct CommonPlayerInputKey_eventSetAxisScale_Parms + { + float NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the axis scale value for this keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the axis scale value for this keybind" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetAxisScale_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetAxisScale", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::CommonPlayerInputKey_eventSetAxisScale_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::CommonPlayerInputKey_eventSetAxisScale_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetAxisScale) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAxisScale(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetAxisScale + +// Begin Class UCommonPlayerInputKey Function SetBoundAction +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics +{ + struct CommonPlayerInputKey_eventSetBoundAction_Parms + { + FName NewBoundAction; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the bound action for our keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the bound action for our keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NewBoundAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::NewProp_NewBoundAction = { "NewBoundAction", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetBoundAction_Parms, NewBoundAction), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::NewProp_NewBoundAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetBoundAction", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::CommonPlayerInputKey_eventSetBoundAction_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::CommonPlayerInputKey_eventSetBoundAction_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetBoundAction) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_NewBoundAction); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundAction(Z_Param_NewBoundAction); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetBoundAction + +// Begin Class UCommonPlayerInputKey Function SetBoundKey +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics +{ + struct CommonPlayerInputKey_eventSetBoundKey_Parms + { + FKey NewBoundAction; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the bound key for our keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the bound key for our keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NewBoundAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::NewProp_NewBoundAction = { "NewBoundAction", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetBoundKey_Parms, NewBoundAction), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::NewProp_NewBoundAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetBoundKey", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::CommonPlayerInputKey_eventSetBoundKey_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::CommonPlayerInputKey_eventSetBoundKey_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetBoundKey) +{ + P_GET_STRUCT(FKey,Z_Param_NewBoundAction); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetBoundKey(Z_Param_NewBoundAction); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetBoundKey + +// Begin Class UCommonPlayerInputKey Function SetForcedHoldKeybind +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics +{ + struct CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms + { + bool InForcedHoldKeybind; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "DeprecatedFunction", "" }, + { "DeprecationMessage", "Use SetForcedHoldKeybindStatus instead" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_InForcedHoldKeybind_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_InForcedHoldKeybind; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms*)Obj)->InForcedHoldKeybind = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind = { "InForcedHoldKeybind", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::NewProp_InForcedHoldKeybind, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetForcedHoldKeybind", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybind_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetForcedHoldKeybind) +{ + P_GET_UBOOL(Z_Param_InForcedHoldKeybind); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForcedHoldKeybind(Z_Param_InForcedHoldKeybind); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetForcedHoldKeybind + +// Begin Class UCommonPlayerInputKey Function SetForcedHoldKeybindStatus +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics +{ + struct CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms + { + ECommonKeybindForcedHoldStatus InForcedHoldKeybindStatus; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_InForcedHoldKeybindStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InForcedHoldKeybindStatus; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus = { "InForcedHoldKeybindStatus", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms, InForcedHoldKeybindStatus), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, METADATA_PARAMS(0, nullptr) }; // 1810116694 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::NewProp_InForcedHoldKeybindStatus, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetForcedHoldKeybindStatus", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::CommonPlayerInputKey_eventSetForcedHoldKeybindStatus_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetForcedHoldKeybindStatus) +{ + P_GET_ENUM(ECommonKeybindForcedHoldStatus,Z_Param_InForcedHoldKeybindStatus); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetForcedHoldKeybindStatus(ECommonKeybindForcedHoldStatus(Z_Param_InForcedHoldKeybindStatus)); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetForcedHoldKeybindStatus + +// Begin Class UCommonPlayerInputKey Function SetPresetNameOverride +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics +{ + struct CommonPlayerInputKey_eventSetPresetNameOverride_Parms + { + FName NewValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Set the preset name override value for this keybind. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Set the preset name override value for this keybind." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_NewValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::NewProp_NewValue = { "NewValue", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventSetPresetNameOverride_Parms, NewValue), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewValue_MetaData), NewProp_NewValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::NewProp_NewValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetPresetNameOverride", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::CommonPlayerInputKey_eventSetPresetNameOverride_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::CommonPlayerInputKey_eventSetPresetNameOverride_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetPresetNameOverride) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_NewValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetPresetNameOverride(Z_Param_NewValue); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetPresetNameOverride + +// Begin Class UCommonPlayerInputKey Function SetShowProgressCountDown +struct Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics +{ + struct CommonPlayerInputKey_eventSetShowProgressCountDown_Parms + { + bool bShow; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Force this keybind to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force this keybind to be a hold keybind" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bShow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShow; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventSetShowProgressCountDown_Parms*)Obj)->bShow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow = { "bShow", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventSetShowProgressCountDown_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::NewProp_bShow, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "SetShowProgressCountDown", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::CommonPlayerInputKey_eventSetShowProgressCountDown_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::CommonPlayerInputKey_eventSetShowProgressCountDown_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execSetShowProgressCountDown) +{ + P_GET_UBOOL(Z_Param_bShow); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowProgressCountDown(Z_Param_bShow); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function SetShowProgressCountDown + +// Begin Class UCommonPlayerInputKey Function StartHoldProgress +struct Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics +{ + struct CommonPlayerInputKey_eventStartHoldProgress_Parms + { + FName HoldActionName; + float HoldDuration; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called through a delegate when we start hold progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called through a delegate when we start hold progress" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_HoldActionName; + static const UECodeGen_Private::FFloatPropertyParams NewProp_HoldDuration; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldActionName = { "HoldActionName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStartHoldProgress_Parms, HoldActionName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldDuration = { "HoldDuration", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStartHoldProgress_Parms, HoldDuration), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldActionName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::NewProp_HoldDuration, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "StartHoldProgress", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::CommonPlayerInputKey_eventStartHoldProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::CommonPlayerInputKey_eventStartHoldProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execStartHoldProgress) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_HoldActionName); + P_GET_PROPERTY(FFloatProperty,Z_Param_HoldDuration); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StartHoldProgress(Z_Param_HoldActionName,Z_Param_HoldDuration); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function StartHoldProgress + +// Begin Class UCommonPlayerInputKey Function StopHoldProgress +struct Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics +{ + struct CommonPlayerInputKey_eventStopHoldProgress_Parms + { + FName HoldActionName; + bool bCompletedSuccessfully; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called through a delegate when we stop hold progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called through a delegate when we stop hold progress" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_HoldActionName; + static void NewProp_bCompletedSuccessfully_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCompletedSuccessfully; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_HoldActionName = { "HoldActionName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonPlayerInputKey_eventStopHoldProgress_Parms, HoldActionName), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully_SetBit(void* Obj) +{ + ((CommonPlayerInputKey_eventStopHoldProgress_Parms*)Obj)->bCompletedSuccessfully = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully = { "bCompletedSuccessfully", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonPlayerInputKey_eventStopHoldProgress_Parms), &Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_HoldActionName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::NewProp_bCompletedSuccessfully, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "StopHoldProgress", nullptr, nullptr, Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::CommonPlayerInputKey_eventStopHoldProgress_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::CommonPlayerInputKey_eventStopHoldProgress_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execStopHoldProgress) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_HoldActionName); + P_GET_UBOOL(Z_Param_bCompletedSuccessfully); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->StopHoldProgress(Z_Param_HoldActionName,Z_Param_bCompletedSuccessfully); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function StopHoldProgress + +// Begin Class UCommonPlayerInputKey Function UpdateKeybindWidget +struct Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Update the key and associated display based on our current Boundaction */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Update the key and associated display based on our current Boundaction" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonPlayerInputKey, nullptr, "UpdateKeybindWidget", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonPlayerInputKey::execUpdateKeybindWidget) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UpdateKeybindWidget(); + P_NATIVE_END; +} +// End Class UCommonPlayerInputKey Function UpdateKeybindWidget + +// Begin Class UCommonPlayerInputKey +void UCommonPlayerInputKey::StaticRegisterNativesUCommonPlayerInputKey() +{ + UClass* Class = UCommonPlayerInputKey::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsBoundKeyValid", &UCommonPlayerInputKey::execIsBoundKeyValid }, + { "IsHoldKeybind", &UCommonPlayerInputKey::execIsHoldKeybind }, + { "SetAxisScale", &UCommonPlayerInputKey::execSetAxisScale }, + { "SetBoundAction", &UCommonPlayerInputKey::execSetBoundAction }, + { "SetBoundKey", &UCommonPlayerInputKey::execSetBoundKey }, + { "SetForcedHoldKeybind", &UCommonPlayerInputKey::execSetForcedHoldKeybind }, + { "SetForcedHoldKeybindStatus", &UCommonPlayerInputKey::execSetForcedHoldKeybindStatus }, + { "SetPresetNameOverride", &UCommonPlayerInputKey::execSetPresetNameOverride }, + { "SetShowProgressCountDown", &UCommonPlayerInputKey::execSetShowProgressCountDown }, + { "StartHoldProgress", &UCommonPlayerInputKey::execStartHoldProgress }, + { "StopHoldProgress", &UCommonPlayerInputKey::execStopHoldProgress }, + { "UpdateKeybindWidget", &UCommonPlayerInputKey::execUpdateKeybindWidget }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonPlayerInputKey); +UClass* Z_Construct_UClass_UCommonPlayerInputKey_NoRegister() +{ + return UCommonPlayerInputKey::StaticClass(); +} +struct Z_Construct_UClass_UCommonPlayerInputKey_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "CommonPlayerInputKey.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundAction_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Our current BoundAction */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Our current BoundAction" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AxisScale_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Scale to read when using an axis Mapping */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Scale to read when using an axis Mapping" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundKeyFallback_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Key this widget is bound to set directly in blueprint. Used when we want to reference a specific key instead of an action. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Key this widget is bound to set directly in blueprint. Used when we want to reference a specific key instead of an action." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InputTypeOverride_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allows us to set the input type explicitly for the keybind widget. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows us to set the input type explicitly for the keybind widget." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresetNameOverride_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Allows us to set the preset name explicitly for the keybind widget. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows us to set the preset name explicitly for the keybind widget." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForcedHoldKeybindStatus_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Setting that can show this keybind as a hold or never show it as a hold (even if it is) */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Setting that can show this keybind as a hold or never show it as a hold (even if it is)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsHoldKeybind_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not this keybind widget is currently set to be a hold keybind */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + { "ScriptName", "IsHoldKeybindValue" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not this keybind widget is currently set to be a hold keybind" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowKeybindBorder_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FrameSize_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowTimeCountDown_MetaData[] = { + { "Category", "Keybind Widget" }, + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundKey_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Derived Key this widget is bound to */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Derived Key this widget is bound to" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldProgressBrush_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Material for showing Progress */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Material for showing Progress" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyBindTextBorder_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The key bind text border. */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The key bind text border." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShowUnboundStatus_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Should this keybinding widget display information that it is currently unbound? */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should this keybinding widget display information that it is currently unbound?" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeyBindTextFont_MetaData[] = { + { "Category", "Font" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The font to apply at each size */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The font to apply at each size" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CountdownTextFont_MetaData[] = { + { "Category", "Font" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The font to apply at each size */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The font to apply at each size" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CountdownText_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindText_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindTextPadding_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_KeybindFrameMinimumSize_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PercentageMaterialParameterName_MetaData[] = { + { "Category", "Keybind Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The material parameter name for hold percentage in the HoldKeybindImage */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The material parameter name for hold percentage in the HoldKeybindImage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ProgressPercentageMID_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** MID for the progress percentage */" }, +#endif + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "MID for the progress percentage" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CachedKeyBrush_MetaData[] = { + { "ModuleRelativePath", "Public/CommonPlayerInputKey.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_BoundAction; + static const UECodeGen_Private::FFloatPropertyParams NewProp_AxisScale; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundKeyFallback; + static const UECodeGen_Private::FBytePropertyParams NewProp_InputTypeOverride_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InputTypeOverride; + static const UECodeGen_Private::FNamePropertyParams NewProp_PresetNameOverride; + static const UECodeGen_Private::FBytePropertyParams NewProp_ForcedHoldKeybindStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ForcedHoldKeybindStatus; + static void NewProp_bIsHoldKeybind_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsHoldKeybind; + static void NewProp_bShowKeybindBorder_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowKeybindBorder; + static const UECodeGen_Private::FStructPropertyParams NewProp_FrameSize; + static void NewProp_bShowTimeCountDown_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowTimeCountDown; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundKey; + static const UECodeGen_Private::FStructPropertyParams NewProp_HoldProgressBrush; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeyBindTextBorder; + static void NewProp_bShowUnboundStatus_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bShowUnboundStatus; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeyBindTextFont; + static const UECodeGen_Private::FStructPropertyParams NewProp_CountdownTextFont; + static const UECodeGen_Private::FStructPropertyParams NewProp_CountdownText; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindText; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindTextPadding; + static const UECodeGen_Private::FStructPropertyParams NewProp_KeybindFrameMinimumSize; + static const UECodeGen_Private::FNamePropertyParams NewProp_PercentageMaterialParameterName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ProgressPercentageMID; + static const UECodeGen_Private::FStructPropertyParams NewProp_CachedKeyBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonPlayerInputKey_IsBoundKeyValid, "IsBoundKeyValid" }, // 2382270390 + { &Z_Construct_UFunction_UCommonPlayerInputKey_IsHoldKeybind, "IsHoldKeybind" }, // 3307235777 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetAxisScale, "SetAxisScale" }, // 2014563998 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundAction, "SetBoundAction" }, // 1529272485 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetBoundKey, "SetBoundKey" }, // 915558846 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybind, "SetForcedHoldKeybind" }, // 2556677224 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetForcedHoldKeybindStatus, "SetForcedHoldKeybindStatus" }, // 593847763 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetPresetNameOverride, "SetPresetNameOverride" }, // 2080915674 + { &Z_Construct_UFunction_UCommonPlayerInputKey_SetShowProgressCountDown, "SetShowProgressCountDown" }, // 849344434 + { &Z_Construct_UFunction_UCommonPlayerInputKey_StartHoldProgress, "StartHoldProgress" }, // 1589840373 + { &Z_Construct_UFunction_UCommonPlayerInputKey_StopHoldProgress, "StopHoldProgress" }, // 3514158941 + { &Z_Construct_UFunction_UCommonPlayerInputKey_UpdateKeybindWidget, "UpdateKeybindWidget" }, // 1346007617 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundAction = { "BoundAction", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundAction), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundAction_MetaData), NewProp_BoundAction_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_AxisScale = { "AxisScale", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, AxisScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AxisScale_MetaData), NewProp_AxisScale_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKeyFallback = { "BoundKeyFallback", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundKeyFallback), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundKeyFallback_MetaData), NewProp_BoundKeyFallback_MetaData) }; // 658672854 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride = { "InputTypeOverride", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, InputTypeOverride), Z_Construct_UEnum_CommonInput_ECommonInputType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InputTypeOverride_MetaData), NewProp_InputTypeOverride_MetaData) }; // 4176585250 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PresetNameOverride = { "PresetNameOverride", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, PresetNameOverride), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresetNameOverride_MetaData), NewProp_PresetNameOverride_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus = { "ForcedHoldKeybindStatus", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, ForcedHoldKeybindStatus), Z_Construct_UEnum_CommonGame_ECommonKeybindForcedHoldStatus, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForcedHoldKeybindStatus_MetaData), NewProp_ForcedHoldKeybindStatus_MetaData) }; // 1810116694 +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bIsHoldKeybind = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind = { "bIsHoldKeybind", nullptr, (EPropertyFlags)0x0020080000010015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsHoldKeybind_MetaData), NewProp_bIsHoldKeybind_MetaData) }; +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowKeybindBorder = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder = { "bShowKeybindBorder", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowKeybindBorder_MetaData), NewProp_bShowKeybindBorder_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_FrameSize = { "FrameSize", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, FrameSize), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FrameSize_MetaData), NewProp_FrameSize_MetaData) }; +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowTimeCountDown = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown = { "bShowTimeCountDown", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowTimeCountDown_MetaData), NewProp_bShowTimeCountDown_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKey = { "BoundKey", nullptr, (EPropertyFlags)0x0020080000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, BoundKey), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundKey_MetaData), NewProp_BoundKey_MetaData) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_HoldProgressBrush = { "HoldProgressBrush", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, HoldProgressBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldProgressBrush_MetaData), NewProp_HoldProgressBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextBorder = { "KeyBindTextBorder", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeyBindTextBorder), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyBindTextBorder_MetaData), NewProp_KeyBindTextBorder_MetaData) }; // 4269649686 +void Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus_SetBit(void* Obj) +{ + ((UCommonPlayerInputKey*)Obj)->bShowUnboundStatus = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus = { "bShowUnboundStatus", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonPlayerInputKey), &Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShowUnboundStatus_MetaData), NewProp_bShowUnboundStatus_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextFont = { "KeyBindTextFont", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeyBindTextFont), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeyBindTextFont_MetaData), NewProp_KeyBindTextFont_MetaData) }; // 1633227880 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownTextFont = { "CountdownTextFont", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CountdownTextFont), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CountdownTextFont_MetaData), NewProp_CountdownTextFont_MetaData) }; // 1633227880 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownText = { "CountdownText", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CountdownText), Z_Construct_UScriptStruct_FMeasuredText, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CountdownText_MetaData), NewProp_CountdownText_MetaData) }; // 361176876 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindText = { "KeybindText", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindText), Z_Construct_UScriptStruct_FMeasuredText, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindText_MetaData), NewProp_KeybindText_MetaData) }; // 361176876 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindTextPadding = { "KeybindTextPadding", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindTextPadding), Z_Construct_UScriptStruct_FMargin, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindTextPadding_MetaData), NewProp_KeybindTextPadding_MetaData) }; // 2986890016 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindFrameMinimumSize = { "KeybindFrameMinimumSize", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, KeybindFrameMinimumSize), Z_Construct_UScriptStruct_FVector2D, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_KeybindFrameMinimumSize_MetaData), NewProp_KeybindFrameMinimumSize_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PercentageMaterialParameterName = { "PercentageMaterialParameterName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, PercentageMaterialParameterName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PercentageMaterialParameterName_MetaData), NewProp_PercentageMaterialParameterName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ProgressPercentageMID = { "ProgressPercentageMID", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, ProgressPercentageMID), Z_Construct_UClass_UMaterialInstanceDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ProgressPercentageMID_MetaData), NewProp_ProgressPercentageMID_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CachedKeyBrush = { "CachedKeyBrush", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonPlayerInputKey, CachedKeyBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CachedKeyBrush_MetaData), NewProp_CachedKeyBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_AxisScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKeyFallback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_InputTypeOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PresetNameOverride, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ForcedHoldKeybindStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bIsHoldKeybind, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowKeybindBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_FrameSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowTimeCountDown, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_BoundKey, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_HoldProgressBrush, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_bShowUnboundStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeyBindTextFont, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownTextFont, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CountdownText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindTextPadding, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_KeybindFrameMinimumSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_PercentageMaterialParameterName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_ProgressPercentageMID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonPlayerInputKey_Statics::NewProp_CachedKeyBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonPlayerInputKey_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonPlayerInputKey_Statics::ClassParams = { + &UCommonPlayerInputKey::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonPlayerInputKey_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonPlayerInputKey_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonPlayerInputKey() +{ + if (!Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton, Z_Construct_UClass_UCommonPlayerInputKey_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonPlayerInputKey.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonPlayerInputKey::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonPlayerInputKey); +UCommonPlayerInputKey::~UCommonPlayerInputKey() {} +// End Class UCommonPlayerInputKey + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonKeybindForcedHoldStatus_StaticEnum, TEXT("ECommonKeybindForcedHoldStatus"), &Z_Registration_Info_UEnum_ECommonKeybindForcedHoldStatus, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1810116694U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FMeasuredText::StaticStruct, Z_Construct_UScriptStruct_FMeasuredText_Statics::NewStructOps, TEXT("MeasuredText"), &Z_Registration_Info_UScriptStruct_MeasuredText, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FMeasuredText), 361176876U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonPlayerInputKey, UCommonPlayerInputKey::StaticClass, TEXT("UCommonPlayerInputKey"), &Z_Registration_Info_UClass_UCommonPlayerInputKey, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonPlayerInputKey), 2834599380U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_1882362941(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h new file mode 100644 index 00000000..04fcbb67 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonPlayerInputKey.generated.h @@ -0,0 +1,88 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonPlayerInputKey.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ECommonKeybindForcedHoldStatus : uint8; +struct FKey; +#ifdef COMMONGAME_CommonPlayerInputKey_generated_h +#error "CommonPlayerInputKey.generated.h already included, missing '#pragma once' in CommonPlayerInputKey.h" +#endif +#define COMMONGAME_CommonPlayerInputKey_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_34_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FMeasuredText_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsBoundKeyValid); \ + DECLARE_FUNCTION(execIsHoldKeybind); \ + DECLARE_FUNCTION(execStopHoldProgress); \ + DECLARE_FUNCTION(execStartHoldProgress); \ + DECLARE_FUNCTION(execSetPresetNameOverride); \ + DECLARE_FUNCTION(execSetAxisScale); \ + DECLARE_FUNCTION(execSetShowProgressCountDown); \ + DECLARE_FUNCTION(execSetForcedHoldKeybindStatus); \ + DECLARE_FUNCTION(execSetForcedHoldKeybind); \ + DECLARE_FUNCTION(execSetBoundAction); \ + DECLARE_FUNCTION(execSetBoundKey); \ + DECLARE_FUNCTION(execUpdateKeybindWidget); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonPlayerInputKey(); \ + friend struct Z_Construct_UClass_UCommonPlayerInputKey_Statics; \ +public: \ + DECLARE_CLASS(UCommonPlayerInputKey, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonPlayerInputKey) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonPlayerInputKey(UCommonPlayerInputKey&&); \ + UCommonPlayerInputKey(const UCommonPlayerInputKey&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonPlayerInputKey); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonPlayerInputKey); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonPlayerInputKey) \ + NO_API virtual ~UCommonPlayerInputKey(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_50_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h_53_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonPlayerInputKey_h + + +#define FOREACH_ENUM_ECOMMONKEYBINDFORCEDHOLDSTATUS(op) \ + op(ECommonKeybindForcedHoldStatus::NoForcedHold) \ + op(ECommonKeybindForcedHoldStatus::ForcedHold) \ + op(ECommonKeybindForcedHoldStatus::NeverShowHold) + +enum class ECommonKeybindForcedHoldStatus : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp new file mode 100644 index 00000000..da3c0598 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.gen.cpp @@ -0,0 +1,616 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/CommonUIExtensions.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUIExtensions() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UCommonUIExtensions(); +COMMONGAME_API UClass* Z_Construct_UClass_UCommonUIExtensions_NoRegister(); +COMMONINPUT_API UEnum* Z_Construct_UEnum_CommonInput_ECommonInputType(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UCommonUIExtensions Function GetLocalPlayerFromController +struct Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics +{ + struct CommonUIExtensions_eventGetLocalPlayerFromController_Parms + { + APlayerController* PlayerController; + ULocalPlayer* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetLocalPlayerFromController_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetLocalPlayerFromController_Parms, ReturnValue), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "GetLocalPlayerFromController", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::CommonUIExtensions_eventGetLocalPlayerFromController_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::CommonUIExtensions_eventGetLocalPlayerFromController_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execGetLocalPlayerFromController) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_FINISH; + P_NATIVE_BEGIN; + *(ULocalPlayer**)Z_Param__Result=UCommonUIExtensions::GetLocalPlayerFromController(Z_Param_PlayerController); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function GetLocalPlayerFromController + +// Begin Class UCommonUIExtensions Function GetOwningPlayerInputType +struct Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics +{ + struct CommonUIExtensions_eventGetOwningPlayerInputType_Parms + { + const UUserWidget* WidgetContextObject; + ECommonInputType ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetOwningPlayerInputType_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventGetOwningPlayerInputType_Parms, ReturnValue), Z_Construct_UEnum_CommonInput_ECommonInputType, METADATA_PARAMS(0, nullptr) }; // 4176585250 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "GetOwningPlayerInputType", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::CommonUIExtensions_eventGetOwningPlayerInputType_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::CommonUIExtensions_eventGetOwningPlayerInputType_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execGetOwningPlayerInputType) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonInputType*)Z_Param__Result=UCommonUIExtensions::GetOwningPlayerInputType(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function GetOwningPlayerInputType + +// Begin Class UCommonUIExtensions Function IsOwningPlayerUsingGamepad +struct Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics +{ + struct CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms + { + const UUserWidget* WidgetContextObject; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +void Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms), &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "IsOwningPlayerUsingGamepad", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::CommonUIExtensions_eventIsOwningPlayerUsingGamepad_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execIsOwningPlayerUsingGamepad) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UCommonUIExtensions::IsOwningPlayerUsingGamepad(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function IsOwningPlayerUsingGamepad + +// Begin Class UCommonUIExtensions Function IsOwningPlayerUsingTouch +struct Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics +{ + struct CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms + { + const UUserWidget* WidgetContextObject; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + { "WorldContext", "WidgetContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetContextObject_MetaData[] = { + { "EditInline", "true" }, + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WidgetContextObject; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_WidgetContextObject = { "WidgetContextObject", nullptr, (EPropertyFlags)0x0010000000080082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms, WidgetContextObject), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetContextObject_MetaData), NewProp_WidgetContextObject_MetaData) }; +void Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms), &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_WidgetContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "IsOwningPlayerUsingTouch", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x14022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::CommonUIExtensions_eventIsOwningPlayerUsingTouch_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execIsOwningPlayerUsingTouch) +{ + P_GET_OBJECT(UUserWidget,Z_Param_WidgetContextObject); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UCommonUIExtensions::IsOwningPlayerUsingTouch(Z_Param_WidgetContextObject); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function IsOwningPlayerUsingTouch + +// Begin Class UCommonUIExtensions Function PopContentFromLayer +struct Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics +{ + struct CommonUIExtensions_eventPopContentFromLayer_Parms + { + UCommonActivatableWidget* ActivatableWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivatableWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActivatableWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::NewProp_ActivatableWidget = { "ActivatableWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPopContentFromLayer_Parms, ActivatableWidget), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivatableWidget_MetaData), NewProp_ActivatableWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::NewProp_ActivatableWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PopContentFromLayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::CommonUIExtensions_eventPopContentFromLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::CommonUIExtensions_eventPopContentFromLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPopContentFromLayer) +{ + P_GET_OBJECT(UCommonActivatableWidget,Z_Param_ActivatableWidget); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::PopContentFromLayer(Z_Param_ActivatableWidget); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PopContentFromLayer + +// Begin Class UCommonUIExtensions Function PushContentToLayer_ForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics +{ + struct CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms + { + const ULocalPlayer* LocalPlayer; + FGameplayTag LayerName; + TSubclassOf WidgetClass; + UCommonActivatableWidget* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms, ReturnValue), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PushContentToLayer_ForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushContentToLayer_ForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPushContentToLayer_ForPlayer) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonActivatableWidget**)Z_Param__Result=UCommonUIExtensions::PushContentToLayer_ForPlayer(Z_Param_LocalPlayer,Z_Param_LayerName,Z_Param_WidgetClass); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PushContentToLayer_ForPlayer + +// Begin Class UCommonUIExtensions Function PushStreamedContentToLayer_ForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics +{ + struct CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms + { + const ULocalPlayer* LocalPlayer; + FGameplayTag LayerName; + TSoftClassPtr WidgetClass; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerName_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WidgetClass_MetaData[] = { + { "AllowAbstract", "FALSE" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerName; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LayerName = { "LayerName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, LayerName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerName_MetaData), NewProp_LayerName_MetaData) }; // 1298103297 +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms, WidgetClass), Z_Construct_UClass_UCommonActivatableWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WidgetClass_MetaData), NewProp_WidgetClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_LayerName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::NewProp_WidgetClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "PushStreamedContentToLayer_ForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::CommonUIExtensions_eventPushStreamedContentToLayer_ForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execPushStreamedContentToLayer_ForPlayer) +{ + P_GET_OBJECT(ULocalPlayer,Z_Param_LocalPlayer); + P_GET_STRUCT(FGameplayTag,Z_Param_LayerName); + P_GET_SOFTCLASS(TSoftClassPtr ,Z_Param_WidgetClass); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::PushStreamedContentToLayer_ForPlayer(Z_Param_LocalPlayer,Z_Param_LayerName,Z_Param_WidgetClass); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function PushStreamedContentToLayer_ForPlayer + +// Begin Class UCommonUIExtensions Function ResumeInputForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics +{ + struct CommonUIExtensions_eventResumeInputForPlayer_Parms + { + APlayerController* PlayerController; + FName SuspendToken; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FNamePropertyParams NewProp_SuspendToken; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventResumeInputForPlayer_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_SuspendToken = { "SuspendToken", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventResumeInputForPlayer_Parms, SuspendToken), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::NewProp_SuspendToken, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "ResumeInputForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::CommonUIExtensions_eventResumeInputForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::CommonUIExtensions_eventResumeInputForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execResumeInputForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_GET_PROPERTY(FNameProperty,Z_Param_SuspendToken); + P_FINISH; + P_NATIVE_BEGIN; + UCommonUIExtensions::ResumeInputForPlayer(Z_Param_PlayerController,Z_Param_SuspendToken); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function ResumeInputForPlayer + +// Begin Class UCommonUIExtensions Function SuspendInputForPlayer +struct Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics +{ + struct CommonUIExtensions_eventSuspendInputForPlayer_Parms + { + APlayerController* PlayerController; + FName SuspendReason; + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Global UI Extensions" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerController; + static const UECodeGen_Private::FNamePropertyParams NewProp_SuspendReason; + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_PlayerController = { "PlayerController", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, PlayerController), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_SuspendReason = { "SuspendReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, SuspendReason), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUIExtensions_eventSuspendInputForPlayer_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_PlayerController, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_SuspendReason, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUIExtensions, nullptr, "SuspendInputForPlayer", nullptr, nullptr, Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::CommonUIExtensions_eventSuspendInputForPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::CommonUIExtensions_eventSuspendInputForPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUIExtensions::execSuspendInputForPlayer) +{ + P_GET_OBJECT(APlayerController,Z_Param_PlayerController); + P_GET_PROPERTY(FNameProperty,Z_Param_SuspendReason); + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=UCommonUIExtensions::SuspendInputForPlayer(Z_Param_PlayerController,Z_Param_SuspendReason); + P_NATIVE_END; +} +// End Class UCommonUIExtensions Function SuspendInputForPlayer + +// Begin Class UCommonUIExtensions +void UCommonUIExtensions::StaticRegisterNativesUCommonUIExtensions() +{ + UClass* Class = UCommonUIExtensions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetLocalPlayerFromController", &UCommonUIExtensions::execGetLocalPlayerFromController }, + { "GetOwningPlayerInputType", &UCommonUIExtensions::execGetOwningPlayerInputType }, + { "IsOwningPlayerUsingGamepad", &UCommonUIExtensions::execIsOwningPlayerUsingGamepad }, + { "IsOwningPlayerUsingTouch", &UCommonUIExtensions::execIsOwningPlayerUsingTouch }, + { "PopContentFromLayer", &UCommonUIExtensions::execPopContentFromLayer }, + { "PushContentToLayer_ForPlayer", &UCommonUIExtensions::execPushContentToLayer_ForPlayer }, + { "PushStreamedContentToLayer_ForPlayer", &UCommonUIExtensions::execPushStreamedContentToLayer_ForPlayer }, + { "ResumeInputForPlayer", &UCommonUIExtensions::execResumeInputForPlayer }, + { "SuspendInputForPlayer", &UCommonUIExtensions::execSuspendInputForPlayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUIExtensions); +UClass* Z_Construct_UClass_UCommonUIExtensions_NoRegister() +{ + return UCommonUIExtensions::StaticClass(); +} +struct Z_Construct_UClass_UCommonUIExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "CommonUIExtensions.h" }, + { "ModuleRelativePath", "Public/CommonUIExtensions.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUIExtensions_GetLocalPlayerFromController, "GetLocalPlayerFromController" }, // 2269035864 + { &Z_Construct_UFunction_UCommonUIExtensions_GetOwningPlayerInputType, "GetOwningPlayerInputType" }, // 2369320891 + { &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingGamepad, "IsOwningPlayerUsingGamepad" }, // 2401542788 + { &Z_Construct_UFunction_UCommonUIExtensions_IsOwningPlayerUsingTouch, "IsOwningPlayerUsingTouch" }, // 261819433 + { &Z_Construct_UFunction_UCommonUIExtensions_PopContentFromLayer, "PopContentFromLayer" }, // 2145078514 + { &Z_Construct_UFunction_UCommonUIExtensions_PushContentToLayer_ForPlayer, "PushContentToLayer_ForPlayer" }, // 2052751203 + { &Z_Construct_UFunction_UCommonUIExtensions_PushStreamedContentToLayer_ForPlayer, "PushStreamedContentToLayer_ForPlayer" }, // 2943849316 + { &Z_Construct_UFunction_UCommonUIExtensions_ResumeInputForPlayer, "ResumeInputForPlayer" }, // 3624695371 + { &Z_Construct_UFunction_UCommonUIExtensions_SuspendInputForPlayer, "SuspendInputForPlayer" }, // 1895683987 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonUIExtensions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUIExtensions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUIExtensions_Statics::ClassParams = { + &UCommonUIExtensions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUIExtensions_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUIExtensions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUIExtensions() +{ + if (!Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton, Z_Construct_UClass_UCommonUIExtensions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUIExtensions.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UCommonUIExtensions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUIExtensions); +UCommonUIExtensions::~UCommonUIExtensions() {} +// End Class UCommonUIExtensions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUIExtensions, UCommonUIExtensions::StaticClass, TEXT("UCommonUIExtensions"), &Z_Registration_Info_UClass_UCommonUIExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUIExtensions), 186473793U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_37907419(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.generated.h new file mode 100644 index 00000000..e0bb39fa --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonUIExtensions.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUIExtensions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UCommonActivatableWidget; +class ULocalPlayer; +class UUserWidget; +enum class ECommonInputType : uint8; +struct FGameplayTag; +#ifdef COMMONGAME_CommonUIExtensions_generated_h +#error "CommonUIExtensions.generated.h already included, missing '#pragma once' in CommonUIExtensions.h" +#endif +#define COMMONGAME_CommonUIExtensions_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execResumeInputForPlayer); \ + DECLARE_FUNCTION(execSuspendInputForPlayer); \ + DECLARE_FUNCTION(execGetLocalPlayerFromController); \ + DECLARE_FUNCTION(execPopContentFromLayer); \ + DECLARE_FUNCTION(execPushStreamedContentToLayer_ForPlayer); \ + DECLARE_FUNCTION(execPushContentToLayer_ForPlayer); \ + DECLARE_FUNCTION(execIsOwningPlayerUsingGamepad); \ + DECLARE_FUNCTION(execIsOwningPlayerUsingTouch); \ + DECLARE_FUNCTION(execGetOwningPlayerInputType); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUIExtensions(); \ + friend struct Z_Construct_UClass_UCommonUIExtensions_Statics; \ +public: \ + DECLARE_CLASS(UCommonUIExtensions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UCommonUIExtensions) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUIExtensions(UCommonUIExtensions&&); \ + UCommonUIExtensions(const UCommonUIExtensions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUIExtensions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUIExtensions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUIExtensions) \ + NO_API virtual ~UCommonUIExtensions(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_CommonUIExtensions_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp new file mode 100644 index 00000000..0ed75963 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameUIManagerSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameUIManagerSubsystem() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIManagerSubsystem_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UGameUIManagerSubsystem +void UGameUIManagerSubsystem::StaticRegisterNativesUGameUIManagerSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameUIManagerSubsystem); +UClass* Z_Construct_UClass_UGameUIManagerSubsystem_NoRegister() +{ + return UGameUIManagerSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UGameUIManagerSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This manager is intended to be replaced by whatever your game needs to\n * actually create, so this class is abstract to prevent it from being created.\n * \n * If you just need the basic functionality you will start by sublcassing this\n * subsystem in your own game.\n */" }, +#endif + { "IncludePath", "GameUIManagerSubsystem.h" }, + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This manager is intended to be replaced by whatever your game needs to\nactually create, so this class is abstract to prevent it from being created.\n\nIf you just need the basic functionality you will start by sublcassing this\nsubsystem in your own game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentPolicy_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultUIPolicyClass_MetaData[] = { + { "Category", "GameUIManagerSubsystem" }, + { "ModuleRelativePath", "Public/GameUIManagerSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentPolicy; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_DefaultUIPolicyClass; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_CurrentPolicy = { "CurrentPolicy", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIManagerSubsystem, CurrentPolicy), Z_Construct_UClass_UGameUIPolicy_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentPolicy_MetaData), NewProp_CurrentPolicy_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_DefaultUIPolicyClass = { "DefaultUIPolicyClass", nullptr, (EPropertyFlags)0x0044000000004001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIManagerSubsystem, DefaultUIPolicyClass), Z_Construct_UClass_UGameUIPolicy_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultUIPolicyClass_MetaData), NewProp_DefaultUIPolicyClass_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_CurrentPolicy, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIManagerSubsystem_Statics::NewProp_DefaultUIPolicyClass, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameUIManagerSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameUIManagerSubsystem_Statics::ClassParams = { + &UGameUIManagerSubsystem::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::PropPointers), + 0, + 0x001000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIManagerSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameUIManagerSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameUIManagerSubsystem() +{ + if (!Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton, Z_Construct_UClass_UGameUIManagerSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameUIManagerSubsystem.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UGameUIManagerSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameUIManagerSubsystem); +UGameUIManagerSubsystem::~UGameUIManagerSubsystem() {} +// End Class UGameUIManagerSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameUIManagerSubsystem, UGameUIManagerSubsystem::StaticClass, TEXT("UGameUIManagerSubsystem"), &Z_Registration_Info_UClass_UGameUIManagerSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameUIManagerSubsystem), 1955773463U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_1652200419(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h new file mode 100644 index 00000000..52d1c26a --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIManagerSubsystem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameUIManagerSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_GameUIManagerSubsystem_generated_h +#error "GameUIManagerSubsystem.generated.h already included, missing '#pragma once' in GameUIManagerSubsystem.h" +#endif +#define COMMONGAME_GameUIManagerSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameUIManagerSubsystem(); \ + friend struct Z_Construct_UClass_UGameUIManagerSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UGameUIManagerSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UGameUIManagerSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameUIManagerSubsystem(UGameUIManagerSubsystem&&); \ + UGameUIManagerSubsystem(const UGameUIManagerSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameUIManagerSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameUIManagerSubsystem); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameUIManagerSubsystem) \ + NO_API virtual ~UGameUIManagerSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIManagerSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp new file mode 100644 index 00000000..f4737e1d --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.gen.cpp @@ -0,0 +1,264 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameUIPolicy.h" +#include "Public/GameUIManagerSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameUIPolicy() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy(); +COMMONGAME_API UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister(); +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister(); +COMMONGAME_API UEnum* Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode(); +COMMONGAME_API UScriptStruct* Z_Construct_UScriptStruct_FRootViewportLayoutInfo(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Enum ELocalMultiplayerInteractionMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode; +static UEnum* ELocalMultiplayerInteractionMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("ELocalMultiplayerInteractionMode")); + } + return Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.OuterSingleton; +} +template<> COMMONGAME_API UEnum* StaticEnum() +{ + return ELocalMultiplayerInteractionMode_StaticEnum(); +} +struct Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + { "PrimaryOnly.Comment", "/**\n * \n */// Fullscreen viewport for the primary player only, regardless of the other player's existence\n" }, + { "PrimaryOnly.Name", "ELocalMultiplayerInteractionMode::PrimaryOnly" }, + { "PrimaryOnly.ToolTip", "// Fullscreen viewport for the primary player only, regardless of the other player's existence" }, + { "Simultaneous.Comment", "// Viewports displayed simultaneously for both players\n" }, + { "Simultaneous.Name", "ELocalMultiplayerInteractionMode::Simultaneous" }, + { "Simultaneous.ToolTip", "Viewports displayed simultaneously for both players" }, + { "SingleToggle.Comment", "// Fullscreen viewport for one player, but players can swap control over who's is displayed and who's is dormant\n" }, + { "SingleToggle.Name", "ELocalMultiplayerInteractionMode::SingleToggle" }, + { "SingleToggle.ToolTip", "Fullscreen viewport for one player, but players can swap control over who's is displayed and who's is dormant" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ELocalMultiplayerInteractionMode::PrimaryOnly", (int64)ELocalMultiplayerInteractionMode::PrimaryOnly }, + { "ELocalMultiplayerInteractionMode::SingleToggle", (int64)ELocalMultiplayerInteractionMode::SingleToggle }, + { "ELocalMultiplayerInteractionMode::Simultaneous", (int64)ELocalMultiplayerInteractionMode::Simultaneous }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + "ELocalMultiplayerInteractionMode", + "ELocalMultiplayerInteractionMode", + Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode() +{ + if (!Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton, Z_Construct_UEnum_CommonGame_ELocalMultiplayerInteractionMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode.InnerSingleton; +} +// End Enum ELocalMultiplayerInteractionMode + +// Begin ScriptStruct FRootViewportLayoutInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo; +class UScriptStruct* FRootViewportLayoutInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FRootViewportLayoutInfo, (UObject*)Z_Construct_UPackage__Script_CommonGame(), TEXT("RootViewportLayoutInfo")); + } + return Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.OuterSingleton; +} +template<> COMMONGAME_API UScriptStruct* StaticStruct() +{ + return FRootViewportLayoutInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RootLayout_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAddedToViewport_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RootLayout; + static void NewProp_bAddedToViewport_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bAddedToViewport; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0114000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRootViewportLayoutInfo, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_RootLayout = { "RootLayout", nullptr, (EPropertyFlags)0x0114000000082008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FRootViewportLayoutInfo, RootLayout), Z_Construct_UClass_UPrimaryGameLayout_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RootLayout_MetaData), NewProp_RootLayout_MetaData) }; +void Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport_SetBit(void* Obj) +{ + ((FRootViewportLayoutInfo*)Obj)->bAddedToViewport = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport = { "bAddedToViewport", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FRootViewportLayoutInfo), &Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAddedToViewport_MetaData), NewProp_bAddedToViewport_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_RootLayout, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewProp_bAddedToViewport, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, + nullptr, + &NewStructOps, + "RootViewportLayoutInfo", + Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::PropPointers), + sizeof(FRootViewportLayoutInfo), + alignof(FRootViewportLayoutInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FRootViewportLayoutInfo() +{ + if (!Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton, Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo.InnerSingleton; +} +// End ScriptStruct FRootViewportLayoutInfo + +// Begin Class UGameUIPolicy +void UGameUIPolicy::StaticRegisterNativesUGameUIPolicy() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameUIPolicy); +UClass* Z_Construct_UClass_UGameUIPolicy_NoRegister() +{ + return UGameUIPolicy::StaticClass(); +} +struct Z_Construct_UClass_UGameUIPolicy_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "GameUIPolicy.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayoutClass_MetaData[] = { + { "Category", "GameUIPolicy" }, + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RootViewportLayouts_MetaData[] = { + { "ModuleRelativePath", "Public/GameUIPolicy.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_LayoutClass; + static const UECodeGen_Private::FStructPropertyParams NewProp_RootViewportLayouts_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RootViewportLayouts; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_LayoutClass = { "LayoutClass", nullptr, (EPropertyFlags)0x0044000000000001, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIPolicy, LayoutClass), Z_Construct_UClass_UPrimaryGameLayout_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayoutClass_MetaData), NewProp_LayoutClass_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts_Inner = { "RootViewportLayouts", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FRootViewportLayoutInfo, METADATA_PARAMS(0, nullptr) }; // 2028361924 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts = { "RootViewportLayouts", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameUIPolicy, RootViewportLayouts), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RootViewportLayouts_MetaData), NewProp_RootViewportLayouts_MetaData) }; // 2028361924 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_LayoutClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameUIPolicy_Statics::NewProp_RootViewportLayouts, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameUIPolicy_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameUIPolicy_Statics::ClassParams = { + &UGameUIPolicy::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameUIPolicy_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameUIPolicy_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameUIPolicy() +{ + if (!Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton, Z_Construct_UClass_UGameUIPolicy_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameUIPolicy.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UGameUIPolicy::StaticClass(); +} +UGameUIPolicy::UGameUIPolicy(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameUIPolicy); +UGameUIPolicy::~UGameUIPolicy() {} +// End Class UGameUIPolicy + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ELocalMultiplayerInteractionMode_StaticEnum, TEXT("ELocalMultiplayerInteractionMode"), &Z_Registration_Info_UEnum_ELocalMultiplayerInteractionMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2849029618U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FRootViewportLayoutInfo::StaticStruct, Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics::NewStructOps, TEXT("RootViewportLayoutInfo"), &Z_Registration_Info_UScriptStruct_RootViewportLayoutInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FRootViewportLayoutInfo), 2028361924U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameUIPolicy, UGameUIPolicy::StaticClass, TEXT("UGameUIPolicy"), &Z_Registration_Info_UClass_UGameUIPolicy, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameUIPolicy), 1339460388U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_521022291(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.generated.h new file mode 100644 index 00000000..01a28937 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/GameUIPolicy.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameUIPolicy.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONGAME_GameUIPolicy_generated_h +#error "GameUIPolicy.generated.h already included, missing '#pragma once' in GameUIPolicy.h" +#endif +#define COMMONGAME_GameUIPolicy_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_33_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FRootViewportLayoutInfo_Statics; \ + COMMONGAME_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONGAME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameUIPolicy(); \ + friend struct Z_Construct_UClass_UGameUIPolicy_Statics; \ +public: \ + DECLARE_CLASS(UGameUIPolicy, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UGameUIPolicy) \ + DECLARE_WITHIN(UGameUIManagerSubsystem) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameUIPolicy(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameUIPolicy(UGameUIPolicy&&); \ + UGameUIPolicy(const UGameUIPolicy&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameUIPolicy); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameUIPolicy); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameUIPolicy) \ + NO_API virtual ~UGameUIPolicy(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_54_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h_57_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_GameUIPolicy_h + + +#define FOREACH_ENUM_ELOCALMULTIPLAYERINTERACTIONMODE(op) \ + op(ELocalMultiplayerInteractionMode::PrimaryOnly) \ + op(ELocalMultiplayerInteractionMode::SingleToggle) \ + op(ELocalMultiplayerInteractionMode::Simultaneous) + +enum class ELocalMultiplayerInteractionMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONGAME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp new file mode 100644 index 00000000..72f3b3ae --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.gen.cpp @@ -0,0 +1,194 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PrimaryGameLayout.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePrimaryGameLayout() {} + +// Begin Cross Module References +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout(); +COMMONGAME_API UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_CommonGame(); +// End Cross Module References + +// Begin Class UPrimaryGameLayout Function RegisterLayer +struct Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics +{ + struct PrimaryGameLayout_eventRegisterLayer_Parms + { + FGameplayTag LayerTag; + UCommonActivatableWidgetContainerBase* LayerWidget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Layer" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Register a layer that widgets can be pushed onto. */" }, +#endif + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Register a layer that widgets can be pushed onto." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerTag_MetaData[] = { + { "Categories", "UI.Layer" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LayerWidget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LayerTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LayerWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerTag = { "LayerTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PrimaryGameLayout_eventRegisterLayer_Parms, LayerTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerTag_MetaData), NewProp_LayerTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerWidget = { "LayerWidget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PrimaryGameLayout_eventRegisterLayer_Parms, LayerWidget), Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LayerWidget_MetaData), NewProp_LayerWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::NewProp_LayerWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPrimaryGameLayout, nullptr, "RegisterLayer", nullptr, nullptr, Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PrimaryGameLayout_eventRegisterLayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::PrimaryGameLayout_eventRegisterLayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPrimaryGameLayout::execRegisterLayer) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_LayerTag); + P_GET_OBJECT(UCommonActivatableWidgetContainerBase,Z_Param_LayerWidget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RegisterLayer(Z_Param_LayerTag,Z_Param_LayerWidget); + P_NATIVE_END; +} +// End Class UPrimaryGameLayout Function RegisterLayer + +// Begin Class UPrimaryGameLayout +void UPrimaryGameLayout::StaticRegisterNativesUPrimaryGameLayout() +{ + UClass* Class = UPrimaryGameLayout::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "RegisterLayer", &UPrimaryGameLayout::execRegisterLayer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPrimaryGameLayout); +UClass* Z_Construct_UClass_UPrimaryGameLayout_NoRegister() +{ + return UPrimaryGameLayout::StaticClass(); +} +struct Z_Construct_UClass_UPrimaryGameLayout_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The primary game UI layout of your game. This widget class represents how to layout, push and display all layers\n * of the UI for a single player. Each player in a split-screen game will receive their own primary game layout.\n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "PrimaryGameLayout.h" }, + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The primary game UI layout of your game. This widget class represents how to layout, push and display all layers\nof the UI for a single player. Each player in a split-screen game will receive their own primary game layout." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Layers_MetaData[] = { + { "Categories", "UI.Layer" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The registered layers for the primary layout.\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/PrimaryGameLayout.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The registered layers for the primary layout." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Layers_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_Layers_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_Layers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPrimaryGameLayout_RegisterLayer, "RegisterLayer" }, // 990337099 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_ValueProp = { "Layers", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UCommonActivatableWidgetContainerBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_Key_KeyProp = { "Layers_Key", nullptr, (EPropertyFlags)0x0100000000080008, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers = { "Layers", nullptr, (EPropertyFlags)0x0144008000002008, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPrimaryGameLayout, Layers), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Layers_MetaData), NewProp_Layers_MetaData) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPrimaryGameLayout_Statics::NewProp_Layers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPrimaryGameLayout_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_CommonGame, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPrimaryGameLayout_Statics::ClassParams = { + &UPrimaryGameLayout::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPrimaryGameLayout_Statics::Class_MetaDataParams), Z_Construct_UClass_UPrimaryGameLayout_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPrimaryGameLayout() +{ + if (!Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton, Z_Construct_UClass_UPrimaryGameLayout_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPrimaryGameLayout.OuterSingleton; +} +template<> COMMONGAME_API UClass* StaticClass() +{ + return UPrimaryGameLayout::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPrimaryGameLayout); +UPrimaryGameLayout::~UPrimaryGameLayout() {} +// End Class UPrimaryGameLayout + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPrimaryGameLayout, UPrimaryGameLayout::StaticClass, TEXT("UPrimaryGameLayout"), &Z_Registration_Info_UClass_UPrimaryGameLayout, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPrimaryGameLayout), 3062876892U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_4023275472(TEXT("/Script/CommonGame"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h new file mode 100644 index 00000000..f36067ed --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/PrimaryGameLayout.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PrimaryGameLayout.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonActivatableWidgetContainerBase; +struct FGameplayTag; +#ifdef COMMONGAME_PrimaryGameLayout_generated_h +#error "PrimaryGameLayout.generated.h already included, missing '#pragma once' in PrimaryGameLayout.h" +#endif +#define COMMONGAME_PrimaryGameLayout_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execRegisterLayer); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPrimaryGameLayout(); \ + friend struct Z_Construct_UClass_UPrimaryGameLayout_Statics; \ +public: \ + DECLARE_CLASS(UPrimaryGameLayout, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/CommonGame"), NO_API) \ + DECLARE_SERIALIZER(UPrimaryGameLayout) + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPrimaryGameLayout(UPrimaryGameLayout&&); \ + UPrimaryGameLayout(const UPrimaryGameLayout&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPrimaryGameLayout); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPrimaryGameLayout); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UPrimaryGameLayout) \ + NO_API virtual ~UPrimaryGameLayout(); + + +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_35_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h_38_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONGAME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonGame_Source_Public_PrimaryGameLayout_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/Timestamp b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/Timestamp new file mode 100644 index 00000000..d011c94b --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/Timestamp @@ -0,0 +1,13 @@ +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonLocalPlayer.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonGameInstance.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonUIExtensions.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\PrimaryGameLayout.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\GameUIManagerSubsystem.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\GameUIPolicy.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonPlayerInputKey.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_PushContentToLayerForPlayer.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_ShowConfirmation.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Messaging\CommonMessagingSubsystem.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Messaging\CommonGameDialog.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\CommonPlayerController.h +E:\Projects\cross_platform\Plugins\CommonGame\Source\Public\Actions\AsyncAction_CreateWidgetAsync.h diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/CommonGame.Shared.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/CommonGame.Shared.rsp new file mode 100644 index 00000000..86a3cae6 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/CommonGame.Shared.rsp @@ -0,0 +1,339 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Private" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealEditor\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Default.rc2.res.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Default.rc2.res.rsp new file mode 100644 index 00000000..7ec8f031 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-CommonGame.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Definitions.CommonGame.h b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Definitions.CommonGame.h new file mode 100644 index 00000000..ff8f8e61 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Definitions.CommonGame.h @@ -0,0 +1,42 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonGame +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef COMMONGAME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "CommonGame" +#define UE_PLUGIN_NAME "CommonGame" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define COMMONGAME_API DLLEXPORT +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API DLLIMPORT +#define ENHANCEDINPUT_API DLLIMPORT +#define COMMONUI_API DLLIMPORT +#define WIDGETCAROUSEL_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API DLLIMPORT +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define AIMODULE_API DLLIMPORT diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/LiveCodingInfo.json b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/LiveCodingInfo.json new file mode 100644 index 00000000..c259d1ce --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/LiveCodingInfo.json @@ -0,0 +1,24 @@ +{ + "RemapUnityFiles": + { + "Module.CommonGame.cpp.obj": [ + "CommonGame.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "AsyncAction_CreateWidgetAsync.cpp.obj", + "AsyncAction_PushContentToLayerForPlayer.cpp.obj", + "AsyncAction_ShowConfirmation.cpp.obj", + "CommonGameInstance.cpp.obj", + "CommonGameModule.cpp.obj", + "CommonLocalPlayer.cpp.obj", + "CommonPlayerController.cpp.obj", + "CommonPlayerInputKey.cpp.obj", + "CommonUIExtensions.cpp.obj", + "GameUIManagerSubsystem.cpp.obj", + "GameUIPolicy.cpp.obj", + "LogCommonGame.cpp.obj", + "CommonGameDialog.cpp.obj", + "CommonMessagingSubsystem.cpp.obj", + "PrimaryGameLayout.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp new file mode 100644 index 00000000..96846e9f --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp @@ -0,0 +1,18 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonGame/Intermediate/Build/Win64/UnrealEditor/Inc/CommonGame/UHT/CommonGame.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_CreateWidgetAsync.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_PushContentToLayerForPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_ShowConfirmation.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonGameInstance.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonGameModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonLocalPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonPlayerController.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonPlayerInputKey.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonUIExtensions.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/GameUIManagerSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/GameUIPolicy.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/LogCommonGame.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Messaging/CommonGameDialog.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Messaging/CommonMessagingSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/PrimaryGameLayout.cpp" diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp.obj.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp.obj.rsp new file mode 100644 index 00000000..b3549f57 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/Module.CommonGame.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Definitions.CommonGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\CommonGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/PerModuleInline.gen.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.dll.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.dll.rsp new file mode 100644 index 00000000..90f3016c --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.dll.rsp @@ -0,0 +1,81 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonInput\UnrealEditor-CommonInput.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUI\UnrealEditor-CommonUI.lib" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\UnrealEditor-CommonUser.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\UnrealEditor-ModularGameplayActors.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor-CommonGame.dll" +/PDB:"E:\Projects\cross_platform\Plugins\CommonGame\Binaries\Win64\UnrealEditor-CommonGame.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.lib.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.lib.rsp new file mode 100644 index 00000000..9c88025f --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonGame/UnrealEditor-CommonGame.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-CommonGame.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Module.CommonGame.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\UnrealEditor-CommonGame.lib" \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/CommonGame.Shared.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/CommonGame.Shared.rsp new file mode 100644 index 00000000..136fc0a2 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/CommonGame.Shared.rsp @@ -0,0 +1,202 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Private" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealGame\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealGame\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealGame\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Definitions.CommonGame.h b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Definitions.CommonGame.h new file mode 100644 index 00000000..16c5bac9 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Definitions.CommonGame.h @@ -0,0 +1,69 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonGame +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef COMMONGAME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "CommonGame" +#define UE_PLUGIN_NAME "CommonGame" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define COMMONGAME_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API +#define ENHANCEDINPUT_API +#define COMMONUI_API +#define WIDGETCAROUSEL_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API +#define MODULARGAMEPLAYACTORS_API +#define MODULARGAMEPLAY_API +#define WITH_RECAST 1 +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define AIMODULE_API +#define GAMEPLAYTASKS_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp new file mode 100644 index 00000000..7c7d0391 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp @@ -0,0 +1,17 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonGame/Intermediate/Build/Win64/UnrealGame/Inc/CommonGame/UHT/CommonGame.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_CreateWidgetAsync.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_PushContentToLayerForPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Actions/AsyncAction_ShowConfirmation.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonGameInstance.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonGameModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonLocalPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonPlayerController.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonPlayerInputKey.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/CommonUIExtensions.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/GameUIManagerSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/GameUIPolicy.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/LogCommonGame.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Messaging/CommonGameDialog.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/Messaging/CommonMessagingSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonGame/Source/Private/PrimaryGameLayout.cpp" diff --git a/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp.obj.rsp b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp.obj.rsp new file mode 100644 index 00000000..986b95d7 --- /dev/null +++ b/Plugins/CommonGame/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonGame/Module.CommonGame.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\Module.CommonGame.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\Definitions.CommonGame.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\Module.CommonGame.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\Module.CommonGame.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\Module.CommonGame.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonGame\CommonGame.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp new file mode 100644 index 00000000..c023cdd3 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLoadingScreen_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonLoadingScreen; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen() + { + if (!Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonLoadingScreen", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x63B81783, + 0xB31294B9, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonLoadingScreen(Z_Construct_UPackage__Script_CommonLoadingScreen, TEXT("/Script/CommonLoadingScreen"), Z_Registration_Info_UPackage__Script_CommonLoadingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x63B81783, 0xB31294B9)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp new file mode 100644 index 00000000..546879f6 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp @@ -0,0 +1,246 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Private/CommonLoadingScreenSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLoadingScreenSettings() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_UCommonLoadingScreenSettings(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_UCommonLoadingScreenSettings_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class UCommonLoadingScreenSettings +void UCommonLoadingScreenSettings::StaticRegisterNativesUCommonLoadingScreenSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonLoadingScreenSettings); +UClass* Z_Construct_UClass_UCommonLoadingScreenSettings_NoRegister() +{ + return UCommonLoadingScreenSettings::StaticClass(); +} +struct Z_Construct_UClass_UCommonLoadingScreenSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Settings for a loading screen system.\n */" }, +#endif + { "DisplayName", "Common Loading Screen" }, + { "IncludePath", "CommonLoadingScreenSettings.h" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Settings for a loading screen system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidget_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The widget to load for the loading screen.\n" }, +#endif + { "MetaClass", "/Script/UMG.UserWidget" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to load for the loading screen." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenZOrder_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The z-order of the loading screen widget in the viewport stack\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The z-order of the loading screen widget in the viewport stack" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldLoadingScreenAdditionalSecs_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How long to hold the loading screen up after other loading finishes (in seconds) to\n// try to give texture streaming a chance to avoid blurriness\n//\n// Note: This is not normally applied in the editor for iteration time, but can be \n// enabled via HoldLoadingScreenAdditionalSecsEvenInEditor\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.HoldLoadingScreenAdditionalSecs" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How long to hold the loading screen up after other loading finishes (in seconds) to\ntry to give texture streaming a chance to avoid blurriness\n\nNote: This is not normally applied in the editor for iteration time, but can be\nenabled via HoldLoadingScreenAdditionalSecsEvenInEditor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenHeartbeatHangDuration_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The interval in seconds beyond which the loading screen is considered permanently hung (if non-zero).\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interval in seconds beyond which the loading screen is considered permanently hung (if non-zero)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogLoadingScreenHeartbeatInterval_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The interval in seconds between each log of what is keeping a loading screen up (if non-zero).\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interval in seconds between each log of what is keeping a loading screen up (if non-zero)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogLoadingScreenReasonEveryFrame_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When true, the reason the loading screen is shown or hidden will be printed to the log every frame.\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.LogLoadingScreenReasonEveryFrame" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When true, the reason the loading screen is shown or hidden will be printed to the log every frame." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceLoadingScreenVisible_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Force the loading screen to be displayed (useful for debugging)\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.AlwaysShow" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force the loading screen to be displayed (useful for debugging)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n// (useful when iterating on loading screens)\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n(useful when iterating on loading screens)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceTickLoadingScreenEvenInEditor_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n// (useful when iterating on loading screens)\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n(useful when iterating on loading screens)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LoadingScreenWidget; + static const UECodeGen_Private::FIntPropertyParams NewProp_LoadingScreenZOrder; + static const UECodeGen_Private::FFloatPropertyParams NewProp_HoldLoadingScreenAdditionalSecs; + static const UECodeGen_Private::FFloatPropertyParams NewProp_LoadingScreenHeartbeatHangDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_LogLoadingScreenHeartbeatInterval; + static void NewProp_LogLoadingScreenReasonEveryFrame_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_LogLoadingScreenReasonEveryFrame; + static void NewProp_ForceLoadingScreenVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceLoadingScreenVisible; + static void NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor; + static void NewProp_ForceTickLoadingScreenEvenInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceTickLoadingScreenEvenInEditor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenWidget = { "LoadingScreenWidget", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenWidget), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidget_MetaData), NewProp_LoadingScreenWidget_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenZOrder = { "LoadingScreenZOrder", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenZOrder), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenZOrder_MetaData), NewProp_LoadingScreenZOrder_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecs = { "HoldLoadingScreenAdditionalSecs", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, HoldLoadingScreenAdditionalSecs), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldLoadingScreenAdditionalSecs_MetaData), NewProp_HoldLoadingScreenAdditionalSecs_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenHeartbeatHangDuration = { "LoadingScreenHeartbeatHangDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenHeartbeatHangDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenHeartbeatHangDuration_MetaData), NewProp_LoadingScreenHeartbeatHangDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenHeartbeatInterval = { "LogLoadingScreenHeartbeatInterval", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LogLoadingScreenHeartbeatInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogLoadingScreenHeartbeatInterval_MetaData), NewProp_LogLoadingScreenHeartbeatInterval_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->LogLoadingScreenReasonEveryFrame = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame = { "LogLoadingScreenReasonEveryFrame", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogLoadingScreenReasonEveryFrame_MetaData), NewProp_LogLoadingScreenReasonEveryFrame_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->ForceLoadingScreenVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible = { "ForceLoadingScreenVisible", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceLoadingScreenVisible_MetaData), NewProp_ForceLoadingScreenVisible_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->HoldLoadingScreenAdditionalSecsEvenInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor = { "HoldLoadingScreenAdditionalSecsEvenInEditor", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData), NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->ForceTickLoadingScreenEvenInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor = { "ForceTickLoadingScreenEvenInEditor", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceTickLoadingScreenEvenInEditor_MetaData), NewProp_ForceTickLoadingScreenEvenInEditor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenWidget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenZOrder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenHeartbeatHangDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenHeartbeatInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::ClassParams = { + &UCommonLoadingScreenSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonLoadingScreenSettings() +{ + if (!Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton, Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return UCommonLoadingScreenSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonLoadingScreenSettings); +UCommonLoadingScreenSettings::~UCommonLoadingScreenSettings() {} +// End Class UCommonLoadingScreenSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonLoadingScreenSettings, UCommonLoadingScreenSettings::StaticClass, TEXT("UCommonLoadingScreenSettings"), &Z_Registration_Info_UClass_UCommonLoadingScreenSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonLoadingScreenSettings), 1127293167U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_2073838885(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h new file mode 100644 index 00000000..01bdceac --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonLoadingScreenSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_CommonLoadingScreenSettings_generated_h +#error "CommonLoadingScreenSettings.generated.h already included, missing '#pragma once' in CommonLoadingScreenSettings.h" +#endif +#define COMMONLOADINGSCREEN_CommonLoadingScreenSettings_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonLoadingScreenSettings(); \ + friend struct Z_Construct_UClass_UCommonLoadingScreenSettings_Statics; \ +public: \ + DECLARE_CLASS(UCommonLoadingScreenSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(UCommonLoadingScreenSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonLoadingScreenSettings(UCommonLoadingScreenSettings&&); \ + UCommonLoadingScreenSettings(const UCommonLoadingScreenSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonLoadingScreenSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonLoadingScreenSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonLoadingScreenSettings) \ + NO_API virtual ~UCommonLoadingScreenSettings(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp new file mode 100644 index 00000000..fd394043 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingProcessInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingProcessInterface() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Interface ULoadingProcessInterface +void ULoadingProcessInterface::StaticRegisterNativesULoadingProcessInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingProcessInterface); +UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister() +{ + return ULoadingProcessInterface::StaticClass(); +} +struct Z_Construct_UClass_ULoadingProcessInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/LoadingProcessInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingProcessInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingProcessInterface_Statics::ClassParams = { + &ULoadingProcessInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingProcessInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingProcessInterface() +{ + if (!Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton, Z_Construct_UClass_ULoadingProcessInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingProcessInterface::StaticClass(); +} +ULoadingProcessInterface::ULoadingProcessInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingProcessInterface); +ULoadingProcessInterface::~ULoadingProcessInterface() {} +// End Interface ULoadingProcessInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingProcessInterface, ULoadingProcessInterface::StaticClass, TEXT("ULoadingProcessInterface"), &Z_Registration_Info_UClass_ULoadingProcessInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingProcessInterface), 3535459782U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_2047328559(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h new file mode 100644 index 00000000..4b3741cc --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingProcessInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_LoadingProcessInterface_generated_h +#error "LoadingProcessInterface.generated.h already included, missing '#pragma once' in LoadingProcessInterface.h" +#endif +#define COMMONLOADINGSCREEN_LoadingProcessInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULoadingProcessInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingProcessInterface(ULoadingProcessInterface&&); \ + ULoadingProcessInterface(const ULoadingProcessInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingProcessInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingProcessInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULoadingProcessInterface) \ + NO_API virtual ~ULoadingProcessInterface(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULoadingProcessInterface(); \ + friend struct Z_Construct_UClass_ULoadingProcessInterface_Statics; \ +public: \ + DECLARE_CLASS(ULoadingProcessInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingProcessInterface) + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILoadingProcessInterface() {} \ +public: \ + typedef ULoadingProcessInterface UClassType; \ + typedef ILoadingProcessInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_11_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp new file mode 100644 index 00000000..ab14fce6 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp @@ -0,0 +1,239 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingProcessTask.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingProcessTask() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessTask(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessTask_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class ULoadingProcessTask Function CreateLoadingScreenProcessTask +struct Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics +{ + struct LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms + { + UObject* WorldContextObject; + FString ShowLoadingScreenReason; + ULoadingProcessTask* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShowLoadingScreenReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FStrPropertyParams NewProp_ShowLoadingScreenReason; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ShowLoadingScreenReason = { "ShowLoadingScreenReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, ShowLoadingScreenReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShowLoadingScreenReason_MetaData), NewProp_ShowLoadingScreenReason_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, ReturnValue), Z_Construct_UClass_ULoadingProcessTask_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ShowLoadingScreenReason, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "CreateLoadingScreenProcessTask", nullptr, nullptr, Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execCreateLoadingScreenProcessTask) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_PROPERTY(FStrProperty,Z_Param_ShowLoadingScreenReason); + P_FINISH; + P_NATIVE_BEGIN; + *(ULoadingProcessTask**)Z_Param__Result=ULoadingProcessTask::CreateLoadingScreenProcessTask(Z_Param_WorldContextObject,Z_Param_ShowLoadingScreenReason); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function CreateLoadingScreenProcessTask + +// Begin Class ULoadingProcessTask Function SetShowLoadingScreenReason +struct Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics +{ + struct LoadingProcessTask_eventSetShowLoadingScreenReason_Parms + { + FString InReason; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::NewProp_InReason = { "InReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventSetShowLoadingScreenReason_Parms, InReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InReason_MetaData), NewProp_InReason_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::NewProp_InReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "SetShowLoadingScreenReason", nullptr, nullptr, Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::LoadingProcessTask_eventSetShowLoadingScreenReason_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::LoadingProcessTask_eventSetShowLoadingScreenReason_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execSetShowLoadingScreenReason) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InReason); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowLoadingScreenReason(Z_Param_InReason); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function SetShowLoadingScreenReason + +// Begin Class ULoadingProcessTask Function Unregister +struct Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "Unregister", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULoadingProcessTask_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execUnregister) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Unregister(); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function Unregister + +// Begin Class ULoadingProcessTask +void ULoadingProcessTask::StaticRegisterNativesULoadingProcessTask() +{ + UClass* Class = ULoadingProcessTask::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateLoadingScreenProcessTask", &ULoadingProcessTask::execCreateLoadingScreenProcessTask }, + { "SetShowLoadingScreenReason", &ULoadingProcessTask::execSetShowLoadingScreenReason }, + { "Unregister", &ULoadingProcessTask::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingProcessTask); +UClass* Z_Construct_UClass_ULoadingProcessTask_NoRegister() +{ + return ULoadingProcessTask::StaticClass(); +} +struct Z_Construct_UClass_ULoadingProcessTask_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "LoadingProcessTask.h" }, + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask, "CreateLoadingScreenProcessTask" }, // 597290332 + { &Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason, "SetShowLoadingScreenReason" }, // 2190313329 + { &Z_Construct_UFunction_ULoadingProcessTask_Unregister, "Unregister" }, // 1806293128 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingProcessTask_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessTask_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULoadingProcessTask_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULoadingProcessTask, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingProcessTask_Statics::ClassParams = { + &ULoadingProcessTask::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessTask_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingProcessTask_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingProcessTask() +{ + if (!Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton, Z_Construct_UClass_ULoadingProcessTask_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingProcessTask::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingProcessTask); +ULoadingProcessTask::~ULoadingProcessTask() {} +// End Class ULoadingProcessTask + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingProcessTask, ULoadingProcessTask::StaticClass, TEXT("ULoadingProcessTask"), &Z_Registration_Info_UClass_ULoadingProcessTask, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingProcessTask), 130069480U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_1509387769(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h new file mode 100644 index 00000000..b601a59f --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingProcessTask.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULoadingProcessTask; +class UObject; +#ifdef COMMONLOADINGSCREEN_LoadingProcessTask_generated_h +#error "LoadingProcessTask.generated.h already included, missing '#pragma once' in LoadingProcessTask.h" +#endif +#define COMMONLOADINGSCREEN_LoadingProcessTask_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetShowLoadingScreenReason); \ + DECLARE_FUNCTION(execUnregister); \ + DECLARE_FUNCTION(execCreateLoadingScreenProcessTask); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULoadingProcessTask(); \ + friend struct Z_Construct_UClass_ULoadingProcessTask_Statics; \ +public: \ + DECLARE_CLASS(ULoadingProcessTask, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingProcessTask) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingProcessTask(ULoadingProcessTask&&); \ + ULoadingProcessTask(const ULoadingProcessTask&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingProcessTask); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingProcessTask); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULoadingProcessTask) \ + NO_API virtual ~ULoadingProcessTask(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp new file mode 100644 index 00000000..b32290d2 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp @@ -0,0 +1,152 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingScreenManager.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingScreenManager() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingScreenManager(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingScreenManager_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class ULoadingScreenManager Function GetDebugReasonForShowingOrHidingLoadingScreen +struct Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics +{ + struct LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "LoadingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of FTickableObjectBase interface\n" }, +#endif + { "ModuleRelativePath", "Public/LoadingScreenManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingScreenManager, nullptr, "GetDebugReasonForShowingOrHidingLoadingScreen", nullptr, nullptr, Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingScreenManager::execGetDebugReasonForShowingOrHidingLoadingScreen) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDebugReasonForShowingOrHidingLoadingScreen(); + P_NATIVE_END; +} +// End Class ULoadingScreenManager Function GetDebugReasonForShowingOrHidingLoadingScreen + +// Begin Class ULoadingScreenManager +void ULoadingScreenManager::StaticRegisterNativesULoadingScreenManager() +{ + UClass* Class = ULoadingScreenManager::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDebugReasonForShowingOrHidingLoadingScreen", &ULoadingScreenManager::execGetDebugReasonForShowingOrHidingLoadingScreen }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingScreenManager); +UClass* Z_Construct_UClass_ULoadingScreenManager_NoRegister() +{ + return ULoadingScreenManager::StaticClass(); +} +struct Z_Construct_UClass_ULoadingScreenManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Handles showing/hiding the loading screen\n */" }, +#endif + { "IncludePath", "LoadingScreenManager.h" }, + { "ModuleRelativePath", "Public/LoadingScreenManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles showing/hiding the loading screen" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen, "GetDebugReasonForShowingOrHidingLoadingScreen" }, // 4096829578 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingScreenManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingScreenManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingScreenManager_Statics::ClassParams = { + &ULoadingScreenManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingScreenManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingScreenManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingScreenManager() +{ + if (!Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton, Z_Construct_UClass_ULoadingScreenManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingScreenManager::StaticClass(); +} +ULoadingScreenManager::ULoadingScreenManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingScreenManager); +ULoadingScreenManager::~ULoadingScreenManager() {} +// End Class ULoadingScreenManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingScreenManager, ULoadingScreenManager::StaticClass, TEXT("ULoadingScreenManager"), &Z_Registration_Info_UClass_ULoadingScreenManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingScreenManager), 3709129475U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_3300064692(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h new file mode 100644 index 00000000..ff6041f4 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingScreenManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_LoadingScreenManager_generated_h +#error "LoadingScreenManager.generated.h already included, missing '#pragma once' in LoadingScreenManager.h" +#endif +#define COMMONLOADINGSCREEN_LoadingScreenManager_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDebugReasonForShowingOrHidingLoadingScreen); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULoadingScreenManager(); \ + friend struct Z_Construct_UClass_ULoadingScreenManager_Statics; \ +public: \ + DECLARE_CLASS(ULoadingScreenManager, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingScreenManager) + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULoadingScreenManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingScreenManager(ULoadingScreenManager&&); \ + ULoadingScreenManager(const ULoadingScreenManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingScreenManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingScreenManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULoadingScreenManager) \ + NO_API virtual ~ULoadingScreenManager(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_25_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/Timestamp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/Timestamp new file mode 100644 index 00000000..2925dfe5 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingProcessTask.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingScreenManager.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingProcessInterface.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Private\CommonLoadingScreenSettings.h diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp new file mode 100644 index 00000000..c023cdd3 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLoadingScreen_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonLoadingScreen; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen() + { + if (!Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonLoadingScreen", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x63B81783, + 0xB31294B9, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonLoadingScreen.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonLoadingScreen(Z_Construct_UPackage__Script_CommonLoadingScreen, TEXT("/Script/CommonLoadingScreen"), Z_Registration_Info_UPackage__Script_CommonLoadingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x63B81783, 0xB31294B9)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp new file mode 100644 index 00000000..546879f6 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.gen.cpp @@ -0,0 +1,246 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Private/CommonLoadingScreenSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonLoadingScreenSettings() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_UCommonLoadingScreenSettings(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_UCommonLoadingScreenSettings_NoRegister(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FSoftClassPath(); +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettingsBackedByCVars(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class UCommonLoadingScreenSettings +void UCommonLoadingScreenSettings::StaticRegisterNativesUCommonLoadingScreenSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonLoadingScreenSettings); +UClass* Z_Construct_UClass_UCommonLoadingScreenSettings_NoRegister() +{ + return UCommonLoadingScreenSettings::StaticClass(); +} +struct Z_Construct_UClass_UCommonLoadingScreenSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Settings for a loading screen system.\n */" }, +#endif + { "DisplayName", "Common Loading Screen" }, + { "IncludePath", "CommonLoadingScreenSettings.h" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Settings for a loading screen system." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenWidget_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The widget to load for the loading screen.\n" }, +#endif + { "MetaClass", "/Script/UMG.UserWidget" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The widget to load for the loading screen." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenZOrder_MetaData[] = { + { "Category", "Display" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The z-order of the loading screen widget in the viewport stack\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The z-order of the loading screen widget in the viewport stack" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldLoadingScreenAdditionalSecs_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How long to hold the loading screen up after other loading finishes (in seconds) to\n// try to give texture streaming a chance to avoid blurriness\n//\n// Note: This is not normally applied in the editor for iteration time, but can be \n// enabled via HoldLoadingScreenAdditionalSecsEvenInEditor\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.HoldLoadingScreenAdditionalSecs" }, + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How long to hold the loading screen up after other loading finishes (in seconds) to\ntry to give texture streaming a chance to avoid blurriness\n\nNote: This is not normally applied in the editor for iteration time, but can be\nenabled via HoldLoadingScreenAdditionalSecsEvenInEditor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LoadingScreenHeartbeatHangDuration_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The interval in seconds beyond which the loading screen is considered permanently hung (if non-zero).\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interval in seconds beyond which the loading screen is considered permanently hung (if non-zero)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogLoadingScreenHeartbeatInterval_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The interval in seconds between each log of what is keeping a loading screen up (if non-zero).\n" }, +#endif + { "ForceUnits", "s" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The interval in seconds between each log of what is keeping a loading screen up (if non-zero)." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogLoadingScreenReasonEveryFrame_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When true, the reason the loading screen is shown or hidden will be printed to the log every frame.\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.LogLoadingScreenReasonEveryFrame" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When true, the reason the loading screen is shown or hidden will be printed to the log every frame." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceLoadingScreenVisible_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Force the loading screen to be displayed (useful for debugging)\n" }, +#endif + { "ConsoleVariable", "CommonLoadingScreen.AlwaysShow" }, + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Force the loading screen to be displayed (useful for debugging)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData[] = { + { "Category", "Debugging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n// (useful when iterating on loading screens)\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n(useful when iterating on loading screens)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ForceTickLoadingScreenEvenInEditor_MetaData[] = { + { "Category", "Configuration" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n// (useful when iterating on loading screens)\n" }, +#endif + { "ModuleRelativePath", "Private/CommonLoadingScreenSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Should we apply the additional HoldLoadingScreenAdditionalSecs delay even in the editor\n(useful when iterating on loading screens)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LoadingScreenWidget; + static const UECodeGen_Private::FIntPropertyParams NewProp_LoadingScreenZOrder; + static const UECodeGen_Private::FFloatPropertyParams NewProp_HoldLoadingScreenAdditionalSecs; + static const UECodeGen_Private::FFloatPropertyParams NewProp_LoadingScreenHeartbeatHangDuration; + static const UECodeGen_Private::FFloatPropertyParams NewProp_LogLoadingScreenHeartbeatInterval; + static void NewProp_LogLoadingScreenReasonEveryFrame_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_LogLoadingScreenReasonEveryFrame; + static void NewProp_ForceLoadingScreenVisible_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceLoadingScreenVisible; + static void NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor; + static void NewProp_ForceTickLoadingScreenEvenInEditor_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ForceTickLoadingScreenEvenInEditor; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenWidget = { "LoadingScreenWidget", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenWidget), Z_Construct_UScriptStruct_FSoftClassPath, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenWidget_MetaData), NewProp_LoadingScreenWidget_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenZOrder = { "LoadingScreenZOrder", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenZOrder), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenZOrder_MetaData), NewProp_LoadingScreenZOrder_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecs = { "HoldLoadingScreenAdditionalSecs", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, HoldLoadingScreenAdditionalSecs), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldLoadingScreenAdditionalSecs_MetaData), NewProp_HoldLoadingScreenAdditionalSecs_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenHeartbeatHangDuration = { "LoadingScreenHeartbeatHangDuration", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LoadingScreenHeartbeatHangDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LoadingScreenHeartbeatHangDuration_MetaData), NewProp_LoadingScreenHeartbeatHangDuration_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenHeartbeatInterval = { "LogLoadingScreenHeartbeatInterval", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonLoadingScreenSettings, LogLoadingScreenHeartbeatInterval), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogLoadingScreenHeartbeatInterval_MetaData), NewProp_LogLoadingScreenHeartbeatInterval_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->LogLoadingScreenReasonEveryFrame = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame = { "LogLoadingScreenReasonEveryFrame", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogLoadingScreenReasonEveryFrame_MetaData), NewProp_LogLoadingScreenReasonEveryFrame_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->ForceLoadingScreenVisible = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible = { "ForceLoadingScreenVisible", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceLoadingScreenVisible_MetaData), NewProp_ForceLoadingScreenVisible_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->HoldLoadingScreenAdditionalSecsEvenInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor = { "HoldLoadingScreenAdditionalSecsEvenInEditor", nullptr, (EPropertyFlags)0x0010000000002001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData), NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor_MetaData) }; +void Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor_SetBit(void* Obj) +{ + ((UCommonLoadingScreenSettings*)Obj)->ForceTickLoadingScreenEvenInEditor = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor = { "ForceTickLoadingScreenEvenInEditor", nullptr, (EPropertyFlags)0x0010000000004001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonLoadingScreenSettings), &Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ForceTickLoadingScreenEvenInEditor_MetaData), NewProp_ForceTickLoadingScreenEvenInEditor_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenWidget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenZOrder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LoadingScreenHeartbeatHangDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenHeartbeatInterval, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_LogLoadingScreenReasonEveryFrame, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceLoadingScreenVisible, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_HoldLoadingScreenAdditionalSecsEvenInEditor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::NewProp_ForceTickLoadingScreenEvenInEditor, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettingsBackedByCVars, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::ClassParams = { + &UCommonLoadingScreenSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonLoadingScreenSettings() +{ + if (!Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton, Z_Construct_UClass_UCommonLoadingScreenSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonLoadingScreenSettings.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return UCommonLoadingScreenSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonLoadingScreenSettings); +UCommonLoadingScreenSettings::~UCommonLoadingScreenSettings() {} +// End Class UCommonLoadingScreenSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonLoadingScreenSettings, UCommonLoadingScreenSettings::StaticClass, TEXT("UCommonLoadingScreenSettings"), &Z_Registration_Info_UClass_UCommonLoadingScreenSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonLoadingScreenSettings), 1127293167U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_2073838885(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h new file mode 100644 index 00000000..01bdceac --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreenSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonLoadingScreenSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_CommonLoadingScreenSettings_generated_h +#error "CommonLoadingScreenSettings.generated.h already included, missing '#pragma once' in CommonLoadingScreenSettings.h" +#endif +#define COMMONLOADINGSCREEN_CommonLoadingScreenSettings_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonLoadingScreenSettings(); \ + friend struct Z_Construct_UClass_UCommonLoadingScreenSettings_Statics; \ +public: \ + DECLARE_CLASS(UCommonLoadingScreenSettings, UDeveloperSettingsBackedByCVars, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(UCommonLoadingScreenSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonLoadingScreenSettings(UCommonLoadingScreenSettings&&); \ + UCommonLoadingScreenSettings(const UCommonLoadingScreenSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonLoadingScreenSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonLoadingScreenSettings); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonLoadingScreenSettings) \ + NO_API virtual ~UCommonLoadingScreenSettings(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Private_CommonLoadingScreenSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp new file mode 100644 index 00000000..fd394043 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingProcessInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingProcessInterface() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Interface ULoadingProcessInterface +void ULoadingProcessInterface::StaticRegisterNativesULoadingProcessInterface() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingProcessInterface); +UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister() +{ + return ULoadingProcessInterface::StaticClass(); +} +struct Z_Construct_UClass_ULoadingProcessInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/LoadingProcessInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingProcessInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingProcessInterface_Statics::ClassParams = { + &ULoadingProcessInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001040A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingProcessInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingProcessInterface() +{ + if (!Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton, Z_Construct_UClass_ULoadingProcessInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingProcessInterface.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingProcessInterface::StaticClass(); +} +ULoadingProcessInterface::ULoadingProcessInterface(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingProcessInterface); +ULoadingProcessInterface::~ULoadingProcessInterface() {} +// End Interface ULoadingProcessInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingProcessInterface, ULoadingProcessInterface::StaticClass, TEXT("ULoadingProcessInterface"), &Z_Registration_Info_UClass_ULoadingProcessInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingProcessInterface), 3535459782U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_2047328559(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h new file mode 100644 index 00000000..4b3741cc --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.generated.h @@ -0,0 +1,72 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingProcessInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_LoadingProcessInterface_generated_h +#error "LoadingProcessInterface.generated.h already included, missing '#pragma once' in LoadingProcessInterface.h" +#endif +#define COMMONLOADINGSCREEN_LoadingProcessInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULoadingProcessInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingProcessInterface(ULoadingProcessInterface&&); \ + ULoadingProcessInterface(const ULoadingProcessInterface&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingProcessInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingProcessInterface); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULoadingProcessInterface) \ + NO_API virtual ~ULoadingProcessInterface(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesULoadingProcessInterface(); \ + friend struct Z_Construct_UClass_ULoadingProcessInterface_Statics; \ +public: \ + DECLARE_CLASS(ULoadingProcessInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingProcessInterface) + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~ILoadingProcessInterface() {} \ +public: \ + typedef ULoadingProcessInterface UClassType; \ + typedef ILoadingProcessInterface ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_11_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h_14_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp new file mode 100644 index 00000000..ab14fce6 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.gen.cpp @@ -0,0 +1,239 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingProcessTask.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingProcessTask() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessInterface_NoRegister(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessTask(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingProcessTask_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class ULoadingProcessTask Function CreateLoadingScreenProcessTask +struct Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics +{ + struct LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms + { + UObject* WorldContextObject; + FString ShowLoadingScreenReason; + ULoadingProcessTask* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + { "WorldContext", "WorldContextObject" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShowLoadingScreenReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FStrPropertyParams NewProp_ShowLoadingScreenReason; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ShowLoadingScreenReason = { "ShowLoadingScreenReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, ShowLoadingScreenReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShowLoadingScreenReason_MetaData), NewProp_ShowLoadingScreenReason_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms, ReturnValue), Z_Construct_UClass_ULoadingProcessTask_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ShowLoadingScreenReason, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "CreateLoadingScreenProcessTask", nullptr, nullptr, Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::LoadingProcessTask_eventCreateLoadingScreenProcessTask_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execCreateLoadingScreenProcessTask) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_PROPERTY(FStrProperty,Z_Param_ShowLoadingScreenReason); + P_FINISH; + P_NATIVE_BEGIN; + *(ULoadingProcessTask**)Z_Param__Result=ULoadingProcessTask::CreateLoadingScreenProcessTask(Z_Param_WorldContextObject,Z_Param_ShowLoadingScreenReason); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function CreateLoadingScreenProcessTask + +// Begin Class ULoadingProcessTask Function SetShowLoadingScreenReason +struct Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics +{ + struct LoadingProcessTask_eventSetShowLoadingScreenReason_Parms + { + FString InReason; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InReason_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_InReason; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::NewProp_InReason = { "InReason", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingProcessTask_eventSetShowLoadingScreenReason_Parms, InReason), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InReason_MetaData), NewProp_InReason_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::NewProp_InReason, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "SetShowLoadingScreenReason", nullptr, nullptr, Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::LoadingProcessTask_eventSetShowLoadingScreenReason_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::LoadingProcessTask_eventSetShowLoadingScreenReason_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execSetShowLoadingScreenReason) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_InReason); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetShowLoadingScreenReason(Z_Param_InReason); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function SetShowLoadingScreenReason + +// Begin Class ULoadingProcessTask Function Unregister +struct Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingProcessTask, nullptr, "Unregister", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_ULoadingProcessTask_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingProcessTask_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingProcessTask::execUnregister) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Unregister(); + P_NATIVE_END; +} +// End Class ULoadingProcessTask Function Unregister + +// Begin Class ULoadingProcessTask +void ULoadingProcessTask::StaticRegisterNativesULoadingProcessTask() +{ + UClass* Class = ULoadingProcessTask::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateLoadingScreenProcessTask", &ULoadingProcessTask::execCreateLoadingScreenProcessTask }, + { "SetShowLoadingScreenReason", &ULoadingProcessTask::execSetShowLoadingScreenReason }, + { "Unregister", &ULoadingProcessTask::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingProcessTask); +UClass* Z_Construct_UClass_ULoadingProcessTask_NoRegister() +{ + return ULoadingProcessTask::StaticClass(); +} +struct Z_Construct_UClass_ULoadingProcessTask_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "LoadingProcessTask.h" }, + { "ModuleRelativePath", "Public/LoadingProcessTask.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULoadingProcessTask_CreateLoadingScreenProcessTask, "CreateLoadingScreenProcessTask" }, // 597290332 + { &Z_Construct_UFunction_ULoadingProcessTask_SetShowLoadingScreenReason, "SetShowLoadingScreenReason" }, // 2190313329 + { &Z_Construct_UFunction_ULoadingProcessTask_Unregister, "Unregister" }, // 1806293128 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingProcessTask_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessTask_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ULoadingProcessTask_Statics::InterfaceParams[] = { + { Z_Construct_UClass_ULoadingProcessInterface_NoRegister, (int32)VTABLE_OFFSET(ULoadingProcessTask, ILoadingProcessInterface), false }, // 3535459782 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingProcessTask_Statics::ClassParams = { + &ULoadingProcessTask::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + UE_ARRAY_COUNT(InterfaceParams), + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingProcessTask_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingProcessTask_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingProcessTask() +{ + if (!Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton, Z_Construct_UClass_ULoadingProcessTask_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingProcessTask.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingProcessTask::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingProcessTask); +ULoadingProcessTask::~ULoadingProcessTask() {} +// End Class ULoadingProcessTask + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingProcessTask, ULoadingProcessTask::StaticClass, TEXT("ULoadingProcessTask"), &Z_Registration_Info_UClass_ULoadingProcessTask, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingProcessTask), 130069480U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_1509387769(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h new file mode 100644 index 00000000..b601a59f --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessTask.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingProcessTask.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class ULoadingProcessTask; +class UObject; +#ifdef COMMONLOADINGSCREEN_LoadingProcessTask_generated_h +#error "LoadingProcessTask.generated.h already included, missing '#pragma once' in LoadingProcessTask.h" +#endif +#define COMMONLOADINGSCREEN_LoadingProcessTask_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execSetShowLoadingScreenReason); \ + DECLARE_FUNCTION(execUnregister); \ + DECLARE_FUNCTION(execCreateLoadingScreenProcessTask); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULoadingProcessTask(); \ + friend struct Z_Construct_UClass_ULoadingProcessTask_Statics; \ +public: \ + DECLARE_CLASS(ULoadingProcessTask, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingProcessTask) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingProcessTask(ULoadingProcessTask&&); \ + ULoadingProcessTask(const ULoadingProcessTask&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingProcessTask); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingProcessTask); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULoadingProcessTask) \ + NO_API virtual ~ULoadingProcessTask(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingProcessTask_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp new file mode 100644 index 00000000..b32290d2 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.gen.cpp @@ -0,0 +1,152 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonLoadingScreen/Public/LoadingScreenManager.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLoadingScreenManager() {} + +// Begin Cross Module References +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingScreenManager(); +COMMONLOADINGSCREEN_API UClass* Z_Construct_UClass_ULoadingScreenManager_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonLoadingScreen(); +// End Cross Module References + +// Begin Class ULoadingScreenManager Function GetDebugReasonForShowingOrHidingLoadingScreen +struct Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics +{ + struct LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "LoadingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of FTickableObjectBase interface\n" }, +#endif + { "ModuleRelativePath", "Public/LoadingScreenManager.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULoadingScreenManager, nullptr, "GetDebugReasonForShowingOrHidingLoadingScreen", nullptr, nullptr, Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::PropPointers), sizeof(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::LoadingScreenManager_eventGetDebugReasonForShowingOrHidingLoadingScreen_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(ULoadingScreenManager::execGetDebugReasonForShowingOrHidingLoadingScreen) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDebugReasonForShowingOrHidingLoadingScreen(); + P_NATIVE_END; +} +// End Class ULoadingScreenManager Function GetDebugReasonForShowingOrHidingLoadingScreen + +// Begin Class ULoadingScreenManager +void ULoadingScreenManager::StaticRegisterNativesULoadingScreenManager() +{ + UClass* Class = ULoadingScreenManager::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDebugReasonForShowingOrHidingLoadingScreen", &ULoadingScreenManager::execGetDebugReasonForShowingOrHidingLoadingScreen }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULoadingScreenManager); +UClass* Z_Construct_UClass_ULoadingScreenManager_NoRegister() +{ + return ULoadingScreenManager::StaticClass(); +} +struct Z_Construct_UClass_ULoadingScreenManager_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Handles showing/hiding the loading screen\n */" }, +#endif + { "IncludePath", "LoadingScreenManager.h" }, + { "ModuleRelativePath", "Public/LoadingScreenManager.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Handles showing/hiding the loading screen" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULoadingScreenManager_GetDebugReasonForShowingOrHidingLoadingScreen, "GetDebugReasonForShowingOrHidingLoadingScreen" }, // 4096829578 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_ULoadingScreenManager_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonLoadingScreen, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingScreenManager_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULoadingScreenManager_Statics::ClassParams = { + &ULoadingScreenManager::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULoadingScreenManager_Statics::Class_MetaDataParams), Z_Construct_UClass_ULoadingScreenManager_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULoadingScreenManager() +{ + if (!Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton, Z_Construct_UClass_ULoadingScreenManager_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULoadingScreenManager.OuterSingleton; +} +template<> COMMONLOADINGSCREEN_API UClass* StaticClass() +{ + return ULoadingScreenManager::StaticClass(); +} +ULoadingScreenManager::ULoadingScreenManager() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULoadingScreenManager); +ULoadingScreenManager::~ULoadingScreenManager() {} +// End Class ULoadingScreenManager + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULoadingScreenManager, ULoadingScreenManager::StaticClass, TEXT("ULoadingScreenManager"), &Z_Registration_Info_UClass_ULoadingScreenManager, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULoadingScreenManager), 3709129475U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_3300064692(TEXT("/Script/CommonLoadingScreen"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h new file mode 100644 index 00000000..ff6041f4 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingScreenManager.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LoadingScreenManager.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONLOADINGSCREEN_LoadingScreenManager_generated_h +#error "LoadingScreenManager.generated.h already included, missing '#pragma once' in LoadingScreenManager.h" +#endif +#define COMMONLOADINGSCREEN_LoadingScreenManager_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDebugReasonForShowingOrHidingLoadingScreen); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULoadingScreenManager(); \ + friend struct Z_Construct_UClass_ULoadingScreenManager_Statics; \ +public: \ + DECLARE_CLASS(ULoadingScreenManager, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonLoadingScreen"), NO_API) \ + DECLARE_SERIALIZER(ULoadingScreenManager) + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULoadingScreenManager(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULoadingScreenManager(ULoadingScreenManager&&); \ + ULoadingScreenManager(const ULoadingScreenManager&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULoadingScreenManager); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULoadingScreenManager); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(ULoadingScreenManager) \ + NO_API virtual ~ULoadingScreenManager(); + + +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_25_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONLOADINGSCREEN_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonLoadingScreen_Source_CommonLoadingScreen_Public_LoadingScreenManager_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/Timestamp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/Timestamp new file mode 100644 index 00000000..05c61f26 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingProcessInterface.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingProcessTask.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public\LoadingScreenManager.h +E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Private\CommonLoadingScreenSettings.h diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp new file mode 100644 index 00000000..358551ed --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp @@ -0,0 +1,303 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "Runtime\PreLoadScreen\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Default.rc2.res.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Default.rc2.res.rsp new file mode 100644 index 00000000..3f922b7b --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-CommonLoadingScreen.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Definitions.CommonLoadingScreen.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Definitions.CommonLoadingScreen.h new file mode 100644 index 00000000..2ab32ab0 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Definitions.CommonLoadingScreen.h @@ -0,0 +1,21 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonLoadingScreen +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef COMMONLOADINGSCREEN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "CommonLoadingScreen" +#define UE_PLUGIN_NAME "CommonLoadingScreen" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define PRELOADSCREEN_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLEXPORT diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/LiveCodingInfo.json b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/LiveCodingInfo.json new file mode 100644 index 00000000..4781a7d9 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/LiveCodingInfo.json @@ -0,0 +1,14 @@ +{ + "RemapUnityFiles": + { + "Module.CommonLoadingScreen.cpp.obj": [ + "CommonLoadingScreen.init.gen.cpp.obj", + "LoadingProcessInterface.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "CommonLoadingScreenModule.cpp.obj", + "CommonLoadingScreenSettings.cpp.obj", + "LoadingScreenManager.cpp.obj", + "LoadingProcessTask.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp new file mode 100644 index 00000000..fca79711 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp @@ -0,0 +1,8 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealEditor/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/CommonLoadingScreenModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/CommonLoadingScreenSettings.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/LoadingScreenManager.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Public/LoadingProcessTask.cpp" diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp new file mode 100644 index 00000000..64ceee2c --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Definitions.CommonLoadingScreen.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\CommonLoadingScreen.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/PerModuleInline.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.dll.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.dll.rsp new file mode 100644 index 00000000..dacbf190 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.dll.rsp @@ -0,0 +1,80 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +/NATVIS:"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\RenderCore\RenderCore.natvis" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PreLoadScreen\UnrealEditor-PreLoadScreen.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\RenderCore\UnrealEditor-RenderCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\DeveloperSettings\UnrealEditor-DeveloperSettings.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonLoadingScreen.dll" +/PDB:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonLoadingScreen.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.lib.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.lib.rsp new file mode 100644 index 00000000..f34c2962 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonLoadingScreen/UnrealEditor-CommonLoadingScreen.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-CommonLoadingScreen.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonLoadingScreen\UnrealEditor-CommonLoadingScreen.lib" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp new file mode 100644 index 00000000..8a797f66 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp @@ -0,0 +1,303 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonStartupLoadingScreen\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MoviePlayer\UHT" +/I "Runtime\MoviePlayer\Public" +/I "Runtime\PreLoadScreen\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Default.rc2.res.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Default.rc2.res.rsp new file mode 100644 index 00000000..7bac2a5f --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-CommonStartupLoadingScreen.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h new file mode 100644 index 00000000..11ec8183 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h @@ -0,0 +1,22 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonStartupLoadingScreen +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef COMMONSTARTUPLOADINGSCREEN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "CommonStartupLoadingScreen" +#define UE_PLUGIN_NAME "CommonLoadingScreen" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define MOVIEPLAYER_API DLLIMPORT +#define PRELOADSCREEN_API DLLIMPORT +#define COMMONSTARTUPLOADINGSCREEN_API DLLEXPORT diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/LiveCodingInfo.json b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/LiveCodingInfo.json new file mode 100644 index 00000000..2f8c8ceb --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/LiveCodingInfo.json @@ -0,0 +1,11 @@ +{ + "RemapUnityFiles": + { + "Module.CommonStartupLoadingScreen.cpp.obj": [ + "PerModuleInline.gen.cpp.obj", + "CommonPreLoadScreen.cpp.obj", + "CommonStartupLoadingScreen.cpp.obj", + "SCommonPreLoadingScreenWidget.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp new file mode 100644 index 00000000..f443ff95 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp @@ -0,0 +1,5 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/CommonPreLoadScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/CommonStartupLoadingScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/SCommonPreLoadingScreenWidget.cpp" diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp new file mode 100644 index 00000000..06c8d870 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Definitions.CommonStartupLoadingScreen.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\CommonStartupLoadingScreen.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/PerModuleInline.gen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.dll.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.dll.rsp new file mode 100644 index 00000000..12477d6e --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.dll.rsp @@ -0,0 +1,77 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\MoviePlayer\UnrealEditor-MoviePlayer.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PreLoadScreen\UnrealEditor-PreLoadScreen.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\DeveloperSettings\UnrealEditor-DeveloperSettings.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonStartupLoadingScreen.dll" +/PDB:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Binaries\Win64\UnrealEditor-CommonStartupLoadingScreen.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.lib.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.lib.rsp new file mode 100644 index 00000000..21d0c262 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonStartupLoadingScreen/UnrealEditor-CommonStartupLoadingScreen.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-CommonStartupLoadingScreen.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonStartupLoadingScreen\UnrealEditor-CommonStartupLoadingScreen.lib" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp new file mode 100644 index 00000000..48fa073e --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/CommonLoadingScreen.Shared.rsp @@ -0,0 +1,149 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "Runtime\PreLoadScreen\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealGame\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Definitions.CommonLoadingScreen.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Definitions.CommonLoadingScreen.h new file mode 100644 index 00000000..3ebc2132 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Definitions.CommonLoadingScreen.h @@ -0,0 +1,37 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonLoadingScreen +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef COMMONLOADINGSCREEN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "CommonLoadingScreen" +#define UE_PLUGIN_NAME "CommonLoadingScreen" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define PRELOADSCREEN_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define COMMONLOADINGSCREEN_API diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp new file mode 100644 index 00000000..0f0faf0e --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp @@ -0,0 +1,7 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/CommonLoadingScreen.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/UnrealGame/Inc/CommonLoadingScreen/UHT/LoadingProcessInterface.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/CommonLoadingScreenModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/CommonLoadingScreenSettings.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Private/LoadingScreenManager.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonLoadingScreen/Public/LoadingProcessTask.cpp" diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp new file mode 100644 index 00000000..1834564a --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonLoadingScreen/Module.CommonLoadingScreen.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\Module.CommonLoadingScreen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\Definitions.CommonLoadingScreen.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\Module.CommonLoadingScreen.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonLoadingScreen\CommonLoadingScreen.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp new file mode 100644 index 00000000..be0e53f7 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/CommonStartupLoadingScreen.Shared.rsp @@ -0,0 +1,133 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonStartupLoadingScreen\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MoviePlayer\UHT" +/I "Runtime\MoviePlayer\Public" +/I "Runtime\PreLoadScreen\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h new file mode 100644 index 00000000..207adfaa --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Definitions.CommonStartupLoadingScreen.h @@ -0,0 +1,22 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonStartupLoadingScreen +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef COMMONSTARTUPLOADINGSCREEN_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "CommonStartupLoadingScreen" +#define UE_PLUGIN_NAME "CommonLoadingScreen" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define MOVIEPLAYER_API +#define PRELOADSCREEN_API +#define COMMONSTARTUPLOADINGSCREEN_API diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp new file mode 100644 index 00000000..9831a838 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp @@ -0,0 +1,4 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/CommonPreLoadScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/CommonStartupLoadingScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonLoadingScreen/Source/CommonStartupLoadingScreen/Private/SCommonPreLoadingScreenWidget.cpp" diff --git a/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp new file mode 100644 index 00000000..5566d192 --- /dev/null +++ b/Plugins/CommonLoadingScreen/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonStartupLoadingScreen/Module.CommonStartupLoadingScreen.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\Definitions.CommonStartupLoadingScreen.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\Module.CommonStartupLoadingScreen.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonStartupLoadingScreen\CommonStartupLoadingScreen.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp new file mode 100644 index 00000000..688341bd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp @@ -0,0 +1,352 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/AsyncAction_CommonUserInitialize.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_CommonUserInitialize() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize(); +COMMONUSER_API UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FInputDeviceId(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UAsyncAction_CommonUserInitialize Function HandleInitializationComplete +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics +{ + struct AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wrapper delegate, will pass on to OnInitializationComplete if appropriate */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wrapper delegate, will pass on to OnInitializationComplete if appropriate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms), &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "HandleInitializationComplete", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execHandleInitializationComplete) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleInitializationComplete(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function HandleInitializationComplete + +// Begin Class UAsyncAction_CommonUserInitialize Function InitializeForLocalPlay +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms + { + UCommonUserSubsystem* Target; + int32 LocalPlayerIndex; + FInputDeviceId PrimaryInputDevice; + bool bCanUseGuestLogin; + UAsyncAction_CommonUserInitialize* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Initializes a local player with the common user system, which includes doing platform-specific login and privilege checks.\n\x09 * When the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09""Desired index of ULocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n\x09 * @param PrimaryInputDevice Primary input device for the user, if invalid will use the system default\n\x09 * @param bCanUseGuestLogin\x09If true, this player can be a guest without a real system net id\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Initializes a local player with the common user system, which includes doing platform-specific login and privilege checks.\nWhen the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\n@param LocalPlayerIndex Desired index of ULocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n@param PrimaryInputDevice Primary input device for the user, if invalid will use the system default\n@param bCanUseGuestLogin If true, this player can be a guest without a real system net id" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, Target), Z_Construct_UClass_UCommonUserSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "InitializeForLocalPlay", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execInitializeForLocalPlay) +{ + P_GET_OBJECT(UCommonUserSubsystem,Z_Param_Target); + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_STRUCT(FInputDeviceId,Z_Param_PrimaryInputDevice); + P_GET_UBOOL(Z_Param_bCanUseGuestLogin); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CommonUserInitialize**)Z_Param__Result=UAsyncAction_CommonUserInitialize::InitializeForLocalPlay(Z_Param_Target,Z_Param_LocalPlayerIndex,Z_Param_PrimaryInputDevice,Z_Param_bCanUseGuestLogin); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function InitializeForLocalPlay + +// Begin Class UAsyncAction_CommonUserInitialize Function LoginForOnlinePlay +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics +{ + struct AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms + { + UCommonUserSubsystem* Target; + int32 LocalPlayerIndex; + UAsyncAction_CommonUserInitialize* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Attempts to log an existing user into the platform-specific online backend to enable full online play\n\x09 * When the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09Index of existing LocalPlayer in Game Instance\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempts to log an existing user into the platform-specific online backend to enable full online play\nWhen the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\n@param LocalPlayerIndex Index of existing LocalPlayer in Game Instance" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, Target), Z_Construct_UClass_UCommonUserSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "LoginForOnlinePlay", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execLoginForOnlinePlay) +{ + P_GET_OBJECT(UCommonUserSubsystem,Z_Param_Target); + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CommonUserInitialize**)Z_Param__Result=UAsyncAction_CommonUserInitialize::LoginForOnlinePlay(Z_Param_Target,Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function LoginForOnlinePlay + +// Begin Class UAsyncAction_CommonUserInitialize +void UAsyncAction_CommonUserInitialize::StaticRegisterNativesUAsyncAction_CommonUserInitialize() +{ + UClass* Class = UAsyncAction_CommonUserInitialize::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleInitializationComplete", &UAsyncAction_CommonUserInitialize::execHandleInitializationComplete }, + { "InitializeForLocalPlay", &UAsyncAction_CommonUserInitialize::execInitializeForLocalPlay }, + { "LoginForOnlinePlay", &UAsyncAction_CommonUserInitialize::execLoginForOnlinePlay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_CommonUserInitialize); +UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister() +{ + return UAsyncAction_CommonUserInitialize::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Async action to handle different functions for initializing users\n */" }, +#endif + { "IncludePath", "AsyncAction_CommonUserInitialize.h" }, + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Async action to handle different functions for initializing users" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnInitializationComplete_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Call when initialization succeeds or fails */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Call when initialization succeeds or fails" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnInitializationComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete, "HandleInitializationComplete" }, // 180504425 + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay, "InitializeForLocalPlay" }, // 4105210674 + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay, "LoginForOnlinePlay" }, // 1021592046 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::NewProp_OnInitializationComplete = { "OnInitializationComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_CommonUserInitialize, OnInitializationComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnInitializationComplete_MetaData), NewProp_OnInitializationComplete_MetaData) }; // 1269951818 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::NewProp_OnInitializationComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::ClassParams = { + &UAsyncAction_CommonUserInitialize::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton, Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UAsyncAction_CommonUserInitialize::StaticClass(); +} +UAsyncAction_CommonUserInitialize::UAsyncAction_CommonUserInitialize(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_CommonUserInitialize); +UAsyncAction_CommonUserInitialize::~UAsyncAction_CommonUserInitialize() {} +// End Class UAsyncAction_CommonUserInitialize + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_CommonUserInitialize, UAsyncAction_CommonUserInitialize::StaticClass, TEXT("UAsyncAction_CommonUserInitialize"), &Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_CommonUserInitialize), 2578566345U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_2273263009(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h new file mode 100644 index 00000000..8e966e51 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AsyncAction_CommonUserInitialize.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_CommonUserInitialize; +class UCommonUserInfo; +class UCommonUserSubsystem; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +struct FInputDeviceId; +#ifdef COMMONUSER_AsyncAction_CommonUserInitialize_generated_h +#error "AsyncAction_CommonUserInitialize.generated.h already included, missing '#pragma once' in AsyncAction_CommonUserInitialize.h" +#endif +#define COMMONUSER_AsyncAction_CommonUserInitialize_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleInitializationComplete); \ + DECLARE_FUNCTION(execLoginForOnlinePlay); \ + DECLARE_FUNCTION(execInitializeForLocalPlay); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_CommonUserInitialize(); \ + friend struct Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_CommonUserInitialize, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_CommonUserInitialize) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_CommonUserInitialize(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_CommonUserInitialize(UAsyncAction_CommonUserInitialize&&); \ + UAsyncAction_CommonUserInitialize(const UAsyncAction_CommonUserInitialize&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_CommonUserInitialize); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_CommonUserInitialize); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_CommonUserInitialize) \ + NO_API virtual ~UAsyncAction_CommonUserInitialize(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp new file mode 100644 index 00000000..537e5a0d --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp @@ -0,0 +1,1961 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonSessionSubsystem.h" +#include "CommonUser/Public/CommonUserTypes.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonSessionSubsystem() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSessionSubsystem(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSessionSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionInformationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_AOnlineBeaconHost_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_APartyBeaconClient_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_APartyBeaconHost_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_UPartyBeaconState_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Enum ECommonSessionOnlineMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonSessionOnlineMode; +static UEnum* ECommonSessionOnlineMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonSessionOnlineMode")); + } + return Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonSessionOnlineMode_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the online features and connectivity that should be used for a game session */" }, +#endif + { "LAN.Name", "ECommonSessionOnlineMode::LAN" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + { "Offline.Name", "ECommonSessionOnlineMode::Offline" }, + { "Online.Name", "ECommonSessionOnlineMode::Online" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the online features and connectivity that should be used for a game session" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonSessionOnlineMode::Offline", (int64)ECommonSessionOnlineMode::Offline }, + { "ECommonSessionOnlineMode::LAN", (int64)ECommonSessionOnlineMode::LAN }, + { "ECommonSessionOnlineMode::Online", (int64)ECommonSessionOnlineMode::Online }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonSessionOnlineMode", + "ECommonSessionOnlineMode", + Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton; +} +// End Enum ECommonSessionOnlineMode + +// Begin Class UCommonSession_HostSessionRequest +void UCommonSession_HostSessionRequest::StaticRegisterNativesUCommonSession_HostSessionRequest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_HostSessionRequest); +UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister() +{ + return UCommonSession_HostSessionRequest::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A request object that stores the parameters used when hosting a gameplay session */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A request object that stores the parameters used when hosting a gameplay session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineMode_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Indicates if the session is a full online session or a different type */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Indicates if the session is a full online session or a different type" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbies_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a player-hosted lobbies if available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a player-hosted lobbies if available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesVoiceChat_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a lobby with enabled voice chat in available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a lobby with enabled voice chat in available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUsePresence_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a session that will appear in the user's presence information */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a session that will appear in the user's presence information" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ModeNameForAdvertisement_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** String used during matchmaking to specify what type of game mode this is */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "String used during matchmaking to specify what type of game mode this is" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapID_MetaData[] = { + { "AllowedTypes", "World" }, + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The map that will be loaded at the start of gameplay, this needs to be a valid Primary Asset top-level map */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The map that will be loaded at the start of gameplay, this needs to be a valid Primary Asset top-level map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtraArgs_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Extra arguments passed as URL options to the game */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra arguments passed as URL options to the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxPlayerCount_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maximum players allowed per gameplay session */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maximum players allowed per gameplay session" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineMode; + static void NewProp_bUseLobbies_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbies; + static void NewProp_bUseLobbiesVoiceChat_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesVoiceChat; + static void NewProp_bUsePresence_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUsePresence; + static const UECodeGen_Private::FStrPropertyParams NewProp_ModeNameForAdvertisement; + static const UECodeGen_Private::FStructPropertyParams NewProp_MapID; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_ValueProp; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtraArgs; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxPlayerCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode = { "OnlineMode", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, OnlineMode), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineMode_MetaData), NewProp_OnlineMode_MetaData) }; // 460294093 +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUseLobbies = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies = { "bUseLobbies", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbies_MetaData), NewProp_bUseLobbies_MetaData) }; +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUseLobbiesVoiceChat = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat = { "bUseLobbiesVoiceChat", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesVoiceChat_MetaData), NewProp_bUseLobbiesVoiceChat_MetaData) }; +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUsePresence = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence = { "bUsePresence", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUsePresence_MetaData), NewProp_bUsePresence_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ModeNameForAdvertisement = { "ModeNameForAdvertisement", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, ModeNameForAdvertisement), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ModeNameForAdvertisement_MetaData), NewProp_ModeNameForAdvertisement_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MapID = { "MapID", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, MapID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapID_MetaData), NewProp_MapID_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_ValueProp = { "ExtraArgs", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_Key_KeyProp = { "ExtraArgs_Key", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs = { "ExtraArgs", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, ExtraArgs), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtraArgs_MetaData), NewProp_ExtraArgs_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MaxPlayerCount = { "MaxPlayerCount", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, MaxPlayerCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxPlayerCount_MetaData), NewProp_MaxPlayerCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ModeNameForAdvertisement, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MapID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MaxPlayerCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::ClassParams = { + &UCommonSession_HostSessionRequest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest() +{ + if (!Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton, Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_HostSessionRequest::StaticClass(); +} +UCommonSession_HostSessionRequest::UCommonSession_HostSessionRequest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_HostSessionRequest); +UCommonSession_HostSessionRequest::~UCommonSession_HostSessionRequest() {} +// End Class UCommonSession_HostSessionRequest + +// Begin Class UCommonSession_SearchResult Function GetDescription +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics +{ + struct CommonSession_SearchResult_eventGetDescription_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns an internal description of the session, not meant to be human readable */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns an internal description of the session, not meant to be human readable" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetDescription_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetDescription", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::CommonSession_SearchResult_eventGetDescription_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::CommonSession_SearchResult_eventGetDescription_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetDescription) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDescription(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetDescription + +// Begin Class UCommonSession_SearchResult Function GetIntSetting +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics +{ + struct CommonSession_SearchResult_eventGetIntSetting_Parms + { + FName Key; + int32 Value; + bool bFoundValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets an arbitrary integer setting, bFoundValue will be false if the setting does not exist */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets an arbitrary integer setting, bFoundValue will be false if the setting does not exist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Key; + static const UECodeGen_Private::FIntPropertyParams NewProp_Value; + static void NewProp_bFoundValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFoundValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Key = { "Key", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetIntSetting_Parms, Key), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetIntSetting_Parms, Value), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue_SetBit(void* Obj) +{ + ((CommonSession_SearchResult_eventGetIntSetting_Parms*)Obj)->bFoundValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue = { "bFoundValue", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonSession_SearchResult_eventGetIntSetting_Parms), &Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Key, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetIntSetting", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::CommonSession_SearchResult_eventGetIntSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::CommonSession_SearchResult_eventGetIntSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetIntSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Key); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_Value); + P_GET_UBOOL_REF(Z_Param_Out_bFoundValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetIntSetting(Z_Param_Key,Z_Param_Out_Value,Z_Param_Out_bFoundValue); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetIntSetting + +// Begin Class UCommonSession_SearchResult Function GetMaxPublicConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics +{ + struct CommonSession_SearchResult_eventGetMaxPublicConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The maximum number of publicly available connections that could be available, including already filled connections */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of publicly available connections that could be available, including already filled connections" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetMaxPublicConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetMaxPublicConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::CommonSession_SearchResult_eventGetMaxPublicConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::CommonSession_SearchResult_eventGetMaxPublicConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetMaxPublicConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetMaxPublicConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetMaxPublicConnections + +// Begin Class UCommonSession_SearchResult Function GetNumOpenPrivateConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics +{ + struct CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The number of private connections that are available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of private connections that are available" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetNumOpenPrivateConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetNumOpenPrivateConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumOpenPrivateConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetNumOpenPrivateConnections + +// Begin Class UCommonSession_SearchResult Function GetNumOpenPublicConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics +{ + struct CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The number of publicly available connections that are available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of publicly available connections that are available" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetNumOpenPublicConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetNumOpenPublicConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumOpenPublicConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetNumOpenPublicConnections + +// Begin Class UCommonSession_SearchResult Function GetPingInMs +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics +{ + struct CommonSession_SearchResult_eventGetPingInMs_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ping to the search result, MAX_QUERY_PING is unreachable */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ping to the search result, MAX_QUERY_PING is unreachable" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetPingInMs_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetPingInMs", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::CommonSession_SearchResult_eventGetPingInMs_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::CommonSession_SearchResult_eventGetPingInMs_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetPingInMs) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetPingInMs(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetPingInMs + +// Begin Class UCommonSession_SearchResult Function GetStringSetting +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics +{ + struct CommonSession_SearchResult_eventGetStringSetting_Parms + { + FName Key; + FString Value; + bool bFoundValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets an arbitrary string setting, bFoundValue will be false if the setting does not exist */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets an arbitrary string setting, bFoundValue will be false if the setting does not exist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Key; + static const UECodeGen_Private::FStrPropertyParams NewProp_Value; + static void NewProp_bFoundValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFoundValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Key = { "Key", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetStringSetting_Parms, Key), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetStringSetting_Parms, Value), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue_SetBit(void* Obj) +{ + ((CommonSession_SearchResult_eventGetStringSetting_Parms*)Obj)->bFoundValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue = { "bFoundValue", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonSession_SearchResult_eventGetStringSetting_Parms), &Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Key, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetStringSetting", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::CommonSession_SearchResult_eventGetStringSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::CommonSession_SearchResult_eventGetStringSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetStringSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Key); + P_GET_PROPERTY_REF(FStrProperty,Z_Param_Out_Value); + P_GET_UBOOL_REF(Z_Param_Out_bFoundValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetStringSetting(Z_Param_Key,Z_Param_Out_Value,Z_Param_Out_bFoundValue); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetStringSetting + +// Begin Class UCommonSession_SearchResult +void UCommonSession_SearchResult::StaticRegisterNativesUCommonSession_SearchResult() +{ + UClass* Class = UCommonSession_SearchResult::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDescription", &UCommonSession_SearchResult::execGetDescription }, + { "GetIntSetting", &UCommonSession_SearchResult::execGetIntSetting }, + { "GetMaxPublicConnections", &UCommonSession_SearchResult::execGetMaxPublicConnections }, + { "GetNumOpenPrivateConnections", &UCommonSession_SearchResult::execGetNumOpenPrivateConnections }, + { "GetNumOpenPublicConnections", &UCommonSession_SearchResult::execGetNumOpenPublicConnections }, + { "GetPingInMs", &UCommonSession_SearchResult::execGetPingInMs }, + { "GetStringSetting", &UCommonSession_SearchResult::execGetStringSetting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_SearchResult); +UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister() +{ + return UCommonSession_SearchResult::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_SearchResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A result object returned from the online system that describes a joinable game session */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A result object returned from the online system that describes a joinable game session" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription, "GetDescription" }, // 608170585 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting, "GetIntSetting" }, // 2928586244 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections, "GetMaxPublicConnections" }, // 272758922 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections, "GetNumOpenPrivateConnections" }, // 3833257865 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections, "GetNumOpenPublicConnections" }, // 1939368779 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs, "GetPingInMs" }, // 2436490444 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting, "GetStringSetting" }, // 2404706193 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonSession_SearchResult_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchResult_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_SearchResult_Statics::ClassParams = { + &UCommonSession_SearchResult::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchResult_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_SearchResult_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_SearchResult() +{ + if (!Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton, Z_Construct_UClass_UCommonSession_SearchResult_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_SearchResult::StaticClass(); +} +UCommonSession_SearchResult::UCommonSession_SearchResult(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_SearchResult); +UCommonSession_SearchResult::~UCommonSession_SearchResult() {} +// End Class UCommonSession_SearchResult + +// Begin Delegate FCommonSession_FindSessionsFinishedDynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms + { + bool bSucceeded; + FText ErrorMessage; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bSucceeded_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSucceeded; + static const UECodeGen_Private::FTextPropertyParams NewProp_ErrorMessage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms*)Obj)->bSucceeded = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded = { "bSucceeded", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_ErrorMessage = { "ErrorMessage", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms, ErrorMessage), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_ErrorMessage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSession_FindSessionsFinishedDynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSession_FindSessionsFinishedDynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSession_FindSessionsFinishedDynamic, bool bSucceeded, const FText& ErrorMessage) +{ + struct _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms + { + bool bSucceeded; + FText ErrorMessage; + }; + _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms Parms; + Parms.bSucceeded=bSucceeded ? true : false; + Parms.ErrorMessage=ErrorMessage; + CommonSession_FindSessionsFinishedDynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSession_FindSessionsFinishedDynamic + +// Begin Class UCommonSession_SearchSessionRequest +void UCommonSession_SearchSessionRequest::StaticRegisterNativesUCommonSession_SearchSessionRequest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_SearchSessionRequest); +UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister() +{ + return UCommonSession_SearchSessionRequest::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Request object describing a session search, this object will be updated once the search has completed */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Request object describing a session search, this object will be updated once the search has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineMode_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Indicates if the this is looking for full online games or a different type like LAN */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Indicates if the this is looking for full online games or a different type like LAN" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbies_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should look for player-hosted lobbies if they are available, false will only search for registered server sessions */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should look for player-hosted lobbies if they are available, false will only search for registered server sessions" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Results_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of all found sessions, will be valid when OnSearchFinished is called */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of all found sessions, will be valid when OnSearchFinished is called" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnSearchFinished_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate called when a session search completes */" }, +#endif + { "DisplayName", "On Search Finished" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate called when a session search completes" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineMode; + static void NewProp_bUseLobbies_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbies; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Results; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnSearchFinished; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode = { "OnlineMode", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, OnlineMode), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineMode_MetaData), NewProp_OnlineMode_MetaData) }; // 460294093 +void Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies_SetBit(void* Obj) +{ + ((UCommonSession_SearchSessionRequest*)Obj)->bUseLobbies = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies = { "bUseLobbies", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_SearchSessionRequest), &Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbies_MetaData), NewProp_bUseLobbies_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results_Inner = { "Results", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, Results), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Results_MetaData), NewProp_Results_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_K2_OnSearchFinished = { "K2_OnSearchFinished", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, K2_OnSearchFinished), Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnSearchFinished_MetaData), NewProp_K2_OnSearchFinished_MetaData) }; // 1036648746 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_K2_OnSearchFinished, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::ClassParams = { + &UCommonSession_SearchSessionRequest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest() +{ + if (!Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton, Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_SearchSessionRequest::StaticClass(); +} +UCommonSession_SearchSessionRequest::UCommonSession_SearchSessionRequest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_SearchSessionRequest); +UCommonSession_SearchSessionRequest::~UCommonSession_SearchSessionRequest() {} +// End Class UCommonSession_SearchSessionRequest + +// Begin Delegate FCommonSessionOnUserRequestedSession_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + UCommonSession_SearchResult* RequestedSession; + FOnlineResultInformation RequestedSessionResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlatformUserId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedSessionResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocalPlatformUserId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RequestedSession; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequestedSessionResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId = { "LocalPlatformUserId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, LocalPlatformUserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlatformUserId_MetaData), NewProp_LocalPlatformUserId_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSession = { "RequestedSession", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, RequestedSession), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSessionResult = { "RequestedSessionResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, RequestedSessionResult), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedSessionResult_MetaData), NewProp_RequestedSessionResult_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSession, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSessionResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnUserRequestedSession_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnUserRequestedSession_Dynamic, FPlatformUserId const& LocalPlatformUserId, UCommonSession_SearchResult* RequestedSession, FOnlineResultInformation const& RequestedSessionResult) +{ + struct _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + UCommonSession_SearchResult* RequestedSession; + FOnlineResultInformation RequestedSessionResult; + }; + _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms Parms; + Parms.LocalPlatformUserId=LocalPlatformUserId; + Parms.RequestedSession=RequestedSession; + Parms.RequestedSessionResult=RequestedSessionResult; + CommonSessionOnUserRequestedSession_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnUserRequestedSession_Dynamic + +// Begin Delegate FCommonSessionOnJoinSessionComplete_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms, Result), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnJoinSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnJoinSessionComplete_Dynamic, FOnlineResultInformation const& Result) +{ + struct _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; + _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms Parms; + Parms.Result=Result; + CommonSessionOnJoinSessionComplete_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnJoinSessionComplete_Dynamic + +// Begin Delegate FCommonSessionOnCreateSessionComplete_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms, Result), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnCreateSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnCreateSessionComplete_Dynamic, FOnlineResultInformation const& Result) +{ + struct _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; + _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms Parms; + Parms.Result=Result; + CommonSessionOnCreateSessionComplete_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnCreateSessionComplete_Dynamic + +// Begin Delegate FCommonSessionOnDestroySessionRequested_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + FName SessionName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlatformUserId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SessionName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocalPlatformUserId; + static const UECodeGen_Private::FNamePropertyParams NewProp_SessionName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId = { "LocalPlatformUserId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms, LocalPlatformUserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlatformUserId_MetaData), NewProp_LocalPlatformUserId_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_SessionName = { "SessionName", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms, SessionName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SessionName_MetaData), NewProp_SessionName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_SessionName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnDestroySessionRequested_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnDestroySessionRequested_Dynamic, FPlatformUserId const& LocalPlatformUserId, FName const& SessionName) +{ + struct _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + FName SessionName; + }; + _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms Parms; + Parms.LocalPlatformUserId=LocalPlatformUserId; + Parms.SessionName=SessionName; + CommonSessionOnDestroySessionRequested_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnDestroySessionRequested_Dynamic + +// Begin Enum ECommonSessionInformationState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonSessionInformationState; +static UEnum* ECommonSessionInformationState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonSessionInformationState")); + } + return Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonSessionInformationState_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Event triggered at different points in the session ecosystem that represent a user-presentable state of the session.\n * This should not be used for online functionality (use OnCreateSessionComplete or OnJoinSessionComplete for those) but for features such as rich presence\n */" }, +#endif + { "InGame.Name", "ECommonSessionInformationState::InGame" }, + { "Matchmaking.Name", "ECommonSessionInformationState::Matchmaking" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + { "OutOfGame.Name", "ECommonSessionInformationState::OutOfGame" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event triggered at different points in the session ecosystem that represent a user-presentable state of the session.\nThis should not be used for online functionality (use OnCreateSessionComplete or OnJoinSessionComplete for those) but for features such as rich presence" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonSessionInformationState::OutOfGame", (int64)ECommonSessionInformationState::OutOfGame }, + { "ECommonSessionInformationState::Matchmaking", (int64)ECommonSessionInformationState::Matchmaking }, + { "ECommonSessionInformationState::InGame", (int64)ECommonSessionInformationState::InGame }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonSessionInformationState", + "ECommonSessionInformationState", + Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionInformationState() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton; +} +// End Enum ECommonSessionInformationState + +// Begin Delegate FCommonSessionOnSessionInformationChanged_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms + { + ECommonSessionInformationState SessionStatus; + FString GameMode; + FString MapName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameMode_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_SessionStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SessionStatus; + static const UECodeGen_Private::FStrPropertyParams NewProp_GameMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_MapName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus = { "SessionStatus", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, SessionStatus), Z_Construct_UEnum_CommonUser_ECommonSessionInformationState, METADATA_PARAMS(0, nullptr) }; // 2137357761 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_GameMode = { "GameMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, GameMode), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameMode_MetaData), NewProp_GameMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_MapName = { "MapName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, MapName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapName_MetaData), NewProp_MapName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_GameMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_MapName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnSessionInformationChanged_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnSessionInformationChanged_Dynamic, ECommonSessionInformationState SessionStatus, const FString& GameMode, const FString& MapName) +{ + struct _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms + { + ECommonSessionInformationState SessionStatus; + FString GameMode; + FString MapName; + }; + _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms Parms; + Parms.SessionStatus=SessionStatus; + Parms.GameMode=GameMode; + Parms.MapName=MapName; + CommonSessionOnSessionInformationChanged_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnSessionInformationChanged_Dynamic + +// Begin Class UCommonSessionSubsystem Function CleanUpSessions +struct Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Clean up any active sessions, called from cases like returning to the main menu */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clean up any active sessions, called from cases like returning to the main menu" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CleanUpSessions", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCleanUpSessions) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CleanUpSessions(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CleanUpSessions + +// Begin Class UCommonSessionSubsystem Function CreateOnlineHostSessionRequest +struct Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics +{ + struct CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms + { + UCommonSession_HostSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a host session request with default options for online games, this can be modified after creation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a host session request with default options for online games, this can be modified after creation" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CreateOnlineHostSessionRequest", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCreateOnlineHostSessionRequest) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_HostSessionRequest**)Z_Param__Result=P_THIS->CreateOnlineHostSessionRequest(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CreateOnlineHostSessionRequest + +// Begin Class UCommonSessionSubsystem Function CreateOnlineSearchSessionRequest +struct Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics +{ + struct CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms + { + UCommonSession_SearchSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a session search object with default options to look for default online games, this can be modified after creation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a session search object with default options to look for default online games, this can be modified after creation" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CreateOnlineSearchSessionRequest", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCreateOnlineSearchSessionRequest) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_SearchSessionRequest**)Z_Param__Result=P_THIS->CreateOnlineSearchSessionRequest(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CreateOnlineSearchSessionRequest + +// Begin Class UCommonSessionSubsystem Function FindSessions +struct Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics +{ + struct CommonSessionSubsystem_eventFindSessions_Parms + { + APlayerController* SearchingPlayer; + UCommonSession_SearchSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Queries online system for the list of joinable sessions matching the search request */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Queries online system for the list of joinable sessions matching the search request" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SearchingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_SearchingPlayer = { "SearchingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventFindSessions_Parms, SearchingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventFindSessions_Parms, Request), Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_SearchingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "FindSessions", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::CommonSessionSubsystem_eventFindSessions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::CommonSessionSubsystem_eventFindSessions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execFindSessions) +{ + P_GET_OBJECT(APlayerController,Z_Param_SearchingPlayer); + P_GET_OBJECT(UCommonSession_SearchSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FindSessions(Z_Param_SearchingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function FindSessions + +// Begin Class UCommonSessionSubsystem Function HostSession +struct Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics +{ + struct CommonSessionSubsystem_eventHostSession_Parms + { + APlayerController* HostingPlayer; + UCommonSession_HostSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a new online game using the session request information, if successful this will start a hard map transfer */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a new online game using the session request information, if successful this will start a hard map transfer" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_HostingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_HostingPlayer = { "HostingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventHostSession_Parms, HostingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventHostSession_Parms, Request), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_HostingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "HostSession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::CommonSessionSubsystem_eventHostSession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::CommonSessionSubsystem_eventHostSession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_HostSession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execHostSession) +{ + P_GET_OBJECT(APlayerController,Z_Param_HostingPlayer); + P_GET_OBJECT(UCommonSession_HostSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HostSession(Z_Param_HostingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function HostSession + +// Begin Class UCommonSessionSubsystem Function JoinSession +struct Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics +{ + struct CommonSessionSubsystem_eventJoinSession_Parms + { + APlayerController* JoiningPlayer; + UCommonSession_SearchResult* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts process to join an existing session, if successful this will connect to the specified server */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts process to join an existing session, if successful this will connect to the specified server" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoiningPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_JoiningPlayer = { "JoiningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventJoinSession_Parms, JoiningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventJoinSession_Parms, Request), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_JoiningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "JoinSession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::CommonSessionSubsystem_eventJoinSession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::CommonSessionSubsystem_eventJoinSession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execJoinSession) +{ + P_GET_OBJECT(APlayerController,Z_Param_JoiningPlayer); + P_GET_OBJECT(UCommonSession_SearchResult,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->JoinSession(Z_Param_JoiningPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function JoinSession + +// Begin Class UCommonSessionSubsystem Function QuickPlaySession +struct Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics +{ + struct CommonSessionSubsystem_eventQuickPlaySession_Parms + { + APlayerController* JoiningOrHostingPlayer; + UCommonSession_HostSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts a process to look for existing sessions or create a new one if no viable sessions are found */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts a process to look for existing sessions or create a new one if no viable sessions are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoiningOrHostingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_JoiningOrHostingPlayer = { "JoiningOrHostingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventQuickPlaySession_Parms, JoiningOrHostingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventQuickPlaySession_Parms, Request), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_JoiningOrHostingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "QuickPlaySession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::CommonSessionSubsystem_eventQuickPlaySession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::CommonSessionSubsystem_eventQuickPlaySession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execQuickPlaySession) +{ + P_GET_OBJECT(APlayerController,Z_Param_JoiningOrHostingPlayer); + P_GET_OBJECT(UCommonSession_HostSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->QuickPlaySession(Z_Param_JoiningOrHostingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function QuickPlaySession + +// Begin Class UCommonSessionSubsystem +void UCommonSessionSubsystem::StaticRegisterNativesUCommonSessionSubsystem() +{ + UClass* Class = UCommonSessionSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CleanUpSessions", &UCommonSessionSubsystem::execCleanUpSessions }, + { "CreateOnlineHostSessionRequest", &UCommonSessionSubsystem::execCreateOnlineHostSessionRequest }, + { "CreateOnlineSearchSessionRequest", &UCommonSessionSubsystem::execCreateOnlineSearchSessionRequest }, + { "FindSessions", &UCommonSessionSubsystem::execFindSessions }, + { "HostSession", &UCommonSessionSubsystem::execHostSession }, + { "JoinSession", &UCommonSessionSubsystem::execJoinSession }, + { "QuickPlaySession", &UCommonSessionSubsystem::execQuickPlaySession }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSessionSubsystem); +UClass* Z_Construct_UClass_UCommonSessionSubsystem_NoRegister() +{ + return UCommonSessionSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonSessionSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Game subsystem that handles requests for hosting and joining online games.\n * One subsystem is created for each game instance and can be accessed from blueprints or C++ code.\n * If a game-specific subclass exists, this base subsystem will not be created.\n */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game subsystem that handles requests for hosting and joining online games.\nOne subsystem is created for each game instance and can be accessed from blueprints or C++ code.\nIf a game-specific subclass exists, this base subsystem will not be created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnUserRequestedSessionEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a local user has accepted an invite */" }, +#endif + { "DisplayName", "On User Requested Session" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a local user has accepted an invite" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnJoinSessionCompleteEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a JoinSession call has completed */" }, +#endif + { "DisplayName", "On Join Session Complete" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a JoinSession call has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnCreateSessionCompleteEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a CreateSession call has completed */" }, +#endif + { "DisplayName", "On Create Session Complete" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a CreateSession call has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnSessionInformationChangedEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when the presentable session information has changed */" }, +#endif + { "DisplayName", "On Session Information Changed" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when the presentable session information has changed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnDestroySessionRequestedEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a platform session destroy has been requested */" }, +#endif + { "DisplayName", "On Leave Session Requested" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a platform session destroy has been requested" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesDefault_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the default value of bUseLobbies for session search and host requests */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the default value of bUseLobbies for session search and host requests" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesVoiceChatDefault_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the default value of bUseLobbiesVoiceChat for session host requests */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the default value of bUseLobbiesVoiceChat for session host requests" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseBeacons_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables reservation beacon flow prior to server travel when creating or joining a game session */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables reservation beacon flow prior to server travel when creating or joining a game session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconHostListener_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** General beacon listener for registering beacons with */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "General beacon listener for registering beacons with" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconHostState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** State of the beacon host */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "State of the beacon host" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconHost_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Beacon controlling access to this game. */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Beacon controlling access to this game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconClient_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Common class object for beacon communication */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Common class object for beacon communication" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconTeamCount_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Number of teams for beacon reservation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of teams for beacon reservation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconTeamSize_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Size of a team for beacon reservation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Size of a team for beacon reservation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconMaxReservations_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Max number of beacon reservations */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Max number of beacon reservations" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnUserRequestedSessionEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnJoinSessionCompleteEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnCreateSessionCompleteEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnSessionInformationChangedEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnDestroySessionRequestedEvent; + static void NewProp_bUseLobbiesDefault_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesDefault; + static void NewProp_bUseLobbiesVoiceChatDefault_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesVoiceChatDefault; + static void NewProp_bUseBeacons_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseBeacons; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_BeaconHostListener; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReservationBeaconHostState; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ReservationBeaconHost; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ReservationBeaconClient; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconTeamCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconTeamSize; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconMaxReservations; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions, "CleanUpSessions" }, // 2106133469 + { &Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest, "CreateOnlineHostSessionRequest" }, // 2791135289 + { &Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest, "CreateOnlineSearchSessionRequest" }, // 4038963213 + { &Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions, "FindSessions" }, // 4268636026 + { &Z_Construct_UFunction_UCommonSessionSubsystem_HostSession, "HostSession" }, // 3567579256 + { &Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession, "JoinSession" }, // 2376255695 + { &Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession, "QuickPlaySession" }, // 3191143596 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnUserRequestedSessionEvent = { "K2_OnUserRequestedSessionEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnUserRequestedSessionEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnUserRequestedSessionEvent_MetaData), NewProp_K2_OnUserRequestedSessionEvent_MetaData) }; // 2188633137 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnJoinSessionCompleteEvent = { "K2_OnJoinSessionCompleteEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnJoinSessionCompleteEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnJoinSessionCompleteEvent_MetaData), NewProp_K2_OnJoinSessionCompleteEvent_MetaData) }; // 1201277882 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnCreateSessionCompleteEvent = { "K2_OnCreateSessionCompleteEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnCreateSessionCompleteEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnCreateSessionCompleteEvent_MetaData), NewProp_K2_OnCreateSessionCompleteEvent_MetaData) }; // 1271285163 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnSessionInformationChangedEvent = { "K2_OnSessionInformationChangedEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnSessionInformationChangedEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnSessionInformationChangedEvent_MetaData), NewProp_K2_OnSessionInformationChangedEvent_MetaData) }; // 2591526047 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnDestroySessionRequestedEvent = { "K2_OnDestroySessionRequestedEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnDestroySessionRequestedEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnDestroySessionRequestedEvent_MetaData), NewProp_K2_OnDestroySessionRequestedEvent_MetaData) }; // 60469737 +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseLobbiesDefault = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault = { "bUseLobbiesDefault", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesDefault_MetaData), NewProp_bUseLobbiesDefault_MetaData) }; +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseLobbiesVoiceChatDefault = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault = { "bUseLobbiesVoiceChatDefault", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesVoiceChatDefault_MetaData), NewProp_bUseLobbiesVoiceChatDefault_MetaData) }; +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseBeacons = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons = { "bUseBeacons", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseBeacons_MetaData), NewProp_bUseBeacons_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconHostListener = { "BeaconHostListener", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconHostListener), Z_Construct_UClass_AOnlineBeaconHost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconHostListener_MetaData), NewProp_BeaconHostListener_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHostState = { "ReservationBeaconHostState", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconHostState), Z_Construct_UClass_UPartyBeaconState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconHostState_MetaData), NewProp_ReservationBeaconHostState_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHost = { "ReservationBeaconHost", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconHost), Z_Construct_UClass_APartyBeaconHost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconHost_MetaData), NewProp_ReservationBeaconHost_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconClient = { "ReservationBeaconClient", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconClient), Z_Construct_UClass_APartyBeaconClient_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconClient_MetaData), NewProp_ReservationBeaconClient_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamCount = { "BeaconTeamCount", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconTeamCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconTeamCount_MetaData), NewProp_BeaconTeamCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamSize = { "BeaconTeamSize", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconTeamSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconTeamSize_MetaData), NewProp_BeaconTeamSize_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconMaxReservations = { "BeaconMaxReservations", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconMaxReservations), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconMaxReservations_MetaData), NewProp_BeaconMaxReservations_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnUserRequestedSessionEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnJoinSessionCompleteEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnCreateSessionCompleteEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnSessionInformationChangedEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnDestroySessionRequestedEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconHostListener, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHostState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHost, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconClient, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconMaxReservations, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSessionSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::ClassParams = { + &UCommonSessionSubsystem::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSessionSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSessionSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton, Z_Construct_UClass_UCommonSessionSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSessionSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSessionSubsystem); +UCommonSessionSubsystem::~UCommonSessionSubsystem() {} +// End Class UCommonSessionSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonSessionOnlineMode_StaticEnum, TEXT("ECommonSessionOnlineMode"), &Z_Registration_Info_UEnum_ECommonSessionOnlineMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 460294093U) }, + { ECommonSessionInformationState_StaticEnum, TEXT("ECommonSessionInformationState"), &Z_Registration_Info_UEnum_ECommonSessionInformationState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2137357761U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonSession_HostSessionRequest, UCommonSession_HostSessionRequest::StaticClass, TEXT("UCommonSession_HostSessionRequest"), &Z_Registration_Info_UClass_UCommonSession_HostSessionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_HostSessionRequest), 162814832U) }, + { Z_Construct_UClass_UCommonSession_SearchResult, UCommonSession_SearchResult::StaticClass, TEXT("UCommonSession_SearchResult"), &Z_Registration_Info_UClass_UCommonSession_SearchResult, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_SearchResult), 2195757788U) }, + { Z_Construct_UClass_UCommonSession_SearchSessionRequest, UCommonSession_SearchSessionRequest::StaticClass, TEXT("UCommonSession_SearchSessionRequest"), &Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_SearchSessionRequest), 2569571193U) }, + { Z_Construct_UClass_UCommonSessionSubsystem, UCommonSessionSubsystem::StaticClass, TEXT("UCommonSessionSubsystem"), &Z_Registration_Info_UClass_UCommonSessionSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSessionSubsystem), 1695913672U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_538841840(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h new file mode 100644 index 00000000..3fd8ee22 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h @@ -0,0 +1,232 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonSessionSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UCommonSession_HostSessionRequest; +class UCommonSession_SearchResult; +class UCommonSession_SearchSessionRequest; +enum class ECommonSessionInformationState : uint8; +struct FOnlineResultInformation; +struct FPlatformUserId; +#ifdef COMMONUSER_CommonSessionSubsystem_generated_h +#error "CommonSessionSubsystem.generated.h already included, missing '#pragma once' in CommonSessionSubsystem.h" +#endif +#define COMMONUSER_CommonSessionSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_HostSessionRequest(); \ + friend struct Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_HostSessionRequest, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_HostSessionRequest) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_HostSessionRequest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_HostSessionRequest(UCommonSession_HostSessionRequest&&); \ + UCommonSession_HostSessionRequest(const UCommonSession_HostSessionRequest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_HostSessionRequest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_HostSessionRequest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_HostSessionRequest) \ + NO_API virtual ~UCommonSession_HostSessionRequest(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_56_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetPingInMs); \ + DECLARE_FUNCTION(execGetMaxPublicConnections); \ + DECLARE_FUNCTION(execGetNumOpenPublicConnections); \ + DECLARE_FUNCTION(execGetNumOpenPrivateConnections); \ + DECLARE_FUNCTION(execGetIntSetting); \ + DECLARE_FUNCTION(execGetStringSetting); \ + DECLARE_FUNCTION(execGetDescription); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_SearchResult(); \ + friend struct Z_Construct_UClass_UCommonSession_SearchResult_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_SearchResult, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_SearchResult) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_SearchResult(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_SearchResult(UCommonSession_SearchResult&&); \ + UCommonSession_SearchResult(const UCommonSession_SearchResult&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_SearchResult); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_SearchResult); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_SearchResult) \ + NO_API virtual ~UCommonSession_SearchResult(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_113_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_163_DELEGATE \ +COMMONUSER_API void FCommonSession_FindSessionsFinishedDynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSession_FindSessionsFinishedDynamic, bool bSucceeded, const FText& ErrorMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_SearchSessionRequest(); \ + friend struct Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_SearchSessionRequest, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_SearchSessionRequest) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_SearchSessionRequest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_SearchSessionRequest(UCommonSession_SearchSessionRequest&&); \ + UCommonSession_SearchSessionRequest(const UCommonSession_SearchSessionRequest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_SearchSessionRequest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_SearchSessionRequest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_SearchSessionRequest) \ + NO_API virtual ~UCommonSession_SearchSessionRequest(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_166_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_208_DELEGATE \ +COMMONUSER_API void FCommonSessionOnUserRequestedSession_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnUserRequestedSession_Dynamic, FPlatformUserId const& LocalPlatformUserId, UCommonSession_SearchResult* RequestedSession, FOnlineResultInformation const& RequestedSessionResult); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_216_DELEGATE \ +COMMONUSER_API void FCommonSessionOnJoinSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnJoinSessionComplete_Dynamic, FOnlineResultInformation const& Result); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_224_DELEGATE \ +COMMONUSER_API void FCommonSessionOnCreateSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnCreateSessionComplete_Dynamic, FOnlineResultInformation const& Result); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_233_DELEGATE \ +COMMONUSER_API void FCommonSessionOnDestroySessionRequested_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnDestroySessionRequested_Dynamic, FPlatformUserId const& LocalPlatformUserId, FName const& SessionName); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_253_DELEGATE \ +COMMONUSER_API void FCommonSessionOnSessionInformationChanged_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnSessionInformationChanged_Dynamic, ECommonSessionInformationState SessionStatus, const FString& GameMode, const FString& MapName); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCleanUpSessions); \ + DECLARE_FUNCTION(execFindSessions); \ + DECLARE_FUNCTION(execJoinSession); \ + DECLARE_FUNCTION(execQuickPlaySession); \ + DECLARE_FUNCTION(execHostSession); \ + DECLARE_FUNCTION(execCreateOnlineSearchSessionRequest); \ + DECLARE_FUNCTION(execCreateOnlineHostSessionRequest); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSessionSubsystem(); \ + friend struct Z_Construct_UClass_UCommonSessionSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonSessionSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSessionSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSessionSubsystem(UCommonSessionSubsystem&&); \ + UCommonSessionSubsystem(const UCommonSessionSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSessionSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSessionSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonSessionSubsystem) \ + NO_API virtual ~UCommonSessionSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_263_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h + + +#define FOREACH_ENUM_ECOMMONSESSIONONLINEMODE(op) \ + op(ECommonSessionOnlineMode::Offline) \ + op(ECommonSessionOnlineMode::LAN) \ + op(ECommonSessionOnlineMode::Online) + +enum class ECommonSessionOnlineMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONSESSIONINFORMATIONSTATE(op) \ + op(ECommonSessionInformationState::OutOfGame) \ + op(ECommonSessionInformationState::Matchmaking) \ + op(ECommonSessionInformationState::InGame) + +enum class ECommonSessionInformationState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUser.init.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUser.init.gen.cpp new file mode 100644 index 00000000..789c4a8b --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUser.init.gen.cpp @@ -0,0 +1,51 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUser_init() {} + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonUser; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonUser() + { + if (!Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonUser", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x8DC30AD0, + 0x7E83CEB6, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonUser(Z_Construct_UPackage__Script_CommonUser, TEXT("/Script/CommonUser"), Z_Registration_Info_UPackage__Script_CommonUser, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x8DC30AD0, 0x7E83CEB6)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp new file mode 100644 index 00000000..6675f1dd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserBasicPresence.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserBasicPresence() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserBasicPresence(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserBasicPresence_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UCommonUserBasicPresence +void UCommonUserBasicPresence::StaticRegisterNativesUCommonUserBasicPresence() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserBasicPresence); +UClass* Z_Construct_UClass_UCommonUserBasicPresence_NoRegister() +{ + return UCommonUserBasicPresence::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserBasicPresence_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This subsystem plugs into the session subsystem and pushes its information to the presence interface.\n * It is not intended to be a full featured rich presence implementation, but can be used as a proof-of-concept\n * for pushing information from the session subsystem to the presence system\n */" }, +#endif + { "IncludePath", "CommonUserBasicPresence.h" }, + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This subsystem plugs into the session subsystem and pushes its information to the presence interface.\nIt is not intended to be a full featured rich presence implementation, but can be used as a proof-of-concept\nfor pushing information from the session subsystem to the presence system" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableSessionsBasedPresence_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** False is a general purpose killswitch to stop this class from pushing presence*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "False is a general purpose killswitch to stop this class from pushing presence" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusInGame_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"In-game\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"In-game\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusMainMenu_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"Main Menu\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"Main Menu\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusMatchmaking_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"Matchmaking\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"Matchmaking\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceKeyGameMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the \"Game Mode\" rich presence entry to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the \"Game Mode\" rich presence entry to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceKeyMapName_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the \"Map Name\" rich presence entry to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the \"Map Name\" rich presence entry to a backend key" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnableSessionsBasedPresence_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableSessionsBasedPresence; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusInGame; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusMainMenu; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusMatchmaking; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceKeyGameMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceKeyMapName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence_SetBit(void* Obj) +{ + ((UCommonUserBasicPresence*)Obj)->bEnableSessionsBasedPresence = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence = { "bEnableSessionsBasedPresence", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserBasicPresence), &Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableSessionsBasedPresence_MetaData), NewProp_bEnableSessionsBasedPresence_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusInGame = { "PresenceStatusInGame", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusInGame), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusInGame_MetaData), NewProp_PresenceStatusInGame_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMainMenu = { "PresenceStatusMainMenu", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusMainMenu), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusMainMenu_MetaData), NewProp_PresenceStatusMainMenu_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMatchmaking = { "PresenceStatusMatchmaking", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusMatchmaking), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusMatchmaking_MetaData), NewProp_PresenceStatusMatchmaking_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyGameMode = { "PresenceKeyGameMode", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceKeyGameMode), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceKeyGameMode_MetaData), NewProp_PresenceKeyGameMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyMapName = { "PresenceKeyMapName", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceKeyMapName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceKeyMapName_MetaData), NewProp_PresenceKeyMapName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusInGame, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMainMenu, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMatchmaking, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyGameMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyMapName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserBasicPresence_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::ClassParams = { + &UCommonUserBasicPresence::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers), + 0, + 0x001000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserBasicPresence_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserBasicPresence() +{ + if (!Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton, Z_Construct_UClass_UCommonUserBasicPresence_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserBasicPresence::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserBasicPresence); +UCommonUserBasicPresence::~UCommonUserBasicPresence() {} +// End Class UCommonUserBasicPresence + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUserBasicPresence, UCommonUserBasicPresence::StaticClass, TEXT("UCommonUserBasicPresence"), &Z_Registration_Info_UClass_UCommonUserBasicPresence, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserBasicPresence), 852304551U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_2004475205(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h new file mode 100644 index 00000000..e7257473 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserBasicPresence.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONUSER_CommonUserBasicPresence_generated_h +#error "CommonUserBasicPresence.generated.h already included, missing '#pragma once' in CommonUserBasicPresence.h" +#endif +#define COMMONUSER_CommonUserBasicPresence_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserBasicPresence(); \ + friend struct Z_Construct_UClass_UCommonUserBasicPresence_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserBasicPresence, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserBasicPresence) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserBasicPresence(UCommonUserBasicPresence&&); \ + UCommonUserBasicPresence(const UCommonUserBasicPresence&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserBasicPresence); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserBasicPresence); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUserBasicPresence) \ + NO_API virtual ~UCommonUserBasicPresence(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserClasses.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp new file mode 100644 index 00000000..eb1b5b12 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp @@ -0,0 +1,2541 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +#include "Runtime/Engine/Classes/GameFramework/OnlineReplStructs.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserSubsystem() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FCommonUserInitializeParams(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FInputDeviceId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FUniqueNetIdRepl(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UCommonUserInfo Function GetCachedPrivilegeResult +struct Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics +{ + struct CommonUserInfo_eventGetCachedPrivilegeResult_Parms + { + ECommonUserPrivilege Privilege; + ECommonUserOnlineContext Context; + ECommonUserPrivilegeResult ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the most recently queries result for a specific privilege, will return unknown if never queried */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the most recently queries result for a specific privilege, will return unknown if never queried" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult, METADATA_PARAMS(0, nullptr) }; // 2681083962 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetCachedPrivilegeResult", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::CommonUserInfo_eventGetCachedPrivilegeResult_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::CommonUserInfo_eventGetCachedPrivilegeResult_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetCachedPrivilegeResult) +{ + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserPrivilegeResult*)Z_Param__Result=P_THIS->GetCachedPrivilegeResult(ECommonUserPrivilege(Z_Param_Privilege),ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetCachedPrivilegeResult + +// Begin Class UCommonUserInfo Function GetDebugString +struct Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics +{ + struct CommonUserInfo_eventGetDebugString_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns an internal debug string for this player */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns an internal debug string for this player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetDebugString_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetDebugString", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::CommonUserInfo_eventGetDebugString_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::CommonUserInfo_eventGetDebugString_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetDebugString() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetDebugString) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDebugString(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetDebugString + +// Begin Class UCommonUserInfo Function GetNetId +struct Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics +{ + struct CommonUserInfo_eventGetNetId_Parms + { + ECommonUserOnlineContext Context; + FUniqueNetIdRepl ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the net id for the given context */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the net id for the given context" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNetId_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNetId_Parms, ReturnValue), Z_Construct_UScriptStruct_FUniqueNetIdRepl, METADATA_PARAMS(0, nullptr) }; // 3410776867 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetNetId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::CommonUserInfo_eventGetNetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::CommonUserInfo_eventGetNetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetNetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetNetId) +{ + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(FUniqueNetIdRepl*)Z_Param__Result=P_THIS->GetNetId(ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetNetId + +// Begin Class UCommonUserInfo Function GetNickname +struct Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics +{ + struct CommonUserInfo_eventGetNickname_Parms + { + ECommonUserOnlineContext Context; + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user's human readable nickname, this will return the value that was cached during UpdateCachedNetId or SetNickname */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user's human readable nickname, this will return the value that was cached during UpdateCachedNetId or SetNickname" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNickname_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNickname_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetNickname", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::CommonUserInfo_eventGetNickname_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::CommonUserInfo_eventGetNickname_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetNickname() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetNickname) +{ + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetNickname(ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetNickname + +// Begin Class UCommonUserInfo Function GetPrivilegeAvailability +struct Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics +{ + struct CommonUserInfo_eventGetPrivilegeAvailability_Parms + { + ECommonUserPrivilege Privilege; + ECommonUserAvailability ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ask about the general availability of a feature, this combines cached results with state */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ask about the general availability of a feature, this combines cached results with state" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetPrivilegeAvailability_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetPrivilegeAvailability_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetPrivilegeAvailability", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::CommonUserInfo_eventGetPrivilegeAvailability_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::CommonUserInfo_eventGetPrivilegeAvailability_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetPrivilegeAvailability) +{ + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserAvailability*)Z_Param__Result=P_THIS->GetPrivilegeAvailability(ECommonUserPrivilege(Z_Param_Privilege)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetPrivilegeAvailability + +// Begin Class UCommonUserInfo Function IsDoingLogin +struct Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics +{ + struct CommonUserInfo_eventIsDoingLogin_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user is in the middle of logging in */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user is in the middle of logging in" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserInfo_eventIsDoingLogin_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserInfo_eventIsDoingLogin_Parms), &Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "IsDoingLogin", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::CommonUserInfo_eventIsDoingLogin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::CommonUserInfo_eventIsDoingLogin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execIsDoingLogin) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsDoingLogin(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function IsDoingLogin + +// Begin Class UCommonUserInfo Function IsLoggedIn +struct Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics +{ + struct CommonUserInfo_eventIsLoggedIn_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user has successfully logged in */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user has successfully logged in" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserInfo_eventIsLoggedIn_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserInfo_eventIsLoggedIn_Parms), &Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "IsLoggedIn", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::CommonUserInfo_eventIsLoggedIn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::CommonUserInfo_eventIsLoggedIn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execIsLoggedIn) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsLoggedIn(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function IsLoggedIn + +// Begin Class UCommonUserInfo Function SetNickname +struct Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics +{ + struct CommonUserInfo_eventSetNickname_Parms + { + FString NewNickname; + ECommonUserOnlineContext Context; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Modify the user's human readable nickname, this can be used when setting up multiple guests but will get overwritten with the platform nickname for real users */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Modify the user's human readable nickname, this can be used when setting up multiple guests but will get overwritten with the platform nickname for real users" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewNickname_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_NewNickname; + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_NewNickname = { "NewNickname", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventSetNickname_Parms, NewNickname), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewNickname_MetaData), NewProp_NewNickname_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventSetNickname_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_NewNickname, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "SetNickname", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::CommonUserInfo_eventSetNickname_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::CommonUserInfo_eventSetNickname_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_SetNickname() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execSetNickname) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_NewNickname); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetNickname(Z_Param_NewNickname,ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function SetNickname + +// Begin Class UCommonUserInfo +void UCommonUserInfo::StaticRegisterNativesUCommonUserInfo() +{ + UClass* Class = UCommonUserInfo::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetCachedPrivilegeResult", &UCommonUserInfo::execGetCachedPrivilegeResult }, + { "GetDebugString", &UCommonUserInfo::execGetDebugString }, + { "GetNetId", &UCommonUserInfo::execGetNetId }, + { "GetNickname", &UCommonUserInfo::execGetNickname }, + { "GetPrivilegeAvailability", &UCommonUserInfo::execGetPrivilegeAvailability }, + { "IsDoingLogin", &UCommonUserInfo::execIsDoingLogin }, + { "IsLoggedIn", &UCommonUserInfo::execIsLoggedIn }, + { "SetNickname", &UCommonUserInfo::execSetNickname }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserInfo); +UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister() +{ + return UCommonUserInfo::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Logical representation of an individual user, one of these will exist for all initialized local players */" }, +#endif + { "IncludePath", "CommonUserSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Logical representation of an individual user, one of these will exist for all initialized local players" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrimaryInputDevice_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary controller input device for this user, they could also have additional secondary devices */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary controller input device for this user, they could also have additional secondary devices" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformUser_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the logical user on the local platform, guest users will point to the primary user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the logical user on the local platform, guest users will point to the primary user" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerIndex_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If this user is assigned a LocalPlayer, this will match the index in the GameInstance localplayers array once it is fully created */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this user is assigned a LocalPlayer, this will match the index in the GameInstance localplayers array once it is fully created" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanBeGuest_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this user is allowed to be a guest */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this user is allowed to be a guest" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsGuest_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this is a guest user attached to primary user 0 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this is a guest user attached to primary user 0" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitializationState_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Overall state of the user's initialization process */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Overall state of the user's initialization process" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_bCanBeGuest_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanBeGuest; + static void NewProp_bIsGuest_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsGuest; + static const UECodeGen_Private::FBytePropertyParams NewProp_InitializationState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InitializationState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult, "GetCachedPrivilegeResult" }, // 1344180757 + { &Z_Construct_UFunction_UCommonUserInfo_GetDebugString, "GetDebugString" }, // 736993682 + { &Z_Construct_UFunction_UCommonUserInfo_GetNetId, "GetNetId" }, // 3232078331 + { &Z_Construct_UFunction_UCommonUserInfo_GetNickname, "GetNickname" }, // 1581097351 + { &Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability, "GetPrivilegeAvailability" }, // 240732393 + { &Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin, "IsDoingLogin" }, // 233956498 + { &Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn, "IsLoggedIn" }, // 4209718805 + { &Z_Construct_UFunction_UCommonUserInfo_SetNickname, "SetNickname" }, // 15699436 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrimaryInputDevice_MetaData), NewProp_PrimaryInputDevice_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformUser_MetaData), NewProp_PlatformUser_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, LocalPlayerIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerIndex_MetaData), NewProp_LocalPlayerIndex_MetaData) }; +void Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest_SetBit(void* Obj) +{ + ((UCommonUserInfo*)Obj)->bCanBeGuest = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest = { "bCanBeGuest", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserInfo), &Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanBeGuest_MetaData), NewProp_bCanBeGuest_MetaData) }; +void Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest_SetBit(void* Obj) +{ + ((UCommonUserInfo*)Obj)->bIsGuest = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest = { "bIsGuest", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserInfo), &Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsGuest_MetaData), NewProp_bIsGuest_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState = { "InitializationState", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, InitializationState), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitializationState_MetaData), NewProp_InitializationState_MetaData) }; // 2275509869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserInfo_Statics::ClassParams = { + &UCommonUserInfo::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserInfo() +{ + if (!Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton, Z_Construct_UClass_UCommonUserInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserInfo::StaticClass(); +} +UCommonUserInfo::UCommonUserInfo(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserInfo); +UCommonUserInfo::~UCommonUserInfo() {} +// End Class UCommonUserInfo + +// Begin Delegate FCommonUserOnInitializeCompleteMulticast +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegates when initialization processes succeed or fail */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegates when initialization processes succeed or fail" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserOnInitializeCompleteMulticast__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserOnInitializeCompleteMulticast_DelegateWrapper(const FMulticastScriptDelegate& CommonUserOnInitializeCompleteMulticast, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext) +{ + struct _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; + _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.bSuccess=bSuccess ? true : false; + Parms.Error=Error; + Parms.RequestedPrivilege=RequestedPrivilege; + Parms.OnlineContext=OnlineContext; + CommonUserOnInitializeCompleteMulticast.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserOnInitializeCompleteMulticast + +// Begin Delegate FCommonUserOnInitializeComplete +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserOnInitializeComplete__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserOnInitializeComplete_DelegateWrapper(const FScriptDelegate& CommonUserOnInitializeComplete, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext) +{ + struct _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; + _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.bSuccess=bSuccess ? true : false; + Parms.Error=Error; + Parms.RequestedPrivilege=RequestedPrivilege; + Parms.OnlineContext=OnlineContext; + CommonUserOnInitializeComplete.ProcessDelegate(&Parms); +} +// End Delegate FCommonUserOnInitializeComplete + +// Begin Delegate FCommonUserHandleSystemMessageDelegate +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate when a system error message is sent, the game can choose to display it to the user using the type tag */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate when a system error message is sent, the game can choose to display it to the user using the type tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_TitleText; + static const UECodeGen_Private::FTextPropertyParams NewProp_BodyText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_TitleText = { "TitleText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, TitleText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_BodyText = { "BodyText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, BodyText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_TitleText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_BodyText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserHandleSystemMessageDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserHandleSystemMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserHandleSystemMessageDelegate, FGameplayTag MessageType, const FText& TitleText, const FText& BodyText) +{ + struct _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; + _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms Parms; + Parms.MessageType=MessageType; + Parms.TitleText=TitleText; + Parms.BodyText=BodyText; + CommonUserHandleSystemMessageDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserHandleSystemMessageDelegate + +// Begin Delegate FCommonUserAvailabilityChangedDelegate +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate when a privilege changes, this can be bound to see if online status/etc changes during gameplay */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate when a privilege changes, this can be bound to see if online status/etc changes during gameplay" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OldAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldAvailability; + static const UECodeGen_Private::FBytePropertyParams NewProp_NewAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewAvailability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability = { "OldAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, OldAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability = { "NewAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, NewAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserAvailabilityChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserAvailabilityChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserAvailabilityChangedDelegate, const UCommonUserInfo* UserInfo, ECommonUserPrivilege Privilege, ECommonUserAvailability OldAvailability, ECommonUserAvailability NewAvailability) +{ + struct _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; + _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.Privilege=Privilege; + Parms.OldAvailability=OldAvailability; + Parms.NewAvailability=NewAvailability; + CommonUserAvailabilityChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserAvailabilityChangedDelegate + +// Begin ScriptStruct FCommonUserInitializeParams +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_CommonUserInitializeParams; +class UScriptStruct* FCommonUserInitializeParams::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FCommonUserInitializeParams, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("CommonUserInitializeParams")); + } + return Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton; +} +template<> COMMONUSER_API UScriptStruct* StaticStruct() +{ + return FCommonUserInitializeParams::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Parameter struct for initialize functions, this would normally be filled in by wrapper functions like async nodes */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Parameter struct for initialize functions, this would normally be filled in by wrapper functions like async nodes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerIndex_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** What local player index to use, can specify one above current if can create player is enabled */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What local player index to use, can specify one above current if can create player is enabled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerId_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated method of selecting platform user and input device */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated method of selecting platform user and input device" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrimaryInputDevice_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary controller input device for this user, they could also have additional secondary devices */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary controller input device for this user, they could also have additional secondary devices" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformUser_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the logical user on the local platform */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the logical user on the local platform" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedPrivilege_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Generally either CanPlay or CanPlayOnline, specifies what level of privilege is required */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Generally either CanPlay or CanPlayOnline, specifies what level of privilege is required" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineContext_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** What specific online context to log in to, game means to login to all relevant ones */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What specific online context to log in to, game means to login to all relevant ones" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCreateNewLocalPlayer_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this is allowed to create a new local player for initial login */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this is allowed to create a new local player for initial login" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanUseGuestLogin_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this player can be a guest user without an actual online presence */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this player can be a guest user without an actual online presence" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSuppressLoginErrors_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if we should not show login errors, the game will be responsible for displaying them */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if we should not show login errors, the game will be responsible for displaying them" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserInitializeComplete_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If bound, call this dynamic delegate at completion of login */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If bound, call this dynamic delegate at completion of login" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FIntPropertyParams NewProp_ControllerId; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static void NewProp_bCanCreateNewLocalPlayer_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCreateNewLocalPlayer; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static void NewProp_bSuppressLoginErrors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressLoginErrors; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_OnUserInitializeComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, LocalPlayerIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerIndex_MetaData), NewProp_LocalPlayerIndex_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_ControllerId = { "ControllerId", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, ControllerId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerId_MetaData), NewProp_ControllerId_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrimaryInputDevice_MetaData), NewProp_PrimaryInputDevice_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformUser_MetaData), NewProp_PlatformUser_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedPrivilege_MetaData), NewProp_RequestedPrivilege_MetaData) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineContext_MetaData), NewProp_OnlineContext_MetaData) }; // 3178011620 +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bCanCreateNewLocalPlayer = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer = { "bCanCreateNewLocalPlayer", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCreateNewLocalPlayer_MetaData), NewProp_bCanCreateNewLocalPlayer_MetaData) }; +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanUseGuestLogin_MetaData), NewProp_bCanUseGuestLogin_MetaData) }; +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bSuppressLoginErrors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors = { "bSuppressLoginErrors", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSuppressLoginErrors_MetaData), NewProp_bSuppressLoginErrors_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnUserInitializeComplete = { "OnUserInitializeComplete", nullptr, (EPropertyFlags)0x0010000000080005, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, OnUserInitializeComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserInitializeComplete_MetaData), NewProp_OnUserInitializeComplete_MetaData) }; // 1840041042 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_ControllerId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnUserInitializeComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + &NewStructOps, + "CommonUserInitializeParams", + Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers), + sizeof(FCommonUserInitializeParams), + alignof(FCommonUserInitializeParams), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000205), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FCommonUserInitializeParams() +{ + if (!Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton, Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton; +} +// End ScriptStruct FCommonUserInitializeParams + +// Begin Class UCommonUserSubsystem Function CancelUserInitialization +struct Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics +{ + struct CommonUserSubsystem_eventCancelUserInitialization_Parms + { + int32 LocalPlayerIndex; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Attempts to cancel an in-progress initialization attempt, this may not work on all platforms but will disable callbacks */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempts to cancel an in-progress initialization attempt, this may not work on all platforms but will disable callbacks" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventCancelUserInitialization_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventCancelUserInitialization_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventCancelUserInitialization_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "CancelUserInitialization", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::CommonUserSubsystem_eventCancelUserInitialization_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::CommonUserSubsystem_eventCancelUserInitialization_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execCancelUserInitialization) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CancelUserInitialization(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function CancelUserInitialization + +// Begin Class UCommonUserSubsystem Function GetLocalPlayerInitializationState +struct Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics +{ + struct CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms + { + int32 LocalPlayerIndex; + ECommonUserInitializationState ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the state of initializing the specified local player */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the state of initializing the specified local player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, METADATA_PARAMS(0, nullptr) }; // 2275509869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetLocalPlayerInitializationState", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetLocalPlayerInitializationState) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserInitializationState*)Z_Param__Result=P_THIS->GetLocalPlayerInitializationState(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetLocalPlayerInitializationState + +// Begin Class UCommonUserSubsystem Function GetMaxLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventGetMaxLocalPlayers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the maximum number of local players */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the maximum number of local players" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetMaxLocalPlayers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetMaxLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::CommonUserSubsystem_eventGetMaxLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::CommonUserSubsystem_eventGetMaxLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetMaxLocalPlayers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetMaxLocalPlayers(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetMaxLocalPlayers + +// Begin Class UCommonUserSubsystem Function GetNumLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventGetNumLocalPlayers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the current number of local players, will always be at least 1 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the current number of local players, will always be at least 1" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetNumLocalPlayers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetNumLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::CommonUserSubsystem_eventGetNumLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::CommonUserSubsystem_eventGetNumLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetNumLocalPlayers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumLocalPlayers(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetNumLocalPlayers + +// Begin Class UCommonUserSubsystem Function GetUserInfoForControllerId +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForControllerId_Parms + { + int32 ControllerId; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated, use InputDeviceId when available */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated, use InputDeviceId when available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ControllerId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ControllerId = { "ControllerId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForControllerId_Parms, ControllerId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForControllerId_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ControllerId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForControllerId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::CommonUserSubsystem_eventGetUserInfoForControllerId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::CommonUserSubsystem_eventGetUserInfoForControllerId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForControllerId) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_ControllerId); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForControllerId(Z_Param_ControllerId); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForControllerId + +// Begin Class UCommonUserSubsystem Function GetUserInfoForInputDevice +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms + { + FInputDeviceId InputDevice; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a given input device. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a given input device. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputDevice; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_InputDevice = { "InputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms, InputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_InputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForInputDevice", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForInputDevice) +{ + P_GET_STRUCT(FInputDeviceId,Z_Param_InputDevice); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForInputDevice(Z_Param_InputDevice); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForInputDevice + +// Begin Class UCommonUserSubsystem Function GetUserInfoForLocalPlayerIndex +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms + { + int32 LocalPlayerIndex; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a given local player index in game instance, 0 is always valid in a running game */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a given local player index in game instance, 0 is always valid in a running game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForLocalPlayerIndex", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForLocalPlayerIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForLocalPlayerIndex(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForLocalPlayerIndex + +// Begin Class UCommonUserSubsystem Function GetUserInfoForPlatformUser +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms + { + FPlatformUserId PlatformUser; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the primary user info for a given platform user index. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the primary user info for a given platform user index. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForPlatformUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForPlatformUser) +{ + P_GET_STRUCT(FPlatformUserId,Z_Param_PlatformUser); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForPlatformUser(Z_Param_PlatformUser); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForPlatformUser + +// Begin Class UCommonUserSubsystem Function GetUserInfoForPlatformUserIndex +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms + { + int32 PlatformUserIndex; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated, use PlatformUserId when available */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated, use PlatformUserId when available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_PlatformUserIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_PlatformUserIndex = { "PlatformUserIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms, PlatformUserIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_PlatformUserIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForPlatformUserIndex", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForPlatformUserIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_PlatformUserIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForPlatformUserIndex(Z_Param_PlatformUserIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForPlatformUserIndex + +// Begin Class UCommonUserSubsystem Function GetUserInfoForUniqueNetId +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms + { + FUniqueNetIdRepl NetId; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a unique net id. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a unique net id. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NetId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NetId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_NetId = { "NetId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms, NetId), Z_Construct_UScriptStruct_FUniqueNetIdRepl, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NetId_MetaData), NewProp_NetId_MetaData) }; // 3410776867 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_NetId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForUniqueNetId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForUniqueNetId) +{ + P_GET_STRUCT_REF(FUniqueNetIdRepl,Z_Param_Out_NetId); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForUniqueNetId(Z_Param_Out_NetId); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForUniqueNetId + +// Begin Class UCommonUserSubsystem Function HasTraitTag +struct Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics +{ + struct CommonUserSubsystem_eventHasTraitTag_Parms + { + FGameplayTag TraitTag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Checks if a specific platform/feature tag is enabled */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Checks if a specific platform/feature tag is enabled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraitTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TraitTag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_TraitTag = { "TraitTag", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventHasTraitTag_Parms, TraitTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraitTag_MetaData), NewProp_TraitTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventHasTraitTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventHasTraitTag_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_TraitTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "HasTraitTag", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::CommonUserSubsystem_eventHasTraitTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::CommonUserSubsystem_eventHasTraitTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execHasTraitTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_TraitTag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasTraitTag(Z_Param_TraitTag); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function HasTraitTag + +// Begin Class UCommonUserSubsystem Function ListenForLoginKeyInput +struct Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics +{ + struct CommonUserSubsystem_eventListenForLoginKeyInput_Parms + { + TArray AnyUserKeys; + TArray NewUserKeys; + FCommonUserInitializeParams Params; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09 * Starts the process of listening for user input for new and existing controllers and logging them.\n\x09 * This will insert a key input handler on the active GameViewportClient and is turned off by calling again with empty key arrays.\n\x09 *\n\x09 * @param AnyUserKeys\x09\x09Listen for these keys for any user, even the default user. Set this for an initial press start screen or empty to disable\n\x09 * @param NewUserKeys\x09\x09Listen for these keys for a new user without a player controller. Set this for splitscreen/local multiplayer or empty to disable\n\x09 * @param Params\x09\x09\x09Params passed to TryToInitializeUser after detecting key input\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the process of listening for user input for new and existing controllers and logging them.\nThis will insert a key input handler on the active GameViewportClient and is turned off by calling again with empty key arrays.\n\n@param AnyUserKeys Listen for these keys for any user, even the default user. Set this for an initial press start screen or empty to disable\n@param NewUserKeys Listen for these keys for a new user without a player controller. Set this for splitscreen/local multiplayer or empty to disable\n@param Params Params passed to TryToInitializeUser after detecting key input" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AnyUserKeys_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AnyUserKeys; + static const UECodeGen_Private::FStructPropertyParams NewProp_NewUserKeys_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NewUserKeys; + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys_Inner = { "AnyUserKeys", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys = { "AnyUserKeys", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, AnyUserKeys), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys_Inner = { "NewUserKeys", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys = { "NewUserKeys", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, NewUserKeys), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, Params), Z_Construct_UScriptStruct_FCommonUserInitializeParams, METADATA_PARAMS(0, nullptr) }; // 82298502 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_Params, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ListenForLoginKeyInput", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::CommonUserSubsystem_eventListenForLoginKeyInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::CommonUserSubsystem_eventListenForLoginKeyInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execListenForLoginKeyInput) +{ + P_GET_TARRAY(FKey,Z_Param_AnyUserKeys); + P_GET_TARRAY(FKey,Z_Param_NewUserKeys); + P_GET_STRUCT(FCommonUserInitializeParams,Z_Param_Params); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ListenForLoginKeyInput(Z_Param_AnyUserKeys,Z_Param_NewUserKeys,Z_Param_Params); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ListenForLoginKeyInput + +// Begin Class UCommonUserSubsystem Function ResetUserState +struct Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Resets the login and initialization state when returning to the main menu after an error */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Resets the login and initialization state when returning to the main menu after an error" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ResetUserState", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execResetUserState) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ResetUserState(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ResetUserState + +// Begin Class UCommonUserSubsystem Function SendSystemMessage +struct Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics +{ + struct CommonUserSubsystem_eventSendSystemMessage_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Send a system message via OnHandleSystemMessage */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a system message via OnHandleSystemMessage" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_TitleText; + static const UECodeGen_Private::FTextPropertyParams NewProp_BodyText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_TitleText = { "TitleText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, TitleText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_BodyText = { "BodyText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, BodyText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_TitleText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_BodyText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "SendSystemMessage", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::CommonUserSubsystem_eventSendSystemMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::CommonUserSubsystem_eventSendSystemMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execSendSystemMessage) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_MessageType); + P_GET_PROPERTY(FTextProperty,Z_Param_TitleText); + P_GET_PROPERTY(FTextProperty,Z_Param_BodyText); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SendSystemMessage(Z_Param_MessageType,Z_Param_TitleText,Z_Param_BodyText); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function SendSystemMessage + +// Begin Class UCommonUserSubsystem Function SetMaxLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventSetMaxLocalPlayers_Parms + { + int32 InMaxLocalPLayers; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the maximum number of local players, will not destroy existing ones */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the maximum number of local players, will not destroy existing ones" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InMaxLocalPLayers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::NewProp_InMaxLocalPLayers = { "InMaxLocalPLayers", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSetMaxLocalPlayers_Parms, InMaxLocalPLayers), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::NewProp_InMaxLocalPLayers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "SetMaxLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::CommonUserSubsystem_eventSetMaxLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::CommonUserSubsystem_eventSetMaxLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execSetMaxLocalPlayers) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InMaxLocalPLayers); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMaxLocalPlayers(Z_Param_InMaxLocalPLayers); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function SetMaxLocalPlayers + +// Begin Class UCommonUserSubsystem Function ShouldWaitForStartInput +struct Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics +{ + struct CommonUserSubsystem_eventShouldWaitForStartInput_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Checks to see if we should display a press start/input confirmation screen at startup. Games can call this or check the trait tags directly */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Checks to see if we should display a press start/input confirmation screen at startup. Games can call this or check the trait tags directly" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventShouldWaitForStartInput_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventShouldWaitForStartInput_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ShouldWaitForStartInput", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::CommonUserSubsystem_eventShouldWaitForStartInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::CommonUserSubsystem_eventShouldWaitForStartInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execShouldWaitForStartInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldWaitForStartInput(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ShouldWaitForStartInput + +// Begin Class UCommonUserSubsystem Function TryToInitializeForLocalPlay +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms + { + int32 LocalPlayerIndex; + FInputDeviceId PrimaryInputDevice; + bool bCanUseGuestLogin; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Tries to start the process of creating or updating a local player, including logging in and creating a player controller.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09""Desired index of LocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n\x09 * @param PrimaryInputDevice The physical controller that should be mapped to this user, will use the default device if invalid\n\x09 * @param bCanUseGuestLogin\x09If true, this player can be a guest without a real Unique Net Id\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tries to start the process of creating or updating a local player, including logging in and creating a player controller.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\n@param LocalPlayerIndex Desired index of LocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n@param PrimaryInputDevice The physical controller that should be mapped to this user, will use the default device if invalid\n@param bCanUseGuestLogin If true, this player can be a guest without a real Unique Net Id\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToInitializeForLocalPlay", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToInitializeForLocalPlay) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_STRUCT(FInputDeviceId,Z_Param_PrimaryInputDevice); + P_GET_UBOOL(Z_Param_bCanUseGuestLogin); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToInitializeForLocalPlay(Z_Param_LocalPlayerIndex,Z_Param_PrimaryInputDevice,Z_Param_bCanUseGuestLogin); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToInitializeForLocalPlay + +// Begin Class UCommonUserSubsystem Function TryToInitializeUser +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics +{ + struct CommonUserSubsystem_eventTryToInitializeUser_Parms + { + FCommonUserInitializeParams Params; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Starts a general user login and initialization process, using the params structure to determine what to log in to.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 * AsyncAction_CommonUserInitialize provides several wrapper functions for using this in an Event graph.\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts a general user login and initialization process, using the params structure to determine what to log in to.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\nAsyncAction_CommonUserInitialize provides several wrapper functions for using this in an Event graph.\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeUser_Parms, Params), Z_Construct_UScriptStruct_FCommonUserInitializeParams, METADATA_PARAMS(0, nullptr) }; // 82298502 +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeUser_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_Params, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToInitializeUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::CommonUserSubsystem_eventTryToInitializeUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::CommonUserSubsystem_eventTryToInitializeUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToInitializeUser) +{ + P_GET_STRUCT(FCommonUserInitializeParams,Z_Param_Params); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToInitializeUser(Z_Param_Params); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToInitializeUser + +// Begin Class UCommonUserSubsystem Function TryToLoginForOnlinePlay +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics +{ + struct CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms + { + int32 LocalPlayerIndex; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Starts the process of taking a locally logged in user and doing a full online login including account permission checks.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09Index of existing LocalPlayer in Game Instance\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the process of taking a locally logged in user and doing a full online login including account permission checks.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\n@param LocalPlayerIndex Index of existing LocalPlayer in Game Instance\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToLoginForOnlinePlay", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToLoginForOnlinePlay) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToLoginForOnlinePlay(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToLoginForOnlinePlay + +// Begin Class UCommonUserSubsystem Function TryToLogOutUser +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics +{ + struct CommonUserSubsystem_eventTryToLogOutUser_Parms + { + int32 LocalPlayerIndex; + bool bDestroyPlayer; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Logs a player out of any online systems, and optionally destroys the player entirely if it's not the first one */" }, +#endif + { "CPP_Default_bDestroyPlayer", "false" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Logs a player out of any online systems, and optionally destroys the player entirely if it's not the first one" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_bDestroyPlayer_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDestroyPlayer; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToLogOutUser_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLogOutUser_Parms*)Obj)->bDestroyPlayer = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer = { "bDestroyPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLogOutUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer_SetBit, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLogOutUser_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLogOutUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToLogOutUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::CommonUserSubsystem_eventTryToLogOutUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::CommonUserSubsystem_eventTryToLogOutUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToLogOutUser) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_UBOOL(Z_Param_bDestroyPlayer); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToLogOutUser(Z_Param_LocalPlayerIndex,Z_Param_bDestroyPlayer); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToLogOutUser + +// Begin Class UCommonUserSubsystem +void UCommonUserSubsystem::StaticRegisterNativesUCommonUserSubsystem() +{ + UClass* Class = UCommonUserSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CancelUserInitialization", &UCommonUserSubsystem::execCancelUserInitialization }, + { "GetLocalPlayerInitializationState", &UCommonUserSubsystem::execGetLocalPlayerInitializationState }, + { "GetMaxLocalPlayers", &UCommonUserSubsystem::execGetMaxLocalPlayers }, + { "GetNumLocalPlayers", &UCommonUserSubsystem::execGetNumLocalPlayers }, + { "GetUserInfoForControllerId", &UCommonUserSubsystem::execGetUserInfoForControllerId }, + { "GetUserInfoForInputDevice", &UCommonUserSubsystem::execGetUserInfoForInputDevice }, + { "GetUserInfoForLocalPlayerIndex", &UCommonUserSubsystem::execGetUserInfoForLocalPlayerIndex }, + { "GetUserInfoForPlatformUser", &UCommonUserSubsystem::execGetUserInfoForPlatformUser }, + { "GetUserInfoForPlatformUserIndex", &UCommonUserSubsystem::execGetUserInfoForPlatformUserIndex }, + { "GetUserInfoForUniqueNetId", &UCommonUserSubsystem::execGetUserInfoForUniqueNetId }, + { "HasTraitTag", &UCommonUserSubsystem::execHasTraitTag }, + { "ListenForLoginKeyInput", &UCommonUserSubsystem::execListenForLoginKeyInput }, + { "ResetUserState", &UCommonUserSubsystem::execResetUserState }, + { "SendSystemMessage", &UCommonUserSubsystem::execSendSystemMessage }, + { "SetMaxLocalPlayers", &UCommonUserSubsystem::execSetMaxLocalPlayers }, + { "ShouldWaitForStartInput", &UCommonUserSubsystem::execShouldWaitForStartInput }, + { "TryToInitializeForLocalPlay", &UCommonUserSubsystem::execTryToInitializeForLocalPlay }, + { "TryToInitializeUser", &UCommonUserSubsystem::execTryToInitializeUser }, + { "TryToLoginForOnlinePlay", &UCommonUserSubsystem::execTryToLoginForOnlinePlay }, + { "TryToLogOutUser", &UCommonUserSubsystem::execTryToLogOutUser }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserSubsystem); +UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister() +{ + return UCommonUserSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Game subsystem that handles queries and changes to user identity and login status.\n * One subsystem is created for each game instance and can be accessed from blueprints or C++ code.\n * If a game-specific subclass exists, this base subsystem will not be created.\n */" }, +#endif + { "IncludePath", "CommonUserSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game subsystem that handles queries and changes to user identity and login status.\nOne subsystem is created for each game instance and can be accessed from blueprints or C++ code.\nIf a game-specific subclass exists, this base subsystem will not be created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserInitializeComplete_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when any requested initialization request completes */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when any requested initialization request completes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnHandleSystemMessage_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when the system sends an error/warning message */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when the system sends an error/warning message" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserPrivilegeChanged_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when privilege availability changes for a user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when privilege availability changes for a user" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalUserInfos_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Information about each local user, from local player index to user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Information about each local user, from local player index to user" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnUserInitializeComplete; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnHandleSystemMessage; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnUserPrivilegeChanged; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalUserInfos_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalUserInfos_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_LocalUserInfos; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization, "CancelUserInitialization" }, // 2471004610 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState, "GetLocalPlayerInitializationState" }, // 2898070656 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers, "GetMaxLocalPlayers" }, // 1904133090 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers, "GetNumLocalPlayers" }, // 2501999304 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId, "GetUserInfoForControllerId" }, // 3557370159 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice, "GetUserInfoForInputDevice" }, // 465978853 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex, "GetUserInfoForLocalPlayerIndex" }, // 2434831049 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser, "GetUserInfoForPlatformUser" }, // 3985798498 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex, "GetUserInfoForPlatformUserIndex" }, // 162766739 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId, "GetUserInfoForUniqueNetId" }, // 1182850125 + { &Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag, "HasTraitTag" }, // 2883627037 + { &Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput, "ListenForLoginKeyInput" }, // 1636995381 + { &Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState, "ResetUserState" }, // 1276895457 + { &Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage, "SendSystemMessage" }, // 3109149110 + { &Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers, "SetMaxLocalPlayers" }, // 3838433050 + { &Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput, "ShouldWaitForStartInput" }, // 2738167107 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay, "TryToInitializeForLocalPlay" }, // 193036832 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser, "TryToInitializeUser" }, // 2097638962 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay, "TryToLoginForOnlinePlay" }, // 3726815099 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser, "TryToLogOutUser" }, // 597497870 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserInitializeComplete = { "OnUserInitializeComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnUserInitializeComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserInitializeComplete_MetaData), NewProp_OnUserInitializeComplete_MetaData) }; // 1269951818 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnHandleSystemMessage = { "OnHandleSystemMessage", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnHandleSystemMessage), Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnHandleSystemMessage_MetaData), NewProp_OnHandleSystemMessage_MetaData) }; // 2637707547 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserPrivilegeChanged = { "OnUserPrivilegeChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnUserPrivilegeChanged), Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserPrivilegeChanged_MetaData), NewProp_OnUserPrivilegeChanged_MetaData) }; // 2248030001 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_ValueProp = { "LocalUserInfos", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_Key_KeyProp = { "LocalUserInfos_Key", nullptr, (EPropertyFlags)0x0100000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos = { "LocalUserInfos", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, LocalUserInfos), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalUserInfos_MetaData), NewProp_LocalUserInfos_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserInitializeComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnHandleSystemMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserPrivilegeChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserSubsystem_Statics::ClassParams = { + &UCommonUserSubsystem::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton, Z_Construct_UClass_UCommonUserSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserSubsystem); +UCommonUserSubsystem::~UCommonUserSubsystem() {} +// End Class UCommonUserSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FCommonUserInitializeParams::StaticStruct, Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewStructOps, TEXT("CommonUserInitializeParams"), &Z_Registration_Info_UScriptStruct_CommonUserInitializeParams, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FCommonUserInitializeParams), 82298502U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUserInfo, UCommonUserInfo::StaticClass, TEXT("UCommonUserInfo"), &Z_Registration_Info_UClass_UCommonUserInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserInfo), 3778296232U) }, + { Z_Construct_UClass_UCommonUserSubsystem, UCommonUserSubsystem::StaticClass, TEXT("UCommonUserSubsystem"), &Z_Registration_Info_UClass_UCommonUserSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserSubsystem), 4027843855U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_3968755022(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h new file mode 100644 index 00000000..3a6ab9fd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h @@ -0,0 +1,162 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserAvailability : uint8; +enum class ECommonUserInitializationState : uint8; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +enum class ECommonUserPrivilegeResult : uint8; +struct FCommonUserInitializeParams; +struct FGameplayTag; +struct FInputDeviceId; +struct FKey; +struct FPlatformUserId; +struct FUniqueNetIdRepl; +#ifdef COMMONUSER_CommonUserSubsystem_generated_h +#error "CommonUserSubsystem.generated.h already included, missing '#pragma once' in CommonUserSubsystem.h" +#endif +#define COMMONUSER_CommonUserSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDebugString); \ + DECLARE_FUNCTION(execSetNickname); \ + DECLARE_FUNCTION(execGetNickname); \ + DECLARE_FUNCTION(execGetNetId); \ + DECLARE_FUNCTION(execGetPrivilegeAvailability); \ + DECLARE_FUNCTION(execGetCachedPrivilegeResult); \ + DECLARE_FUNCTION(execIsDoingLogin); \ + DECLARE_FUNCTION(execIsLoggedIn); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserInfo(); \ + friend struct Z_Construct_UClass_UCommonUserInfo_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserInfo, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserInfo) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonUserInfo(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserInfo(UCommonUserInfo&&); \ + UCommonUserInfo(const UCommonUserInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonUserInfo) \ + NO_API virtual ~UCommonUserInfo(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_46_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_148_DELEGATE \ +COMMONUSER_API void FCommonUserOnInitializeCompleteMulticast_DelegateWrapper(const FMulticastScriptDelegate& CommonUserOnInitializeCompleteMulticast, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_149_DELEGATE \ +COMMONUSER_API void FCommonUserOnInitializeComplete_DelegateWrapper(const FScriptDelegate& CommonUserOnInitializeComplete, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_152_DELEGATE \ +COMMONUSER_API void FCommonUserHandleSystemMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserHandleSystemMessageDelegate, FGameplayTag MessageType, const FText& TitleText, const FText& BodyText); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_155_DELEGATE \ +COMMONUSER_API void FCommonUserAvailabilityChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserAvailabilityChangedDelegate, const UCommonUserInfo* UserInfo, ECommonUserPrivilege Privilege, ECommonUserAvailability OldAvailability, ECommonUserAvailability NewAvailability); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_162_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> COMMONUSER_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execShouldWaitForStartInput); \ + DECLARE_FUNCTION(execHasTraitTag); \ + DECLARE_FUNCTION(execResetUserState); \ + DECLARE_FUNCTION(execTryToLogOutUser); \ + DECLARE_FUNCTION(execCancelUserInitialization); \ + DECLARE_FUNCTION(execListenForLoginKeyInput); \ + DECLARE_FUNCTION(execTryToInitializeUser); \ + DECLARE_FUNCTION(execTryToLoginForOnlinePlay); \ + DECLARE_FUNCTION(execTryToInitializeForLocalPlay); \ + DECLARE_FUNCTION(execGetUserInfoForInputDevice); \ + DECLARE_FUNCTION(execGetUserInfoForControllerId); \ + DECLARE_FUNCTION(execGetUserInfoForUniqueNetId); \ + DECLARE_FUNCTION(execGetUserInfoForPlatformUser); \ + DECLARE_FUNCTION(execGetUserInfoForPlatformUserIndex); \ + DECLARE_FUNCTION(execGetUserInfoForLocalPlayerIndex); \ + DECLARE_FUNCTION(execGetLocalPlayerInitializationState); \ + DECLARE_FUNCTION(execGetNumLocalPlayers); \ + DECLARE_FUNCTION(execGetMaxLocalPlayers); \ + DECLARE_FUNCTION(execSetMaxLocalPlayers); \ + DECLARE_FUNCTION(execSendSystemMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserSubsystem(); \ + friend struct Z_Construct_UClass_UCommonUserSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserSubsystem(UCommonUserSubsystem&&); \ + UCommonUserSubsystem(const UCommonUserSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUserSubsystem) \ + NO_API virtual ~UCommonUserSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_210_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp new file mode 100644 index 00000000..ce7ba7a3 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp @@ -0,0 +1,565 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserTypes() {} + +// Begin Cross Module References +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Enum ECommonUserOnlineContext +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserOnlineContext; +static UEnum* ECommonUserOnlineContext_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserOnlineContext")); + } + return Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserOnlineContext_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying where and how to run online queries */" }, +#endif + { "Default.Comment", "/** The default engine online system, this will always exist and will be the same as either Service or Platform */" }, + { "Default.Name", "ECommonUserOnlineContext::Default" }, + { "Default.ToolTip", "The default engine online system, this will always exist and will be the same as either Service or Platform" }, + { "Game.Comment", "/** Called from game code, this uses the default system but with special handling that could merge results from multiple contexts */" }, + { "Game.Name", "ECommonUserOnlineContext::Game" }, + { "Game.ToolTip", "Called from game code, this uses the default system but with special handling that could merge results from multiple contexts" }, + { "Invalid.Comment", "/** Invalid system */" }, + { "Invalid.Name", "ECommonUserOnlineContext::Invalid" }, + { "Invalid.ToolTip", "Invalid system" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "Platform.Comment", "/** Explicitly ask for the platform system, which may not exist */" }, + { "Platform.Name", "ECommonUserOnlineContext::Platform" }, + { "Platform.ToolTip", "Explicitly ask for the platform system, which may not exist" }, + { "PlatformOrDefault.Comment", "/** Looks for platform system first, then falls back to default */" }, + { "PlatformOrDefault.Name", "ECommonUserOnlineContext::PlatformOrDefault" }, + { "PlatformOrDefault.ToolTip", "Looks for platform system first, then falls back to default" }, + { "Service.Comment", "/** Explicitly ask for the external service, which may not exist */" }, + { "Service.Name", "ECommonUserOnlineContext::Service" }, + { "Service.ToolTip", "Explicitly ask for the external service, which may not exist" }, + { "ServiceOrDefault.Comment", "/** Looks for external service first, then falls back to default */" }, + { "ServiceOrDefault.Name", "ECommonUserOnlineContext::ServiceOrDefault" }, + { "ServiceOrDefault.ToolTip", "Looks for external service first, then falls back to default" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying where and how to run online queries" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserOnlineContext::Game", (int64)ECommonUserOnlineContext::Game }, + { "ECommonUserOnlineContext::Default", (int64)ECommonUserOnlineContext::Default }, + { "ECommonUserOnlineContext::Service", (int64)ECommonUserOnlineContext::Service }, + { "ECommonUserOnlineContext::ServiceOrDefault", (int64)ECommonUserOnlineContext::ServiceOrDefault }, + { "ECommonUserOnlineContext::Platform", (int64)ECommonUserOnlineContext::Platform }, + { "ECommonUserOnlineContext::PlatformOrDefault", (int64)ECommonUserOnlineContext::PlatformOrDefault }, + { "ECommonUserOnlineContext::Invalid", (int64)ECommonUserOnlineContext::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserOnlineContext", + "ECommonUserOnlineContext", + Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext() +{ + if (!Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton; +} +// End Enum ECommonUserOnlineContext + +// Begin Enum ECommonUserInitializationState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserInitializationState; +static UEnum* ECommonUserInitializationState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserInitializationState")); + } + return Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserInitializationState_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum describing the state of initialization for a specific user */" }, +#endif + { "DoingInitialLogin.Comment", "/** Player is in the process of acquiring a user id with local login */" }, + { "DoingInitialLogin.Name", "ECommonUserInitializationState::DoingInitialLogin" }, + { "DoingInitialLogin.ToolTip", "Player is in the process of acquiring a user id with local login" }, + { "DoingNetworkLogin.Comment", "/** Player is performing the network login, they have already logged in locally */" }, + { "DoingNetworkLogin.Name", "ECommonUserInitializationState::DoingNetworkLogin" }, + { "DoingNetworkLogin.ToolTip", "Player is performing the network login, they have already logged in locally" }, + { "FailedtoLogin.Comment", "/** Player failed to log in at all */" }, + { "FailedtoLogin.Name", "ECommonUserInitializationState::FailedtoLogin" }, + { "FailedtoLogin.ToolTip", "Player failed to log in at all" }, + { "Invalid.Comment", "/** Invalid state or user */" }, + { "Invalid.Name", "ECommonUserInitializationState::Invalid" }, + { "Invalid.ToolTip", "Invalid state or user" }, + { "LoggedInLocalOnly.Comment", "/** Player is logged in locally (either guest or real user), but cannot perform online actions */" }, + { "LoggedInLocalOnly.Name", "ECommonUserInitializationState::LoggedInLocalOnly" }, + { "LoggedInLocalOnly.ToolTip", "Player is logged in locally (either guest or real user), but cannot perform online actions" }, + { "LoggedInOnline.Comment", "/** Player is logged in and has access to online functionality */" }, + { "LoggedInOnline.Name", "ECommonUserInitializationState::LoggedInOnline" }, + { "LoggedInOnline.ToolTip", "Player is logged in and has access to online functionality" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum describing the state of initialization for a specific user" }, +#endif + { "Unknown.Comment", "/** User has not started login process */" }, + { "Unknown.Name", "ECommonUserInitializationState::Unknown" }, + { "Unknown.ToolTip", "User has not started login process" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserInitializationState::Unknown", (int64)ECommonUserInitializationState::Unknown }, + { "ECommonUserInitializationState::DoingInitialLogin", (int64)ECommonUserInitializationState::DoingInitialLogin }, + { "ECommonUserInitializationState::DoingNetworkLogin", (int64)ECommonUserInitializationState::DoingNetworkLogin }, + { "ECommonUserInitializationState::FailedtoLogin", (int64)ECommonUserInitializationState::FailedtoLogin }, + { "ECommonUserInitializationState::LoggedInOnline", (int64)ECommonUserInitializationState::LoggedInOnline }, + { "ECommonUserInitializationState::LoggedInLocalOnly", (int64)ECommonUserInitializationState::LoggedInLocalOnly }, + { "ECommonUserInitializationState::Invalid", (int64)ECommonUserInitializationState::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserInitializationState", + "ECommonUserInitializationState", + Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState() +{ + if (!Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton; +} +// End Enum ECommonUserInitializationState + +// Begin Enum ECommonUserPrivilege +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserPrivilege; +static UEnum* ECommonUserPrivilege_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserPrivilege")); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserPrivilege_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CanCommunicateViaTextOnline.Comment", "/** Whether the user can use text chat */" }, + { "CanCommunicateViaTextOnline.Name", "ECommonUserPrivilege::CanCommunicateViaTextOnline" }, + { "CanCommunicateViaTextOnline.ToolTip", "Whether the user can use text chat" }, + { "CanCommunicateViaVoiceOnline.Comment", "/** Whether the user can use voice chat */" }, + { "CanCommunicateViaVoiceOnline.Name", "ECommonUserPrivilege::CanCommunicateViaVoiceOnline" }, + { "CanCommunicateViaVoiceOnline.ToolTip", "Whether the user can use voice chat" }, + { "CanPlay.Comment", "/** Whether the user can play at all, online or offline */" }, + { "CanPlay.Name", "ECommonUserPrivilege::CanPlay" }, + { "CanPlay.ToolTip", "Whether the user can play at all, online or offline" }, + { "CanPlayOnline.Comment", "/** Whether the user can play in online modes */" }, + { "CanPlayOnline.Name", "ECommonUserPrivilege::CanPlayOnline" }, + { "CanPlayOnline.ToolTip", "Whether the user can play in online modes" }, + { "CanUseCrossPlay.Comment", "/** Whether the user can ever participate in cross-play */" }, + { "CanUseCrossPlay.Name", "ECommonUserPrivilege::CanUseCrossPlay" }, + { "CanUseCrossPlay.ToolTip", "Whether the user can ever participate in cross-play" }, + { "CanUseUserGeneratedContent.Comment", "/** Whether the user can access content generated by other users */" }, + { "CanUseUserGeneratedContent.Name", "ECommonUserPrivilege::CanUseUserGeneratedContent" }, + { "CanUseUserGeneratedContent.ToolTip", "Whether the user can access content generated by other users" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying different privileges and capabilities available to a user */" }, +#endif + { "Invalid_Count.Comment", "/** Invalid privilege (also the count of valid ones) */" }, + { "Invalid_Count.Hidden", "" }, + { "Invalid_Count.Name", "ECommonUserPrivilege::Invalid_Count" }, + { "Invalid_Count.ToolTip", "Invalid privilege (also the count of valid ones)" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying different privileges and capabilities available to a user" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserPrivilege::CanPlay", (int64)ECommonUserPrivilege::CanPlay }, + { "ECommonUserPrivilege::CanPlayOnline", (int64)ECommonUserPrivilege::CanPlayOnline }, + { "ECommonUserPrivilege::CanCommunicateViaTextOnline", (int64)ECommonUserPrivilege::CanCommunicateViaTextOnline }, + { "ECommonUserPrivilege::CanCommunicateViaVoiceOnline", (int64)ECommonUserPrivilege::CanCommunicateViaVoiceOnline }, + { "ECommonUserPrivilege::CanUseUserGeneratedContent", (int64)ECommonUserPrivilege::CanUseUserGeneratedContent }, + { "ECommonUserPrivilege::CanUseCrossPlay", (int64)ECommonUserPrivilege::CanUseCrossPlay }, + { "ECommonUserPrivilege::Invalid_Count", (int64)ECommonUserPrivilege::Invalid_Count }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserPrivilege", + "ECommonUserPrivilege", + Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton; +} +// End Enum ECommonUserPrivilege + +// Begin Enum ECommonUserAvailability +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserAvailability; +static UEnum* ECommonUserAvailability_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserAvailability, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserAvailability")); + } + return Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserAvailability_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AlwaysUnavailable.Comment", "/** This feature will never be available for the rest of this session due to hard account or platform restrictions */" }, + { "AlwaysUnavailable.Name", "ECommonUserAvailability::AlwaysUnavailable" }, + { "AlwaysUnavailable.ToolTip", "This feature will never be available for the rest of this session due to hard account or platform restrictions" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying the general availability of a feature or privilege, this combines information from multiple sources */" }, +#endif + { "CurrentlyUnavailable.Comment", "/** This feature is not available now because of something like network connectivity but may be available in the future */" }, + { "CurrentlyUnavailable.Name", "ECommonUserAvailability::CurrentlyUnavailable" }, + { "CurrentlyUnavailable.ToolTip", "This feature is not available now because of something like network connectivity but may be available in the future" }, + { "Invalid.Comment", "/** Invalid feature */" }, + { "Invalid.Name", "ECommonUserAvailability::Invalid" }, + { "Invalid.ToolTip", "Invalid feature" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "NowAvailable.Comment", "/** This feature is fully available for use right now */" }, + { "NowAvailable.Name", "ECommonUserAvailability::NowAvailable" }, + { "NowAvailable.ToolTip", "This feature is fully available for use right now" }, + { "PossiblyAvailable.Comment", "/** This might be available after the completion of normal login procedures */" }, + { "PossiblyAvailable.Name", "ECommonUserAvailability::PossiblyAvailable" }, + { "PossiblyAvailable.ToolTip", "This might be available after the completion of normal login procedures" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying the general availability of a feature or privilege, this combines information from multiple sources" }, +#endif + { "Unknown.Comment", "/** State is completely unknown and needs to be queried */" }, + { "Unknown.Name", "ECommonUserAvailability::Unknown" }, + { "Unknown.ToolTip", "State is completely unknown and needs to be queried" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserAvailability::Unknown", (int64)ECommonUserAvailability::Unknown }, + { "ECommonUserAvailability::NowAvailable", (int64)ECommonUserAvailability::NowAvailable }, + { "ECommonUserAvailability::PossiblyAvailable", (int64)ECommonUserAvailability::PossiblyAvailable }, + { "ECommonUserAvailability::CurrentlyUnavailable", (int64)ECommonUserAvailability::CurrentlyUnavailable }, + { "ECommonUserAvailability::AlwaysUnavailable", (int64)ECommonUserAvailability::AlwaysUnavailable }, + { "ECommonUserAvailability::Invalid", (int64)ECommonUserAvailability::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserAvailability", + "ECommonUserAvailability", + Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability() +{ + if (!Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton; +} +// End Enum ECommonUserAvailability + +// Begin Enum ECommonUserPrivilegeResult +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserPrivilegeResult; +static UEnum* ECommonUserPrivilegeResult_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserPrivilegeResult")); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserPrivilegeResult_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AccountTypeRestricted.Comment", "/** Account does not have a required subscription or account type */" }, + { "AccountTypeRestricted.Name", "ECommonUserPrivilegeResult::AccountTypeRestricted" }, + { "AccountTypeRestricted.ToolTip", "Account does not have a required subscription or account type" }, + { "AccountUseRestricted.Comment", "/** Another account/user restriction such as being banned by the service */" }, + { "AccountUseRestricted.Name", "ECommonUserPrivilegeResult::AccountUseRestricted" }, + { "AccountUseRestricted.ToolTip", "Another account/user restriction such as being banned by the service" }, + { "AgeRestricted.Comment", "/** Parental control failure */" }, + { "AgeRestricted.Name", "ECommonUserPrivilegeResult::AgeRestricted" }, + { "AgeRestricted.ToolTip", "Parental control failure" }, + { "Available.Comment", "/** This privilege is fully available for use */" }, + { "Available.Name", "ECommonUserPrivilegeResult::Available" }, + { "Available.ToolTip", "This privilege is fully available for use" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum giving specific reasons why a user may or may not use a certain privilege */" }, +#endif + { "LicenseInvalid.Comment", "/** User does not own the game or content */" }, + { "LicenseInvalid.Name", "ECommonUserPrivilegeResult::LicenseInvalid" }, + { "LicenseInvalid.ToolTip", "User does not own the game or content" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "NetworkConnectionUnavailable.Comment", "/** No network connection, this may be resolved by reconnecting */" }, + { "NetworkConnectionUnavailable.Name", "ECommonUserPrivilegeResult::NetworkConnectionUnavailable" }, + { "NetworkConnectionUnavailable.ToolTip", "No network connection, this may be resolved by reconnecting" }, + { "PlatformFailure.Comment", "/** Other platform-specific failure */" }, + { "PlatformFailure.Name", "ECommonUserPrivilegeResult::PlatformFailure" }, + { "PlatformFailure.ToolTip", "Other platform-specific failure" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum giving specific reasons why a user may or may not use a certain privilege" }, +#endif + { "Unknown.Comment", "/** State is unknown and needs to be queried */" }, + { "Unknown.Name", "ECommonUserPrivilegeResult::Unknown" }, + { "Unknown.ToolTip", "State is unknown and needs to be queried" }, + { "UserNotLoggedIn.Comment", "/** User has not fully logged in */" }, + { "UserNotLoggedIn.Name", "ECommonUserPrivilegeResult::UserNotLoggedIn" }, + { "UserNotLoggedIn.ToolTip", "User has not fully logged in" }, + { "VersionOutdated.Comment", "/** The game needs to be updated or patched before this will be available */" }, + { "VersionOutdated.Name", "ECommonUserPrivilegeResult::VersionOutdated" }, + { "VersionOutdated.ToolTip", "The game needs to be updated or patched before this will be available" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserPrivilegeResult::Unknown", (int64)ECommonUserPrivilegeResult::Unknown }, + { "ECommonUserPrivilegeResult::Available", (int64)ECommonUserPrivilegeResult::Available }, + { "ECommonUserPrivilegeResult::UserNotLoggedIn", (int64)ECommonUserPrivilegeResult::UserNotLoggedIn }, + { "ECommonUserPrivilegeResult::LicenseInvalid", (int64)ECommonUserPrivilegeResult::LicenseInvalid }, + { "ECommonUserPrivilegeResult::VersionOutdated", (int64)ECommonUserPrivilegeResult::VersionOutdated }, + { "ECommonUserPrivilegeResult::NetworkConnectionUnavailable", (int64)ECommonUserPrivilegeResult::NetworkConnectionUnavailable }, + { "ECommonUserPrivilegeResult::AgeRestricted", (int64)ECommonUserPrivilegeResult::AgeRestricted }, + { "ECommonUserPrivilegeResult::AccountTypeRestricted", (int64)ECommonUserPrivilegeResult::AccountTypeRestricted }, + { "ECommonUserPrivilegeResult::AccountUseRestricted", (int64)ECommonUserPrivilegeResult::AccountUseRestricted }, + { "ECommonUserPrivilegeResult::PlatformFailure", (int64)ECommonUserPrivilegeResult::PlatformFailure }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserPrivilegeResult", + "ECommonUserPrivilegeResult", + Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton; +} +// End Enum ECommonUserPrivilegeResult + +// Begin ScriptStruct FOnlineResultInformation +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_OnlineResultInformation; +class UScriptStruct* FOnlineResultInformation::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FOnlineResultInformation, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("OnlineResultInformation")); + } + return Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton; +} +template<> COMMONUSER_API UScriptStruct* StaticStruct() +{ + return FOnlineResultInformation::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FOnlineResultInformation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Detailed information about the online error. Effectively a wrapper for FOnlineError. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Detailed information about the online error. Effectively a wrapper for FOnlineError." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bWasSuccessful_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether the operation was successful or not. If it was successful, the error fields of this struct will not contain extra information. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether the operation was successful or not. If it was successful, the error fields of this struct will not contain extra information." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorId_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The unique error id. Can be used to compare against specific handled errors. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The unique error id. Can be used to compare against specific handled errors." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorText_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Error text to display to the user. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Error text to display to the user." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bWasSuccessful_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bWasSuccessful; + static const UECodeGen_Private::FStrPropertyParams NewProp_ErrorId; + static const UECodeGen_Private::FTextPropertyParams NewProp_ErrorText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful_SetBit(void* Obj) +{ + ((FOnlineResultInformation*)Obj)->bWasSuccessful = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful = { "bWasSuccessful", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FOnlineResultInformation), &Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bWasSuccessful_MetaData), NewProp_bWasSuccessful_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorId = { "ErrorId", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FOnlineResultInformation, ErrorId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorId_MetaData), NewProp_ErrorId_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorText = { "ErrorText", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FOnlineResultInformation, ErrorText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorText_MetaData), NewProp_ErrorText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + &NewStructOps, + "OnlineResultInformation", + Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers), + sizeof(FOnlineResultInformation), + alignof(FOnlineResultInformation), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation() +{ + if (!Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton, Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton; +} +// End ScriptStruct FOnlineResultInformation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonUserOnlineContext_StaticEnum, TEXT("ECommonUserOnlineContext"), &Z_Registration_Info_UEnum_ECommonUserOnlineContext, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3178011620U) }, + { ECommonUserInitializationState_StaticEnum, TEXT("ECommonUserInitializationState"), &Z_Registration_Info_UEnum_ECommonUserInitializationState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2275509869U) }, + { ECommonUserPrivilege_StaticEnum, TEXT("ECommonUserPrivilege"), &Z_Registration_Info_UEnum_ECommonUserPrivilege, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3165184135U) }, + { ECommonUserAvailability_StaticEnum, TEXT("ECommonUserAvailability"), &Z_Registration_Info_UEnum_ECommonUserAvailability, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3023508109U) }, + { ECommonUserPrivilegeResult_StaticEnum, TEXT("ECommonUserPrivilegeResult"), &Z_Registration_Info_UEnum_ECommonUserPrivilegeResult, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2681083962U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FOnlineResultInformation::StaticStruct, Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewStructOps, TEXT("OnlineResultInformation"), &Z_Registration_Info_UScriptStruct_OnlineResultInformation, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FOnlineResultInformation), 2359200286U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_4233871903(TEXT("/Script/CommonUser"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.generated.h new file mode 100644 index 00000000..cb07c75a --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONUSER_CommonUserTypes_generated_h +#error "CommonUserTypes.generated.h already included, missing '#pragma once' in CommonUserTypes.h" +#endif +#define COMMONUSER_CommonUserTypes_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_199_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FOnlineResultInformation_Statics; \ + COMMONUSER_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONUSER_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h + + +#define FOREACH_ENUM_ECOMMONUSERONLINECONTEXT(op) \ + op(ECommonUserOnlineContext::Game) \ + op(ECommonUserOnlineContext::Default) \ + op(ECommonUserOnlineContext::Service) \ + op(ECommonUserOnlineContext::ServiceOrDefault) \ + op(ECommonUserOnlineContext::Platform) \ + op(ECommonUserOnlineContext::PlatformOrDefault) \ + op(ECommonUserOnlineContext::Invalid) + +enum class ECommonUserOnlineContext : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERINITIALIZATIONSTATE(op) \ + op(ECommonUserInitializationState::Unknown) \ + op(ECommonUserInitializationState::DoingInitialLogin) \ + op(ECommonUserInitializationState::DoingNetworkLogin) \ + op(ECommonUserInitializationState::FailedtoLogin) \ + op(ECommonUserInitializationState::LoggedInOnline) \ + op(ECommonUserInitializationState::LoggedInLocalOnly) \ + op(ECommonUserInitializationState::Invalid) + +enum class ECommonUserInitializationState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERPRIVILEGE(op) \ + op(ECommonUserPrivilege::CanPlay) \ + op(ECommonUserPrivilege::CanPlayOnline) \ + op(ECommonUserPrivilege::CanCommunicateViaTextOnline) \ + op(ECommonUserPrivilege::CanCommunicateViaVoiceOnline) \ + op(ECommonUserPrivilege::CanUseUserGeneratedContent) \ + op(ECommonUserPrivilege::CanUseCrossPlay) \ + op(ECommonUserPrivilege::Invalid_Count) + +enum class ECommonUserPrivilege : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERAVAILABILITY(op) \ + op(ECommonUserAvailability::Unknown) \ + op(ECommonUserAvailability::NowAvailable) \ + op(ECommonUserAvailability::PossiblyAvailable) \ + op(ECommonUserAvailability::CurrentlyUnavailable) \ + op(ECommonUserAvailability::AlwaysUnavailable) \ + op(ECommonUserAvailability::Invalid) + +enum class ECommonUserAvailability : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERPRIVILEGERESULT(op) \ + op(ECommonUserPrivilegeResult::Unknown) \ + op(ECommonUserPrivilegeResult::Available) \ + op(ECommonUserPrivilegeResult::UserNotLoggedIn) \ + op(ECommonUserPrivilegeResult::LicenseInvalid) \ + op(ECommonUserPrivilegeResult::VersionOutdated) \ + op(ECommonUserPrivilegeResult::NetworkConnectionUnavailable) \ + op(ECommonUserPrivilegeResult::AgeRestricted) \ + op(ECommonUserPrivilegeResult::AccountTypeRestricted) \ + op(ECommonUserPrivilegeResult::AccountUseRestricted) \ + op(ECommonUserPrivilegeResult::PlatformFailure) + +enum class ECommonUserPrivilegeResult : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/Timestamp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/Timestamp new file mode 100644 index 00000000..bb8874ca --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/Timestamp @@ -0,0 +1,5 @@ +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\AsyncAction_CommonUserInitialize.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserBasicPresence.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonSessionSubsystem.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserTypes.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserSubsystem.h diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp new file mode 100644 index 00000000..688341bd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.gen.cpp @@ -0,0 +1,352 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/AsyncAction_CommonUserInitialize.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_CommonUserInitialize() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize(); +COMMONUSER_API UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FInputDeviceId(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UAsyncAction_CommonUserInitialize Function HandleInitializationComplete +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics +{ + struct AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Wrapper delegate, will pass on to OnInitializationComplete if appropriate */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Wrapper delegate, will pass on to OnInitializationComplete if appropriate" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms), &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "HandleInitializationComplete", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::AsyncAction_CommonUserInitialize_eventHandleInitializationComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execHandleInitializationComplete) +{ + P_GET_OBJECT(UCommonUserInfo,Z_Param_UserInfo); + P_GET_UBOOL(Z_Param_bSuccess); + P_GET_PROPERTY(FTextProperty,Z_Param_Error); + P_GET_ENUM(ECommonUserPrivilege,Z_Param_RequestedPrivilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_OnlineContext); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleInitializationComplete(Z_Param_UserInfo,Z_Param_bSuccess,Z_Param_Error,ECommonUserPrivilege(Z_Param_RequestedPrivilege),ECommonUserOnlineContext(Z_Param_OnlineContext)); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function HandleInitializationComplete + +// Begin Class UAsyncAction_CommonUserInitialize Function InitializeForLocalPlay +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms + { + UCommonUserSubsystem* Target; + int32 LocalPlayerIndex; + FInputDeviceId PrimaryInputDevice; + bool bCanUseGuestLogin; + UAsyncAction_CommonUserInitialize* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Initializes a local player with the common user system, which includes doing platform-specific login and privilege checks.\n\x09 * When the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09""Desired index of ULocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n\x09 * @param PrimaryInputDevice Primary input device for the user, if invalid will use the system default\n\x09 * @param bCanUseGuestLogin\x09If true, this player can be a guest without a real system net id\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Initializes a local player with the common user system, which includes doing platform-specific login and privilege checks.\nWhen the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\n@param LocalPlayerIndex Desired index of ULocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n@param PrimaryInputDevice Primary input device for the user, if invalid will use the system default\n@param bCanUseGuestLogin If true, this player can be a guest without a real system net id" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, Target), Z_Construct_UClass_UCommonUserSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "InitializeForLocalPlay", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::AsyncAction_CommonUserInitialize_eventInitializeForLocalPlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execInitializeForLocalPlay) +{ + P_GET_OBJECT(UCommonUserSubsystem,Z_Param_Target); + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_STRUCT(FInputDeviceId,Z_Param_PrimaryInputDevice); + P_GET_UBOOL(Z_Param_bCanUseGuestLogin); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CommonUserInitialize**)Z_Param__Result=UAsyncAction_CommonUserInitialize::InitializeForLocalPlay(Z_Param_Target,Z_Param_LocalPlayerIndex,Z_Param_PrimaryInputDevice,Z_Param_bCanUseGuestLogin); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function InitializeForLocalPlay + +// Begin Class UAsyncAction_CommonUserInitialize Function LoginForOnlinePlay +struct Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics +{ + struct AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms + { + UCommonUserSubsystem* Target; + int32 LocalPlayerIndex; + UAsyncAction_CommonUserInitialize* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Attempts to log an existing user into the platform-specific online backend to enable full online play\n\x09 * When the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09Index of existing LocalPlayer in Game Instance\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempts to log an existing user into the platform-specific online backend to enable full online play\nWhen the process has succeeded or failed, it will broadcast the OnInitializationComplete delegate.\n\n@param LocalPlayerIndex Index of existing LocalPlayer in Game Instance" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Target; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_Target = { "Target", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, Target), Z_Construct_UClass_UCommonUserSubsystem_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_Target, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_CommonUserInitialize, nullptr, "LoginForOnlinePlay", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::AsyncAction_CommonUserInitialize_eventLoginForOnlinePlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_CommonUserInitialize::execLoginForOnlinePlay) +{ + P_GET_OBJECT(UCommonUserSubsystem,Z_Param_Target); + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_CommonUserInitialize**)Z_Param__Result=UAsyncAction_CommonUserInitialize::LoginForOnlinePlay(Z_Param_Target,Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UAsyncAction_CommonUserInitialize Function LoginForOnlinePlay + +// Begin Class UAsyncAction_CommonUserInitialize +void UAsyncAction_CommonUserInitialize::StaticRegisterNativesUAsyncAction_CommonUserInitialize() +{ + UClass* Class = UAsyncAction_CommonUserInitialize::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleInitializationComplete", &UAsyncAction_CommonUserInitialize::execHandleInitializationComplete }, + { "InitializeForLocalPlay", &UAsyncAction_CommonUserInitialize::execInitializeForLocalPlay }, + { "LoginForOnlinePlay", &UAsyncAction_CommonUserInitialize::execLoginForOnlinePlay }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_CommonUserInitialize); +UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize_NoRegister() +{ + return UAsyncAction_CommonUserInitialize::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Async action to handle different functions for initializing users\n */" }, +#endif + { "IncludePath", "AsyncAction_CommonUserInitialize.h" }, + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Async action to handle different functions for initializing users" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnInitializationComplete_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Call when initialization succeeds or fails */" }, +#endif + { "ModuleRelativePath", "Public/AsyncAction_CommonUserInitialize.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Call when initialization succeeds or fails" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnInitializationComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_HandleInitializationComplete, "HandleInitializationComplete" }, // 180504425 + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_InitializeForLocalPlay, "InitializeForLocalPlay" }, // 4105210674 + { &Z_Construct_UFunction_UAsyncAction_CommonUserInitialize_LoginForOnlinePlay, "LoginForOnlinePlay" }, // 1021592046 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::NewProp_OnInitializationComplete = { "OnInitializationComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_CommonUserInitialize, OnInitializationComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnInitializationComplete_MetaData), NewProp_OnInitializationComplete_MetaData) }; // 1269951818 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::NewProp_OnInitializationComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::ClassParams = { + &UAsyncAction_CommonUserInitialize::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_CommonUserInitialize() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton, Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UAsyncAction_CommonUserInitialize::StaticClass(); +} +UAsyncAction_CommonUserInitialize::UAsyncAction_CommonUserInitialize(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_CommonUserInitialize); +UAsyncAction_CommonUserInitialize::~UAsyncAction_CommonUserInitialize() {} +// End Class UAsyncAction_CommonUserInitialize + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_CommonUserInitialize, UAsyncAction_CommonUserInitialize::StaticClass, TEXT("UAsyncAction_CommonUserInitialize"), &Z_Registration_Info_UClass_UAsyncAction_CommonUserInitialize, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_CommonUserInitialize), 2578566345U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_2273263009(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h new file mode 100644 index 00000000..8e966e51 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/AsyncAction_CommonUserInitialize.generated.h @@ -0,0 +1,69 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "AsyncAction_CommonUserInitialize.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_CommonUserInitialize; +class UCommonUserInfo; +class UCommonUserSubsystem; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +struct FInputDeviceId; +#ifdef COMMONUSER_AsyncAction_CommonUserInitialize_generated_h +#error "AsyncAction_CommonUserInitialize.generated.h already included, missing '#pragma once' in AsyncAction_CommonUserInitialize.h" +#endif +#define COMMONUSER_AsyncAction_CommonUserInitialize_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleInitializationComplete); \ + DECLARE_FUNCTION(execLoginForOnlinePlay); \ + DECLARE_FUNCTION(execInitializeForLocalPlay); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_CommonUserInitialize(); \ + friend struct Z_Construct_UClass_UAsyncAction_CommonUserInitialize_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_CommonUserInitialize, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_CommonUserInitialize) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_CommonUserInitialize(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_CommonUserInitialize(UAsyncAction_CommonUserInitialize&&); \ + UAsyncAction_CommonUserInitialize(const UAsyncAction_CommonUserInitialize&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_CommonUserInitialize); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_CommonUserInitialize); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_CommonUserInitialize) \ + NO_API virtual ~UAsyncAction_CommonUserInitialize(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_AsyncAction_CommonUserInitialize_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp new file mode 100644 index 00000000..537e5a0d --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.gen.cpp @@ -0,0 +1,1961 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonSessionSubsystem.h" +#include "CommonUser/Public/CommonUserTypes.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonSessionSubsystem() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSessionSubsystem(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonSessionSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionInformationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPrimaryAssetId(); +ENGINE_API UClass* Z_Construct_UClass_APlayerController_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_AOnlineBeaconHost_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_APartyBeaconClient_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_APartyBeaconHost_NoRegister(); +ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_UPartyBeaconState_NoRegister(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Enum ECommonSessionOnlineMode +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonSessionOnlineMode; +static UEnum* ECommonSessionOnlineMode_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonSessionOnlineMode")); + } + return Z_Registration_Info_UEnum_ECommonSessionOnlineMode.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonSessionOnlineMode_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the online features and connectivity that should be used for a game session */" }, +#endif + { "LAN.Name", "ECommonSessionOnlineMode::LAN" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + { "Offline.Name", "ECommonSessionOnlineMode::Offline" }, + { "Online.Name", "ECommonSessionOnlineMode::Online" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the online features and connectivity that should be used for a game session" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonSessionOnlineMode::Offline", (int64)ECommonSessionOnlineMode::Offline }, + { "ECommonSessionOnlineMode::LAN", (int64)ECommonSessionOnlineMode::LAN }, + { "ECommonSessionOnlineMode::Online", (int64)ECommonSessionOnlineMode::Online }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonSessionOnlineMode", + "ECommonSessionOnlineMode", + Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonSessionOnlineMode.InnerSingleton; +} +// End Enum ECommonSessionOnlineMode + +// Begin Class UCommonSession_HostSessionRequest +void UCommonSession_HostSessionRequest::StaticRegisterNativesUCommonSession_HostSessionRequest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_HostSessionRequest); +UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister() +{ + return UCommonSession_HostSessionRequest::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A request object that stores the parameters used when hosting a gameplay session */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A request object that stores the parameters used when hosting a gameplay session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineMode_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Indicates if the session is a full online session or a different type */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Indicates if the session is a full online session or a different type" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbies_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a player-hosted lobbies if available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a player-hosted lobbies if available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesVoiceChat_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a lobby with enabled voice chat in available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a lobby with enabled voice chat in available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUsePresence_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should create a session that will appear in the user's presence information */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should create a session that will appear in the user's presence information" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ModeNameForAdvertisement_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** String used during matchmaking to specify what type of game mode this is */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "String used during matchmaking to specify what type of game mode this is" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapID_MetaData[] = { + { "AllowedTypes", "World" }, + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The map that will be loaded at the start of gameplay, this needs to be a valid Primary Asset top-level map */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The map that will be loaded at the start of gameplay, this needs to be a valid Primary Asset top-level map" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtraArgs_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Extra arguments passed as URL options to the game */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Extra arguments passed as URL options to the game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxPlayerCount_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maximum players allowed per gameplay session */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maximum players allowed per gameplay session" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineMode; + static void NewProp_bUseLobbies_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbies; + static void NewProp_bUseLobbiesVoiceChat_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesVoiceChat; + static void NewProp_bUsePresence_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUsePresence; + static const UECodeGen_Private::FStrPropertyParams NewProp_ModeNameForAdvertisement; + static const UECodeGen_Private::FStructPropertyParams NewProp_MapID; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_ValueProp; + static const UECodeGen_Private::FStrPropertyParams NewProp_ExtraArgs_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtraArgs; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxPlayerCount; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode = { "OnlineMode", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, OnlineMode), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineMode_MetaData), NewProp_OnlineMode_MetaData) }; // 460294093 +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUseLobbies = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies = { "bUseLobbies", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbies_MetaData), NewProp_bUseLobbies_MetaData) }; +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUseLobbiesVoiceChat = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat = { "bUseLobbiesVoiceChat", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesVoiceChat_MetaData), NewProp_bUseLobbiesVoiceChat_MetaData) }; +void Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence_SetBit(void* Obj) +{ + ((UCommonSession_HostSessionRequest*)Obj)->bUsePresence = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence = { "bUsePresence", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_HostSessionRequest), &Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUsePresence_MetaData), NewProp_bUsePresence_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ModeNameForAdvertisement = { "ModeNameForAdvertisement", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, ModeNameForAdvertisement), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ModeNameForAdvertisement_MetaData), NewProp_ModeNameForAdvertisement_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MapID = { "MapID", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, MapID), Z_Construct_UScriptStruct_FPrimaryAssetId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapID_MetaData), NewProp_MapID_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_ValueProp = { "ExtraArgs", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_Key_KeyProp = { "ExtraArgs_Key", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs = { "ExtraArgs", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, ExtraArgs), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtraArgs_MetaData), NewProp_ExtraArgs_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MaxPlayerCount = { "MaxPlayerCount", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_HostSessionRequest, MaxPlayerCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxPlayerCount_MetaData), NewProp_MaxPlayerCount_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_OnlineMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbies, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUseLobbiesVoiceChat, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_bUsePresence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ModeNameForAdvertisement, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MapID, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_ExtraArgs, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::NewProp_MaxPlayerCount, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::ClassParams = { + &UCommonSession_HostSessionRequest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_HostSessionRequest() +{ + if (!Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton, Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_HostSessionRequest.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_HostSessionRequest::StaticClass(); +} +UCommonSession_HostSessionRequest::UCommonSession_HostSessionRequest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_HostSessionRequest); +UCommonSession_HostSessionRequest::~UCommonSession_HostSessionRequest() {} +// End Class UCommonSession_HostSessionRequest + +// Begin Class UCommonSession_SearchResult Function GetDescription +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics +{ + struct CommonSession_SearchResult_eventGetDescription_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns an internal description of the session, not meant to be human readable */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns an internal description of the session, not meant to be human readable" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetDescription_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetDescription", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::CommonSession_SearchResult_eventGetDescription_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::CommonSession_SearchResult_eventGetDescription_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetDescription) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDescription(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetDescription + +// Begin Class UCommonSession_SearchResult Function GetIntSetting +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics +{ + struct CommonSession_SearchResult_eventGetIntSetting_Parms + { + FName Key; + int32 Value; + bool bFoundValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets an arbitrary integer setting, bFoundValue will be false if the setting does not exist */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets an arbitrary integer setting, bFoundValue will be false if the setting does not exist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Key; + static const UECodeGen_Private::FIntPropertyParams NewProp_Value; + static void NewProp_bFoundValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFoundValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Key = { "Key", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetIntSetting_Parms, Key), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetIntSetting_Parms, Value), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue_SetBit(void* Obj) +{ + ((CommonSession_SearchResult_eventGetIntSetting_Parms*)Obj)->bFoundValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue = { "bFoundValue", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonSession_SearchResult_eventGetIntSetting_Parms), &Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Key, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::NewProp_bFoundValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetIntSetting", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::CommonSession_SearchResult_eventGetIntSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::CommonSession_SearchResult_eventGetIntSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetIntSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Key); + P_GET_PROPERTY_REF(FIntProperty,Z_Param_Out_Value); + P_GET_UBOOL_REF(Z_Param_Out_bFoundValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetIntSetting(Z_Param_Key,Z_Param_Out_Value,Z_Param_Out_bFoundValue); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetIntSetting + +// Begin Class UCommonSession_SearchResult Function GetMaxPublicConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics +{ + struct CommonSession_SearchResult_eventGetMaxPublicConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The maximum number of publicly available connections that could be available, including already filled connections */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of publicly available connections that could be available, including already filled connections" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetMaxPublicConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetMaxPublicConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::CommonSession_SearchResult_eventGetMaxPublicConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::CommonSession_SearchResult_eventGetMaxPublicConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetMaxPublicConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetMaxPublicConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetMaxPublicConnections + +// Begin Class UCommonSession_SearchResult Function GetNumOpenPrivateConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics +{ + struct CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The number of private connections that are available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of private connections that are available" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetNumOpenPrivateConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPrivateConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetNumOpenPrivateConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumOpenPrivateConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetNumOpenPrivateConnections + +// Begin Class UCommonSession_SearchResult Function GetNumOpenPublicConnections +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics +{ + struct CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The number of publicly available connections that are available */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of publicly available connections that are available" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetNumOpenPublicConnections", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::CommonSession_SearchResult_eventGetNumOpenPublicConnections_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetNumOpenPublicConnections) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumOpenPublicConnections(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetNumOpenPublicConnections + +// Begin Class UCommonSession_SearchResult Function GetPingInMs +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics +{ + struct CommonSession_SearchResult_eventGetPingInMs_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ping to the search result, MAX_QUERY_PING is unreachable */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ping to the search result, MAX_QUERY_PING is unreachable" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetPingInMs_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetPingInMs", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::CommonSession_SearchResult_eventGetPingInMs_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::CommonSession_SearchResult_eventGetPingInMs_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetPingInMs) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetPingInMs(); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetPingInMs + +// Begin Class UCommonSession_SearchResult Function GetStringSetting +struct Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics +{ + struct CommonSession_SearchResult_eventGetStringSetting_Parms + { + FName Key; + FString Value; + bool bFoundValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Sessions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets an arbitrary string setting, bFoundValue will be false if the setting does not exist */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets an arbitrary string setting, bFoundValue will be false if the setting does not exist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_Key; + static const UECodeGen_Private::FStrPropertyParams NewProp_Value; + static void NewProp_bFoundValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFoundValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Key = { "Key", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetStringSetting_Parms, Key), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSession_SearchResult_eventGetStringSetting_Parms, Value), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue_SetBit(void* Obj) +{ + ((CommonSession_SearchResult_eventGetStringSetting_Parms*)Obj)->bFoundValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue = { "bFoundValue", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonSession_SearchResult_eventGetStringSetting_Parms), &Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Key, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::NewProp_bFoundValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSession_SearchResult, nullptr, "GetStringSetting", nullptr, nullptr, Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::CommonSession_SearchResult_eventGetStringSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::CommonSession_SearchResult_eventGetStringSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSession_SearchResult::execGetStringSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_Key); + P_GET_PROPERTY_REF(FStrProperty,Z_Param_Out_Value); + P_GET_UBOOL_REF(Z_Param_Out_bFoundValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->GetStringSetting(Z_Param_Key,Z_Param_Out_Value,Z_Param_Out_bFoundValue); + P_NATIVE_END; +} +// End Class UCommonSession_SearchResult Function GetStringSetting + +// Begin Class UCommonSession_SearchResult +void UCommonSession_SearchResult::StaticRegisterNativesUCommonSession_SearchResult() +{ + UClass* Class = UCommonSession_SearchResult::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDescription", &UCommonSession_SearchResult::execGetDescription }, + { "GetIntSetting", &UCommonSession_SearchResult::execGetIntSetting }, + { "GetMaxPublicConnections", &UCommonSession_SearchResult::execGetMaxPublicConnections }, + { "GetNumOpenPrivateConnections", &UCommonSession_SearchResult::execGetNumOpenPrivateConnections }, + { "GetNumOpenPublicConnections", &UCommonSession_SearchResult::execGetNumOpenPublicConnections }, + { "GetPingInMs", &UCommonSession_SearchResult::execGetPingInMs }, + { "GetStringSetting", &UCommonSession_SearchResult::execGetStringSetting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_SearchResult); +UClass* Z_Construct_UClass_UCommonSession_SearchResult_NoRegister() +{ + return UCommonSession_SearchResult::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_SearchResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A result object returned from the online system that describes a joinable game session */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A result object returned from the online system that describes a joinable game session" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetDescription, "GetDescription" }, // 608170585 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetIntSetting, "GetIntSetting" }, // 2928586244 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetMaxPublicConnections, "GetMaxPublicConnections" }, // 272758922 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPrivateConnections, "GetNumOpenPrivateConnections" }, // 3833257865 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetNumOpenPublicConnections, "GetNumOpenPublicConnections" }, // 1939368779 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetPingInMs, "GetPingInMs" }, // 2436490444 + { &Z_Construct_UFunction_UCommonSession_SearchResult_GetStringSetting, "GetStringSetting" }, // 2404706193 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UCommonSession_SearchResult_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchResult_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_SearchResult_Statics::ClassParams = { + &UCommonSession_SearchResult::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchResult_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_SearchResult_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_SearchResult() +{ + if (!Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton, Z_Construct_UClass_UCommonSession_SearchResult_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_SearchResult.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_SearchResult::StaticClass(); +} +UCommonSession_SearchResult::UCommonSession_SearchResult(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_SearchResult); +UCommonSession_SearchResult::~UCommonSession_SearchResult() {} +// End Class UCommonSession_SearchResult + +// Begin Delegate FCommonSession_FindSessionsFinishedDynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms + { + bool bSucceeded; + FText ErrorMessage; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bSucceeded_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSucceeded; + static const UECodeGen_Private::FTextPropertyParams NewProp_ErrorMessage; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms*)Obj)->bSucceeded = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded = { "bSucceeded", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_ErrorMessage = { "ErrorMessage", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms, ErrorMessage), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_bSucceeded, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::NewProp_ErrorMessage, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSession_FindSessionsFinishedDynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSession_FindSessionsFinishedDynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSession_FindSessionsFinishedDynamic, bool bSucceeded, const FText& ErrorMessage) +{ + struct _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms + { + bool bSucceeded; + FText ErrorMessage; + }; + _Script_CommonUser_eventCommonSession_FindSessionsFinishedDynamic_Parms Parms; + Parms.bSucceeded=bSucceeded ? true : false; + Parms.ErrorMessage=ErrorMessage; + CommonSession_FindSessionsFinishedDynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSession_FindSessionsFinishedDynamic + +// Begin Class UCommonSession_SearchSessionRequest +void UCommonSession_SearchSessionRequest::StaticRegisterNativesUCommonSession_SearchSessionRequest() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSession_SearchSessionRequest); +UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister() +{ + return UCommonSession_SearchSessionRequest::StaticClass(); +} +struct Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Request object describing a session search, this object will be updated once the search has completed */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Request object describing a session search, this object will be updated once the search has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineMode_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Indicates if the this is looking for full online games or a different type like LAN */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Indicates if the this is looking for full online games or a different type like LAN" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbies_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this request should look for player-hosted lobbies if they are available, false will only search for registered server sessions */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this request should look for player-hosted lobbies if they are available, false will only search for registered server sessions" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Results_MetaData[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** List of all found sessions, will be valid when OnSearchFinished is called */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of all found sessions, will be valid when OnSearchFinished is called" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnSearchFinished_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate called when a session search completes */" }, +#endif + { "DisplayName", "On Search Finished" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate called when a session search completes" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineMode_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineMode; + static void NewProp_bUseLobbies_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbies; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Results_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Results; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnSearchFinished; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode = { "OnlineMode", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, OnlineMode), Z_Construct_UEnum_CommonUser_ECommonSessionOnlineMode, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineMode_MetaData), NewProp_OnlineMode_MetaData) }; // 460294093 +void Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies_SetBit(void* Obj) +{ + ((UCommonSession_SearchSessionRequest*)Obj)->bUseLobbies = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies = { "bUseLobbies", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSession_SearchSessionRequest), &Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbies_MetaData), NewProp_bUseLobbies_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results_Inner = { "Results", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results = { "Results", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, Results), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Results_MetaData), NewProp_Results_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_K2_OnSearchFinished = { "K2_OnSearchFinished", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSession_SearchSessionRequest, K2_OnSearchFinished), Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnSearchFinished_MetaData), NewProp_K2_OnSearchFinished_MetaData) }; // 1036648746 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_OnlineMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_bUseLobbies, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_Results, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::NewProp_K2_OnSearchFinished, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::ClassParams = { + &UCommonSession_SearchSessionRequest::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSession_SearchSessionRequest() +{ + if (!Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton, Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSession_SearchSessionRequest::StaticClass(); +} +UCommonSession_SearchSessionRequest::UCommonSession_SearchSessionRequest(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSession_SearchSessionRequest); +UCommonSession_SearchSessionRequest::~UCommonSession_SearchSessionRequest() {} +// End Class UCommonSession_SearchSessionRequest + +// Begin Delegate FCommonSessionOnUserRequestedSession_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + UCommonSession_SearchResult* RequestedSession; + FOnlineResultInformation RequestedSessionResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlatformUserId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedSessionResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocalPlatformUserId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RequestedSession; + static const UECodeGen_Private::FStructPropertyParams NewProp_RequestedSessionResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId = { "LocalPlatformUserId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, LocalPlatformUserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlatformUserId_MetaData), NewProp_LocalPlatformUserId_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSession = { "RequestedSession", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, RequestedSession), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSessionResult = { "RequestedSessionResult", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms, RequestedSessionResult), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedSessionResult_MetaData), NewProp_RequestedSessionResult_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSession, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::NewProp_RequestedSessionResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnUserRequestedSession_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnUserRequestedSession_Dynamic, FPlatformUserId const& LocalPlatformUserId, UCommonSession_SearchResult* RequestedSession, FOnlineResultInformation const& RequestedSessionResult) +{ + struct _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + UCommonSession_SearchResult* RequestedSession; + FOnlineResultInformation RequestedSessionResult; + }; + _Script_CommonUser_eventCommonSessionOnUserRequestedSession_Dynamic_Parms Parms; + Parms.LocalPlatformUserId=LocalPlatformUserId; + Parms.RequestedSession=RequestedSession; + Parms.RequestedSessionResult=RequestedSessionResult; + CommonSessionOnUserRequestedSession_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnUserRequestedSession_Dynamic + +// Begin Delegate FCommonSessionOnJoinSessionComplete_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms, Result), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnJoinSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnJoinSessionComplete_Dynamic, FOnlineResultInformation const& Result) +{ + struct _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; + _Script_CommonUser_eventCommonSessionOnJoinSessionComplete_Dynamic_Parms Parms; + Parms.Result=Result; + CommonSessionOnJoinSessionComplete_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnJoinSessionComplete_Dynamic + +// Begin Delegate FCommonSessionOnCreateSessionComplete_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Result_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Result; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result = { "Result", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms, Result), Z_Construct_UScriptStruct_FOnlineResultInformation, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Result_MetaData), NewProp_Result_MetaData) }; // 2359200286 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::NewProp_Result, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnCreateSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnCreateSessionComplete_Dynamic, FOnlineResultInformation const& Result) +{ + struct _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms + { + FOnlineResultInformation Result; + }; + _Script_CommonUser_eventCommonSessionOnCreateSessionComplete_Dynamic_Parms Parms; + Parms.Result=Result; + CommonSessionOnCreateSessionComplete_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnCreateSessionComplete_Dynamic + +// Begin Delegate FCommonSessionOnDestroySessionRequested_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + FName SessionName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlatformUserId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SessionName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocalPlatformUserId; + static const UECodeGen_Private::FNamePropertyParams NewProp_SessionName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId = { "LocalPlatformUserId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms, LocalPlatformUserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlatformUserId_MetaData), NewProp_LocalPlatformUserId_MetaData) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_SessionName = { "SessionName", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms, SessionName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SessionName_MetaData), NewProp_SessionName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_LocalPlatformUserId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::NewProp_SessionName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnDestroySessionRequested_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnDestroySessionRequested_Dynamic, FPlatformUserId const& LocalPlatformUserId, FName const& SessionName) +{ + struct _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms + { + FPlatformUserId LocalPlatformUserId; + FName SessionName; + }; + _Script_CommonUser_eventCommonSessionOnDestroySessionRequested_Dynamic_Parms Parms; + Parms.LocalPlatformUserId=LocalPlatformUserId; + Parms.SessionName=SessionName; + CommonSessionOnDestroySessionRequested_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnDestroySessionRequested_Dynamic + +// Begin Enum ECommonSessionInformationState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonSessionInformationState; +static UEnum* ECommonSessionInformationState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonSessionInformationState")); + } + return Z_Registration_Info_UEnum_ECommonSessionInformationState.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonSessionInformationState_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Event triggered at different points in the session ecosystem that represent a user-presentable state of the session.\n * This should not be used for online functionality (use OnCreateSessionComplete or OnJoinSessionComplete for those) but for features such as rich presence\n */" }, +#endif + { "InGame.Name", "ECommonSessionInformationState::InGame" }, + { "Matchmaking.Name", "ECommonSessionInformationState::Matchmaking" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + { "OutOfGame.Name", "ECommonSessionInformationState::OutOfGame" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event triggered at different points in the session ecosystem that represent a user-presentable state of the session.\nThis should not be used for online functionality (use OnCreateSessionComplete or OnJoinSessionComplete for those) but for features such as rich presence" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonSessionInformationState::OutOfGame", (int64)ECommonSessionInformationState::OutOfGame }, + { "ECommonSessionInformationState::Matchmaking", (int64)ECommonSessionInformationState::Matchmaking }, + { "ECommonSessionInformationState::InGame", (int64)ECommonSessionInformationState::InGame }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonSessionInformationState", + "ECommonSessionInformationState", + Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonSessionInformationState() +{ + if (!Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonSessionInformationState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonSessionInformationState.InnerSingleton; +} +// End Enum ECommonSessionInformationState + +// Begin Delegate FCommonSessionOnSessionInformationChanged_Dynamic +struct Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms + { + ECommonSessionInformationState SessionStatus; + FString GameMode; + FString MapName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GameMode_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MapName_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_SessionStatus_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SessionStatus; + static const UECodeGen_Private::FStrPropertyParams NewProp_GameMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_MapName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus = { "SessionStatus", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, SessionStatus), Z_Construct_UEnum_CommonUser_ECommonSessionInformationState, METADATA_PARAMS(0, nullptr) }; // 2137357761 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_GameMode = { "GameMode", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, GameMode), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GameMode_MetaData), NewProp_GameMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_MapName = { "MapName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms, MapName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MapName_MetaData), NewProp_MapName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_SessionStatus, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_GameMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::NewProp_MapName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::_Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonSessionOnSessionInformationChanged_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnSessionInformationChanged_Dynamic, ECommonSessionInformationState SessionStatus, const FString& GameMode, const FString& MapName) +{ + struct _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms + { + ECommonSessionInformationState SessionStatus; + FString GameMode; + FString MapName; + }; + _Script_CommonUser_eventCommonSessionOnSessionInformationChanged_Dynamic_Parms Parms; + Parms.SessionStatus=SessionStatus; + Parms.GameMode=GameMode; + Parms.MapName=MapName; + CommonSessionOnSessionInformationChanged_Dynamic.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonSessionOnSessionInformationChanged_Dynamic + +// Begin Class UCommonSessionSubsystem Function CleanUpSessions +struct Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Clean up any active sessions, called from cases like returning to the main menu */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Clean up any active sessions, called from cases like returning to the main menu" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CleanUpSessions", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCleanUpSessions) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CleanUpSessions(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CleanUpSessions + +// Begin Class UCommonSessionSubsystem Function CreateOnlineHostSessionRequest +struct Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics +{ + struct CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms + { + UCommonSession_HostSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a host session request with default options for online games, this can be modified after creation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a host session request with default options for online games, this can be modified after creation" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CreateOnlineHostSessionRequest", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineHostSessionRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCreateOnlineHostSessionRequest) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_HostSessionRequest**)Z_Param__Result=P_THIS->CreateOnlineHostSessionRequest(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CreateOnlineHostSessionRequest + +// Begin Class UCommonSessionSubsystem Function CreateOnlineSearchSessionRequest +struct Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics +{ + struct CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms + { + UCommonSession_SearchSessionRequest* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a session search object with default options to look for default online games, this can be modified after creation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a session search object with default options to look for default online games, this can be modified after creation" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms, ReturnValue), Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "CreateOnlineSearchSessionRequest", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::CommonSessionSubsystem_eventCreateOnlineSearchSessionRequest_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execCreateOnlineSearchSessionRequest) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UCommonSession_SearchSessionRequest**)Z_Param__Result=P_THIS->CreateOnlineSearchSessionRequest(); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function CreateOnlineSearchSessionRequest + +// Begin Class UCommonSessionSubsystem Function FindSessions +struct Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics +{ + struct CommonSessionSubsystem_eventFindSessions_Parms + { + APlayerController* SearchingPlayer; + UCommonSession_SearchSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Queries online system for the list of joinable sessions matching the search request */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Queries online system for the list of joinable sessions matching the search request" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SearchingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_SearchingPlayer = { "SearchingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventFindSessions_Parms, SearchingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventFindSessions_Parms, Request), Z_Construct_UClass_UCommonSession_SearchSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_SearchingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "FindSessions", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::CommonSessionSubsystem_eventFindSessions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::CommonSessionSubsystem_eventFindSessions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execFindSessions) +{ + P_GET_OBJECT(APlayerController,Z_Param_SearchingPlayer); + P_GET_OBJECT(UCommonSession_SearchSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->FindSessions(Z_Param_SearchingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function FindSessions + +// Begin Class UCommonSessionSubsystem Function HostSession +struct Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics +{ + struct CommonSessionSubsystem_eventHostSession_Parms + { + APlayerController* HostingPlayer; + UCommonSession_HostSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Creates a new online game using the session request information, if successful this will start a hard map transfer */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Creates a new online game using the session request information, if successful this will start a hard map transfer" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_HostingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_HostingPlayer = { "HostingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventHostSession_Parms, HostingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventHostSession_Parms, Request), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_HostingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "HostSession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::CommonSessionSubsystem_eventHostSession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::CommonSessionSubsystem_eventHostSession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_HostSession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_HostSession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execHostSession) +{ + P_GET_OBJECT(APlayerController,Z_Param_HostingPlayer); + P_GET_OBJECT(UCommonSession_HostSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HostSession(Z_Param_HostingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function HostSession + +// Begin Class UCommonSessionSubsystem Function JoinSession +struct Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics +{ + struct CommonSessionSubsystem_eventJoinSession_Parms + { + APlayerController* JoiningPlayer; + UCommonSession_SearchResult* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts process to join an existing session, if successful this will connect to the specified server */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts process to join an existing session, if successful this will connect to the specified server" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoiningPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_JoiningPlayer = { "JoiningPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventJoinSession_Parms, JoiningPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventJoinSession_Parms, Request), Z_Construct_UClass_UCommonSession_SearchResult_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_JoiningPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "JoinSession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::CommonSessionSubsystem_eventJoinSession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::CommonSessionSubsystem_eventJoinSession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execJoinSession) +{ + P_GET_OBJECT(APlayerController,Z_Param_JoiningPlayer); + P_GET_OBJECT(UCommonSession_SearchResult,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->JoinSession(Z_Param_JoiningPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function JoinSession + +// Begin Class UCommonSessionSubsystem Function QuickPlaySession +struct Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics +{ + struct CommonSessionSubsystem_eventQuickPlaySession_Parms + { + APlayerController* JoiningOrHostingPlayer; + UCommonSession_HostSessionRequest* Request; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Session" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Starts a process to look for existing sessions or create a new one if no viable sessions are found */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts a process to look for existing sessions or create a new one if no viable sessions are found" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_JoiningOrHostingPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Request; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_JoiningOrHostingPlayer = { "JoiningOrHostingPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventQuickPlaySession_Parms, JoiningOrHostingPlayer), Z_Construct_UClass_APlayerController_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_Request = { "Request", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonSessionSubsystem_eventQuickPlaySession_Parms, Request), Z_Construct_UClass_UCommonSession_HostSessionRequest_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_JoiningOrHostingPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::NewProp_Request, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonSessionSubsystem, nullptr, "QuickPlaySession", nullptr, nullptr, Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::CommonSessionSubsystem_eventQuickPlaySession_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::CommonSessionSubsystem_eventQuickPlaySession_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonSessionSubsystem::execQuickPlaySession) +{ + P_GET_OBJECT(APlayerController,Z_Param_JoiningOrHostingPlayer); + P_GET_OBJECT(UCommonSession_HostSessionRequest,Z_Param_Request); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->QuickPlaySession(Z_Param_JoiningOrHostingPlayer,Z_Param_Request); + P_NATIVE_END; +} +// End Class UCommonSessionSubsystem Function QuickPlaySession + +// Begin Class UCommonSessionSubsystem +void UCommonSessionSubsystem::StaticRegisterNativesUCommonSessionSubsystem() +{ + UClass* Class = UCommonSessionSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CleanUpSessions", &UCommonSessionSubsystem::execCleanUpSessions }, + { "CreateOnlineHostSessionRequest", &UCommonSessionSubsystem::execCreateOnlineHostSessionRequest }, + { "CreateOnlineSearchSessionRequest", &UCommonSessionSubsystem::execCreateOnlineSearchSessionRequest }, + { "FindSessions", &UCommonSessionSubsystem::execFindSessions }, + { "HostSession", &UCommonSessionSubsystem::execHostSession }, + { "JoinSession", &UCommonSessionSubsystem::execJoinSession }, + { "QuickPlaySession", &UCommonSessionSubsystem::execQuickPlaySession }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonSessionSubsystem); +UClass* Z_Construct_UClass_UCommonSessionSubsystem_NoRegister() +{ + return UCommonSessionSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonSessionSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Game subsystem that handles requests for hosting and joining online games.\n * One subsystem is created for each game instance and can be accessed from blueprints or C++ code.\n * If a game-specific subclass exists, this base subsystem will not be created.\n */" }, +#endif + { "IncludePath", "CommonSessionSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game subsystem that handles requests for hosting and joining online games.\nOne subsystem is created for each game instance and can be accessed from blueprints or C++ code.\nIf a game-specific subclass exists, this base subsystem will not be created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnUserRequestedSessionEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a local user has accepted an invite */" }, +#endif + { "DisplayName", "On User Requested Session" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a local user has accepted an invite" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnJoinSessionCompleteEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a JoinSession call has completed */" }, +#endif + { "DisplayName", "On Join Session Complete" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a JoinSession call has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnCreateSessionCompleteEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a CreateSession call has completed */" }, +#endif + { "DisplayName", "On Create Session Complete" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a CreateSession call has completed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnSessionInformationChangedEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when the presentable session information has changed */" }, +#endif + { "DisplayName", "On Session Information Changed" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when the presentable session information has changed" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_K2_OnDestroySessionRequestedEvent_MetaData[] = { + { "Category", "Events" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Event broadcast when a platform session destroy has been requested */" }, +#endif + { "DisplayName", "On Leave Session Requested" }, + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Event broadcast when a platform session destroy has been requested" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesDefault_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the default value of bUseLobbies for session search and host requests */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the default value of bUseLobbies for session search and host requests" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseLobbiesVoiceChatDefault_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the default value of bUseLobbiesVoiceChat for session host requests */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the default value of bUseLobbiesVoiceChat for session host requests" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseBeacons_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enables reservation beacon flow prior to server travel when creating or joining a game session */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enables reservation beacon flow prior to server travel when creating or joining a game session" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconHostListener_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** General beacon listener for registering beacons with */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "General beacon listener for registering beacons with" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconHostState_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** State of the beacon host */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "State of the beacon host" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconHost_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Beacon controlling access to this game. */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Beacon controlling access to this game." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReservationBeaconClient_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Common class object for beacon communication */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Common class object for beacon communication" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconTeamCount_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Number of teams for beacon reservation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Number of teams for beacon reservation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconTeamSize_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Size of a team for beacon reservation */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Size of a team for beacon reservation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BeaconMaxReservations_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Max number of beacon reservations */" }, +#endif + { "ModuleRelativePath", "Public/CommonSessionSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Max number of beacon reservations" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnUserRequestedSessionEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnJoinSessionCompleteEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnCreateSessionCompleteEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnSessionInformationChangedEvent; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_K2_OnDestroySessionRequestedEvent; + static void NewProp_bUseLobbiesDefault_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesDefault; + static void NewProp_bUseLobbiesVoiceChatDefault_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseLobbiesVoiceChatDefault; + static void NewProp_bUseBeacons_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseBeacons; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_BeaconHostListener; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReservationBeaconHostState; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ReservationBeaconHost; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_ReservationBeaconClient; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconTeamCount; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconTeamSize; + static const UECodeGen_Private::FIntPropertyParams NewProp_BeaconMaxReservations; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonSessionSubsystem_CleanUpSessions, "CleanUpSessions" }, // 2106133469 + { &Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineHostSessionRequest, "CreateOnlineHostSessionRequest" }, // 2791135289 + { &Z_Construct_UFunction_UCommonSessionSubsystem_CreateOnlineSearchSessionRequest, "CreateOnlineSearchSessionRequest" }, // 4038963213 + { &Z_Construct_UFunction_UCommonSessionSubsystem_FindSessions, "FindSessions" }, // 4268636026 + { &Z_Construct_UFunction_UCommonSessionSubsystem_HostSession, "HostSession" }, // 3567579256 + { &Z_Construct_UFunction_UCommonSessionSubsystem_JoinSession, "JoinSession" }, // 2376255695 + { &Z_Construct_UFunction_UCommonSessionSubsystem_QuickPlaySession, "QuickPlaySession" }, // 3191143596 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnUserRequestedSessionEvent = { "K2_OnUserRequestedSessionEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnUserRequestedSessionEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnUserRequestedSessionEvent_MetaData), NewProp_K2_OnUserRequestedSessionEvent_MetaData) }; // 2188633137 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnJoinSessionCompleteEvent = { "K2_OnJoinSessionCompleteEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnJoinSessionCompleteEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnJoinSessionCompleteEvent_MetaData), NewProp_K2_OnJoinSessionCompleteEvent_MetaData) }; // 1201277882 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnCreateSessionCompleteEvent = { "K2_OnCreateSessionCompleteEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnCreateSessionCompleteEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnCreateSessionCompleteEvent_MetaData), NewProp_K2_OnCreateSessionCompleteEvent_MetaData) }; // 1271285163 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnSessionInformationChangedEvent = { "K2_OnSessionInformationChangedEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnSessionInformationChangedEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnSessionInformationChangedEvent_MetaData), NewProp_K2_OnSessionInformationChangedEvent_MetaData) }; // 2591526047 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnDestroySessionRequestedEvent = { "K2_OnDestroySessionRequestedEvent", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, K2_OnDestroySessionRequestedEvent), Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_K2_OnDestroySessionRequestedEvent_MetaData), NewProp_K2_OnDestroySessionRequestedEvent_MetaData) }; // 60469737 +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseLobbiesDefault = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault = { "bUseLobbiesDefault", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesDefault_MetaData), NewProp_bUseLobbiesDefault_MetaData) }; +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseLobbiesVoiceChatDefault = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault = { "bUseLobbiesVoiceChatDefault", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseLobbiesVoiceChatDefault_MetaData), NewProp_bUseLobbiesVoiceChatDefault_MetaData) }; +void Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons_SetBit(void* Obj) +{ + ((UCommonSessionSubsystem*)Obj)->bUseBeacons = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons = { "bUseBeacons", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonSessionSubsystem), &Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseBeacons_MetaData), NewProp_bUseBeacons_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconHostListener = { "BeaconHostListener", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconHostListener), Z_Construct_UClass_AOnlineBeaconHost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconHostListener_MetaData), NewProp_BeaconHostListener_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHostState = { "ReservationBeaconHostState", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconHostState), Z_Construct_UClass_UPartyBeaconState_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconHostState_MetaData), NewProp_ReservationBeaconHostState_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHost = { "ReservationBeaconHost", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconHost), Z_Construct_UClass_APartyBeaconHost_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconHost_MetaData), NewProp_ReservationBeaconHost_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconClient = { "ReservationBeaconClient", nullptr, (EPropertyFlags)0x0024080000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, ReservationBeaconClient), Z_Construct_UClass_APartyBeaconClient_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReservationBeaconClient_MetaData), NewProp_ReservationBeaconClient_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamCount = { "BeaconTeamCount", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconTeamCount), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconTeamCount_MetaData), NewProp_BeaconTeamCount_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamSize = { "BeaconTeamSize", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconTeamSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconTeamSize_MetaData), NewProp_BeaconTeamSize_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconMaxReservations = { "BeaconMaxReservations", nullptr, (EPropertyFlags)0x0020080000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonSessionSubsystem, BeaconMaxReservations), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BeaconMaxReservations_MetaData), NewProp_BeaconMaxReservations_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnUserRequestedSessionEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnJoinSessionCompleteEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnCreateSessionCompleteEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnSessionInformationChangedEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_K2_OnDestroySessionRequestedEvent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesDefault, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseLobbiesVoiceChatDefault, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_bUseBeacons, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconHostListener, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHostState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconHost, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_ReservationBeaconClient, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamCount, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconTeamSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonSessionSubsystem_Statics::NewProp_BeaconMaxReservations, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonSessionSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonSessionSubsystem_Statics::ClassParams = { + &UCommonSessionSubsystem::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::PropPointers), + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonSessionSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonSessionSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonSessionSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton, Z_Construct_UClass_UCommonSessionSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonSessionSubsystem.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonSessionSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonSessionSubsystem); +UCommonSessionSubsystem::~UCommonSessionSubsystem() {} +// End Class UCommonSessionSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonSessionOnlineMode_StaticEnum, TEXT("ECommonSessionOnlineMode"), &Z_Registration_Info_UEnum_ECommonSessionOnlineMode, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 460294093U) }, + { ECommonSessionInformationState_StaticEnum, TEXT("ECommonSessionInformationState"), &Z_Registration_Info_UEnum_ECommonSessionInformationState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2137357761U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonSession_HostSessionRequest, UCommonSession_HostSessionRequest::StaticClass, TEXT("UCommonSession_HostSessionRequest"), &Z_Registration_Info_UClass_UCommonSession_HostSessionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_HostSessionRequest), 162814832U) }, + { Z_Construct_UClass_UCommonSession_SearchResult, UCommonSession_SearchResult::StaticClass, TEXT("UCommonSession_SearchResult"), &Z_Registration_Info_UClass_UCommonSession_SearchResult, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_SearchResult), 2195757788U) }, + { Z_Construct_UClass_UCommonSession_SearchSessionRequest, UCommonSession_SearchSessionRequest::StaticClass, TEXT("UCommonSession_SearchSessionRequest"), &Z_Registration_Info_UClass_UCommonSession_SearchSessionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSession_SearchSessionRequest), 2569571193U) }, + { Z_Construct_UClass_UCommonSessionSubsystem, UCommonSessionSubsystem::StaticClass, TEXT("UCommonSessionSubsystem"), &Z_Registration_Info_UClass_UCommonSessionSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonSessionSubsystem), 1695913672U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_538841840(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h new file mode 100644 index 00000000..3fd8ee22 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonSessionSubsystem.generated.h @@ -0,0 +1,232 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonSessionSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class APlayerController; +class UCommonSession_HostSessionRequest; +class UCommonSession_SearchResult; +class UCommonSession_SearchSessionRequest; +enum class ECommonSessionInformationState : uint8; +struct FOnlineResultInformation; +struct FPlatformUserId; +#ifdef COMMONUSER_CommonSessionSubsystem_generated_h +#error "CommonSessionSubsystem.generated.h already included, missing '#pragma once' in CommonSessionSubsystem.h" +#endif +#define COMMONUSER_CommonSessionSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_HostSessionRequest(); \ + friend struct Z_Construct_UClass_UCommonSession_HostSessionRequest_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_HostSessionRequest, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_HostSessionRequest) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_HostSessionRequest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_HostSessionRequest(UCommonSession_HostSessionRequest&&); \ + UCommonSession_HostSessionRequest(const UCommonSession_HostSessionRequest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_HostSessionRequest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_HostSessionRequest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_HostSessionRequest) \ + NO_API virtual ~UCommonSession_HostSessionRequest(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_56_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_59_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetPingInMs); \ + DECLARE_FUNCTION(execGetMaxPublicConnections); \ + DECLARE_FUNCTION(execGetNumOpenPublicConnections); \ + DECLARE_FUNCTION(execGetNumOpenPrivateConnections); \ + DECLARE_FUNCTION(execGetIntSetting); \ + DECLARE_FUNCTION(execGetStringSetting); \ + DECLARE_FUNCTION(execGetDescription); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_SearchResult(); \ + friend struct Z_Construct_UClass_UCommonSession_SearchResult_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_SearchResult, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_SearchResult) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_SearchResult(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_SearchResult(UCommonSession_SearchResult&&); \ + UCommonSession_SearchResult(const UCommonSession_SearchResult&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_SearchResult); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_SearchResult); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_SearchResult) \ + NO_API virtual ~UCommonSession_SearchResult(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_113_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_116_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_163_DELEGATE \ +COMMONUSER_API void FCommonSession_FindSessionsFinishedDynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSession_FindSessionsFinishedDynamic, bool bSucceeded, const FText& ErrorMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSession_SearchSessionRequest(); \ + friend struct Z_Construct_UClass_UCommonSession_SearchSessionRequest_Statics; \ +public: \ + DECLARE_CLASS(UCommonSession_SearchSessionRequest, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSession_SearchSessionRequest) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonSession_SearchSessionRequest(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSession_SearchSessionRequest(UCommonSession_SearchSessionRequest&&); \ + UCommonSession_SearchSessionRequest(const UCommonSession_SearchSessionRequest&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSession_SearchSessionRequest); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSession_SearchSessionRequest); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonSession_SearchSessionRequest) \ + NO_API virtual ~UCommonSession_SearchSessionRequest(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_166_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_169_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_208_DELEGATE \ +COMMONUSER_API void FCommonSessionOnUserRequestedSession_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnUserRequestedSession_Dynamic, FPlatformUserId const& LocalPlatformUserId, UCommonSession_SearchResult* RequestedSession, FOnlineResultInformation const& RequestedSessionResult); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_216_DELEGATE \ +COMMONUSER_API void FCommonSessionOnJoinSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnJoinSessionComplete_Dynamic, FOnlineResultInformation const& Result); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_224_DELEGATE \ +COMMONUSER_API void FCommonSessionOnCreateSessionComplete_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnCreateSessionComplete_Dynamic, FOnlineResultInformation const& Result); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_233_DELEGATE \ +COMMONUSER_API void FCommonSessionOnDestroySessionRequested_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnDestroySessionRequested_Dynamic, FPlatformUserId const& LocalPlatformUserId, FName const& SessionName); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_253_DELEGATE \ +COMMONUSER_API void FCommonSessionOnSessionInformationChanged_Dynamic_DelegateWrapper(const FMulticastScriptDelegate& CommonSessionOnSessionInformationChanged_Dynamic, ECommonSessionInformationState SessionStatus, const FString& GameMode, const FString& MapName); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execCleanUpSessions); \ + DECLARE_FUNCTION(execFindSessions); \ + DECLARE_FUNCTION(execJoinSession); \ + DECLARE_FUNCTION(execQuickPlaySession); \ + DECLARE_FUNCTION(execHostSession); \ + DECLARE_FUNCTION(execCreateOnlineSearchSessionRequest); \ + DECLARE_FUNCTION(execCreateOnlineHostSessionRequest); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonSessionSubsystem(); \ + friend struct Z_Construct_UClass_UCommonSessionSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonSessionSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonSessionSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonSessionSubsystem(UCommonSessionSubsystem&&); \ + UCommonSessionSubsystem(const UCommonSessionSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonSessionSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonSessionSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonSessionSubsystem) \ + NO_API virtual ~UCommonSessionSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_263_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h_266_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonSessionSubsystem_h + + +#define FOREACH_ENUM_ECOMMONSESSIONONLINEMODE(op) \ + op(ECommonSessionOnlineMode::Offline) \ + op(ECommonSessionOnlineMode::LAN) \ + op(ECommonSessionOnlineMode::Online) + +enum class ECommonSessionOnlineMode : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONSESSIONINFORMATIONSTATE(op) \ + op(ECommonSessionInformationState::OutOfGame) \ + op(ECommonSessionInformationState::Matchmaking) \ + op(ECommonSessionInformationState::InGame) + +enum class ECommonSessionInformationState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUser.init.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUser.init.gen.cpp new file mode 100644 index 00000000..789c4a8b --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUser.init.gen.cpp @@ -0,0 +1,51 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUser_init() {} + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature(); + COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_CommonUser; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_CommonUser() + { + if (!Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSession_FindSessionsFinishedDynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnCreateSessionComplete_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnDestroySessionRequested_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnJoinSessionComplete_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnSessionInformationChanged_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonSessionOnUserRequestedSession_Dynamic__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/CommonUser", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x8DC30AD0, + 0x7E83CEB6, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_CommonUser.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_CommonUser(Z_Construct_UPackage__Script_CommonUser, TEXT("/Script/CommonUser"), Z_Registration_Info_UPackage__Script_CommonUser, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x8DC30AD0, 0x7E83CEB6)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp new file mode 100644 index 00000000..6675f1dd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserBasicPresence.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserBasicPresence() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserBasicPresence(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserBasicPresence_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UCommonUserBasicPresence +void UCommonUserBasicPresence::StaticRegisterNativesUCommonUserBasicPresence() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserBasicPresence); +UClass* Z_Construct_UClass_UCommonUserBasicPresence_NoRegister() +{ + return UCommonUserBasicPresence::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserBasicPresence_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This subsystem plugs into the session subsystem and pushes its information to the presence interface.\n * It is not intended to be a full featured rich presence implementation, but can be used as a proof-of-concept\n * for pushing information from the session subsystem to the presence system\n */" }, +#endif + { "IncludePath", "CommonUserBasicPresence.h" }, + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This subsystem plugs into the session subsystem and pushes its information to the presence interface.\nIt is not intended to be a full featured rich presence implementation, but can be used as a proof-of-concept\nfor pushing information from the session subsystem to the presence system" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableSessionsBasedPresence_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** False is a general purpose killswitch to stop this class from pushing presence*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "False is a general purpose killswitch to stop this class from pushing presence" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusInGame_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"In-game\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"In-game\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusMainMenu_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"Main Menu\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"Main Menu\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceStatusMatchmaking_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the presence status \"Matchmaking\" to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the presence status \"Matchmaking\" to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceKeyGameMode_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the \"Game Mode\" rich presence entry to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the \"Game Mode\" rich presence entry to a backend key" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PresenceKeyMapName_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Maps the \"Map Name\" rich presence entry to a backend key*/" }, +#endif + { "ModuleRelativePath", "Public/CommonUserBasicPresence.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Maps the \"Map Name\" rich presence entry to a backend key" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bEnableSessionsBasedPresence_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableSessionsBasedPresence; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusInGame; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusMainMenu; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceStatusMatchmaking; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceKeyGameMode; + static const UECodeGen_Private::FStrPropertyParams NewProp_PresenceKeyMapName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence_SetBit(void* Obj) +{ + ((UCommonUserBasicPresence*)Obj)->bEnableSessionsBasedPresence = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence = { "bEnableSessionsBasedPresence", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserBasicPresence), &Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableSessionsBasedPresence_MetaData), NewProp_bEnableSessionsBasedPresence_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusInGame = { "PresenceStatusInGame", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusInGame), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusInGame_MetaData), NewProp_PresenceStatusInGame_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMainMenu = { "PresenceStatusMainMenu", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusMainMenu), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusMainMenu_MetaData), NewProp_PresenceStatusMainMenu_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMatchmaking = { "PresenceStatusMatchmaking", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceStatusMatchmaking), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceStatusMatchmaking_MetaData), NewProp_PresenceStatusMatchmaking_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyGameMode = { "PresenceKeyGameMode", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceKeyGameMode), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceKeyGameMode_MetaData), NewProp_PresenceKeyGameMode_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyMapName = { "PresenceKeyMapName", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserBasicPresence, PresenceKeyMapName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PresenceKeyMapName_MetaData), NewProp_PresenceKeyMapName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_bEnableSessionsBasedPresence, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusInGame, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMainMenu, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceStatusMatchmaking, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyGameMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserBasicPresence_Statics::NewProp_PresenceKeyMapName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserBasicPresence_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserBasicPresence_Statics::ClassParams = { + &UCommonUserBasicPresence::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::PropPointers), + 0, + 0x001000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserBasicPresence_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserBasicPresence_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserBasicPresence() +{ + if (!Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton, Z_Construct_UClass_UCommonUserBasicPresence_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserBasicPresence.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserBasicPresence::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserBasicPresence); +UCommonUserBasicPresence::~UCommonUserBasicPresence() {} +// End Class UCommonUserBasicPresence + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUserBasicPresence, UCommonUserBasicPresence::StaticClass, TEXT("UCommonUserBasicPresence"), &Z_Registration_Info_UClass_UCommonUserBasicPresence, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserBasicPresence), 852304551U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_2004475205(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h new file mode 100644 index 00000000..e7257473 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserBasicPresence.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONUSER_CommonUserBasicPresence_generated_h +#error "CommonUserBasicPresence.generated.h already included, missing '#pragma once' in CommonUserBasicPresence.h" +#endif +#define COMMONUSER_CommonUserBasicPresence_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserBasicPresence(); \ + friend struct Z_Construct_UClass_UCommonUserBasicPresence_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserBasicPresence, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserBasicPresence) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserBasicPresence(UCommonUserBasicPresence&&); \ + UCommonUserBasicPresence(const UCommonUserBasicPresence&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserBasicPresence); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserBasicPresence); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUserBasicPresence) \ + NO_API virtual ~UCommonUserBasicPresence(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserBasicPresence_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserClasses.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp new file mode 100644 index 00000000..eb1b5b12 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.gen.cpp @@ -0,0 +1,2541 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +#include "Runtime/Engine/Classes/GameFramework/OnlineReplStructs.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "Runtime/InputCore/Classes/InputCoreTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserSubsystem() {} + +// Begin Cross Module References +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem(); +COMMONUSER_API UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature(); +COMMONUSER_API UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FCommonUserInitializeParams(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FInputDeviceId(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FUniqueNetIdRepl(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Class UCommonUserInfo Function GetCachedPrivilegeResult +struct Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics +{ + struct CommonUserInfo_eventGetCachedPrivilegeResult_Parms + { + ECommonUserPrivilege Privilege; + ECommonUserOnlineContext Context; + ECommonUserPrivilegeResult ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the most recently queries result for a specific privilege, will return unknown if never queried */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the most recently queries result for a specific privilege, will return unknown if never queried" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetCachedPrivilegeResult_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult, METADATA_PARAMS(0, nullptr) }; // 2681083962 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetCachedPrivilegeResult", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::CommonUserInfo_eventGetCachedPrivilegeResult_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::CommonUserInfo_eventGetCachedPrivilegeResult_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetCachedPrivilegeResult) +{ + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserPrivilegeResult*)Z_Param__Result=P_THIS->GetCachedPrivilegeResult(ECommonUserPrivilege(Z_Param_Privilege),ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetCachedPrivilegeResult + +// Begin Class UCommonUserInfo Function GetDebugString +struct Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics +{ + struct CommonUserInfo_eventGetDebugString_Parms + { + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns an internal debug string for this player */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns an internal debug string for this player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetDebugString_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetDebugString", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::CommonUserInfo_eventGetDebugString_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::CommonUserInfo_eventGetDebugString_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetDebugString() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetDebugString_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetDebugString) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetDebugString(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetDebugString + +// Begin Class UCommonUserInfo Function GetNetId +struct Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics +{ + struct CommonUserInfo_eventGetNetId_Parms + { + ECommonUserOnlineContext Context; + FUniqueNetIdRepl ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the net id for the given context */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the net id for the given context" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNetId_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNetId_Parms, ReturnValue), Z_Construct_UScriptStruct_FUniqueNetIdRepl, METADATA_PARAMS(0, nullptr) }; // 3410776867 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetNetId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::CommonUserInfo_eventGetNetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::CommonUserInfo_eventGetNetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetNetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetNetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetNetId) +{ + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(FUniqueNetIdRepl*)Z_Param__Result=P_THIS->GetNetId(ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetNetId + +// Begin Class UCommonUserInfo Function GetNickname +struct Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics +{ + struct CommonUserInfo_eventGetNickname_Parms + { + ECommonUserOnlineContext Context; + FString ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user's human readable nickname, this will return the value that was cached during UpdateCachedNetId or SetNickname */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user's human readable nickname, this will return the value that was cached during UpdateCachedNetId or SetNickname" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FStrPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNickname_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetNickname_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_Context, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetNickname", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::CommonUserInfo_eventGetNickname_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::CommonUserInfo_eventGetNickname_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetNickname() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetNickname_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetNickname) +{ + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + *(FString*)Z_Param__Result=P_THIS->GetNickname(ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetNickname + +// Begin Class UCommonUserInfo Function GetPrivilegeAvailability +struct Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics +{ + struct CommonUserInfo_eventGetPrivilegeAvailability_Parms + { + ECommonUserPrivilege Privilege; + ECommonUserAvailability ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Ask about the general availability of a feature, this combines cached results with state */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Ask about the general availability of a feature, this combines cached results with state" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetPrivilegeAvailability_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventGetPrivilegeAvailability_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "GetPrivilegeAvailability", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::CommonUserInfo_eventGetPrivilegeAvailability_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::CommonUserInfo_eventGetPrivilegeAvailability_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execGetPrivilegeAvailability) +{ + P_GET_ENUM(ECommonUserPrivilege,Z_Param_Privilege); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserAvailability*)Z_Param__Result=P_THIS->GetPrivilegeAvailability(ECommonUserPrivilege(Z_Param_Privilege)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function GetPrivilegeAvailability + +// Begin Class UCommonUserInfo Function IsDoingLogin +struct Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics +{ + struct CommonUserInfo_eventIsDoingLogin_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user is in the middle of logging in */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user is in the middle of logging in" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserInfo_eventIsDoingLogin_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserInfo_eventIsDoingLogin_Parms), &Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "IsDoingLogin", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::CommonUserInfo_eventIsDoingLogin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::CommonUserInfo_eventIsDoingLogin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execIsDoingLogin) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsDoingLogin(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function IsDoingLogin + +// Begin Class UCommonUserInfo Function IsLoggedIn +struct Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics +{ + struct CommonUserInfo_eventIsLoggedIn_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns true if this user has successfully logged in */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns true if this user has successfully logged in" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserInfo_eventIsLoggedIn_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserInfo_eventIsLoggedIn_Parms), &Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "IsLoggedIn", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::CommonUserInfo_eventIsLoggedIn_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::CommonUserInfo_eventIsLoggedIn_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execIsLoggedIn) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->IsLoggedIn(); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function IsLoggedIn + +// Begin Class UCommonUserInfo Function SetNickname +struct Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics +{ + struct CommonUserInfo_eventSetNickname_Parms + { + FString NewNickname; + ECommonUserOnlineContext Context; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Modify the user's human readable nickname, this can be used when setting up multiple guests but will get overwritten with the platform nickname for real users */" }, +#endif + { "CPP_Default_Context", "Game" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Modify the user's human readable nickname, this can be used when setting up multiple guests but will get overwritten with the platform nickname for real users" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NewNickname_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStrPropertyParams NewProp_NewNickname; + static const UECodeGen_Private::FBytePropertyParams NewProp_Context_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Context; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_NewNickname = { "NewNickname", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventSetNickname_Parms, NewNickname), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NewNickname_MetaData), NewProp_NewNickname_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context = { "Context", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserInfo_eventSetNickname_Parms, Context), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_NewNickname, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::NewProp_Context, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserInfo, nullptr, "SetNickname", nullptr, nullptr, Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::CommonUserInfo_eventSetNickname_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::CommonUserInfo_eventSetNickname_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserInfo_SetNickname() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserInfo_SetNickname_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserInfo::execSetNickname) +{ + P_GET_PROPERTY(FStrProperty,Z_Param_NewNickname); + P_GET_ENUM(ECommonUserOnlineContext,Z_Param_Context); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetNickname(Z_Param_NewNickname,ECommonUserOnlineContext(Z_Param_Context)); + P_NATIVE_END; +} +// End Class UCommonUserInfo Function SetNickname + +// Begin Class UCommonUserInfo +void UCommonUserInfo::StaticRegisterNativesUCommonUserInfo() +{ + UClass* Class = UCommonUserInfo::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetCachedPrivilegeResult", &UCommonUserInfo::execGetCachedPrivilegeResult }, + { "GetDebugString", &UCommonUserInfo::execGetDebugString }, + { "GetNetId", &UCommonUserInfo::execGetNetId }, + { "GetNickname", &UCommonUserInfo::execGetNickname }, + { "GetPrivilegeAvailability", &UCommonUserInfo::execGetPrivilegeAvailability }, + { "IsDoingLogin", &UCommonUserInfo::execIsDoingLogin }, + { "IsLoggedIn", &UCommonUserInfo::execIsLoggedIn }, + { "SetNickname", &UCommonUserInfo::execSetNickname }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserInfo); +UClass* Z_Construct_UClass_UCommonUserInfo_NoRegister() +{ + return UCommonUserInfo::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Logical representation of an individual user, one of these will exist for all initialized local players */" }, +#endif + { "IncludePath", "CommonUserSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Logical representation of an individual user, one of these will exist for all initialized local players" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrimaryInputDevice_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary controller input device for this user, they could also have additional secondary devices */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary controller input device for this user, they could also have additional secondary devices" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformUser_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the logical user on the local platform, guest users will point to the primary user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the logical user on the local platform, guest users will point to the primary user" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerIndex_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If this user is assigned a LocalPlayer, this will match the index in the GameInstance localplayers array once it is fully created */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this user is assigned a LocalPlayer, this will match the index in the GameInstance localplayers array once it is fully created" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanBeGuest_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this user is allowed to be a guest */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this user is allowed to be a guest" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsGuest_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, this is a guest user attached to primary user 0 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, this is a guest user attached to primary user 0" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InitializationState_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Overall state of the user's initialization process */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Overall state of the user's initialization process" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_bCanBeGuest_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanBeGuest; + static void NewProp_bIsGuest_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsGuest; + static const UECodeGen_Private::FBytePropertyParams NewProp_InitializationState_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_InitializationState; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUserInfo_GetCachedPrivilegeResult, "GetCachedPrivilegeResult" }, // 1344180757 + { &Z_Construct_UFunction_UCommonUserInfo_GetDebugString, "GetDebugString" }, // 736993682 + { &Z_Construct_UFunction_UCommonUserInfo_GetNetId, "GetNetId" }, // 3232078331 + { &Z_Construct_UFunction_UCommonUserInfo_GetNickname, "GetNickname" }, // 1581097351 + { &Z_Construct_UFunction_UCommonUserInfo_GetPrivilegeAvailability, "GetPrivilegeAvailability" }, // 240732393 + { &Z_Construct_UFunction_UCommonUserInfo_IsDoingLogin, "IsDoingLogin" }, // 233956498 + { &Z_Construct_UFunction_UCommonUserInfo_IsLoggedIn, "IsLoggedIn" }, // 4209718805 + { &Z_Construct_UFunction_UCommonUserInfo_SetNickname, "SetNickname" }, // 15699436 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrimaryInputDevice_MetaData), NewProp_PrimaryInputDevice_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformUser_MetaData), NewProp_PlatformUser_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, LocalPlayerIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerIndex_MetaData), NewProp_LocalPlayerIndex_MetaData) }; +void Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest_SetBit(void* Obj) +{ + ((UCommonUserInfo*)Obj)->bCanBeGuest = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest = { "bCanBeGuest", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserInfo), &Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanBeGuest_MetaData), NewProp_bCanBeGuest_MetaData) }; +void Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest_SetBit(void* Obj) +{ + ((UCommonUserInfo*)Obj)->bIsGuest = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest = { "bIsGuest", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UCommonUserInfo), &Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsGuest_MetaData), NewProp_bIsGuest_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState = { "InitializationState", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserInfo, InitializationState), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InitializationState_MetaData), NewProp_InitializationState_MetaData) }; // 2275509869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bCanBeGuest, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_bIsGuest, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserInfo_Statics::NewProp_InitializationState, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserInfo_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserInfo_Statics::ClassParams = { + &UCommonUserInfo::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserInfo_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserInfo_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserInfo() +{ + if (!Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton, Z_Construct_UClass_UCommonUserInfo_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserInfo.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserInfo::StaticClass(); +} +UCommonUserInfo::UCommonUserInfo(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserInfo); +UCommonUserInfo::~UCommonUserInfo() {} +// End Class UCommonUserInfo + +// Begin Delegate FCommonUserOnInitializeCompleteMulticast +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegates when initialization processes succeed or fail */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegates when initialization processes succeed or fail" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserOnInitializeCompleteMulticast__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserOnInitializeCompleteMulticast_DelegateWrapper(const FMulticastScriptDelegate& CommonUserOnInitializeCompleteMulticast, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext) +{ + struct _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; + _Script_CommonUser_eventCommonUserOnInitializeCompleteMulticast_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.bSuccess=bSuccess ? true : false; + Parms.Error=Error; + Parms.RequestedPrivilege=RequestedPrivilege; + Parms.OnlineContext=OnlineContext; + CommonUserOnInitializeCompleteMulticast.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserOnInitializeCompleteMulticast + +// Begin Delegate FCommonUserOnInitializeComplete +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static void NewProp_bSuccess_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuccess; + static const UECodeGen_Private::FTextPropertyParams NewProp_Error; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +void Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess_SetBit(void* Obj) +{ + ((_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms*)Obj)->bSuccess = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess = { "bSuccess", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms), &Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_Error = { "Error", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, Error), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(0, nullptr) }; // 3178011620 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_bSuccess, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_Error, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::NewProp_OnlineContext, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserOnInitializeComplete__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserOnInitializeComplete_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserOnInitializeComplete_DelegateWrapper(const FScriptDelegate& CommonUserOnInitializeComplete, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext) +{ + struct _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms + { + const UCommonUserInfo* UserInfo; + bool bSuccess; + FText Error; + ECommonUserPrivilege RequestedPrivilege; + ECommonUserOnlineContext OnlineContext; + }; + _Script_CommonUser_eventCommonUserOnInitializeComplete_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.bSuccess=bSuccess ? true : false; + Parms.Error=Error; + Parms.RequestedPrivilege=RequestedPrivilege; + Parms.OnlineContext=OnlineContext; + CommonUserOnInitializeComplete.ProcessDelegate(&Parms); +} +// End Delegate FCommonUserOnInitializeComplete + +// Begin Delegate FCommonUserHandleSystemMessageDelegate +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate when a system error message is sent, the game can choose to display it to the user using the type tag */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate when a system error message is sent, the game can choose to display it to the user using the type tag" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_TitleText; + static const UECodeGen_Private::FTextPropertyParams NewProp_BodyText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_TitleText = { "TitleText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, TitleText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_BodyText = { "BodyText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms, BodyText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_TitleText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::NewProp_BodyText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserHandleSystemMessageDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserHandleSystemMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserHandleSystemMessageDelegate, FGameplayTag MessageType, const FText& TitleText, const FText& BodyText) +{ + struct _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; + _Script_CommonUser_eventCommonUserHandleSystemMessageDelegate_Parms Parms; + Parms.MessageType=MessageType; + Parms.TitleText=TitleText; + Parms.BodyText=BodyText; + CommonUserHandleSystemMessageDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserHandleSystemMessageDelegate + +// Begin Delegate FCommonUserAvailabilityChangedDelegate +struct Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics +{ + struct _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Delegate when a privilege changes, this can be bound to see if online status/etc changes during gameplay */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Delegate when a privilege changes, this can be bound to see if online status/etc changes during gameplay" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserInfo_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_UserInfo; + static const UECodeGen_Private::FBytePropertyParams NewProp_Privilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Privilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OldAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OldAvailability; + static const UECodeGen_Private::FBytePropertyParams NewProp_NewAvailability_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_NewAvailability; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_UserInfo = { "UserInfo", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, UserInfo), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserInfo_MetaData), NewProp_UserInfo_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege = { "Privilege", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, Privilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(0, nullptr) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability = { "OldAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, OldAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability = { "NewAvailability", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms, NewAvailability), Z_Construct_UEnum_CommonUser_ECommonUserAvailability, METADATA_PARAMS(0, nullptr) }; // 3023508109 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_UserInfo, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_Privilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_OldAvailability, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::NewProp_NewAvailability, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, nullptr, "CommonUserAvailabilityChangedDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::_Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FCommonUserAvailabilityChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserAvailabilityChangedDelegate, const UCommonUserInfo* UserInfo, ECommonUserPrivilege Privilege, ECommonUserAvailability OldAvailability, ECommonUserAvailability NewAvailability) +{ + struct _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms + { + const UCommonUserInfo* UserInfo; + ECommonUserPrivilege Privilege; + ECommonUserAvailability OldAvailability; + ECommonUserAvailability NewAvailability; + }; + _Script_CommonUser_eventCommonUserAvailabilityChangedDelegate_Parms Parms; + Parms.UserInfo=UserInfo; + Parms.Privilege=Privilege; + Parms.OldAvailability=OldAvailability; + Parms.NewAvailability=NewAvailability; + CommonUserAvailabilityChangedDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FCommonUserAvailabilityChangedDelegate + +// Begin ScriptStruct FCommonUserInitializeParams +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_CommonUserInitializeParams; +class UScriptStruct* FCommonUserInitializeParams::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FCommonUserInitializeParams, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("CommonUserInitializeParams")); + } + return Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.OuterSingleton; +} +template<> COMMONUSER_API UScriptStruct* StaticStruct() +{ + return FCommonUserInitializeParams::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Parameter struct for initialize functions, this would normally be filled in by wrapper functions like async nodes */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Parameter struct for initialize functions, this would normally be filled in by wrapper functions like async nodes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayerIndex_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** What local player index to use, can specify one above current if can create player is enabled */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What local player index to use, can specify one above current if can create player is enabled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControllerId_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated method of selecting platform user and input device */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated method of selecting platform user and input device" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrimaryInputDevice_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Primary controller input device for this user, they could also have additional secondary devices */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Primary controller input device for this user, they could also have additional secondary devices" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformUser_MetaData[] = { + { "Category", "UserInfo" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Specifies the logical user on the local platform */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Specifies the logical user on the local platform" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RequestedPrivilege_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Generally either CanPlay or CanPlayOnline, specifies what level of privilege is required */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Generally either CanPlay or CanPlayOnline, specifies what level of privilege is required" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnlineContext_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** What specific online context to log in to, game means to login to all relevant ones */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What specific online context to log in to, game means to login to all relevant ones" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanCreateNewLocalPlayer_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this is allowed to create a new local player for initial login */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this is allowed to create a new local player for initial login" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanUseGuestLogin_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if this player can be a guest user without an actual online presence */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if this player can be a guest user without an actual online presence" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bSuppressLoginErrors_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** True if we should not show login errors, the game will be responsible for displaying them */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "True if we should not show login errors, the game will be responsible for displaying them" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserInitializeComplete_MetaData[] = { + { "Category", "Default" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If bound, call this dynamic delegate at completion of login */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If bound, call this dynamic delegate at completion of login" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FIntPropertyParams NewProp_ControllerId; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FBytePropertyParams NewProp_RequestedPrivilege_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_RequestedPrivilege; + static const UECodeGen_Private::FBytePropertyParams NewProp_OnlineContext_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_OnlineContext; + static void NewProp_bCanCreateNewLocalPlayer_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanCreateNewLocalPlayer; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static void NewProp_bSuppressLoginErrors_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSuppressLoginErrors; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_OnUserInitializeComplete; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, LocalPlayerIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayerIndex_MetaData), NewProp_LocalPlayerIndex_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_ControllerId = { "ControllerId", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, ControllerId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControllerId_MetaData), NewProp_ControllerId_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrimaryInputDevice_MetaData), NewProp_PrimaryInputDevice_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformUser_MetaData), NewProp_PlatformUser_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege = { "RequestedPrivilege", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, RequestedPrivilege), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RequestedPrivilege_MetaData), NewProp_RequestedPrivilege_MetaData) }; // 3165184135 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext = { "OnlineContext", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, OnlineContext), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnlineContext_MetaData), NewProp_OnlineContext_MetaData) }; // 3178011620 +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bCanCreateNewLocalPlayer = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer = { "bCanCreateNewLocalPlayer", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanCreateNewLocalPlayer_MetaData), NewProp_bCanCreateNewLocalPlayer_MetaData) }; +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanUseGuestLogin_MetaData), NewProp_bCanUseGuestLogin_MetaData) }; +void Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors_SetBit(void* Obj) +{ + ((FCommonUserInitializeParams*)Obj)->bSuppressLoginErrors = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors = { "bSuppressLoginErrors", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FCommonUserInitializeParams), &Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bSuppressLoginErrors_MetaData), NewProp_bSuppressLoginErrors_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnUserInitializeComplete = { "OnUserInitializeComplete", nullptr, (EPropertyFlags)0x0010000000080005, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FCommonUserInitializeParams, OnUserInitializeComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeComplete__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserInitializeComplete_MetaData), NewProp_OnUserInitializeComplete_MetaData) }; // 1840041042 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_ControllerId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_RequestedPrivilege, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnlineContext, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanCreateNewLocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_bSuppressLoginErrors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewProp_OnUserInitializeComplete, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + &NewStructOps, + "CommonUserInitializeParams", + Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::PropPointers), + sizeof(FCommonUserInitializeParams), + alignof(FCommonUserInitializeParams), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000205), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FCommonUserInitializeParams() +{ + if (!Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton, Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_CommonUserInitializeParams.InnerSingleton; +} +// End ScriptStruct FCommonUserInitializeParams + +// Begin Class UCommonUserSubsystem Function CancelUserInitialization +struct Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics +{ + struct CommonUserSubsystem_eventCancelUserInitialization_Parms + { + int32 LocalPlayerIndex; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Attempts to cancel an in-progress initialization attempt, this may not work on all platforms but will disable callbacks */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempts to cancel an in-progress initialization attempt, this may not work on all platforms but will disable callbacks" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventCancelUserInitialization_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventCancelUserInitialization_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventCancelUserInitialization_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "CancelUserInitialization", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::CommonUserSubsystem_eventCancelUserInitialization_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::CommonUserSubsystem_eventCancelUserInitialization_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execCancelUserInitialization) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->CancelUserInitialization(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function CancelUserInitialization + +// Begin Class UCommonUserSubsystem Function GetLocalPlayerInitializationState +struct Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics +{ + struct CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms + { + int32 LocalPlayerIndex; + ECommonUserInitializationState ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the state of initializing the specified local player */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the state of initializing the specified local player" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms, ReturnValue), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, METADATA_PARAMS(0, nullptr) }; // 2275509869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetLocalPlayerInitializationState", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::CommonUserSubsystem_eventGetLocalPlayerInitializationState_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetLocalPlayerInitializationState) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(ECommonUserInitializationState*)Z_Param__Result=P_THIS->GetLocalPlayerInitializationState(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetLocalPlayerInitializationState + +// Begin Class UCommonUserSubsystem Function GetMaxLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventGetMaxLocalPlayers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the maximum number of local players */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the maximum number of local players" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetMaxLocalPlayers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetMaxLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::CommonUserSubsystem_eventGetMaxLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::CommonUserSubsystem_eventGetMaxLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetMaxLocalPlayers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetMaxLocalPlayers(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetMaxLocalPlayers + +// Begin Class UCommonUserSubsystem Function GetNumLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventGetNumLocalPlayers_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Gets the current number of local players, will always be at least 1 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the current number of local players, will always be at least 1" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetNumLocalPlayers_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetNumLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::CommonUserSubsystem_eventGetNumLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::CommonUserSubsystem_eventGetNumLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetNumLocalPlayers) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetNumLocalPlayers(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetNumLocalPlayers + +// Begin Class UCommonUserSubsystem Function GetUserInfoForControllerId +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForControllerId_Parms + { + int32 ControllerId; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated, use InputDeviceId when available */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated, use InputDeviceId when available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ControllerId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ControllerId = { "ControllerId", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForControllerId_Parms, ControllerId), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForControllerId_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ControllerId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForControllerId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::CommonUserSubsystem_eventGetUserInfoForControllerId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::CommonUserSubsystem_eventGetUserInfoForControllerId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForControllerId) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_ControllerId); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForControllerId(Z_Param_ControllerId); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForControllerId + +// Begin Class UCommonUserSubsystem Function GetUserInfoForInputDevice +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms + { + FInputDeviceId InputDevice; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a given input device. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a given input device. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_InputDevice; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_InputDevice = { "InputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms, InputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_InputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForInputDevice", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::CommonUserSubsystem_eventGetUserInfoForInputDevice_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForInputDevice) +{ + P_GET_STRUCT(FInputDeviceId,Z_Param_InputDevice); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForInputDevice(Z_Param_InputDevice); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForInputDevice + +// Begin Class UCommonUserSubsystem Function GetUserInfoForLocalPlayerIndex +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms + { + int32 LocalPlayerIndex; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a given local player index in game instance, 0 is always valid in a running game */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a given local player index in game instance, 0 is always valid in a running game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForLocalPlayerIndex", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::CommonUserSubsystem_eventGetUserInfoForLocalPlayerIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForLocalPlayerIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForLocalPlayerIndex(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForLocalPlayerIndex + +// Begin Class UCommonUserSubsystem Function GetUserInfoForPlatformUser +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms + { + FPlatformUserId PlatformUser; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the primary user info for a given platform user index. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the primary user info for a given platform user index. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_PlatformUser; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_PlatformUser = { "PlatformUser", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms, PlatformUser), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_PlatformUser, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForPlatformUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForPlatformUser) +{ + P_GET_STRUCT(FPlatformUserId,Z_Param_PlatformUser); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForPlatformUser(Z_Param_PlatformUser); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForPlatformUser + +// Begin Class UCommonUserSubsystem Function GetUserInfoForPlatformUserIndex +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms + { + int32 PlatformUserIndex; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Deprecated, use PlatformUserId when available */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Deprecated, use PlatformUserId when available" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_PlatformUserIndex; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_PlatformUserIndex = { "PlatformUserIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms, PlatformUserIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_PlatformUserIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForPlatformUserIndex", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::CommonUserSubsystem_eventGetUserInfoForPlatformUserIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForPlatformUserIndex) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_PlatformUserIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForPlatformUserIndex(Z_Param_PlatformUserIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForPlatformUserIndex + +// Begin Class UCommonUserSubsystem Function GetUserInfoForUniqueNetId +struct Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics +{ + struct CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms + { + FUniqueNetIdRepl NetId; + const UCommonUserInfo* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Returns the user info for a unique net id. Can return null */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Returns the user info for a unique net id. Can return null" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NetId_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_NetId; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_NetId = { "NetId", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms, NetId), Z_Construct_UScriptStruct_FUniqueNetIdRepl, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NetId_MetaData), NewProp_NetId_MetaData) }; // 3410776867 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000582, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms, ReturnValue), Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_NetId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "GetUserInfoForUniqueNetId", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x44420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::CommonUserSubsystem_eventGetUserInfoForUniqueNetId_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execGetUserInfoForUniqueNetId) +{ + P_GET_STRUCT_REF(FUniqueNetIdRepl,Z_Param_Out_NetId); + P_FINISH; + P_NATIVE_BEGIN; + *(const UCommonUserInfo**)Z_Param__Result=P_THIS->GetUserInfoForUniqueNetId(Z_Param_Out_NetId); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function GetUserInfoForUniqueNetId + +// Begin Class UCommonUserSubsystem Function HasTraitTag +struct Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics +{ + struct CommonUserSubsystem_eventHasTraitTag_Parms + { + FGameplayTag TraitTag; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Checks if a specific platform/feature tag is enabled */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Checks if a specific platform/feature tag is enabled" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TraitTag_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TraitTag; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_TraitTag = { "TraitTag", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventHasTraitTag_Parms, TraitTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TraitTag_MetaData), NewProp_TraitTag_MetaData) }; // 1298103297 +void Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventHasTraitTag_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventHasTraitTag_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_TraitTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "HasTraitTag", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::CommonUserSubsystem_eventHasTraitTag_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::CommonUserSubsystem_eventHasTraitTag_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execHasTraitTag) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_TraitTag); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasTraitTag(Z_Param_TraitTag); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function HasTraitTag + +// Begin Class UCommonUserSubsystem Function ListenForLoginKeyInput +struct Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics +{ + struct CommonUserSubsystem_eventListenForLoginKeyInput_Parms + { + TArray AnyUserKeys; + TArray NewUserKeys; + FCommonUserInitializeParams Params; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n\x09 * Starts the process of listening for user input for new and existing controllers and logging them.\n\x09 * This will insert a key input handler on the active GameViewportClient and is turned off by calling again with empty key arrays.\n\x09 *\n\x09 * @param AnyUserKeys\x09\x09Listen for these keys for any user, even the default user. Set this for an initial press start screen or empty to disable\n\x09 * @param NewUserKeys\x09\x09Listen for these keys for a new user without a player controller. Set this for splitscreen/local multiplayer or empty to disable\n\x09 * @param Params\x09\x09\x09Params passed to TryToInitializeUser after detecting key input\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the process of listening for user input for new and existing controllers and logging them.\nThis will insert a key input handler on the active GameViewportClient and is turned off by calling again with empty key arrays.\n\n@param AnyUserKeys Listen for these keys for any user, even the default user. Set this for an initial press start screen or empty to disable\n@param NewUserKeys Listen for these keys for a new user without a player controller. Set this for splitscreen/local multiplayer or empty to disable\n@param Params Params passed to TryToInitializeUser after detecting key input" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AnyUserKeys_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AnyUserKeys; + static const UECodeGen_Private::FStructPropertyParams NewProp_NewUserKeys_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_NewUserKeys; + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys_Inner = { "AnyUserKeys", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys = { "AnyUserKeys", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, AnyUserKeys), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys_Inner = { "NewUserKeys", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys = { "NewUserKeys", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, NewUserKeys), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; // 658672854 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventListenForLoginKeyInput_Parms, Params), Z_Construct_UScriptStruct_FCommonUserInitializeParams, METADATA_PARAMS(0, nullptr) }; // 82298502 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_AnyUserKeys, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_NewUserKeys, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::NewProp_Params, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ListenForLoginKeyInput", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::CommonUserSubsystem_eventListenForLoginKeyInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::CommonUserSubsystem_eventListenForLoginKeyInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execListenForLoginKeyInput) +{ + P_GET_TARRAY(FKey,Z_Param_AnyUserKeys); + P_GET_TARRAY(FKey,Z_Param_NewUserKeys); + P_GET_STRUCT(FCommonUserInitializeParams,Z_Param_Params); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ListenForLoginKeyInput(Z_Param_AnyUserKeys,Z_Param_NewUserKeys,Z_Param_Params); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ListenForLoginKeyInput + +// Begin Class UCommonUserSubsystem Function ResetUserState +struct Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Resets the login and initialization state when returning to the main menu after an error */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Resets the login and initialization state when returning to the main menu after an error" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ResetUserState", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execResetUserState) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ResetUserState(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ResetUserState + +// Begin Class UCommonUserSubsystem Function SendSystemMessage +struct Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics +{ + struct CommonUserSubsystem_eventSendSystemMessage_Parms + { + FGameplayTag MessageType; + FText TitleText; + FText BodyText; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Send a system message via OnHandleSystemMessage */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Send a system message via OnHandleSystemMessage" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_MessageType; + static const UECodeGen_Private::FTextPropertyParams NewProp_TitleText; + static const UECodeGen_Private::FTextPropertyParams NewProp_BodyText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_MessageType = { "MessageType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, MessageType), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_TitleText = { "TitleText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, TitleText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_BodyText = { "BodyText", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSendSystemMessage_Parms, BodyText), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_MessageType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_TitleText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::NewProp_BodyText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "SendSystemMessage", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::CommonUserSubsystem_eventSendSystemMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::CommonUserSubsystem_eventSendSystemMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execSendSystemMessage) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_MessageType); + P_GET_PROPERTY(FTextProperty,Z_Param_TitleText); + P_GET_PROPERTY(FTextProperty,Z_Param_BodyText); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SendSystemMessage(Z_Param_MessageType,Z_Param_TitleText,Z_Param_BodyText); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function SendSystemMessage + +// Begin Class UCommonUserSubsystem Function SetMaxLocalPlayers +struct Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics +{ + struct CommonUserSubsystem_eventSetMaxLocalPlayers_Parms + { + int32 InMaxLocalPLayers; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the maximum number of local players, will not destroy existing ones */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the maximum number of local players, will not destroy existing ones" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_InMaxLocalPLayers; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::NewProp_InMaxLocalPLayers = { "InMaxLocalPLayers", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventSetMaxLocalPlayers_Parms, InMaxLocalPLayers), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::NewProp_InMaxLocalPLayers, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "SetMaxLocalPlayers", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::CommonUserSubsystem_eventSetMaxLocalPlayers_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::CommonUserSubsystem_eventSetMaxLocalPlayers_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execSetMaxLocalPlayers) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_InMaxLocalPLayers); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetMaxLocalPlayers(Z_Param_InMaxLocalPLayers); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function SetMaxLocalPlayers + +// Begin Class UCommonUserSubsystem Function ShouldWaitForStartInput +struct Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics +{ + struct CommonUserSubsystem_eventShouldWaitForStartInput_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Checks to see if we should display a press start/input confirmation screen at startup. Games can call this or check the trait tags directly */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Checks to see if we should display a press start/input confirmation screen at startup. Games can call this or check the trait tags directly" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventShouldWaitForStartInput_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventShouldWaitForStartInput_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "ShouldWaitForStartInput", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::CommonUserSubsystem_eventShouldWaitForStartInput_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::CommonUserSubsystem_eventShouldWaitForStartInput_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execShouldWaitForStartInput) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ShouldWaitForStartInput(); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function ShouldWaitForStartInput + +// Begin Class UCommonUserSubsystem Function TryToInitializeForLocalPlay +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics +{ + struct FInputDeviceId + { + int32 InternalId; + }; + + struct CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms + { + int32 LocalPlayerIndex; + FInputDeviceId PrimaryInputDevice; + bool bCanUseGuestLogin; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Tries to start the process of creating or updating a local player, including logging in and creating a player controller.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09""Desired index of LocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n\x09 * @param PrimaryInputDevice The physical controller that should be mapped to this user, will use the default device if invalid\n\x09 * @param bCanUseGuestLogin\x09If true, this player can be a guest without a real Unique Net Id\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tries to start the process of creating or updating a local player, including logging in and creating a player controller.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\n@param LocalPlayerIndex Desired index of LocalPlayer in Game Instance, 0 will be primary player and 1+ for local multiplayer\n@param PrimaryInputDevice The physical controller that should be mapped to this user, will use the default device if invalid\n@param bCanUseGuestLogin If true, this player can be a guest without a real Unique Net Id\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static const UECodeGen_Private::FStructPropertyParams NewProp_PrimaryInputDevice; + static void NewProp_bCanUseGuestLogin_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanUseGuestLogin; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice = { "PrimaryInputDevice", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms, PrimaryInputDevice), Z_Construct_UScriptStruct_FInputDeviceId, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms*)Obj)->bCanUseGuestLogin = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin = { "bCanUseGuestLogin", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin_SetBit, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_PrimaryInputDevice, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_bCanUseGuestLogin, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToInitializeForLocalPlay", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::CommonUserSubsystem_eventTryToInitializeForLocalPlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToInitializeForLocalPlay) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_STRUCT(FInputDeviceId,Z_Param_PrimaryInputDevice); + P_GET_UBOOL(Z_Param_bCanUseGuestLogin); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToInitializeForLocalPlay(Z_Param_LocalPlayerIndex,Z_Param_PrimaryInputDevice,Z_Param_bCanUseGuestLogin); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToInitializeForLocalPlay + +// Begin Class UCommonUserSubsystem Function TryToInitializeUser +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics +{ + struct CommonUserSubsystem_eventTryToInitializeUser_Parms + { + FCommonUserInitializeParams Params; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Starts a general user login and initialization process, using the params structure to determine what to log in to.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 * AsyncAction_CommonUserInitialize provides several wrapper functions for using this in an Event graph.\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts a general user login and initialization process, using the params structure to determine what to log in to.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\nAsyncAction_CommonUserInitialize provides several wrapper functions for using this in an Event graph.\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Params; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_Params = { "Params", nullptr, (EPropertyFlags)0x0010008000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToInitializeUser_Parms, Params), Z_Construct_UScriptStruct_FCommonUserInitializeParams, METADATA_PARAMS(0, nullptr) }; // 82298502 +void Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToInitializeUser_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToInitializeUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_Params, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToInitializeUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::CommonUserSubsystem_eventTryToInitializeUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::CommonUserSubsystem_eventTryToInitializeUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToInitializeUser) +{ + P_GET_STRUCT(FCommonUserInitializeParams,Z_Param_Params); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToInitializeUser(Z_Param_Params); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToInitializeUser + +// Begin Class UCommonUserSubsystem Function TryToLoginForOnlinePlay +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics +{ + struct CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms + { + int32 LocalPlayerIndex; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Starts the process of taking a locally logged in user and doing a full online login including account permission checks.\n\x09 * When the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\x09 *\n\x09 * @param LocalPlayerIndex\x09Index of existing LocalPlayer in Game Instance\n\x09 *\n\x09 * @returns true if the process was started, false if it failed before properly starting\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Starts the process of taking a locally logged in user and doing a full online login including account permission checks.\nWhen the process has succeeded or failed, it will broadcast the OnUserInitializeComplete delegate.\n\n@param LocalPlayerIndex Index of existing LocalPlayer in Game Instance\n\n@returns true if the process was started, false if it failed before properly starting" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToLoginForOnlinePlay", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::CommonUserSubsystem_eventTryToLoginForOnlinePlay_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToLoginForOnlinePlay) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToLoginForOnlinePlay(Z_Param_LocalPlayerIndex); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToLoginForOnlinePlay + +// Begin Class UCommonUserSubsystem Function TryToLogOutUser +struct Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics +{ + struct CommonUserSubsystem_eventTryToLogOutUser_Parms + { + int32 LocalPlayerIndex; + bool bDestroyPlayer; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Logs a player out of any online systems, and optionally destroys the player entirely if it's not the first one */" }, +#endif + { "CPP_Default_bDestroyPlayer", "false" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Logs a player out of any online systems, and optionally destroys the player entirely if it's not the first one" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalPlayerIndex; + static void NewProp_bDestroyPlayer_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bDestroyPlayer; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_LocalPlayerIndex = { "LocalPlayerIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(CommonUserSubsystem_eventTryToLogOutUser_Parms, LocalPlayerIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLogOutUser_Parms*)Obj)->bDestroyPlayer = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer = { "bDestroyPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLogOutUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer_SetBit, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((CommonUserSubsystem_eventTryToLogOutUser_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(CommonUserSubsystem_eventTryToLogOutUser_Parms), &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_LocalPlayerIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_bDestroyPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UCommonUserSubsystem, nullptr, "TryToLogOutUser", nullptr, nullptr, Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::PropPointers), sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::CommonUserSubsystem_eventTryToLogOutUser_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::Function_MetaDataParams), Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::CommonUserSubsystem_eventTryToLogOutUser_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UCommonUserSubsystem::execTryToLogOutUser) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_LocalPlayerIndex); + P_GET_UBOOL(Z_Param_bDestroyPlayer); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->TryToLogOutUser(Z_Param_LocalPlayerIndex,Z_Param_bDestroyPlayer); + P_NATIVE_END; +} +// End Class UCommonUserSubsystem Function TryToLogOutUser + +// Begin Class UCommonUserSubsystem +void UCommonUserSubsystem::StaticRegisterNativesUCommonUserSubsystem() +{ + UClass* Class = UCommonUserSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CancelUserInitialization", &UCommonUserSubsystem::execCancelUserInitialization }, + { "GetLocalPlayerInitializationState", &UCommonUserSubsystem::execGetLocalPlayerInitializationState }, + { "GetMaxLocalPlayers", &UCommonUserSubsystem::execGetMaxLocalPlayers }, + { "GetNumLocalPlayers", &UCommonUserSubsystem::execGetNumLocalPlayers }, + { "GetUserInfoForControllerId", &UCommonUserSubsystem::execGetUserInfoForControllerId }, + { "GetUserInfoForInputDevice", &UCommonUserSubsystem::execGetUserInfoForInputDevice }, + { "GetUserInfoForLocalPlayerIndex", &UCommonUserSubsystem::execGetUserInfoForLocalPlayerIndex }, + { "GetUserInfoForPlatformUser", &UCommonUserSubsystem::execGetUserInfoForPlatformUser }, + { "GetUserInfoForPlatformUserIndex", &UCommonUserSubsystem::execGetUserInfoForPlatformUserIndex }, + { "GetUserInfoForUniqueNetId", &UCommonUserSubsystem::execGetUserInfoForUniqueNetId }, + { "HasTraitTag", &UCommonUserSubsystem::execHasTraitTag }, + { "ListenForLoginKeyInput", &UCommonUserSubsystem::execListenForLoginKeyInput }, + { "ResetUserState", &UCommonUserSubsystem::execResetUserState }, + { "SendSystemMessage", &UCommonUserSubsystem::execSendSystemMessage }, + { "SetMaxLocalPlayers", &UCommonUserSubsystem::execSetMaxLocalPlayers }, + { "ShouldWaitForStartInput", &UCommonUserSubsystem::execShouldWaitForStartInput }, + { "TryToInitializeForLocalPlay", &UCommonUserSubsystem::execTryToInitializeForLocalPlay }, + { "TryToInitializeUser", &UCommonUserSubsystem::execTryToInitializeUser }, + { "TryToLoginForOnlinePlay", &UCommonUserSubsystem::execTryToLoginForOnlinePlay }, + { "TryToLogOutUser", &UCommonUserSubsystem::execTryToLogOutUser }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UCommonUserSubsystem); +UClass* Z_Construct_UClass_UCommonUserSubsystem_NoRegister() +{ + return UCommonUserSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UCommonUserSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Game subsystem that handles queries and changes to user identity and login status.\n * One subsystem is created for each game instance and can be accessed from blueprints or C++ code.\n * If a game-specific subclass exists, this base subsystem will not be created.\n */" }, +#endif + { "IncludePath", "CommonUserSubsystem.h" }, + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Game subsystem that handles queries and changes to user identity and login status.\nOne subsystem is created for each game instance and can be accessed from blueprints or C++ code.\nIf a game-specific subclass exists, this base subsystem will not be created." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserInitializeComplete_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when any requested initialization request completes */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when any requested initialization request completes" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnHandleSystemMessage_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when the system sends an error/warning message */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when the system sends an error/warning message" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnUserPrivilegeChanged_MetaData[] = { + { "Category", "CommonUser" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** BP delegate called when privilege availability changes for a user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "BP delegate called when privilege availability changes for a user" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalUserInfos_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Information about each local user, from local player index to user */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Information about each local user, from local player index to user" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnUserInitializeComplete; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnHandleSystemMessage; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnUserPrivilegeChanged; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalUserInfos_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_LocalUserInfos_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_LocalUserInfos; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UCommonUserSubsystem_CancelUserInitialization, "CancelUserInitialization" }, // 2471004610 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetLocalPlayerInitializationState, "GetLocalPlayerInitializationState" }, // 2898070656 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetMaxLocalPlayers, "GetMaxLocalPlayers" }, // 1904133090 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetNumLocalPlayers, "GetNumLocalPlayers" }, // 2501999304 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForControllerId, "GetUserInfoForControllerId" }, // 3557370159 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForInputDevice, "GetUserInfoForInputDevice" }, // 465978853 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForLocalPlayerIndex, "GetUserInfoForLocalPlayerIndex" }, // 2434831049 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUser, "GetUserInfoForPlatformUser" }, // 3985798498 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForPlatformUserIndex, "GetUserInfoForPlatformUserIndex" }, // 162766739 + { &Z_Construct_UFunction_UCommonUserSubsystem_GetUserInfoForUniqueNetId, "GetUserInfoForUniqueNetId" }, // 1182850125 + { &Z_Construct_UFunction_UCommonUserSubsystem_HasTraitTag, "HasTraitTag" }, // 2883627037 + { &Z_Construct_UFunction_UCommonUserSubsystem_ListenForLoginKeyInput, "ListenForLoginKeyInput" }, // 1636995381 + { &Z_Construct_UFunction_UCommonUserSubsystem_ResetUserState, "ResetUserState" }, // 1276895457 + { &Z_Construct_UFunction_UCommonUserSubsystem_SendSystemMessage, "SendSystemMessage" }, // 3109149110 + { &Z_Construct_UFunction_UCommonUserSubsystem_SetMaxLocalPlayers, "SetMaxLocalPlayers" }, // 3838433050 + { &Z_Construct_UFunction_UCommonUserSubsystem_ShouldWaitForStartInput, "ShouldWaitForStartInput" }, // 2738167107 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeForLocalPlay, "TryToInitializeForLocalPlay" }, // 193036832 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToInitializeUser, "TryToInitializeUser" }, // 2097638962 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToLoginForOnlinePlay, "TryToLoginForOnlinePlay" }, // 3726815099 + { &Z_Construct_UFunction_UCommonUserSubsystem_TryToLogOutUser, "TryToLogOutUser" }, // 597497870 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserInitializeComplete = { "OnUserInitializeComplete", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnUserInitializeComplete), Z_Construct_UDelegateFunction_CommonUser_CommonUserOnInitializeCompleteMulticast__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserInitializeComplete_MetaData), NewProp_OnUserInitializeComplete_MetaData) }; // 1269951818 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnHandleSystemMessage = { "OnHandleSystemMessage", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnHandleSystemMessage), Z_Construct_UDelegateFunction_CommonUser_CommonUserHandleSystemMessageDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnHandleSystemMessage_MetaData), NewProp_OnHandleSystemMessage_MetaData) }; // 2637707547 +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserPrivilegeChanged = { "OnUserPrivilegeChanged", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, OnUserPrivilegeChanged), Z_Construct_UDelegateFunction_CommonUser_CommonUserAvailabilityChangedDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnUserPrivilegeChanged_MetaData), NewProp_OnUserPrivilegeChanged_MetaData) }; // 2248030001 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_ValueProp = { "LocalUserInfos", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UCommonUserInfo_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_Key_KeyProp = { "LocalUserInfos_Key", nullptr, (EPropertyFlags)0x0100000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos = { "LocalUserInfos", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UCommonUserSubsystem, LocalUserInfos), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalUserInfos_MetaData), NewProp_LocalUserInfos_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserInitializeComplete, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnHandleSystemMessage, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_OnUserPrivilegeChanged, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UCommonUserSubsystem_Statics::NewProp_LocalUserInfos, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UCommonUserSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UCommonUserSubsystem_Statics::ClassParams = { + &UCommonUserSubsystem::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UCommonUserSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UCommonUserSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UCommonUserSubsystem() +{ + if (!Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton, Z_Construct_UClass_UCommonUserSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UCommonUserSubsystem.OuterSingleton; +} +template<> COMMONUSER_API UClass* StaticClass() +{ + return UCommonUserSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UCommonUserSubsystem); +UCommonUserSubsystem::~UCommonUserSubsystem() {} +// End Class UCommonUserSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FCommonUserInitializeParams::StaticStruct, Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics::NewStructOps, TEXT("CommonUserInitializeParams"), &Z_Registration_Info_UScriptStruct_CommonUserInitializeParams, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FCommonUserInitializeParams), 82298502U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UCommonUserInfo, UCommonUserInfo::StaticClass, TEXT("UCommonUserInfo"), &Z_Registration_Info_UClass_UCommonUserInfo, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserInfo), 3778296232U) }, + { Z_Construct_UClass_UCommonUserSubsystem, UCommonUserSubsystem::StaticClass, TEXT("UCommonUserSubsystem"), &Z_Registration_Info_UClass_UCommonUserSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UCommonUserSubsystem), 4027843855U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_3968755022(TEXT("/Script/CommonUser"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h new file mode 100644 index 00000000..3a6ab9fd --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserSubsystem.generated.h @@ -0,0 +1,162 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UCommonUserInfo; +enum class ECommonUserAvailability : uint8; +enum class ECommonUserInitializationState : uint8; +enum class ECommonUserOnlineContext : uint8; +enum class ECommonUserPrivilege : uint8; +enum class ECommonUserPrivilegeResult : uint8; +struct FCommonUserInitializeParams; +struct FGameplayTag; +struct FInputDeviceId; +struct FKey; +struct FPlatformUserId; +struct FUniqueNetIdRepl; +#ifdef COMMONUSER_CommonUserSubsystem_generated_h +#error "CommonUserSubsystem.generated.h already included, missing '#pragma once' in CommonUserSubsystem.h" +#endif +#define COMMONUSER_CommonUserSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDebugString); \ + DECLARE_FUNCTION(execSetNickname); \ + DECLARE_FUNCTION(execGetNickname); \ + DECLARE_FUNCTION(execGetNetId); \ + DECLARE_FUNCTION(execGetPrivilegeAvailability); \ + DECLARE_FUNCTION(execGetCachedPrivilegeResult); \ + DECLARE_FUNCTION(execIsDoingLogin); \ + DECLARE_FUNCTION(execIsLoggedIn); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserInfo(); \ + friend struct Z_Construct_UClass_UCommonUserInfo_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserInfo, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserInfo) + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UCommonUserInfo(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserInfo(UCommonUserInfo&&); \ + UCommonUserInfo(const UCommonUserInfo&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserInfo); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserInfo); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UCommonUserInfo) \ + NO_API virtual ~UCommonUserInfo(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_46_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_49_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_148_DELEGATE \ +COMMONUSER_API void FCommonUserOnInitializeCompleteMulticast_DelegateWrapper(const FMulticastScriptDelegate& CommonUserOnInitializeCompleteMulticast, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_149_DELEGATE \ +COMMONUSER_API void FCommonUserOnInitializeComplete_DelegateWrapper(const FScriptDelegate& CommonUserOnInitializeComplete, const UCommonUserInfo* UserInfo, bool bSuccess, const FText& Error, ECommonUserPrivilege RequestedPrivilege, ECommonUserOnlineContext OnlineContext); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_152_DELEGATE \ +COMMONUSER_API void FCommonUserHandleSystemMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserHandleSystemMessageDelegate, FGameplayTag MessageType, const FText& TitleText, const FText& BodyText); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_155_DELEGATE \ +COMMONUSER_API void FCommonUserAvailabilityChangedDelegate_DelegateWrapper(const FMulticastScriptDelegate& CommonUserAvailabilityChangedDelegate, const UCommonUserInfo* UserInfo, ECommonUserPrivilege Privilege, ECommonUserAvailability OldAvailability, ECommonUserAvailability NewAvailability); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_162_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FCommonUserInitializeParams_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> COMMONUSER_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execShouldWaitForStartInput); \ + DECLARE_FUNCTION(execHasTraitTag); \ + DECLARE_FUNCTION(execResetUserState); \ + DECLARE_FUNCTION(execTryToLogOutUser); \ + DECLARE_FUNCTION(execCancelUserInitialization); \ + DECLARE_FUNCTION(execListenForLoginKeyInput); \ + DECLARE_FUNCTION(execTryToInitializeUser); \ + DECLARE_FUNCTION(execTryToLoginForOnlinePlay); \ + DECLARE_FUNCTION(execTryToInitializeForLocalPlay); \ + DECLARE_FUNCTION(execGetUserInfoForInputDevice); \ + DECLARE_FUNCTION(execGetUserInfoForControllerId); \ + DECLARE_FUNCTION(execGetUserInfoForUniqueNetId); \ + DECLARE_FUNCTION(execGetUserInfoForPlatformUser); \ + DECLARE_FUNCTION(execGetUserInfoForPlatformUserIndex); \ + DECLARE_FUNCTION(execGetUserInfoForLocalPlayerIndex); \ + DECLARE_FUNCTION(execGetLocalPlayerInitializationState); \ + DECLARE_FUNCTION(execGetNumLocalPlayers); \ + DECLARE_FUNCTION(execGetMaxLocalPlayers); \ + DECLARE_FUNCTION(execSetMaxLocalPlayers); \ + DECLARE_FUNCTION(execSendSystemMessage); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUCommonUserSubsystem(); \ + friend struct Z_Construct_UClass_UCommonUserSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UCommonUserSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/CommonUser"), NO_API) \ + DECLARE_SERIALIZER(UCommonUserSubsystem) \ + static const TCHAR* StaticConfigName() {return TEXT("Engine");} \ + + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UCommonUserSubsystem(UCommonUserSubsystem&&); \ + UCommonUserSubsystem(const UCommonUserSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UCommonUserSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UCommonUserSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UCommonUserSubsystem) \ + NO_API virtual ~UCommonUserSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_210_PROLOG +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h_213_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> COMMONUSER_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp new file mode 100644 index 00000000..ce7ba7a3 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp @@ -0,0 +1,565 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "CommonUser/Public/CommonUserTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeCommonUserTypes() {} + +// Begin Cross Module References +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege(); +COMMONUSER_API UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult(); +COMMONUSER_API UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation(); +UPackage* Z_Construct_UPackage__Script_CommonUser(); +// End Cross Module References + +// Begin Enum ECommonUserOnlineContext +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserOnlineContext; +static UEnum* ECommonUserOnlineContext_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserOnlineContext")); + } + return Z_Registration_Info_UEnum_ECommonUserOnlineContext.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserOnlineContext_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying where and how to run online queries */" }, +#endif + { "Default.Comment", "/** The default engine online system, this will always exist and will be the same as either Service or Platform */" }, + { "Default.Name", "ECommonUserOnlineContext::Default" }, + { "Default.ToolTip", "The default engine online system, this will always exist and will be the same as either Service or Platform" }, + { "Game.Comment", "/** Called from game code, this uses the default system but with special handling that could merge results from multiple contexts */" }, + { "Game.Name", "ECommonUserOnlineContext::Game" }, + { "Game.ToolTip", "Called from game code, this uses the default system but with special handling that could merge results from multiple contexts" }, + { "Invalid.Comment", "/** Invalid system */" }, + { "Invalid.Name", "ECommonUserOnlineContext::Invalid" }, + { "Invalid.ToolTip", "Invalid system" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "Platform.Comment", "/** Explicitly ask for the platform system, which may not exist */" }, + { "Platform.Name", "ECommonUserOnlineContext::Platform" }, + { "Platform.ToolTip", "Explicitly ask for the platform system, which may not exist" }, + { "PlatformOrDefault.Comment", "/** Looks for platform system first, then falls back to default */" }, + { "PlatformOrDefault.Name", "ECommonUserOnlineContext::PlatformOrDefault" }, + { "PlatformOrDefault.ToolTip", "Looks for platform system first, then falls back to default" }, + { "Service.Comment", "/** Explicitly ask for the external service, which may not exist */" }, + { "Service.Name", "ECommonUserOnlineContext::Service" }, + { "Service.ToolTip", "Explicitly ask for the external service, which may not exist" }, + { "ServiceOrDefault.Comment", "/** Looks for external service first, then falls back to default */" }, + { "ServiceOrDefault.Name", "ECommonUserOnlineContext::ServiceOrDefault" }, + { "ServiceOrDefault.ToolTip", "Looks for external service first, then falls back to default" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying where and how to run online queries" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserOnlineContext::Game", (int64)ECommonUserOnlineContext::Game }, + { "ECommonUserOnlineContext::Default", (int64)ECommonUserOnlineContext::Default }, + { "ECommonUserOnlineContext::Service", (int64)ECommonUserOnlineContext::Service }, + { "ECommonUserOnlineContext::ServiceOrDefault", (int64)ECommonUserOnlineContext::ServiceOrDefault }, + { "ECommonUserOnlineContext::Platform", (int64)ECommonUserOnlineContext::Platform }, + { "ECommonUserOnlineContext::PlatformOrDefault", (int64)ECommonUserOnlineContext::PlatformOrDefault }, + { "ECommonUserOnlineContext::Invalid", (int64)ECommonUserOnlineContext::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserOnlineContext", + "ECommonUserOnlineContext", + Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext() +{ + if (!Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserOnlineContext_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserOnlineContext.InnerSingleton; +} +// End Enum ECommonUserOnlineContext + +// Begin Enum ECommonUserInitializationState +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserInitializationState; +static UEnum* ECommonUserInitializationState_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserInitializationState")); + } + return Z_Registration_Info_UEnum_ECommonUserInitializationState.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserInitializationState_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum describing the state of initialization for a specific user */" }, +#endif + { "DoingInitialLogin.Comment", "/** Player is in the process of acquiring a user id with local login */" }, + { "DoingInitialLogin.Name", "ECommonUserInitializationState::DoingInitialLogin" }, + { "DoingInitialLogin.ToolTip", "Player is in the process of acquiring a user id with local login" }, + { "DoingNetworkLogin.Comment", "/** Player is performing the network login, they have already logged in locally */" }, + { "DoingNetworkLogin.Name", "ECommonUserInitializationState::DoingNetworkLogin" }, + { "DoingNetworkLogin.ToolTip", "Player is performing the network login, they have already logged in locally" }, + { "FailedtoLogin.Comment", "/** Player failed to log in at all */" }, + { "FailedtoLogin.Name", "ECommonUserInitializationState::FailedtoLogin" }, + { "FailedtoLogin.ToolTip", "Player failed to log in at all" }, + { "Invalid.Comment", "/** Invalid state or user */" }, + { "Invalid.Name", "ECommonUserInitializationState::Invalid" }, + { "Invalid.ToolTip", "Invalid state or user" }, + { "LoggedInLocalOnly.Comment", "/** Player is logged in locally (either guest or real user), but cannot perform online actions */" }, + { "LoggedInLocalOnly.Name", "ECommonUserInitializationState::LoggedInLocalOnly" }, + { "LoggedInLocalOnly.ToolTip", "Player is logged in locally (either guest or real user), but cannot perform online actions" }, + { "LoggedInOnline.Comment", "/** Player is logged in and has access to online functionality */" }, + { "LoggedInOnline.Name", "ECommonUserInitializationState::LoggedInOnline" }, + { "LoggedInOnline.ToolTip", "Player is logged in and has access to online functionality" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum describing the state of initialization for a specific user" }, +#endif + { "Unknown.Comment", "/** User has not started login process */" }, + { "Unknown.Name", "ECommonUserInitializationState::Unknown" }, + { "Unknown.ToolTip", "User has not started login process" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserInitializationState::Unknown", (int64)ECommonUserInitializationState::Unknown }, + { "ECommonUserInitializationState::DoingInitialLogin", (int64)ECommonUserInitializationState::DoingInitialLogin }, + { "ECommonUserInitializationState::DoingNetworkLogin", (int64)ECommonUserInitializationState::DoingNetworkLogin }, + { "ECommonUserInitializationState::FailedtoLogin", (int64)ECommonUserInitializationState::FailedtoLogin }, + { "ECommonUserInitializationState::LoggedInOnline", (int64)ECommonUserInitializationState::LoggedInOnline }, + { "ECommonUserInitializationState::LoggedInLocalOnly", (int64)ECommonUserInitializationState::LoggedInLocalOnly }, + { "ECommonUserInitializationState::Invalid", (int64)ECommonUserInitializationState::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserInitializationState", + "ECommonUserInitializationState", + Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserInitializationState() +{ + if (!Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserInitializationState_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserInitializationState.InnerSingleton; +} +// End Enum ECommonUserInitializationState + +// Begin Enum ECommonUserPrivilege +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserPrivilege; +static UEnum* ECommonUserPrivilege_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserPrivilege")); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilege.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserPrivilege_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "CanCommunicateViaTextOnline.Comment", "/** Whether the user can use text chat */" }, + { "CanCommunicateViaTextOnline.Name", "ECommonUserPrivilege::CanCommunicateViaTextOnline" }, + { "CanCommunicateViaTextOnline.ToolTip", "Whether the user can use text chat" }, + { "CanCommunicateViaVoiceOnline.Comment", "/** Whether the user can use voice chat */" }, + { "CanCommunicateViaVoiceOnline.Name", "ECommonUserPrivilege::CanCommunicateViaVoiceOnline" }, + { "CanCommunicateViaVoiceOnline.ToolTip", "Whether the user can use voice chat" }, + { "CanPlay.Comment", "/** Whether the user can play at all, online or offline */" }, + { "CanPlay.Name", "ECommonUserPrivilege::CanPlay" }, + { "CanPlay.ToolTip", "Whether the user can play at all, online or offline" }, + { "CanPlayOnline.Comment", "/** Whether the user can play in online modes */" }, + { "CanPlayOnline.Name", "ECommonUserPrivilege::CanPlayOnline" }, + { "CanPlayOnline.ToolTip", "Whether the user can play in online modes" }, + { "CanUseCrossPlay.Comment", "/** Whether the user can ever participate in cross-play */" }, + { "CanUseCrossPlay.Name", "ECommonUserPrivilege::CanUseCrossPlay" }, + { "CanUseCrossPlay.ToolTip", "Whether the user can ever participate in cross-play" }, + { "CanUseUserGeneratedContent.Comment", "/** Whether the user can access content generated by other users */" }, + { "CanUseUserGeneratedContent.Name", "ECommonUserPrivilege::CanUseUserGeneratedContent" }, + { "CanUseUserGeneratedContent.ToolTip", "Whether the user can access content generated by other users" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying different privileges and capabilities available to a user */" }, +#endif + { "Invalid_Count.Comment", "/** Invalid privilege (also the count of valid ones) */" }, + { "Invalid_Count.Hidden", "" }, + { "Invalid_Count.Name", "ECommonUserPrivilege::Invalid_Count" }, + { "Invalid_Count.ToolTip", "Invalid privilege (also the count of valid ones)" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying different privileges and capabilities available to a user" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserPrivilege::CanPlay", (int64)ECommonUserPrivilege::CanPlay }, + { "ECommonUserPrivilege::CanPlayOnline", (int64)ECommonUserPrivilege::CanPlayOnline }, + { "ECommonUserPrivilege::CanCommunicateViaTextOnline", (int64)ECommonUserPrivilege::CanCommunicateViaTextOnline }, + { "ECommonUserPrivilege::CanCommunicateViaVoiceOnline", (int64)ECommonUserPrivilege::CanCommunicateViaVoiceOnline }, + { "ECommonUserPrivilege::CanUseUserGeneratedContent", (int64)ECommonUserPrivilege::CanUseUserGeneratedContent }, + { "ECommonUserPrivilege::CanUseCrossPlay", (int64)ECommonUserPrivilege::CanUseCrossPlay }, + { "ECommonUserPrivilege::Invalid_Count", (int64)ECommonUserPrivilege::Invalid_Count }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserPrivilege", + "ECommonUserPrivilege", + Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilege() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserPrivilege_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilege.InnerSingleton; +} +// End Enum ECommonUserPrivilege + +// Begin Enum ECommonUserAvailability +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserAvailability; +static UEnum* ECommonUserAvailability_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserAvailability, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserAvailability")); + } + return Z_Registration_Info_UEnum_ECommonUserAvailability.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserAvailability_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AlwaysUnavailable.Comment", "/** This feature will never be available for the rest of this session due to hard account or platform restrictions */" }, + { "AlwaysUnavailable.Name", "ECommonUserAvailability::AlwaysUnavailable" }, + { "AlwaysUnavailable.ToolTip", "This feature will never be available for the rest of this session due to hard account or platform restrictions" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum specifying the general availability of a feature or privilege, this combines information from multiple sources */" }, +#endif + { "CurrentlyUnavailable.Comment", "/** This feature is not available now because of something like network connectivity but may be available in the future */" }, + { "CurrentlyUnavailable.Name", "ECommonUserAvailability::CurrentlyUnavailable" }, + { "CurrentlyUnavailable.ToolTip", "This feature is not available now because of something like network connectivity but may be available in the future" }, + { "Invalid.Comment", "/** Invalid feature */" }, + { "Invalid.Name", "ECommonUserAvailability::Invalid" }, + { "Invalid.ToolTip", "Invalid feature" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "NowAvailable.Comment", "/** This feature is fully available for use right now */" }, + { "NowAvailable.Name", "ECommonUserAvailability::NowAvailable" }, + { "NowAvailable.ToolTip", "This feature is fully available for use right now" }, + { "PossiblyAvailable.Comment", "/** This might be available after the completion of normal login procedures */" }, + { "PossiblyAvailable.Name", "ECommonUserAvailability::PossiblyAvailable" }, + { "PossiblyAvailable.ToolTip", "This might be available after the completion of normal login procedures" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum specifying the general availability of a feature or privilege, this combines information from multiple sources" }, +#endif + { "Unknown.Comment", "/** State is completely unknown and needs to be queried */" }, + { "Unknown.Name", "ECommonUserAvailability::Unknown" }, + { "Unknown.ToolTip", "State is completely unknown and needs to be queried" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserAvailability::Unknown", (int64)ECommonUserAvailability::Unknown }, + { "ECommonUserAvailability::NowAvailable", (int64)ECommonUserAvailability::NowAvailable }, + { "ECommonUserAvailability::PossiblyAvailable", (int64)ECommonUserAvailability::PossiblyAvailable }, + { "ECommonUserAvailability::CurrentlyUnavailable", (int64)ECommonUserAvailability::CurrentlyUnavailable }, + { "ECommonUserAvailability::AlwaysUnavailable", (int64)ECommonUserAvailability::AlwaysUnavailable }, + { "ECommonUserAvailability::Invalid", (int64)ECommonUserAvailability::Invalid }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserAvailability", + "ECommonUserAvailability", + Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserAvailability() +{ + if (!Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserAvailability_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserAvailability.InnerSingleton; +} +// End Enum ECommonUserAvailability + +// Begin Enum ECommonUserPrivilegeResult +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ECommonUserPrivilegeResult; +static UEnum* ECommonUserPrivilegeResult_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton) + { + Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("ECommonUserPrivilegeResult")); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.OuterSingleton; +} +template<> COMMONUSER_API UEnum* StaticEnum() +{ + return ECommonUserPrivilegeResult_StaticEnum(); +} +struct Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "AccountTypeRestricted.Comment", "/** Account does not have a required subscription or account type */" }, + { "AccountTypeRestricted.Name", "ECommonUserPrivilegeResult::AccountTypeRestricted" }, + { "AccountTypeRestricted.ToolTip", "Account does not have a required subscription or account type" }, + { "AccountUseRestricted.Comment", "/** Another account/user restriction such as being banned by the service */" }, + { "AccountUseRestricted.Name", "ECommonUserPrivilegeResult::AccountUseRestricted" }, + { "AccountUseRestricted.ToolTip", "Another account/user restriction such as being banned by the service" }, + { "AgeRestricted.Comment", "/** Parental control failure */" }, + { "AgeRestricted.Name", "ECommonUserPrivilegeResult::AgeRestricted" }, + { "AgeRestricted.ToolTip", "Parental control failure" }, + { "Available.Comment", "/** This privilege is fully available for use */" }, + { "Available.Name", "ECommonUserPrivilegeResult::Available" }, + { "Available.ToolTip", "This privilege is fully available for use" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enum giving specific reasons why a user may or may not use a certain privilege */" }, +#endif + { "LicenseInvalid.Comment", "/** User does not own the game or content */" }, + { "LicenseInvalid.Name", "ECommonUserPrivilegeResult::LicenseInvalid" }, + { "LicenseInvalid.ToolTip", "User does not own the game or content" }, + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, + { "NetworkConnectionUnavailable.Comment", "/** No network connection, this may be resolved by reconnecting */" }, + { "NetworkConnectionUnavailable.Name", "ECommonUserPrivilegeResult::NetworkConnectionUnavailable" }, + { "NetworkConnectionUnavailable.ToolTip", "No network connection, this may be resolved by reconnecting" }, + { "PlatformFailure.Comment", "/** Other platform-specific failure */" }, + { "PlatformFailure.Name", "ECommonUserPrivilegeResult::PlatformFailure" }, + { "PlatformFailure.ToolTip", "Other platform-specific failure" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enum giving specific reasons why a user may or may not use a certain privilege" }, +#endif + { "Unknown.Comment", "/** State is unknown and needs to be queried */" }, + { "Unknown.Name", "ECommonUserPrivilegeResult::Unknown" }, + { "Unknown.ToolTip", "State is unknown and needs to be queried" }, + { "UserNotLoggedIn.Comment", "/** User has not fully logged in */" }, + { "UserNotLoggedIn.Name", "ECommonUserPrivilegeResult::UserNotLoggedIn" }, + { "UserNotLoggedIn.ToolTip", "User has not fully logged in" }, + { "VersionOutdated.Comment", "/** The game needs to be updated or patched before this will be available */" }, + { "VersionOutdated.Name", "ECommonUserPrivilegeResult::VersionOutdated" }, + { "VersionOutdated.ToolTip", "The game needs to be updated or patched before this will be available" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ECommonUserPrivilegeResult::Unknown", (int64)ECommonUserPrivilegeResult::Unknown }, + { "ECommonUserPrivilegeResult::Available", (int64)ECommonUserPrivilegeResult::Available }, + { "ECommonUserPrivilegeResult::UserNotLoggedIn", (int64)ECommonUserPrivilegeResult::UserNotLoggedIn }, + { "ECommonUserPrivilegeResult::LicenseInvalid", (int64)ECommonUserPrivilegeResult::LicenseInvalid }, + { "ECommonUserPrivilegeResult::VersionOutdated", (int64)ECommonUserPrivilegeResult::VersionOutdated }, + { "ECommonUserPrivilegeResult::NetworkConnectionUnavailable", (int64)ECommonUserPrivilegeResult::NetworkConnectionUnavailable }, + { "ECommonUserPrivilegeResult::AgeRestricted", (int64)ECommonUserPrivilegeResult::AgeRestricted }, + { "ECommonUserPrivilegeResult::AccountTypeRestricted", (int64)ECommonUserPrivilegeResult::AccountTypeRestricted }, + { "ECommonUserPrivilegeResult::AccountUseRestricted", (int64)ECommonUserPrivilegeResult::AccountUseRestricted }, + { "ECommonUserPrivilegeResult::PlatformFailure", (int64)ECommonUserPrivilegeResult::PlatformFailure }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + "ECommonUserPrivilegeResult", + "ECommonUserPrivilegeResult", + Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enum_MetaDataParams), Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult() +{ + if (!Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton, Z_Construct_UEnum_CommonUser_ECommonUserPrivilegeResult_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ECommonUserPrivilegeResult.InnerSingleton; +} +// End Enum ECommonUserPrivilegeResult + +// Begin ScriptStruct FOnlineResultInformation +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_OnlineResultInformation; +class UScriptStruct* FOnlineResultInformation::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FOnlineResultInformation, (UObject*)Z_Construct_UPackage__Script_CommonUser(), TEXT("OnlineResultInformation")); + } + return Z_Registration_Info_UScriptStruct_OnlineResultInformation.OuterSingleton; +} +template<> COMMONUSER_API UScriptStruct* StaticStruct() +{ + return FOnlineResultInformation::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FOnlineResultInformation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Detailed information about the online error. Effectively a wrapper for FOnlineError. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Detailed information about the online error. Effectively a wrapper for FOnlineError." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bWasSuccessful_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether the operation was successful or not. If it was successful, the error fields of this struct will not contain extra information. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether the operation was successful or not. If it was successful, the error fields of this struct will not contain extra information." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorId_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The unique error id. Can be used to compare against specific handled errors. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The unique error id. Can be used to compare against specific handled errors." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ErrorText_MetaData[] = { + { "Category", "OnlineResultInformation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Error text to display to the user. */" }, +#endif + { "ModuleRelativePath", "Public/CommonUserTypes.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Error text to display to the user." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bWasSuccessful_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bWasSuccessful; + static const UECodeGen_Private::FStrPropertyParams NewProp_ErrorId; + static const UECodeGen_Private::FTextPropertyParams NewProp_ErrorText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful_SetBit(void* Obj) +{ + ((FOnlineResultInformation*)Obj)->bWasSuccessful = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful = { "bWasSuccessful", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FOnlineResultInformation), &Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bWasSuccessful_MetaData), NewProp_bWasSuccessful_MetaData) }; +const UECodeGen_Private::FStrPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorId = { "ErrorId", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Str, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FOnlineResultInformation, ErrorId), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorId_MetaData), NewProp_ErrorId_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorText = { "ErrorText", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FOnlineResultInformation, ErrorText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ErrorText_MetaData), NewProp_ErrorText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_bWasSuccessful, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorId, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewProp_ErrorText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_CommonUser, + nullptr, + &NewStructOps, + "OnlineResultInformation", + Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::PropPointers), + sizeof(FOnlineResultInformation), + alignof(FOnlineResultInformation), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FOnlineResultInformation() +{ + if (!Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton, Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_OnlineResultInformation.InnerSingleton; +} +// End ScriptStruct FOnlineResultInformation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ECommonUserOnlineContext_StaticEnum, TEXT("ECommonUserOnlineContext"), &Z_Registration_Info_UEnum_ECommonUserOnlineContext, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3178011620U) }, + { ECommonUserInitializationState_StaticEnum, TEXT("ECommonUserInitializationState"), &Z_Registration_Info_UEnum_ECommonUserInitializationState, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2275509869U) }, + { ECommonUserPrivilege_StaticEnum, TEXT("ECommonUserPrivilege"), &Z_Registration_Info_UEnum_ECommonUserPrivilege, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3165184135U) }, + { ECommonUserAvailability_StaticEnum, TEXT("ECommonUserAvailability"), &Z_Registration_Info_UEnum_ECommonUserAvailability, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3023508109U) }, + { ECommonUserPrivilegeResult_StaticEnum, TEXT("ECommonUserPrivilegeResult"), &Z_Registration_Info_UEnum_ECommonUserPrivilegeResult, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2681083962U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FOnlineResultInformation::StaticStruct, Z_Construct_UScriptStruct_FOnlineResultInformation_Statics::NewStructOps, TEXT("OnlineResultInformation"), &Z_Registration_Info_UScriptStruct_OnlineResultInformation, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FOnlineResultInformation), 2359200286U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_4233871903(TEXT("/Script/CommonUser"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.generated.h b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.generated.h new file mode 100644 index 00000000..cb07c75a --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.generated.h @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "CommonUserTypes.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef COMMONUSER_CommonUserTypes_generated_h +#error "CommonUserTypes.generated.h already included, missing '#pragma once' in CommonUserTypes.h" +#endif +#define COMMONUSER_CommonUserTypes_generated_h + +#define FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h_199_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FOnlineResultInformation_Statics; \ + COMMONUSER_API static class UScriptStruct* StaticStruct(); + + +template<> COMMONUSER_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_CommonUser_Source_CommonUser_Public_CommonUserTypes_h + + +#define FOREACH_ENUM_ECOMMONUSERONLINECONTEXT(op) \ + op(ECommonUserOnlineContext::Game) \ + op(ECommonUserOnlineContext::Default) \ + op(ECommonUserOnlineContext::Service) \ + op(ECommonUserOnlineContext::ServiceOrDefault) \ + op(ECommonUserOnlineContext::Platform) \ + op(ECommonUserOnlineContext::PlatformOrDefault) \ + op(ECommonUserOnlineContext::Invalid) + +enum class ECommonUserOnlineContext : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERINITIALIZATIONSTATE(op) \ + op(ECommonUserInitializationState::Unknown) \ + op(ECommonUserInitializationState::DoingInitialLogin) \ + op(ECommonUserInitializationState::DoingNetworkLogin) \ + op(ECommonUserInitializationState::FailedtoLogin) \ + op(ECommonUserInitializationState::LoggedInOnline) \ + op(ECommonUserInitializationState::LoggedInLocalOnly) \ + op(ECommonUserInitializationState::Invalid) + +enum class ECommonUserInitializationState : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERPRIVILEGE(op) \ + op(ECommonUserPrivilege::CanPlay) \ + op(ECommonUserPrivilege::CanPlayOnline) \ + op(ECommonUserPrivilege::CanCommunicateViaTextOnline) \ + op(ECommonUserPrivilege::CanCommunicateViaVoiceOnline) \ + op(ECommonUserPrivilege::CanUseUserGeneratedContent) \ + op(ECommonUserPrivilege::CanUseCrossPlay) \ + op(ECommonUserPrivilege::Invalid_Count) + +enum class ECommonUserPrivilege : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERAVAILABILITY(op) \ + op(ECommonUserAvailability::Unknown) \ + op(ECommonUserAvailability::NowAvailable) \ + op(ECommonUserAvailability::PossiblyAvailable) \ + op(ECommonUserAvailability::CurrentlyUnavailable) \ + op(ECommonUserAvailability::AlwaysUnavailable) \ + op(ECommonUserAvailability::Invalid) + +enum class ECommonUserAvailability : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ECOMMONUSERPRIVILEGERESULT(op) \ + op(ECommonUserPrivilegeResult::Unknown) \ + op(ECommonUserPrivilegeResult::Available) \ + op(ECommonUserPrivilegeResult::UserNotLoggedIn) \ + op(ECommonUserPrivilegeResult::LicenseInvalid) \ + op(ECommonUserPrivilegeResult::VersionOutdated) \ + op(ECommonUserPrivilegeResult::NetworkConnectionUnavailable) \ + op(ECommonUserPrivilegeResult::AgeRestricted) \ + op(ECommonUserPrivilegeResult::AccountTypeRestricted) \ + op(ECommonUserPrivilegeResult::AccountUseRestricted) \ + op(ECommonUserPrivilegeResult::PlatformFailure) + +enum class ECommonUserPrivilegeResult : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> COMMONUSER_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/Timestamp b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/Timestamp new file mode 100644 index 00000000..7250c606 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/Timestamp @@ -0,0 +1,5 @@ +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\AsyncAction_CommonUserInitialize.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonSessionSubsystem.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserTypes.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserBasicPresence.h +E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public\CommonUserSubsystem.h diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/CommonUser.Shared.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/CommonUser.Shared.rsp new file mode 100644 index 00000000..b2a93443 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/CommonUser.Shared.rsp @@ -0,0 +1,312 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Default.rc2.res.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Default.rc2.res.rsp new file mode 100644 index 00000000..7cf6dc28 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-CommonUser.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Definitions.CommonUser.h b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Definitions.CommonUser.h new file mode 100644 index 00000000..60f3a968 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Definitions.CommonUser.h @@ -0,0 +1,27 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonUser +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef COMMONUSER_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define COMMONUSER_OSSV1 1 +#define UE_MODULE_NAME "CommonUser" +#define UE_PLUGIN_NAME "CommonUser" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define COMMONUSER_API DLLEXPORT +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/LiveCodingInfo.json b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/LiveCodingInfo.json new file mode 100644 index 00000000..63f597e3 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/LiveCodingInfo.json @@ -0,0 +1,17 @@ +{ + "RemapUnityFiles": + { + "Module.CommonUser.cpp.obj": [ + "CommonUser.init.gen.cpp.obj", + "CommonUserBasicPresence.gen.cpp.obj", + "CommonUserTypes.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "AsyncAction_CommonUserInitialize.cpp.obj", + "CommonSessionSubsystem.cpp.obj", + "CommonUserBasicPresence.cpp.obj", + "CommonUserModule.cpp.obj", + "CommonUserSubsystem.cpp.obj", + "CommonUserTypes.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp new file mode 100644 index 00000000..194ca48a --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp @@ -0,0 +1,11 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUser.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealEditor/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/AsyncAction_CommonUserInitialize.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonSessionSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserBasicPresence.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserTypes.cpp" diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp.obj.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp.obj.rsp new file mode 100644 index 00000000..c32dc264 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/Module.CommonUser.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Definitions.CommonUser.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\CommonUser.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/PerModuleInline.gen.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.dll.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.dll.rsp new file mode 100644 index 00000000..c056c8ed --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.dll.rsp @@ -0,0 +1,82 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreOnline\UnrealEditor-CoreOnline.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ApplicationCore\UnrealEditor-ApplicationCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\x64\UnrealEditor\Development\OnlineSubsystemUtils\UnrealEditor-OnlineSubsystemUtils.lib" +"..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\x64\UnrealEditor\Development\OnlineSubsystem\UnrealEditor-OnlineSubsystem.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +"uiautomationcore.lib" +"DXGI.lib" +/OUT:"E:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor-CommonUser.dll" +/PDB:"E:\Projects\cross_platform\Plugins\CommonUser\Binaries\Win64\UnrealEditor-CommonUser.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.lib.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.lib.rsp new file mode 100644 index 00000000..9237f436 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealEditor/Development/CommonUser/UnrealEditor-CommonUser.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-CommonUser.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Module.CommonUser.cpp.obj" +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUser\UnrealEditor-CommonUser.lib" \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/CommonUser.Shared.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/CommonUser.Shared.rsp new file mode 100644 index 00000000..531fc79f --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/CommonUser.Shared.rsp @@ -0,0 +1,142 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealGame\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Definitions.CommonUser.h b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Definitions.CommonUser.h new file mode 100644 index 00000000..d102b5e8 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Definitions.CommonUser.h @@ -0,0 +1,27 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for CommonUser +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef COMMONUSER_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define COMMONUSER_OSSV1 1 +#define UE_MODULE_NAME "CommonUser" +#define UE_PLUGIN_NAME "CommonUser" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define COMMONUSER_API +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp new file mode 100644 index 00000000..7eeeb50d --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp @@ -0,0 +1,10 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUser.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserBasicPresence.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Intermediate/Build/Win64/UnrealGame/Inc/CommonUser/UHT/CommonUserTypes.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/AsyncAction_CommonUserInitialize.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonSessionSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserBasicPresence.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserModule.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/CommonUser/Source/CommonUser/Private/CommonUserTypes.cpp" diff --git a/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp.obj.rsp b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp.obj.rsp new file mode 100644 index 00000000..e49b5335 --- /dev/null +++ b/Plugins/CommonUser/Intermediate/Build/Win64/x64/UnrealGame/Shipping/CommonUser/Module.CommonUser.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\Module.CommonUser.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\Definitions.CommonUser.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\Module.CommonUser.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\Module.CommonUser.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\Module.CommonUser.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\x64\UnrealGame\Shipping\CommonUser\CommonUser.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp new file mode 100644 index 00000000..e2ef42e3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp @@ -0,0 +1,1005 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistInputModifier.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistInputModifier() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCurveFloat_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputModifier(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistInputModifier(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistInputModifier_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistFilter(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistSettings(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAimAssistTarget(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraAimAssistTarget +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAimAssistTarget; +class UScriptStruct* FLyraAimAssistTarget::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAimAssistTarget, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraAimAssistTarget")); + } + return Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraAimAssistTarget::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A container for keeping the state of targets between frames that can be cached */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A container for keeping the state of targets between frames that can be cached" }, +#endif + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "LyraAimAssistTarget", + nullptr, + 0, + sizeof(FLyraAimAssistTarget), + alignof(FLyraAimAssistTarget), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAimAssistTarget() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton, Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton; +} +// End ScriptStruct FLyraAimAssistTarget + +// Begin ScriptStruct FAimAssistFilter +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistFilter; +class UScriptStruct* FAimAssistFilter::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistFilter, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistFilter")); + } + return Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistFilter::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistFilter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Options for filtering out certain aim assist targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Options for filtering out certain aim assist targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeSameFriendlyTargets_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, then we should include any targets even if they are on our team */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, then we should include any targets even if they are on our team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeInstigator_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude 'RequestedBy->Instigator' Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude 'RequestedBy->Instigator' Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeAllAttachedToInstigator_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all actors attached to 'RequestedBy->Instigator' Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all actors attached to 'RequestedBy->Instigator' Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeRequester_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude 'RequestedBy Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude 'RequestedBy Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeAllAttachedToRequester_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all actors attached to 'RequestedBy Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all actors attached to 'RequestedBy Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTraceComplexCollision_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Trace against complex collision. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Trace against complex collision." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeDeadOrDying_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all dead or dying targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all dead or dying targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExcludedClasses_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Any target whose owning actor is of this type will be excluded. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Any target whose owning actor is of this type will be excluded." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetRange_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Any target outside of this range will be excluded */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Any target outside of this range will be excluded" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bIncludeSameFriendlyTargets_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeSameFriendlyTargets; + static void NewProp_bExcludeInstigator_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeInstigator; + static void NewProp_bExcludeAllAttachedToInstigator_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeAllAttachedToInstigator; + static void NewProp_bExcludeRequester_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeRequester; + static void NewProp_bExcludeAllAttachedToRequester_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeAllAttachedToRequester; + static void NewProp_bTraceComplexCollision_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTraceComplexCollision; + static void NewProp_bExcludeDeadOrDying_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeDeadOrDying; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExcludedClasses_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ExcludedClasses; + static const UECodeGen_Private::FDoublePropertyParams NewProp_TargetRange; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bIncludeSameFriendlyTargets = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets = { "bIncludeSameFriendlyTargets", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeSameFriendlyTargets_MetaData), NewProp_bIncludeSameFriendlyTargets_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeInstigator = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator = { "bExcludeInstigator", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeInstigator_MetaData), NewProp_bExcludeInstigator_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeAllAttachedToInstigator = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator = { "bExcludeAllAttachedToInstigator", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeAllAttachedToInstigator_MetaData), NewProp_bExcludeAllAttachedToInstigator_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeRequester = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester = { "bExcludeRequester", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeRequester_MetaData), NewProp_bExcludeRequester_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeAllAttachedToRequester = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester = { "bExcludeAllAttachedToRequester", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeAllAttachedToRequester_MetaData), NewProp_bExcludeAllAttachedToRequester_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bTraceComplexCollision = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision = { "bTraceComplexCollision", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTraceComplexCollision_MetaData), NewProp_bTraceComplexCollision_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeDeadOrDying = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying = { "bExcludeDeadOrDying", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeDeadOrDying_MetaData), NewProp_bExcludeDeadOrDying_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses_ElementProp = { "ExcludedClasses", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses = { "ExcludedClasses", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistFilter, ExcludedClasses), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExcludedClasses_MetaData), NewProp_ExcludedClasses_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_TargetRange = { "TargetRange", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistFilter, TargetRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetRange_MetaData), NewProp_TargetRange_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_TargetRange, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistFilter", + Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers), + sizeof(FAimAssistFilter), + alignof(FAimAssistFilter), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistFilter_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistFilter() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistFilter_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton; +} +// End ScriptStruct FAimAssistFilter + +// Begin ScriptStruct FAimAssistSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistSettings; +class UScriptStruct* FAimAssistSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistSettings, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistSettings")); + } + return Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Settings for how aim assist should behave when there are active targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Settings for how aim assist should behave when there are active targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistInnerReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of aim assist inner reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of aim assist inner reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistInnerReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of aim assist inner reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of aim assist inner reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistOuterReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of aim assist outer reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of aim assist outer reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistOuterReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of aim assist outer reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of aim assist outer reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of targeting reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of targeting reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of targeting reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of targeting reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetRange_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Range from player's camera used to gather potential targets.\n// Note: This is scaled using the field of view in order to limit targets by their screen size.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Range from player's camera used to gather potential targets.\nNote: This is scaled using the field of view in order to limit targets by their screen size." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetWeightCurve_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much weight the target has based on the time it has been targeted. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much weight the target has based on the time it has been targeted. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullInnerStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullOuterStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullInnerStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullOuterStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullLerpInRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp up the pull strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp up the pull strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullLerpOutRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp down the pull strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp down the pull strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullMaxRotationRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation rate maximum cap on amount of aim assist pull. Set to '0' to disable.\n// Note: This is scaled based on the field of view so it feels the same regardless of zoom.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation rate maximum cap on amount of aim assist pull. Set to '0' to disable.\nNote: This is scaled based on the field of view so it feels the same regardless of zoom." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowInnerStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowOuterStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowInnerStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowOuterStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowLerpInRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp up the slow strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp up the slow strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowLerpOutRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp down the slow strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp down the slow strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowMinRotationRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation rate minimum cap on amount to aim assist slow. Set to '0' to disable.\n// Note: This is scaled based on the field of view so it feels the same regardless of zoom.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation rate minimum cap on amount to aim assist slow. Set to '0' to disable.\nNote: This is scaled based on the field of view so it feels the same regardless of zoom." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxNumberOfTargets_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The maximum number of targets that can be considered during a given frame. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of targets that can be considered during a given frame." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReticleDepth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_AssistWeight_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDot_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDotOffset_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDistance_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StrengthScale_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableAsyncVisibilityTrace_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enabled/Disable asynchronous visibility traces. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enabled/Disable asynchronous visibility traces." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRequireInput_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not we require input for aim assist to be applied */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not we require input for aim assist to be applied" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyPull_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not pull should be applied to aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not pull should be applied to aim assist" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyStrafePullScale_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a strafe pull based off of movement input */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a strafe pull based off of movement input" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplySlowing_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a slowing effect during aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a slowing effect during aim assist" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseDynamicSlow_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a dynamic slow effect based off of look input */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a dynamic slow effect based off of look input" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseRadialLookRates_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not look rates should blend between yaw and pitch based on stick deflection using radial look rates */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not look rates should blend between yaw and pitch based on stick deflection using radial look rates" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistInnerReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistInnerReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistOuterReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistOuterReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetingReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetingReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetRange; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetWeightCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullInnerStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullOuterStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullInnerStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullOuterStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullLerpInRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullLerpOutRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullMaxRotationRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowInnerStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowOuterStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowInnerStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowOuterStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowLerpInRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowLerpOutRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowMinRotationRate; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxNumberOfTargets; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReticleDepth; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_AssistWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDot; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDotOffset; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDistance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StrengthScale; + static void NewProp_bEnableAsyncVisibilityTrace_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableAsyncVisibilityTrace; + static void NewProp_bRequireInput_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRequireInput; + static void NewProp_bApplyPull_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyPull; + static void NewProp_bApplyStrafePullScale_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyStrafePullScale; + static void NewProp_bApplySlowing_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplySlowing; + static void NewProp_bUseDynamicSlow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseDynamicSlow; + static void NewProp_bUseRadialLookRates_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseRadialLookRates; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleWidth = { "AssistInnerReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistInnerReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistInnerReticleWidth_MetaData), NewProp_AssistInnerReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleHeight = { "AssistInnerReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistInnerReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistInnerReticleHeight_MetaData), NewProp_AssistInnerReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleWidth = { "AssistOuterReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistOuterReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistOuterReticleWidth_MetaData), NewProp_AssistOuterReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleHeight = { "AssistOuterReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistOuterReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistOuterReticleHeight_MetaData), NewProp_AssistOuterReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleWidth = { "TargetingReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetingReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingReticleWidth_MetaData), NewProp_TargetingReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleHeight = { "TargetingReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetingReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingReticleHeight_MetaData), NewProp_TargetingReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetRange = { "TargetRange", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetRange), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetRange_MetaData), NewProp_TargetRange_MetaData) }; // 703790095 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetWeightCurve = { "TargetWeightCurve", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetWeightCurve), Z_Construct_UClass_UCurveFloat_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetWeightCurve_MetaData), NewProp_TargetWeightCurve_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthHip = { "PullInnerStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullInnerStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullInnerStrengthHip_MetaData), NewProp_PullInnerStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthHip = { "PullOuterStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullOuterStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullOuterStrengthHip_MetaData), NewProp_PullOuterStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthAds = { "PullInnerStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullInnerStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullInnerStrengthAds_MetaData), NewProp_PullInnerStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthAds = { "PullOuterStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullOuterStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullOuterStrengthAds_MetaData), NewProp_PullOuterStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpInRate = { "PullLerpInRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullLerpInRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullLerpInRate_MetaData), NewProp_PullLerpInRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpOutRate = { "PullLerpOutRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullLerpOutRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullLerpOutRate_MetaData), NewProp_PullLerpOutRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullMaxRotationRate = { "PullMaxRotationRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullMaxRotationRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullMaxRotationRate_MetaData), NewProp_PullMaxRotationRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthHip = { "SlowInnerStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowInnerStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowInnerStrengthHip_MetaData), NewProp_SlowInnerStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthHip = { "SlowOuterStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowOuterStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowOuterStrengthHip_MetaData), NewProp_SlowOuterStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthAds = { "SlowInnerStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowInnerStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowInnerStrengthAds_MetaData), NewProp_SlowInnerStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthAds = { "SlowOuterStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowOuterStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowOuterStrengthAds_MetaData), NewProp_SlowOuterStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpInRate = { "SlowLerpInRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowLerpInRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowLerpInRate_MetaData), NewProp_SlowLerpInRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpOutRate = { "SlowLerpOutRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowLerpOutRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowLerpOutRate_MetaData), NewProp_SlowLerpOutRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowMinRotationRate = { "SlowMinRotationRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowMinRotationRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowMinRotationRate_MetaData), NewProp_SlowMinRotationRate_MetaData) }; // 703790095 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_MaxNumberOfTargets = { "MaxNumberOfTargets", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, MaxNumberOfTargets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxNumberOfTargets_MetaData), NewProp_MaxNumberOfTargets_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_ReticleDepth = { "ReticleDepth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, ReticleDepth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReticleDepth_MetaData), NewProp_ReticleDepth_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_AssistWeight = { "TargetScore_AssistWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_AssistWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_AssistWeight_MetaData), NewProp_TargetScore_AssistWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDot = { "TargetScore_ViewDot", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDot), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDot_MetaData), NewProp_TargetScore_ViewDot_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDotOffset = { "TargetScore_ViewDotOffset", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDotOffset), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDotOffset_MetaData), NewProp_TargetScore_ViewDotOffset_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDistance = { "TargetScore_ViewDistance", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDistance_MetaData), NewProp_TargetScore_ViewDistance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_StrengthScale = { "StrengthScale", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, StrengthScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StrengthScale_MetaData), NewProp_StrengthScale_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bEnableAsyncVisibilityTrace = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace = { "bEnableAsyncVisibilityTrace", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableAsyncVisibilityTrace_MetaData), NewProp_bEnableAsyncVisibilityTrace_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bRequireInput = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput = { "bRequireInput", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRequireInput_MetaData), NewProp_bRequireInput_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplyPull = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull = { "bApplyPull", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyPull_MetaData), NewProp_bApplyPull_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplyStrafePullScale = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale = { "bApplyStrafePullScale", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyStrafePullScale_MetaData), NewProp_bApplyStrafePullScale_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplySlowing = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing = { "bApplySlowing", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplySlowing_MetaData), NewProp_bApplySlowing_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bUseDynamicSlow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow = { "bUseDynamicSlow", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseDynamicSlow_MetaData), NewProp_bUseDynamicSlow_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bUseRadialLookRates = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates = { "bUseRadialLookRates", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseRadialLookRates_MetaData), NewProp_bUseRadialLookRates_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetWeightCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpInRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpOutRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullMaxRotationRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpInRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpOutRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowMinRotationRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_MaxNumberOfTargets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_ReticleDepth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_AssistWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDot, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDotOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDistance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_StrengthScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistSettings", + Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers), + sizeof(FAimAssistSettings), + alignof(FAimAssistSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistSettings() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton; +} +// End ScriptStruct FAimAssistSettings + +// Begin Class UAimAssistInputModifier +void UAimAssistInputModifier::StaticRegisterNativesUAimAssistInputModifier() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistInputModifier); +UClass* Z_Construct_UClass_UAimAssistInputModifier_NoRegister() +{ + return UAimAssistInputModifier::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistInputModifier_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An input modifier to help gamepad players have better targeting.\n */" }, +#endif + { "IncludePath", "Input/AimAssistInputModifier.h" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An input modifier to help gamepad players have better targeting." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Filter_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MoveInputAction_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The input action that represents the actual movement of the player */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The input action that represents the actual movement of the player" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingType_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting to use for this Sensitivity */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting to use for this Sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityLevelTable_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "AimAssistInputModifier" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Asset that gives us access to the float scalar value being used for sensitivty */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asset that gives us access to the float scalar value being used for sensitivty" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetCache0_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracking of the current and previous frame's targets\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracking of the current and previous frame's targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetCache1_MetaData[] = { + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Settings; + static const UECodeGen_Private::FStructPropertyParams NewProp_Filter; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MoveInputAction; + static const UECodeGen_Private::FBytePropertyParams NewProp_TargetingType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_TargetingType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SensitivityLevelTable; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetCache0_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TargetCache0; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetCache1_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TargetCache1; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Settings = { "Settings", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, Settings), Z_Construct_UScriptStruct_FAimAssistSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_MetaData), NewProp_Settings_MetaData) }; // 297635164 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Filter = { "Filter", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, Filter), Z_Construct_UScriptStruct_FAimAssistFilter, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Filter_MetaData), NewProp_Filter_MetaData) }; // 1660199128 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_MoveInputAction = { "MoveInputAction", nullptr, (EPropertyFlags)0x0114000000000805, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, MoveInputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MoveInputAction_MetaData), NewProp_MoveInputAction_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType = { "TargetingType", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetingType), Z_Construct_UEnum_LyraGame_ELyraTargetingType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingType_MetaData), NewProp_TargetingType_MetaData) }; // 667227071 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_SensitivityLevelTable = { "SensitivityLevelTable", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, SensitivityLevelTable), Z_Construct_UClass_ULyraAimSensitivityData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityLevelTable_MetaData), NewProp_SensitivityLevelTable_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0_Inner = { "TargetCache0", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAimAssistTarget, METADATA_PARAMS(0, nullptr) }; // 1488448276 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0 = { "TargetCache0", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetCache0), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetCache0_MetaData), NewProp_TargetCache0_MetaData) }; // 1488448276 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1_Inner = { "TargetCache1", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAimAssistTarget, METADATA_PARAMS(0, nullptr) }; // 1488448276 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1 = { "TargetCache1", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetCache1), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetCache1_MetaData), NewProp_TargetCache1_MetaData) }; // 1488448276 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Filter, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_MoveInputAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_SensitivityLevelTable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAimAssistInputModifier_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistInputModifier_Statics::ClassParams = { + &UAimAssistInputModifier::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers), + 0, + 0x400030A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistInputModifier_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistInputModifier() +{ + if (!Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton, Z_Construct_UClass_UAimAssistInputModifier_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistInputModifier::StaticClass(); +} +UAimAssistInputModifier::UAimAssistInputModifier(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistInputModifier); +UAimAssistInputModifier::~UAimAssistInputModifier() {} +// End Class UAimAssistInputModifier + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAimAssistTarget::StaticStruct, Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::NewStructOps, TEXT("LyraAimAssistTarget"), &Z_Registration_Info_UScriptStruct_LyraAimAssistTarget, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAimAssistTarget), 1488448276U) }, + { FAimAssistFilter::StaticStruct, Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewStructOps, TEXT("AimAssistFilter"), &Z_Registration_Info_UScriptStruct_AimAssistFilter, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistFilter), 1660199128U) }, + { FAimAssistSettings::StaticStruct, Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewStructOps, TEXT("AimAssistSettings"), &Z_Registration_Info_UScriptStruct_AimAssistSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistSettings), 297635164U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistInputModifier, UAimAssistInputModifier::StaticClass, TEXT("UAimAssistInputModifier"), &Z_Registration_Info_UClass_UAimAssistInputModifier, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistInputModifier), 2585686026U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_3604940459(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h new file mode 100644 index 00000000..f5370513 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistInputModifier.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistInputModifier_generated_h +#error "AimAssistInputModifier.generated.h already included, missing '#pragma once' in AimAssistInputModifier.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistInputModifier_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_77_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_116_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistFilter_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_172_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistSettings_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistInputModifier(); \ + friend struct Z_Construct_UClass_UAimAssistInputModifier_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistInputModifier, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistInputModifier) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistInputModifier(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistInputModifier(UAimAssistInputModifier&&); \ + UAimAssistInputModifier(const UAimAssistInputModifier&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistInputModifier); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistInputModifier); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistInputModifier) \ + NO_API virtual ~UAimAssistInputModifier(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_325_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp new file mode 100644 index 00000000..fd52d971 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistTargetComponent.h" +#include "ShooterCoreRuntime/Public/Input/IAimAssistTargetInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistTargetComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetComponent_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UAimAssistTargetComponent +void UAimAssistTargetComponent::StaticRegisterNativesUAimAssistTargetComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTargetComponent); +UClass* Z_Construct_UClass_UAimAssistTargetComponent_NoRegister() +{ + return UAimAssistTargetComponent::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTargetComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This component can be added to any actor to have it register with the Aim Assist Target Manager.\n */" }, +#endif + { "HideCategories", "Object LOD Lighting TextureStreaming Object LOD Lighting TextureStreaming Activation Components|Activation Trigger VirtualTexture" }, + { "IncludePath", "Input/AimAssistTargetComponent.h" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This component can be added to any actor to have it register with the Aim Assist Target Manager." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetData_MetaData[] = { + { "Category", "AimAssistTargetComponent" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::NewProp_TargetData = { "TargetData", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistTargetComponent, TargetData), Z_Construct_UScriptStruct_FAimAssistTargetOptions, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetData_MetaData), NewProp_TargetData_MetaData) }; // 2747943985 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistTargetComponent_Statics::NewProp_TargetData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAimAssistTargetComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCapsuleComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAimAssistTaget_NoRegister, (int32)VTABLE_OFFSET(UAimAssistTargetComponent, IAimAssistTaget), false }, // 2514343677 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::ClassParams = { + &UAimAssistTargetComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTargetComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTargetComponent() +{ + if (!Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton, Z_Construct_UClass_UAimAssistTargetComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTargetComponent::StaticClass(); +} +UAimAssistTargetComponent::UAimAssistTargetComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTargetComponent); +UAimAssistTargetComponent::~UAimAssistTargetComponent() {} +// End Class UAimAssistTargetComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTargetComponent, UAimAssistTargetComponent::StaticClass, TEXT("UAimAssistTargetComponent"), &Z_Registration_Info_UClass_UAimAssistTargetComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTargetComponent), 4181701424U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_2291076259(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h new file mode 100644 index 00000000..1bc90974 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistTargetComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistTargetComponent_generated_h +#error "AimAssistTargetComponent.generated.h already included, missing '#pragma once' in AimAssistTargetComponent.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistTargetComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistTargetComponent(); \ + friend struct Z_Construct_UClass_UAimAssistTargetComponent_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTargetComponent, UCapsuleComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistTargetComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistTargetComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTargetComponent(UAimAssistTargetComponent&&); \ + UAimAssistTargetComponent(const UAimAssistTargetComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistTargetComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTargetComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTargetComponent) \ + NO_API virtual ~UAimAssistTargetComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp new file mode 100644 index 00000000..8754acd3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistTargetManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistTargetManagerComponent() {} + +// Begin Cross Module References +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UAimAssistTargetManagerComponent +void UAimAssistTargetManagerComponent::StaticRegisterNativesUAimAssistTargetManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTargetManagerComponent); +UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent_NoRegister() +{ + return UAimAssistTargetManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The Aim Assist Target Manager Component is used to gather all aim assist targets that are within\n * a given player's view. Targets must implement the IAimAssistTargetInterface and be on the\n * collision channel that is set in the ShooterCoreRuntimeSettings. \n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Input/AimAssistTargetManagerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Aim Assist Target Manager Component is used to gather all aim assist targets that are within\na given player's view. Targets must implement the IAimAssistTargetInterface and be on the\ncollision channel that is set in the ShooterCoreRuntimeSettings." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::ClassParams = { + &UAimAssistTargetManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent() +{ + if (!Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton, Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTargetManagerComponent::StaticClass(); +} +UAimAssistTargetManagerComponent::UAimAssistTargetManagerComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTargetManagerComponent); +UAimAssistTargetManagerComponent::~UAimAssistTargetManagerComponent() {} +// End Class UAimAssistTargetManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTargetManagerComponent, UAimAssistTargetManagerComponent::StaticClass, TEXT("UAimAssistTargetManagerComponent"), &Z_Registration_Info_UClass_UAimAssistTargetManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTargetManagerComponent), 425403018U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_3426789940(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h new file mode 100644 index 00000000..de15b898 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistTargetManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistTargetManagerComponent_generated_h +#error "AimAssistTargetManagerComponent.generated.h already included, missing '#pragma once' in AimAssistTargetManagerComponent.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistTargetManagerComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistTargetManagerComponent(); \ + friend struct Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTargetManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistTargetManagerComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistTargetManagerComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTargetManagerComponent(UAimAssistTargetManagerComponent&&); \ + UAimAssistTargetManagerComponent(const UAimAssistTargetManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistTargetManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTargetManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTargetManagerComponent) \ + NO_API virtual ~UAimAssistTargetManagerComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_25_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp new file mode 100644 index 00000000..454d950b --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp @@ -0,0 +1,202 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/AssistProcessor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAssistProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAssistProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAssistProcessor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPlayerAssistDamageTracking(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPlayerAssistDamageTracking +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking; +class UScriptStruct* FPlayerAssistDamageTracking::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PlayerAssistDamageTracking")); + } + return Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPlayerAssistDamageTracking::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks the damage done to a player by other players\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks the damage done to a player by other players" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccumulatedDamageByPlayer_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of damager to damage dealt\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of damager to damage dealt" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_AccumulatedDamageByPlayer_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AccumulatedDamageByPlayer_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AccumulatedDamageByPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_ValueProp = { "AccumulatedDamageByPlayer", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_Key_KeyProp = { "AccumulatedDamageByPlayer_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer = { "AccumulatedDamageByPlayer", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPlayerAssistDamageTracking, AccumulatedDamageByPlayer), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccumulatedDamageByPlayer_MetaData), NewProp_AccumulatedDamageByPlayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PlayerAssistDamageTracking", + Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers), + sizeof(FPlayerAssistDamageTracking), + alignof(FPlayerAssistDamageTracking), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPlayerAssistDamageTracking() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton; +} +// End ScriptStruct FPlayerAssistDamageTracking + +// Begin Class UAssistProcessor +void UAssistProcessor::StaticRegisterNativesUAssistProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAssistProcessor); +UClass* Z_Construct_UClass_UAssistProcessor_NoRegister() +{ + return UAssistProcessor::StaticClass(); +} +struct Z_Construct_UClass_UAssistProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks assists (dealing damage to another player without finishing them)\n" }, +#endif + { "IncludePath", "MessageProcessors/AssistProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks assists (dealing damage to another player without finishing them)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DamageHistory_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of player to damage dealt to them\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of player to damage dealt to them" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DamageHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DamageHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_DamageHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_ValueProp = { "DamageHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking, METADATA_PARAMS(0, nullptr) }; // 2928360808 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_Key_KeyProp = { "DamageHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory = { "DamageHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAssistProcessor, DamageHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DamageHistory_MetaData), NewProp_DamageHistory_MetaData) }; // 2928360808 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAssistProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAssistProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAssistProcessor_Statics::ClassParams = { + &UAssistProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAssistProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UAssistProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAssistProcessor() +{ + if (!Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton, Z_Construct_UClass_UAssistProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAssistProcessor::StaticClass(); +} +UAssistProcessor::UAssistProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAssistProcessor); +UAssistProcessor::~UAssistProcessor() {} +// End Class UAssistProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPlayerAssistDamageTracking::StaticStruct, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewStructOps, TEXT("PlayerAssistDamageTracking"), &Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPlayerAssistDamageTracking), 2928360808U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAssistProcessor, UAssistProcessor::StaticClass, TEXT("UAssistProcessor"), &Z_Registration_Info_UClass_UAssistProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAssistProcessor), 4140987035U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_2359454962(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h new file mode 100644 index 00000000..fd5017d8 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/AssistProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AssistProcessor_generated_h +#error "AssistProcessor.generated.h already included, missing '#pragma once' in AssistProcessor.h" +#endif +#define SHOOTERCORERUNTIME_AssistProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAssistProcessor(); \ + friend struct Z_Construct_UClass_UAssistProcessor_Statics; \ +public: \ + DECLARE_CLASS(UAssistProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAssistProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAssistProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAssistProcessor(UAssistProcessor&&); \ + UAssistProcessor(const UAssistProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAssistProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAssistProcessor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAssistProcessor) \ + NO_API virtual ~UAssistProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_27_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp new file mode 100644 index 00000000..cb4d42ad --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp @@ -0,0 +1,105 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Messages/ControlPointStatusMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeControlPointStatusMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraControlPointStatusMessage(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraControlPointStatusMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage; +class UScriptStruct* FLyraControlPointStatusMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraControlPointStatusMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraControlPointStatusMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Message indicating the state of a control point is changing\n" }, +#endif + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Message indicating the state of a control point is changing" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlPoint_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerTeamID_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlPoint; + static const UECodeGen_Private::FIntPropertyParams NewProp_OwnerTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_ControlPoint = { "ControlPoint", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControlPointStatusMessage, ControlPoint), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlPoint_MetaData), NewProp_ControlPoint_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_OwnerTeamID = { "OwnerTeamID", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControlPointStatusMessage, OwnerTeamID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerTeamID_MetaData), NewProp_OwnerTeamID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_ControlPoint, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_OwnerTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "LyraControlPointStatusMessage", + Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers), + sizeof(FLyraControlPointStatusMessage), + alignof(FLyraControlPointStatusMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraControlPointStatusMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton; +} +// End ScriptStruct FLyraControlPointStatusMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraControlPointStatusMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewStructOps, TEXT("LyraControlPointStatusMessage"), &Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraControlPointStatusMessage), 729978288U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_3060954755(TEXT("/Script/ShooterCoreRuntime"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h new file mode 100644 index 00000000..25c8f191 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/ControlPointStatusMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ControlPointStatusMessage_generated_h +#error "ControlPointStatusMessage.generated.h already included, missing '#pragma once' in ControlPointStatusMessage.h" +#endif +#define SHOOTERCORERUNTIME_ControlPointStatusMessage_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp new file mode 100644 index 00000000..d4b539be --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/ElimChainProcessor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeElimChainProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimChainProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimChainProcessor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPlayerElimChainInfo(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPlayerElimChainInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PlayerElimChainInfo; +class UScriptStruct* FPlayerElimChainInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPlayerElimChainInfo, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PlayerElimChainInfo")); + } + return Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPlayerElimChainInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PlayerElimChainInfo", + nullptr, + 0, + sizeof(FPlayerElimChainInfo), + alignof(FPlayerElimChainInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPlayerElimChainInfo() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton, Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton; +} +// End ScriptStruct FPlayerElimChainInfo + +// Begin Class UElimChainProcessor +void UElimChainProcessor::StaticRegisterNativesUElimChainProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UElimChainProcessor); +UClass* Z_Construct_UClass_UElimChainProcessor_NoRegister() +{ + return UElimChainProcessor::StaticClass(); +} +struct Z_Construct_UClass_UElimChainProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks a chain of eliminations (X eliminations without more than Y seconds passing between each one)\n" }, +#endif + { "IncludePath", "MessageProcessors/ElimChainProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks a chain of eliminations (X eliminations without more than Y seconds passing between each one)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ChainTimeLimit_MetaData[] = { + { "Category", "ElimChainProcessor" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ElimChainTags_MetaData[] = { + { "Category", "ElimChainProcessor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The event to rebroadcast when a user gets a chain of a certain length\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The event to rebroadcast when a user gets a chain of a certain length" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerChainHistory_MetaData[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ChainTimeLimit; + static const UECodeGen_Private::FStructPropertyParams NewProp_ElimChainTags_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_ElimChainTags_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ElimChainTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlayerChainHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerChainHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PlayerChainHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ChainTimeLimit = { "ChainTimeLimit", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, ChainTimeLimit), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ChainTimeLimit_MetaData), NewProp_ChainTimeLimit_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_ValueProp = { "ElimChainTags", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_Key_KeyProp = { "ElimChainTags_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags = { "ElimChainTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, ElimChainTags), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ElimChainTags_MetaData), NewProp_ElimChainTags_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_ValueProp = { "PlayerChainHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPlayerElimChainInfo, METADATA_PARAMS(0, nullptr) }; // 2918274542 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_Key_KeyProp = { "PlayerChainHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory = { "PlayerChainHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, PlayerChainHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerChainHistory_MetaData), NewProp_PlayerChainHistory_MetaData) }; // 2918274542 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ChainTimeLimit, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UElimChainProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UElimChainProcessor_Statics::ClassParams = { + &UElimChainProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UElimChainProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UElimChainProcessor() +{ + if (!Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton, Z_Construct_UClass_UElimChainProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UElimChainProcessor::StaticClass(); +} +UElimChainProcessor::UElimChainProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UElimChainProcessor); +UElimChainProcessor::~UElimChainProcessor() {} +// End Class UElimChainProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPlayerElimChainInfo::StaticStruct, Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::NewStructOps, TEXT("PlayerElimChainInfo"), &Z_Registration_Info_UScriptStruct_PlayerElimChainInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPlayerElimChainInfo), 2918274542U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UElimChainProcessor, UElimChainProcessor::StaticClass, TEXT("UElimChainProcessor"), &Z_Registration_Info_UClass_UElimChainProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UElimChainProcessor), 3345411405U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_4045487697(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h new file mode 100644 index 00000000..88a68166 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/ElimChainProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ElimChainProcessor_generated_h +#error "ElimChainProcessor.generated.h already included, missing '#pragma once' in ElimChainProcessor.h" +#endif +#define SHOOTERCORERUNTIME_ElimChainProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUElimChainProcessor(); \ + friend struct Z_Construct_UClass_UElimChainProcessor_Statics; \ +public: \ + DECLARE_CLASS(UElimChainProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UElimChainProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UElimChainProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UElimChainProcessor(UElimChainProcessor&&); \ + UElimChainProcessor(const UElimChainProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UElimChainProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UElimChainProcessor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UElimChainProcessor) \ + NO_API virtual ~UElimChainProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_26_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp new file mode 100644 index 00000000..0800720a --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp @@ -0,0 +1,135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/ElimStreakProcessor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeElimStreakProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimStreakProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimStreakProcessor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UElimStreakProcessor +void UElimStreakProcessor::StaticRegisterNativesUElimStreakProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UElimStreakProcessor); +UClass* Z_Construct_UClass_UElimStreakProcessor_NoRegister() +{ + return UElimStreakProcessor::StaticClass(); +} +struct Z_Construct_UClass_UElimStreakProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks a streak of eliminations (X eliminations without being eliminated)\n" }, +#endif + { "IncludePath", "MessageProcessors/ElimStreakProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks a streak of eliminations (X eliminations without being eliminated)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ElimStreakTags_MetaData[] = { + { "Category", "ElimStreakProcessor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The event to rebroadcast when a user gets a streak of a certain length\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The event to rebroadcast when a user gets a streak of a certain length" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerStreakHistory_MetaData[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ElimStreakTags_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_ElimStreakTags_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ElimStreakTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_PlayerStreakHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerStreakHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PlayerStreakHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_ValueProp = { "ElimStreakTags", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_Key_KeyProp = { "ElimStreakTags_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags = { "ElimStreakTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimStreakProcessor, ElimStreakTags), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ElimStreakTags_MetaData), NewProp_ElimStreakTags_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_ValueProp = { "PlayerStreakHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_Key_KeyProp = { "PlayerStreakHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory = { "PlayerStreakHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimStreakProcessor, PlayerStreakHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerStreakHistory_MetaData), NewProp_PlayerStreakHistory_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UElimStreakProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UElimStreakProcessor_Statics::ClassParams = { + &UElimStreakProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UElimStreakProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UElimStreakProcessor() +{ + if (!Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton, Z_Construct_UClass_UElimStreakProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UElimStreakProcessor::StaticClass(); +} +UElimStreakProcessor::UElimStreakProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UElimStreakProcessor); +UElimStreakProcessor::~UElimStreakProcessor() {} +// End Class UElimStreakProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UElimStreakProcessor, UElimStreakProcessor::StaticClass, TEXT("UElimStreakProcessor"), &Z_Registration_Info_UClass_UElimStreakProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UElimStreakProcessor), 352084794U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_3624122353(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h new file mode 100644 index 00000000..bfcd1c19 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/ElimStreakProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ElimStreakProcessor_generated_h +#error "ElimStreakProcessor.generated.h already included, missing '#pragma once' in ElimStreakProcessor.h" +#endif +#define SHOOTERCORERUNTIME_ElimStreakProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUElimStreakProcessor(); \ + friend struct Z_Construct_UClass_UElimStreakProcessor_Statics; \ +public: \ + DECLARE_CLASS(UElimStreakProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UElimStreakProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UElimStreakProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UElimStreakProcessor(UElimStreakProcessor&&); \ + UElimStreakProcessor(const UElimStreakProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UElimStreakProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UElimStreakProcessor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UElimStreakProcessor) \ + NO_API virtual ~UElimStreakProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp new file mode 100644 index 00000000..da10922b --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp @@ -0,0 +1,183 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/IAimAssistTargetInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIAimAssistTargetInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FAimAssistTargetOptions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistTargetOptions; +class UScriptStruct* FAimAssistTargetOptions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistTargetOptions, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistTargetOptions")); + } + return Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistTargetOptions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedTags_MetaData[] = { + { "Category", "AimAssistTargetOptions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gameplay tags that are associated with this target that can be used to filter it out.\n\x09 *\n\x09 * If the player's aim assist settings have any tags that match these, it will be excluded.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay tags that are associated with this target that can be used to filter it out.\n\nIf the player's aim assist settings have any tags that match these, it will be excluded." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsActive_MetaData[] = { + { "Category", "AimAssistTargetOptions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not this target is currently active. If false, it will not be considered for aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not this target is currently active. If false, it will not be considered for aim assist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AssociatedTags; + static void NewProp_bIsActive_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsActive; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_AssociatedTags = { "AssociatedTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistTargetOptions, AssociatedTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedTags_MetaData), NewProp_AssociatedTags_MetaData) }; // 3352185621 +void Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive_SetBit(void* Obj) +{ + ((FAimAssistTargetOptions*)Obj)->bIsActive = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive = { "bIsActive", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistTargetOptions), &Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsActive_MetaData), NewProp_bIsActive_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_AssociatedTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistTargetOptions", + Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers), + sizeof(FAimAssistTargetOptions), + alignof(FAimAssistTargetOptions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton; +} +// End ScriptStruct FAimAssistTargetOptions + +// Begin Interface UAimAssistTaget +void UAimAssistTaget::StaticRegisterNativesUAimAssistTaget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTaget); +UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister() +{ + return UAimAssistTaget::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTaget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAimAssistTaget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTaget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTaget_Statics::ClassParams = { + &UAimAssistTaget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTaget_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTaget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTaget() +{ + if (!Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton, Z_Construct_UClass_UAimAssistTaget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTaget::StaticClass(); +} +UAimAssistTaget::UAimAssistTaget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTaget); +UAimAssistTaget::~UAimAssistTaget() {} +// End Interface UAimAssistTaget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FAimAssistTargetOptions::StaticStruct, Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewStructOps, TEXT("AimAssistTargetOptions"), &Z_Registration_Info_UScriptStruct_AimAssistTargetOptions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistTargetOptions), 2747943985U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTaget, UAimAssistTaget::StaticClass, TEXT("UAimAssistTaget"), &Z_Registration_Info_UClass_UAimAssistTaget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTaget), 2514343677U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_2614035932(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h new file mode 100644 index 00000000..a4e410e6 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h @@ -0,0 +1,79 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/IAimAssistTargetInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_IAimAssistTargetInterface_generated_h +#error "IAimAssistTargetInterface.generated.h already included, missing '#pragma once' in IAimAssistTargetInterface.h" +#endif +#define SHOOTERCORERUNTIME_IAimAssistTargetInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + SHOOTERCORERUNTIME_API UAimAssistTaget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTaget(UAimAssistTaget&&); \ + UAimAssistTaget(const UAimAssistTaget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(SHOOTERCORERUNTIME_API, UAimAssistTaget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTaget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTaget) \ + SHOOTERCORERUNTIME_API virtual ~UAimAssistTaget(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUAimAssistTaget(); \ + friend struct Z_Construct_UClass_UAimAssistTaget_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTaget, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), SHOOTERCORERUNTIME_API) \ + DECLARE_SERIALIZER(UAimAssistTaget) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IAimAssistTaget() {} \ +public: \ + typedef UAimAssistTaget UClassType; \ + typedef IAimAssistTaget ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_36_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp new file mode 100644 index 00000000..cf1098d9 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp @@ -0,0 +1,314 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeDefinition.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAccoladeDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FTableRowBase(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeDefinition(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeDefinition_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraAccoladeDefinitionRow +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAccoladeDefinitionRow cannot be polymorphic unless super FTableRowBase is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow; +class UScriptStruct* FLyraAccoladeDefinitionRow::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraAccoladeDefinitionRow")); + } + return Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraAccoladeDefinitionRow::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The message to display\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The sound to play\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The sound to play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "AllowedClasses", "Texture,MaterialInterface,SlateTextureAtlasInterface" }, + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon to display\x09\n" }, +#endif + { "DisallowedClasses", "MediaTexture" }, + { "DisplayThumbnail", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayDuration_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Duration (in seconds) to display this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Duration (in seconds) to display this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationTag_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Location to display this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Location to display this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccoladeTags_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags associated with this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags associated with this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAccoladesWithTag_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When this accolade is displayed, any existing displayed/pending accolades with any of\n// these tags will be removed (e.g., getting a triple-elim will suppress a double-elim)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When this accolade is displayed, any existing displayed/pending accolades with any of\nthese tags will be removed (e.g., getting a triple-elim will suppress a double-elim)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayDuration; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_AccoladeTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAccoladesWithTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayDuration = { "DisplayDuration", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, DisplayDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayDuration_MetaData), NewProp_DisplayDuration_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_LocationTag = { "LocationTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, LocationTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationTag_MetaData), NewProp_LocationTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_AccoladeTags = { "AccoladeTags", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, AccoladeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccoladeTags_MetaData), NewProp_AccoladeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_CancelAccoladesWithTag = { "CancelAccoladesWithTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, CancelAccoladesWithTag), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAccoladesWithTag_MetaData), NewProp_CancelAccoladesWithTag_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_LocationTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_AccoladeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_CancelAccoladesWithTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + Z_Construct_UScriptStruct_FTableRowBase, + &NewStructOps, + "LyraAccoladeDefinitionRow", + Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers), + sizeof(FLyraAccoladeDefinitionRow), + alignof(FLyraAccoladeDefinitionRow), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton, Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton; +} +// End ScriptStruct FLyraAccoladeDefinitionRow + +// Begin Class ULyraAccoladeDefinition +void ULyraAccoladeDefinition::StaticRegisterNativesULyraAccoladeDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAccoladeDefinition); +UClass* Z_Construct_UClass_ULyraAccoladeDefinition_NoRegister() +{ + return ULyraAccoladeDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraAccoladeDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Accolades/LyraAccoladeDefinition.h" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The sound to play\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The sound to play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "AllowedClasses", "Texture,MaterialInterface,SlateTextureAtlasInterface" }, + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon to display\x09\n" }, +#endif + { "DisallowedClasses", "MediaTexture" }, + { "DisplayThumbnail", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccoladeTags_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags associated with this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags associated with this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAccoladesWithTag_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When this accolade is displayed, any existing displayed/pending accolades with any of\n// these tags will be removed (e.g., getting a triple-elim will suppress a double-elim)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When this accolade is displayed, any existing displayed/pending accolades with any of\nthese tags will be removed (e.g., getting a triple-elim will suppress a double-elim)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FStructPropertyParams NewProp_AccoladeTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAccoladesWithTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_AccoladeTags = { "AccoladeTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, AccoladeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccoladeTags_MetaData), NewProp_AccoladeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_CancelAccoladesWithTag = { "CancelAccoladesWithTag", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, CancelAccoladesWithTag), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAccoladesWithTag_MetaData), NewProp_CancelAccoladesWithTag_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_AccoladeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_CancelAccoladesWithTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAccoladeDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::ClassParams = { + &ULyraAccoladeDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAccoladeDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAccoladeDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton, Z_Construct_UClass_ULyraAccoladeDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ULyraAccoladeDefinition::StaticClass(); +} +ULyraAccoladeDefinition::ULyraAccoladeDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAccoladeDefinition); +ULyraAccoladeDefinition::~ULyraAccoladeDefinition() {} +// End Class ULyraAccoladeDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAccoladeDefinitionRow::StaticStruct, Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewStructOps, TEXT("LyraAccoladeDefinitionRow"), &Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAccoladeDefinitionRow), 1787614283U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAccoladeDefinition, ULyraAccoladeDefinition::StaticClass, TEXT("ULyraAccoladeDefinition"), &Z_Registration_Info_UClass_ULyraAccoladeDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAccoladeDefinition), 1453977109U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_1012295428(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h new file mode 100644 index 00000000..d2d97504 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Accolades/LyraAccoladeDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_LyraAccoladeDefinition_generated_h +#error "LyraAccoladeDefinition.generated.h already included, missing '#pragma once' in LyraAccoladeDefinition.h" +#endif +#define SHOOTERCORERUNTIME_LyraAccoladeDefinition_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); \ + typedef FTableRowBase Super; + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAccoladeDefinition(); \ + friend struct Z_Construct_UClass_ULyraAccoladeDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraAccoladeDefinition, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraAccoladeDefinition) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAccoladeDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAccoladeDefinition(ULyraAccoladeDefinition&&); \ + ULyraAccoladeDefinition(const ULyraAccoladeDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAccoladeDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAccoladeDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAccoladeDefinition) \ + NO_API virtual ~ULyraAccoladeDefinition(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_53_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp new file mode 100644 index 00000000..ff32d56e --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp @@ -0,0 +1,348 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeHostWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAccoladeHostWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeHostWidget(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeHostWidget_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPendingAccoladeEntry(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPendingAccoladeEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PendingAccoladeEntry; +class UScriptStruct* FPendingAccoladeEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPendingAccoladeEntry, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PendingAccoladeEntry")); + } + return Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPendingAccoladeEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Row_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllocatedWidget_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Row; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AllocatedWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Row = { "Row", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Row), Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Row_MetaData), NewProp_Row_MetaData) }; // 1787614283 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_AllocatedWidget = { "AllocatedWidget", nullptr, (EPropertyFlags)0x0114000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, AllocatedWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllocatedWidget_MetaData), NewProp_AllocatedWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Row, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_AllocatedWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PendingAccoladeEntry", + Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers), + sizeof(FPendingAccoladeEntry), + alignof(FPendingAccoladeEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPendingAccoladeEntry() +{ + if (!Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton, Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton; +} +// End ScriptStruct FPendingAccoladeEntry + +// Begin Class ULyraAccoladeHostWidget Function CreateAccoladeWidget +struct LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms +{ + FPendingAccoladeEntry Entry; + UUserWidget* ReturnValue; + + /** Constructor, initializes return property only **/ + LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_ULyraAccoladeHostWidget_CreateAccoladeWidget = FName(TEXT("CreateAccoladeWidget")); +UUserWidget* ULyraAccoladeHostWidget::CreateAccoladeWidget(FPendingAccoladeEntry const& Entry) +{ + LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms Parms; + Parms.Entry=Entry; + UFunction* Func = FindFunctionChecked(NAME_ULyraAccoladeHostWidget_CreateAccoladeWidget); + ProcessEvent(Func,&Parms); + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entry_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entry; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_Entry = { "Entry", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms, Entry), Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entry_MetaData), NewProp_Entry_MetaData) }; // 2807307257 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms, ReturnValue), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_Entry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAccoladeHostWidget, nullptr, "CreateAccoladeWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers), sizeof(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08420800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraAccoladeHostWidget Function CreateAccoladeWidget + +// Begin Class ULyraAccoladeHostWidget Function DestroyAccoladeWidget +struct LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms +{ + UUserWidget* Widget; +}; +static const FName NAME_ULyraAccoladeHostWidget_DestroyAccoladeWidget = FName(TEXT("DestroyAccoladeWidget")); +void ULyraAccoladeHostWidget::DestroyAccoladeWidget(UUserWidget* Widget) +{ + LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms Parms; + Parms.Widget=Widget; + UFunction* Func = FindFunctionChecked(NAME_ULyraAccoladeHostWidget_DestroyAccoladeWidget); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Widget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::NewProp_Widget = { "Widget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms, Widget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widget_MetaData), NewProp_Widget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::NewProp_Widget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAccoladeHostWidget, nullptr, "DestroyAccoladeWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers), sizeof(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraAccoladeHostWidget Function DestroyAccoladeWidget + +// Begin Class ULyraAccoladeHostWidget +void ULyraAccoladeHostWidget::StaticRegisterNativesULyraAccoladeHostWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAccoladeHostWidget); +UClass* Z_Construct_UClass_ULyraAccoladeHostWidget_NoRegister() +{ + return ULyraAccoladeHostWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraAccoladeHostWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Accolades/LyraAccoladeHostWidget.h" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationName_MetaData[] = { + { "Category", "LyraAccoladeHostWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The location tag (used to filter incoming messages to only display the appropriate accolades in a given location)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The location tag (used to filter incoming messages to only display the appropriate accolades in a given location)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingAccoladeLoads_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of async pending load accolades (which might come in the wrong order due to the row read)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of async pending load accolades (which might come in the wrong order due to the row read)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingAccoladeDisplays_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of pending accolades (due to one at a time display duration; the first one in the list is the current visible one)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of pending accolades (due to one at a time display duration; the first one in the list is the current visible one)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationName; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingAccoladeLoads_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PendingAccoladeLoads; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingAccoladeDisplays_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PendingAccoladeDisplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget, "CreateAccoladeWidget" }, // 1307559230 + { &Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget, "DestroyAccoladeWidget" }, // 3248281648 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_LocationName = { "LocationName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, LocationName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationName_MetaData), NewProp_LocationName_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads_Inner = { "PendingAccoladeLoads", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(0, nullptr) }; // 2807307257 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads = { "PendingAccoladeLoads", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, PendingAccoladeLoads), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingAccoladeLoads_MetaData), NewProp_PendingAccoladeLoads_MetaData) }; // 2807307257 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays_Inner = { "PendingAccoladeDisplays", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(0, nullptr) }; // 2807307257 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays = { "PendingAccoladeDisplays", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, PendingAccoladeDisplays), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingAccoladeDisplays_MetaData), NewProp_PendingAccoladeDisplays_MetaData) }; // 2807307257 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_LocationName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::ClassParams = { + &ULyraAccoladeHostWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers), + 0, + 0x00A010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAccoladeHostWidget() +{ + if (!Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton, Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ULyraAccoladeHostWidget::StaticClass(); +} +ULyraAccoladeHostWidget::ULyraAccoladeHostWidget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAccoladeHostWidget); +ULyraAccoladeHostWidget::~ULyraAccoladeHostWidget() {} +// End Class ULyraAccoladeHostWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPendingAccoladeEntry::StaticStruct, Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewStructOps, TEXT("PendingAccoladeEntry"), &Z_Registration_Info_UScriptStruct_PendingAccoladeEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPendingAccoladeEntry), 2807307257U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAccoladeHostWidget, ULyraAccoladeHostWidget::StaticClass, TEXT("ULyraAccoladeHostWidget"), &Z_Registration_Info_UClass_ULyraAccoladeHostWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAccoladeHostWidget), 3514828148U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_735247475(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h new file mode 100644 index 00000000..e7e59d95 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Accolades/LyraAccoladeHostWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UUserWidget; +struct FPendingAccoladeEntry; +#ifdef SHOOTERCORERUNTIME_LyraAccoladeHostWidget_generated_h +#error "LyraAccoladeHostWidget.generated.h already included, missing '#pragma once' in LyraAccoladeHostWidget.h" +#endif +#define SHOOTERCORERUNTIME_LyraAccoladeHostWidget_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAccoladeHostWidget(); \ + friend struct Z_Construct_UClass_ULyraAccoladeHostWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraAccoladeHostWidget, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraAccoladeHostWidget) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAccoladeHostWidget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAccoladeHostWidget(ULyraAccoladeHostWidget&&); \ + ULyraAccoladeHostWidget(const ULyraAccoladeHostWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAccoladeHostWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAccoladeHostWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAccoladeHostWidget) \ + NO_API virtual ~ULyraAccoladeHostWidget(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_45_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp new file mode 100644 index 00000000..74f30435 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/LyraWorldCollectable.h" +#include "LyraGame/Interaction/InteractionOption.h" +#include "LyraGame/Inventory/IPickupable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWorldCollectable() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ALyraWorldCollectable(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ALyraWorldCollectable_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class ALyraWorldCollectable +void ALyraWorldCollectable::StaticRegisterNativesALyraWorldCollectable() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWorldCollectable); +UClass* Z_Construct_UClass_ALyraWorldCollectable_NoRegister() +{ + return ALyraWorldCollectable::StaticClass(); +} +struct Z_Construct_UClass_ALyraWorldCollectable_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "LyraWorldCollectable.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Option_MetaData[] = { + { "Category", "LyraWorldCollectable" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticInventory_MetaData[] = { + { "Category", "LyraWorldCollectable" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Option; + static const UECodeGen_Private::FStructPropertyParams NewProp_StaticInventory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_Option = { "Option", nullptr, (EPropertyFlags)0x0020088000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldCollectable, Option), Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Option_MetaData), NewProp_Option_MetaData) }; // 4256573821 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_StaticInventory = { "StaticInventory", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldCollectable, StaticInventory), Z_Construct_UScriptStruct_FInventoryPickup, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticInventory_MetaData), NewProp_StaticInventory_MetaData) }; // 3290137148 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_Option, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_StaticInventory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWorldCollectable_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraWorldCollectable_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UInteractableTarget_NoRegister, (int32)VTABLE_OFFSET(ALyraWorldCollectable, IInteractableTarget), false }, // 2018106830 + { Z_Construct_UClass_UPickupable_NoRegister, (int32)VTABLE_OFFSET(ALyraWorldCollectable, IPickupable), false }, // 1088473728 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWorldCollectable_Statics::ClassParams = { + &ALyraWorldCollectable::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWorldCollectable_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWorldCollectable() +{ + if (!Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton, Z_Construct_UClass_ALyraWorldCollectable_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ALyraWorldCollectable::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWorldCollectable); +ALyraWorldCollectable::~ALyraWorldCollectable() {} +// End Class ALyraWorldCollectable + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWorldCollectable, ALyraWorldCollectable::StaticClass, TEXT("ALyraWorldCollectable"), &Z_Registration_Info_UClass_ALyraWorldCollectable, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWorldCollectable), 1918952670U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_3300932705(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h new file mode 100644 index 00000000..6ac918ef --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraWorldCollectable.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_LyraWorldCollectable_generated_h +#error "LyraWorldCollectable.generated.h already included, missing '#pragma once' in LyraWorldCollectable.h" +#endif +#define SHOOTERCORERUNTIME_LyraWorldCollectable_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWorldCollectable(); \ + friend struct Z_Construct_UClass_ALyraWorldCollectable_Statics; \ +public: \ + DECLARE_CLASS(ALyraWorldCollectable, AActor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ALyraWorldCollectable) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWorldCollectable(ALyraWorldCollectable&&); \ + ALyraWorldCollectable(const ALyraWorldCollectable&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWorldCollectable); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWorldCollectable); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ALyraWorldCollectable) \ + NO_API virtual ~ALyraWorldCollectable(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp new file mode 100644 index 00000000..32bfd5a9 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterCoreRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ShooterCoreRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime() + { + if (!Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ShooterCoreRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x301C5634, + 0xEBB3397E, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ShooterCoreRuntime(Z_Construct_UPackage__Script_ShooterCoreRuntime, TEXT("/Script/ShooterCoreRuntime"), Z_Registration_Info_UPackage__Script_ShooterCoreRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x301C5634, 0xEBB3397E)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp new file mode 100644 index 00000000..189527ef --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/ShooterCoreRuntimeSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterCoreRuntimeSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_ECollisionChannel(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UShooterCoreRuntimeSettings +void UShooterCoreRuntimeSettings::StaticRegisterNativesUShooterCoreRuntimeSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UShooterCoreRuntimeSettings); +UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings_NoRegister() +{ + return UShooterCoreRuntimeSettings::StaticClass(); +} +struct Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Runtime settings specific to the ShooterCoreRuntime plugin */" }, +#endif + { "IncludePath", "ShooterCoreRuntimeSettings.h" }, + { "ModuleRelativePath", "Public/ShooterCoreRuntimeSettings.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runtime settings specific to the ShooterCoreRuntime plugin" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AimAssistCollisionChannel_MetaData[] = { + { "Category", "Aim Assist" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * What trace channel should be used to find available targets for Aim Assist.\n\x09 * @see UAimAssistTargetManagerComponent::GetVisibleTargets\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/ShooterCoreRuntimeSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What trace channel should be used to find available targets for Aim Assist.\n@see UAimAssistTargetManagerComponent::GetVisibleTargets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_AimAssistCollisionChannel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::NewProp_AimAssistCollisionChannel = { "AimAssistCollisionChannel", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UShooterCoreRuntimeSettings, AimAssistCollisionChannel), Z_Construct_UEnum_Engine_ECollisionChannel, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AimAssistCollisionChannel_MetaData), NewProp_AimAssistCollisionChannel_MetaData) }; // 756624936 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::NewProp_AimAssistCollisionChannel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::ClassParams = { + &UShooterCoreRuntimeSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings() +{ + if (!Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton, Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UShooterCoreRuntimeSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UShooterCoreRuntimeSettings); +UShooterCoreRuntimeSettings::~UShooterCoreRuntimeSettings() {} +// End Class UShooterCoreRuntimeSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UShooterCoreRuntimeSettings, UShooterCoreRuntimeSettings::StaticClass, TEXT("UShooterCoreRuntimeSettings"), &Z_Registration_Info_UClass_UShooterCoreRuntimeSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UShooterCoreRuntimeSettings), 2981028601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_3568208481(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h new file mode 100644 index 00000000..e6000ef5 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ShooterCoreRuntimeSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ShooterCoreRuntimeSettings_generated_h +#error "ShooterCoreRuntimeSettings.generated.h already included, missing '#pragma once' in ShooterCoreRuntimeSettings.h" +#endif +#define SHOOTERCORERUNTIME_ShooterCoreRuntimeSettings_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUShooterCoreRuntimeSettings(); \ + friend struct Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics; \ +public: \ + DECLARE_CLASS(UShooterCoreRuntimeSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UShooterCoreRuntimeSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UShooterCoreRuntimeSettings(UShooterCoreRuntimeSettings&&); \ + UShooterCoreRuntimeSettings(const UShooterCoreRuntimeSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UShooterCoreRuntimeSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UShooterCoreRuntimeSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UShooterCoreRuntimeSettings) \ + NO_API virtual ~UShooterCoreRuntimeSettings(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp new file mode 100644 index 00000000..389809ab --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Private/TDM_PlayerSpawningManagmentComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTDM_PlayerSpawningManagmentComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UTDM_PlayerSpawningManagmentComponent +void UTDM_PlayerSpawningManagmentComponent::StaticRegisterNativesUTDM_PlayerSpawningManagmentComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTDM_PlayerSpawningManagmentComponent); +UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_NoRegister() +{ + return UTDM_PlayerSpawningManagmentComponent::StaticClass(); +} +struct Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "TDM_PlayerSpawningManagmentComponent.h" }, + { "ModuleRelativePath", "Private/TDM_PlayerSpawningManagmentComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::ClassParams = { + &UTDM_PlayerSpawningManagmentComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent() +{ + if (!Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton, Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UTDM_PlayerSpawningManagmentComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTDM_PlayerSpawningManagmentComponent); +UTDM_PlayerSpawningManagmentComponent::~UTDM_PlayerSpawningManagmentComponent() {} +// End Class UTDM_PlayerSpawningManagmentComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent, UTDM_PlayerSpawningManagmentComponent::StaticClass, TEXT("UTDM_PlayerSpawningManagmentComponent"), &Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTDM_PlayerSpawningManagmentComponent), 1351437570U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_1325601228(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h new file mode 100644 index 00000000..a20a724e --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TDM_PlayerSpawningManagmentComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_TDM_PlayerSpawningManagmentComponent_generated_h +#error "TDM_PlayerSpawningManagmentComponent.generated.h already included, missing '#pragma once' in TDM_PlayerSpawningManagmentComponent.h" +#endif +#define SHOOTERCORERUNTIME_TDM_PlayerSpawningManagmentComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTDM_PlayerSpawningManagmentComponent(); \ + friend struct Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics; \ +public: \ + DECLARE_CLASS(UTDM_PlayerSpawningManagmentComponent, ULyraPlayerSpawningManagerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTDM_PlayerSpawningManagmentComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTDM_PlayerSpawningManagmentComponent(UTDM_PlayerSpawningManagmentComponent&&); \ + UTDM_PlayerSpawningManagmentComponent(const UTDM_PlayerSpawningManagmentComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTDM_PlayerSpawningManagmentComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTDM_PlayerSpawningManagmentComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UTDM_PlayerSpawningManagmentComponent) \ + NO_API virtual ~UTDM_PlayerSpawningManagmentComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/Timestamp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/Timestamp new file mode 100644 index 00000000..fa1d4f4a --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/Timestamp @@ -0,0 +1,13 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\ShooterCoreRuntimeSettings.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\LyraWorldCollectable.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Accolades\LyraAccoladeDefinition.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Accolades\LyraAccoladeHostWidget.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistTargetComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\IAimAssistTargetInterface.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistTargetManagerComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistInputModifier.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\AssistProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\ElimChainProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Messages\ControlPointStatusMessage.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\ElimStreakProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Private\TDM_PlayerSpawningManagmentComponent.h diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp new file mode 100644 index 00000000..e2ef42e3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.gen.cpp @@ -0,0 +1,1005 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistInputModifier.h" +#include "GameplayAbilities/Public/ScalableFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistInputModifier() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCurveFloat_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputAction_NoRegister(); +ENHANCEDINPUT_API UClass* Z_Construct_UClass_UInputModifier(); +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FScalableFloat(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAimSensitivityData_NoRegister(); +LYRAGAME_API UEnum* Z_Construct_UEnum_LyraGame_ELyraTargetingType(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistInputModifier(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistInputModifier_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistFilter(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistSettings(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAimAssistTarget(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraAimAssistTarget +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAimAssistTarget; +class UScriptStruct* FLyraAimAssistTarget::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAimAssistTarget, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraAimAssistTarget")); + } + return Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraAimAssistTarget::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A container for keeping the state of targets between frames that can be cached */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A container for keeping the state of targets between frames that can be cached" }, +#endif + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "LyraAimAssistTarget", + nullptr, + 0, + sizeof(FLyraAimAssistTarget), + alignof(FLyraAimAssistTarget), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAimAssistTarget() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton, Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAimAssistTarget.InnerSingleton; +} +// End ScriptStruct FLyraAimAssistTarget + +// Begin ScriptStruct FAimAssistFilter +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistFilter; +class UScriptStruct* FAimAssistFilter::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistFilter, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistFilter")); + } + return Z_Registration_Info_UScriptStruct_AimAssistFilter.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistFilter::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistFilter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Options for filtering out certain aim assist targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Options for filtering out certain aim assist targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeSameFriendlyTargets_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** If true, then we should include any targets even if they are on our team */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If true, then we should include any targets even if they are on our team" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeInstigator_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude 'RequestedBy->Instigator' Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude 'RequestedBy->Instigator' Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeAllAttachedToInstigator_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all actors attached to 'RequestedBy->Instigator' Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all actors attached to 'RequestedBy->Instigator' Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeRequester_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude 'RequestedBy Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude 'RequestedBy Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeAllAttachedToRequester_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all actors attached to 'RequestedBy Actor */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all actors attached to 'RequestedBy Actor" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bTraceComplexCollision_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Trace against complex collision. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Trace against complex collision." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExcludeDeadOrDying_MetaData[] = { + { "Category", "TargetSelection" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Exclude all dead or dying targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exclude all dead or dying targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExcludedClasses_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Any target whose owning actor is of this type will be excluded. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Any target whose owning actor is of this type will be excluded." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetRange_MetaData[] = { + { "Category", "AimAssistFilter" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Any target outside of this range will be excluded */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Any target outside of this range will be excluded" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bIncludeSameFriendlyTargets_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeSameFriendlyTargets; + static void NewProp_bExcludeInstigator_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeInstigator; + static void NewProp_bExcludeAllAttachedToInstigator_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeAllAttachedToInstigator; + static void NewProp_bExcludeRequester_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeRequester; + static void NewProp_bExcludeAllAttachedToRequester_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeAllAttachedToRequester; + static void NewProp_bTraceComplexCollision_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bTraceComplexCollision; + static void NewProp_bExcludeDeadOrDying_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bExcludeDeadOrDying; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExcludedClasses_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ExcludedClasses; + static const UECodeGen_Private::FDoublePropertyParams NewProp_TargetRange; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bIncludeSameFriendlyTargets = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets = { "bIncludeSameFriendlyTargets", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeSameFriendlyTargets_MetaData), NewProp_bIncludeSameFriendlyTargets_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeInstigator = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator = { "bExcludeInstigator", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeInstigator_MetaData), NewProp_bExcludeInstigator_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeAllAttachedToInstigator = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator = { "bExcludeAllAttachedToInstigator", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeAllAttachedToInstigator_MetaData), NewProp_bExcludeAllAttachedToInstigator_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeRequester = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester = { "bExcludeRequester", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeRequester_MetaData), NewProp_bExcludeRequester_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeAllAttachedToRequester = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester = { "bExcludeAllAttachedToRequester", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeAllAttachedToRequester_MetaData), NewProp_bExcludeAllAttachedToRequester_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bTraceComplexCollision = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision = { "bTraceComplexCollision", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bTraceComplexCollision_MetaData), NewProp_bTraceComplexCollision_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying_SetBit(void* Obj) +{ + ((FAimAssistFilter*)Obj)->bExcludeDeadOrDying = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying = { "bExcludeDeadOrDying", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistFilter), &Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExcludeDeadOrDying_MetaData), NewProp_bExcludeDeadOrDying_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses_ElementProp = { "ExcludedClasses", nullptr, (EPropertyFlags)0x0104000000000001, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FSetPropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses = { "ExcludedClasses", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistFilter, ExcludedClasses), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExcludedClasses_MetaData), NewProp_ExcludedClasses_MetaData) }; +const UECodeGen_Private::FDoublePropertyParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_TargetRange = { "TargetRange", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistFilter, TargetRange), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetRange_MetaData), NewProp_TargetRange_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bIncludeSameFriendlyTargets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeInstigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToInstigator, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeRequester, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeAllAttachedToRequester, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bTraceComplexCollision, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_bExcludeDeadOrDying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_ExcludedClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewProp_TargetRange, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistFilter_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistFilter", + Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::PropPointers), + sizeof(FAimAssistFilter), + alignof(FAimAssistFilter), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistFilter_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistFilter_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistFilter() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistFilter_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistFilter.InnerSingleton; +} +// End ScriptStruct FAimAssistFilter + +// Begin ScriptStruct FAimAssistSettings +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistSettings; +class UScriptStruct* FAimAssistSettings::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistSettings, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistSettings")); + } + return Z_Registration_Info_UScriptStruct_AimAssistSettings.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistSettings::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Settings for how aim assist should behave when there are active targets */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Settings for how aim assist should behave when there are active targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistInnerReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of aim assist inner reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of aim assist inner reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistInnerReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of aim assist inner reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of aim assist inner reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistOuterReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of aim assist outer reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of aim assist outer reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssistOuterReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of aim assist outer reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of aim assist outer reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingReticleWidth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Width of targeting reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Width of targeting reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingReticleHeight_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Height of targeting reticle in world space.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Height of targeting reticle in world space." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetRange_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Range from player's camera used to gather potential targets.\n// Note: This is scaled using the field of view in order to limit targets by their screen size.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Range from player's camera used to gather potential targets.\nNote: This is scaled using the field of view in order to limit targets by their screen size." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetWeightCurve_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much weight the target has based on the time it has been targeted. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much weight the target has based on the time it has been targeted. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullInnerStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullOuterStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullInnerStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullOuterStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How much target and player movement contributes to the aim assist pull when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullLerpInRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp up the pull strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp up the pull strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullLerpOutRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp down the pull strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp down the pull strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PullMaxRotationRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation rate maximum cap on amount of aim assist pull. Set to '0' to disable.\n// Note: This is scaled based on the field of view so it feels the same regardless of zoom.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation rate maximum cap on amount of aim assist pull. Set to '0' to disable.\nNote: This is scaled based on the field of view so it feels the same regardless of zoom." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowInnerStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowOuterStrengthHip_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowInnerStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the inner reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowOuterStrengthAds_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Amount of aim assist slow applied to desired turn rate when target is under the outer reticle. (0 = None, 1 = Max)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowLerpInRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp up the slow strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp up the slow strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowLerpOutRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Exponential interpolation rate used to ramp down the slow strength. Set to '0' to disable.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Exponential interpolation rate used to ramp down the slow strength. Set to '0' to disable." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SlowMinRotationRate_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Rotation rate minimum cap on amount to aim assist slow. Set to '0' to disable.\n// Note: This is scaled based on the field of view so it feels the same regardless of zoom.\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Rotation rate minimum cap on amount to aim assist slow. Set to '0' to disable.\nNote: This is scaled based on the field of view so it feels the same regardless of zoom." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxNumberOfTargets_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The maximum number of targets that can be considered during a given frame. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of targets that can be considered during a given frame." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReticleDepth_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_AssistWeight_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDot_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDotOffset_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetScore_ViewDistance_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StrengthScale_MetaData[] = { + { "Category", "AimAssistSettings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bEnableAsyncVisibilityTrace_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Enabled/Disable asynchronous visibility traces. */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Enabled/Disable asynchronous visibility traces." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bRequireInput_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not we require input for aim assist to be applied */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not we require input for aim assist to be applied" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyPull_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not pull should be applied to aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not pull should be applied to aim assist" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplyStrafePullScale_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a strafe pull based off of movement input */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a strafe pull based off of movement input" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bApplySlowing_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a slowing effect during aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a slowing effect during aim assist" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseDynamicSlow_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not to apply a dynamic slow effect based off of look input */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not to apply a dynamic slow effect based off of look input" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bUseRadialLookRates_MetaData[] = { + { "Category", "AimAssistSettings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not look rates should blend between yaw and pitch based on stick deflection using radial look rates */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not look rates should blend between yaw and pitch based on stick deflection using radial look rates" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistInnerReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistInnerReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistOuterReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_AssistOuterReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetingReticleWidth; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetingReticleHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetRange; + static const UECodeGen_Private::FObjectPropertyParams NewProp_TargetWeightCurve; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullInnerStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullOuterStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullInnerStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullOuterStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullLerpInRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullLerpOutRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_PullMaxRotationRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowInnerStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowOuterStrengthHip; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowInnerStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowOuterStrengthAds; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowLerpInRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowLerpOutRate; + static const UECodeGen_Private::FStructPropertyParams NewProp_SlowMinRotationRate; + static const UECodeGen_Private::FIntPropertyParams NewProp_MaxNumberOfTargets; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ReticleDepth; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_AssistWeight; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDot; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDotOffset; + static const UECodeGen_Private::FFloatPropertyParams NewProp_TargetScore_ViewDistance; + static const UECodeGen_Private::FFloatPropertyParams NewProp_StrengthScale; + static void NewProp_bEnableAsyncVisibilityTrace_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bEnableAsyncVisibilityTrace; + static void NewProp_bRequireInput_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bRequireInput; + static void NewProp_bApplyPull_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyPull; + static void NewProp_bApplyStrafePullScale_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplyStrafePullScale; + static void NewProp_bApplySlowing_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bApplySlowing; + static void NewProp_bUseDynamicSlow_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseDynamicSlow; + static void NewProp_bUseRadialLookRates_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bUseRadialLookRates; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleWidth = { "AssistInnerReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistInnerReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistInnerReticleWidth_MetaData), NewProp_AssistInnerReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleHeight = { "AssistInnerReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistInnerReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistInnerReticleHeight_MetaData), NewProp_AssistInnerReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleWidth = { "AssistOuterReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistOuterReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistOuterReticleWidth_MetaData), NewProp_AssistOuterReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleHeight = { "AssistOuterReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, AssistOuterReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssistOuterReticleHeight_MetaData), NewProp_AssistOuterReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleWidth = { "TargetingReticleWidth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetingReticleWidth), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingReticleWidth_MetaData), NewProp_TargetingReticleWidth_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleHeight = { "TargetingReticleHeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetingReticleHeight), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingReticleHeight_MetaData), NewProp_TargetingReticleHeight_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetRange = { "TargetRange", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetRange), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetRange_MetaData), NewProp_TargetRange_MetaData) }; // 703790095 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetWeightCurve = { "TargetWeightCurve", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetWeightCurve), Z_Construct_UClass_UCurveFloat_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetWeightCurve_MetaData), NewProp_TargetWeightCurve_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthHip = { "PullInnerStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullInnerStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullInnerStrengthHip_MetaData), NewProp_PullInnerStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthHip = { "PullOuterStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullOuterStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullOuterStrengthHip_MetaData), NewProp_PullOuterStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthAds = { "PullInnerStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullInnerStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullInnerStrengthAds_MetaData), NewProp_PullInnerStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthAds = { "PullOuterStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullOuterStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullOuterStrengthAds_MetaData), NewProp_PullOuterStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpInRate = { "PullLerpInRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullLerpInRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullLerpInRate_MetaData), NewProp_PullLerpInRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpOutRate = { "PullLerpOutRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullLerpOutRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullLerpOutRate_MetaData), NewProp_PullLerpOutRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullMaxRotationRate = { "PullMaxRotationRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, PullMaxRotationRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PullMaxRotationRate_MetaData), NewProp_PullMaxRotationRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthHip = { "SlowInnerStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowInnerStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowInnerStrengthHip_MetaData), NewProp_SlowInnerStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthHip = { "SlowOuterStrengthHip", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowOuterStrengthHip), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowOuterStrengthHip_MetaData), NewProp_SlowOuterStrengthHip_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthAds = { "SlowInnerStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowInnerStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowInnerStrengthAds_MetaData), NewProp_SlowInnerStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthAds = { "SlowOuterStrengthAds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowOuterStrengthAds), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowOuterStrengthAds_MetaData), NewProp_SlowOuterStrengthAds_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpInRate = { "SlowLerpInRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowLerpInRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowLerpInRate_MetaData), NewProp_SlowLerpInRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpOutRate = { "SlowLerpOutRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowLerpOutRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowLerpOutRate_MetaData), NewProp_SlowLerpOutRate_MetaData) }; // 703790095 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowMinRotationRate = { "SlowMinRotationRate", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, SlowMinRotationRate), Z_Construct_UScriptStruct_FScalableFloat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SlowMinRotationRate_MetaData), NewProp_SlowMinRotationRate_MetaData) }; // 703790095 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_MaxNumberOfTargets = { "MaxNumberOfTargets", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, MaxNumberOfTargets), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxNumberOfTargets_MetaData), NewProp_MaxNumberOfTargets_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_ReticleDepth = { "ReticleDepth", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, ReticleDepth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReticleDepth_MetaData), NewProp_ReticleDepth_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_AssistWeight = { "TargetScore_AssistWeight", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_AssistWeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_AssistWeight_MetaData), NewProp_TargetScore_AssistWeight_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDot = { "TargetScore_ViewDot", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDot), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDot_MetaData), NewProp_TargetScore_ViewDot_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDotOffset = { "TargetScore_ViewDotOffset", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDotOffset), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDotOffset_MetaData), NewProp_TargetScore_ViewDotOffset_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDistance = { "TargetScore_ViewDistance", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, TargetScore_ViewDistance), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetScore_ViewDistance_MetaData), NewProp_TargetScore_ViewDistance_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_StrengthScale = { "StrengthScale", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistSettings, StrengthScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StrengthScale_MetaData), NewProp_StrengthScale_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bEnableAsyncVisibilityTrace = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace = { "bEnableAsyncVisibilityTrace", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bEnableAsyncVisibilityTrace_MetaData), NewProp_bEnableAsyncVisibilityTrace_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bRequireInput = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput = { "bRequireInput", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bRequireInput_MetaData), NewProp_bRequireInput_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplyPull = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull = { "bApplyPull", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyPull_MetaData), NewProp_bApplyPull_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplyStrafePullScale = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale = { "bApplyStrafePullScale", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplyStrafePullScale_MetaData), NewProp_bApplyStrafePullScale_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bApplySlowing = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing = { "bApplySlowing", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bApplySlowing_MetaData), NewProp_bApplySlowing_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bUseDynamicSlow = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow = { "bUseDynamicSlow", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseDynamicSlow_MetaData), NewProp_bUseDynamicSlow_MetaData) }; +void Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates_SetBit(void* Obj) +{ + ((FAimAssistSettings*)Obj)->bUseRadialLookRates = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates = { "bUseRadialLookRates", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistSettings), &Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bUseRadialLookRates_MetaData), NewProp_bUseRadialLookRates_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistInnerReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_AssistOuterReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetingReticleHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetWeightCurve, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullInnerStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullOuterStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpInRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullLerpOutRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_PullMaxRotationRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthHip, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowInnerStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowOuterStrengthAds, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpInRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowLerpOutRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_SlowMinRotationRate, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_MaxNumberOfTargets, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_ReticleDepth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_AssistWeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDot, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDotOffset, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_TargetScore_ViewDistance, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_StrengthScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bEnableAsyncVisibilityTrace, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bRequireInput, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyPull, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplyStrafePullScale, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bApplySlowing, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseDynamicSlow, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewProp_bUseRadialLookRates, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistSettings_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistSettings", + Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::PropPointers), + sizeof(FAimAssistSettings), + alignof(FAimAssistSettings), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistSettings_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistSettings_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistSettings() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistSettings_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistSettings.InnerSingleton; +} +// End ScriptStruct FAimAssistSettings + +// Begin Class UAimAssistInputModifier +void UAimAssistInputModifier::StaticRegisterNativesUAimAssistInputModifier() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistInputModifier); +UClass* Z_Construct_UClass_UAimAssistInputModifier_NoRegister() +{ + return UAimAssistInputModifier::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistInputModifier_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An input modifier to help gamepad players have better targeting.\n */" }, +#endif + { "IncludePath", "Input/AimAssistInputModifier.h" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An input modifier to help gamepad players have better targeting." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Filter_MetaData[] = { + { "Category", "Settings" }, + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MoveInputAction_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The input action that represents the actual movement of the player */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The input action that represents the actual movement of the player" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetingType_MetaData[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The type of targeting to use for this Sensitivity */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The type of targeting to use for this Sensitivity" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SensitivityLevelTable_MetaData[] = { + { "AssetBundles", "Client,Server" }, + { "Category", "AimAssistInputModifier" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Asset that gives us access to the float scalar value being used for sensitivty */" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + { "NativeConstTemplateArg", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asset that gives us access to the float scalar value being used for sensitivty" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetCache0_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracking of the current and previous frame's targets\n" }, +#endif + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracking of the current and previous frame's targets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetCache1_MetaData[] = { + { "ModuleRelativePath", "Public/Input/AimAssistInputModifier.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Settings; + static const UECodeGen_Private::FStructPropertyParams NewProp_Filter; + static const UECodeGen_Private::FObjectPropertyParams NewProp_MoveInputAction; + static const UECodeGen_Private::FBytePropertyParams NewProp_TargetingType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_TargetingType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SensitivityLevelTable; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetCache0_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TargetCache0; + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetCache1_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TargetCache1; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Settings = { "Settings", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, Settings), Z_Construct_UScriptStruct_FAimAssistSettings, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_MetaData), NewProp_Settings_MetaData) }; // 297635164 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Filter = { "Filter", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, Filter), Z_Construct_UScriptStruct_FAimAssistFilter, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Filter_MetaData), NewProp_Filter_MetaData) }; // 1660199128 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_MoveInputAction = { "MoveInputAction", nullptr, (EPropertyFlags)0x0114000000000805, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, MoveInputAction), Z_Construct_UClass_UInputAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MoveInputAction_MetaData), NewProp_MoveInputAction_MetaData) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType = { "TargetingType", nullptr, (EPropertyFlags)0x0010000000004805, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetingType), Z_Construct_UEnum_LyraGame_ELyraTargetingType, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetingType_MetaData), NewProp_TargetingType_MetaData) }; // 667227071 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_SensitivityLevelTable = { "SensitivityLevelTable", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, SensitivityLevelTable), Z_Construct_UClass_ULyraAimSensitivityData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SensitivityLevelTable_MetaData), NewProp_SensitivityLevelTable_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0_Inner = { "TargetCache0", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAimAssistTarget, METADATA_PARAMS(0, nullptr) }; // 1488448276 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0 = { "TargetCache0", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetCache0), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetCache0_MetaData), NewProp_TargetCache0_MetaData) }; // 1488448276 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1_Inner = { "TargetCache1", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FLyraAimAssistTarget, METADATA_PARAMS(0, nullptr) }; // 1488448276 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1 = { "TargetCache1", nullptr, (EPropertyFlags)0x0020080000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistInputModifier, TargetCache1), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetCache1_MetaData), NewProp_TargetCache1_MetaData) }; // 1488448276 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_Filter, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_MoveInputAction, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetingType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_SensitivityLevelTable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache0, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistInputModifier_Statics::NewProp_TargetCache1, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAimAssistInputModifier_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInputModifier, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistInputModifier_Statics::ClassParams = { + &UAimAssistInputModifier::StaticClass, + "Input", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::PropPointers), + 0, + 0x400030A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistInputModifier_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistInputModifier_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistInputModifier() +{ + if (!Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton, Z_Construct_UClass_UAimAssistInputModifier_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistInputModifier.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistInputModifier::StaticClass(); +} +UAimAssistInputModifier::UAimAssistInputModifier(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistInputModifier); +UAimAssistInputModifier::~UAimAssistInputModifier() {} +// End Class UAimAssistInputModifier + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAimAssistTarget::StaticStruct, Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics::NewStructOps, TEXT("LyraAimAssistTarget"), &Z_Registration_Info_UScriptStruct_LyraAimAssistTarget, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAimAssistTarget), 1488448276U) }, + { FAimAssistFilter::StaticStruct, Z_Construct_UScriptStruct_FAimAssistFilter_Statics::NewStructOps, TEXT("AimAssistFilter"), &Z_Registration_Info_UScriptStruct_AimAssistFilter, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistFilter), 1660199128U) }, + { FAimAssistSettings::StaticStruct, Z_Construct_UScriptStruct_FAimAssistSettings_Statics::NewStructOps, TEXT("AimAssistSettings"), &Z_Registration_Info_UScriptStruct_AimAssistSettings, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistSettings), 297635164U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistInputModifier, UAimAssistInputModifier::StaticClass, TEXT("UAimAssistInputModifier"), &Z_Registration_Info_UClass_UAimAssistInputModifier, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistInputModifier), 2585686026U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_3604940459(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h new file mode 100644 index 00000000..f5370513 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistInputModifier.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistInputModifier.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistInputModifier_generated_h +#error "AimAssistInputModifier.generated.h already included, missing '#pragma once' in AimAssistInputModifier.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistInputModifier_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_77_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAimAssistTarget_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_116_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistFilter_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_172_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistSettings_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistInputModifier(); \ + friend struct Z_Construct_UClass_UAimAssistInputModifier_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistInputModifier, UInputModifier, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistInputModifier) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistInputModifier(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistInputModifier(UAimAssistInputModifier&&); \ + UAimAssistInputModifier(const UAimAssistInputModifier&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistInputModifier); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistInputModifier); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistInputModifier) \ + NO_API virtual ~UAimAssistInputModifier(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_325_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h_328_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistInputModifier_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp new file mode 100644 index 00000000..fd52d971 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.gen.cpp @@ -0,0 +1,118 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistTargetComponent.h" +#include "ShooterCoreRuntime/Public/Input/IAimAssistTargetInterface.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistTargetComponent() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetComponent_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UAimAssistTargetComponent +void UAimAssistTargetComponent::StaticRegisterNativesUAimAssistTargetComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTargetComponent); +UClass* Z_Construct_UClass_UAimAssistTargetComponent_NoRegister() +{ + return UAimAssistTargetComponent::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTargetComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintSpawnableComponent", "" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This component can be added to any actor to have it register with the Aim Assist Target Manager.\n */" }, +#endif + { "HideCategories", "Object LOD Lighting TextureStreaming Object LOD Lighting TextureStreaming Activation Components|Activation Trigger VirtualTexture" }, + { "IncludePath", "Input/AimAssistTargetComponent.h" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This component can be added to any actor to have it register with the Aim Assist Target Manager." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TargetData_MetaData[] = { + { "Category", "AimAssistTargetComponent" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetComponent.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_TargetData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::NewProp_TargetData = { "TargetData", nullptr, (EPropertyFlags)0x0020080000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAimAssistTargetComponent, TargetData), Z_Construct_UScriptStruct_FAimAssistTargetOptions, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TargetData_MetaData), NewProp_TargetData_MetaData) }; // 2747943985 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAimAssistTargetComponent_Statics::NewProp_TargetData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAimAssistTargetComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCapsuleComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UAimAssistTaget_NoRegister, (int32)VTABLE_OFFSET(UAimAssistTargetComponent, IAimAssistTaget), false }, // 2514343677 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTargetComponent_Statics::ClassParams = { + &UAimAssistTargetComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTargetComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTargetComponent() +{ + if (!Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton, Z_Construct_UClass_UAimAssistTargetComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTargetComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTargetComponent::StaticClass(); +} +UAimAssistTargetComponent::UAimAssistTargetComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTargetComponent); +UAimAssistTargetComponent::~UAimAssistTargetComponent() {} +// End Class UAimAssistTargetComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTargetComponent, UAimAssistTargetComponent::StaticClass, TEXT("UAimAssistTargetComponent"), &Z_Registration_Info_UClass_UAimAssistTargetComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTargetComponent), 4181701424U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_2291076259(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h new file mode 100644 index 00000000..1bc90974 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetComponent.generated.h @@ -0,0 +1,57 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistTargetComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistTargetComponent_generated_h +#error "AimAssistTargetComponent.generated.h already included, missing '#pragma once' in AimAssistTargetComponent.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistTargetComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistTargetComponent(); \ + friend struct Z_Construct_UClass_UAimAssistTargetComponent_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTargetComponent, UCapsuleComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistTargetComponent) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistTargetComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTargetComponent(UAimAssistTargetComponent&&); \ + UAimAssistTargetComponent(const UAimAssistTargetComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistTargetComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTargetComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTargetComponent) \ + NO_API virtual ~UAimAssistTargetComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp new file mode 100644 index 00000000..8754acd3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/AimAssistTargetManagerComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAimAssistTargetManagerComponent() {} + +// Begin Cross Module References +MODULARGAMEPLAY_API UClass* Z_Construct_UClass_UGameStateComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UAimAssistTargetManagerComponent +void UAimAssistTargetManagerComponent::StaticRegisterNativesUAimAssistTargetManagerComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTargetManagerComponent); +UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent_NoRegister() +{ + return UAimAssistTargetManagerComponent::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The Aim Assist Target Manager Component is used to gather all aim assist targets that are within\n * a given player's view. Targets must implement the IAimAssistTargetInterface and be on the\n * collision channel that is set in the ShooterCoreRuntimeSettings. \n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "Input/AimAssistTargetManagerComponent.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Input/AimAssistTargetManagerComponent.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The Aim Assist Target Manager Component is used to gather all aim assist targets that are within\na given player's view. Targets must implement the IAimAssistTargetInterface and be on the\ncollision channel that is set in the ShooterCoreRuntimeSettings." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameStateComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::ClassParams = { + &UAimAssistTargetManagerComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTargetManagerComponent() +{ + if (!Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton, Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTargetManagerComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTargetManagerComponent::StaticClass(); +} +UAimAssistTargetManagerComponent::UAimAssistTargetManagerComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTargetManagerComponent); +UAimAssistTargetManagerComponent::~UAimAssistTargetManagerComponent() {} +// End Class UAimAssistTargetManagerComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTargetManagerComponent, UAimAssistTargetManagerComponent::StaticClass, TEXT("UAimAssistTargetManagerComponent"), &Z_Registration_Info_UClass_UAimAssistTargetManagerComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTargetManagerComponent), 425403018U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_3426789940(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h new file mode 100644 index 00000000..de15b898 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AimAssistTargetManagerComponent.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/AimAssistTargetManagerComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AimAssistTargetManagerComponent_generated_h +#error "AimAssistTargetManagerComponent.generated.h already included, missing '#pragma once' in AimAssistTargetManagerComponent.h" +#endif +#define SHOOTERCORERUNTIME_AimAssistTargetManagerComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAimAssistTargetManagerComponent(); \ + friend struct Z_Construct_UClass_UAimAssistTargetManagerComponent_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTargetManagerComponent, UGameStateComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAimAssistTargetManagerComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAimAssistTargetManagerComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTargetManagerComponent(UAimAssistTargetManagerComponent&&); \ + UAimAssistTargetManagerComponent(const UAimAssistTargetManagerComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAimAssistTargetManagerComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTargetManagerComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTargetManagerComponent) \ + NO_API virtual ~UAimAssistTargetManagerComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_25_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h_28_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_AimAssistTargetManagerComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp new file mode 100644 index 00000000..454d950b --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.gen.cpp @@ -0,0 +1,202 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/AssistProcessor.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAssistProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAssistProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAssistProcessor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPlayerAssistDamageTracking(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPlayerAssistDamageTracking +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking; +class UScriptStruct* FPlayerAssistDamageTracking::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PlayerAssistDamageTracking")); + } + return Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPlayerAssistDamageTracking::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks the damage done to a player by other players\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks the damage done to a player by other players" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccumulatedDamageByPlayer_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of damager to damage dealt\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of damager to damage dealt" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_AccumulatedDamageByPlayer_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AccumulatedDamageByPlayer_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_AccumulatedDamageByPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_ValueProp = { "AccumulatedDamageByPlayer", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_Key_KeyProp = { "AccumulatedDamageByPlayer_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer = { "AccumulatedDamageByPlayer", nullptr, (EPropertyFlags)0x0010000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPlayerAssistDamageTracking, AccumulatedDamageByPlayer), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccumulatedDamageByPlayer_MetaData), NewProp_AccumulatedDamageByPlayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewProp_AccumulatedDamageByPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PlayerAssistDamageTracking", + Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::PropPointers), + sizeof(FPlayerAssistDamageTracking), + alignof(FPlayerAssistDamageTracking), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPlayerAssistDamageTracking() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking.InnerSingleton; +} +// End ScriptStruct FPlayerAssistDamageTracking + +// Begin Class UAssistProcessor +void UAssistProcessor::StaticRegisterNativesUAssistProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAssistProcessor); +UClass* Z_Construct_UClass_UAssistProcessor_NoRegister() +{ + return UAssistProcessor::StaticClass(); +} +struct Z_Construct_UClass_UAssistProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks assists (dealing damage to another player without finishing them)\n" }, +#endif + { "IncludePath", "MessageProcessors/AssistProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks assists (dealing damage to another player without finishing them)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DamageHistory_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Map of player to damage dealt to them\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/AssistProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Map of player to damage dealt to them" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_DamageHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DamageHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_DamageHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_ValueProp = { "DamageHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking, METADATA_PARAMS(0, nullptr) }; // 2928360808 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_Key_KeyProp = { "DamageHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory = { "DamageHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAssistProcessor, DamageHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DamageHistory_MetaData), NewProp_DamageHistory_MetaData) }; // 2928360808 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAssistProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAssistProcessor_Statics::NewProp_DamageHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAssistProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAssistProcessor_Statics::ClassParams = { + &UAssistProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UAssistProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::PropPointers), + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAssistProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UAssistProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAssistProcessor() +{ + if (!Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton, Z_Construct_UClass_UAssistProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAssistProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAssistProcessor::StaticClass(); +} +UAssistProcessor::UAssistProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAssistProcessor); +UAssistProcessor::~UAssistProcessor() {} +// End Class UAssistProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPlayerAssistDamageTracking::StaticStruct, Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics::NewStructOps, TEXT("PlayerAssistDamageTracking"), &Z_Registration_Info_UScriptStruct_PlayerAssistDamageTracking, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPlayerAssistDamageTracking), 2928360808U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAssistProcessor, UAssistProcessor::StaticClass, TEXT("UAssistProcessor"), &Z_Registration_Info_UClass_UAssistProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAssistProcessor), 4140987035U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_2359454962(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h new file mode 100644 index 00000000..fd5017d8 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/AssistProcessor.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/AssistProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_AssistProcessor_generated_h +#error "AssistProcessor.generated.h already included, missing '#pragma once' in AssistProcessor.h" +#endif +#define SHOOTERCORERUNTIME_AssistProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_19_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPlayerAssistDamageTracking_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAssistProcessor(); \ + friend struct Z_Construct_UClass_UAssistProcessor_Statics; \ +public: \ + DECLARE_CLASS(UAssistProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAssistProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAssistProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAssistProcessor(UAssistProcessor&&); \ + UAssistProcessor(const UAssistProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAssistProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAssistProcessor); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAssistProcessor) \ + NO_API virtual ~UAssistProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_27_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_AssistProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp new file mode 100644 index 00000000..cb4d42ad --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp @@ -0,0 +1,105 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Messages/ControlPointStatusMessage.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeControlPointStatusMessage() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraControlPointStatusMessage(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraControlPointStatusMessage +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage; +class UScriptStruct* FLyraControlPointStatusMessage::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraControlPointStatusMessage")); + } + return Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraControlPointStatusMessage::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Message indicating the state of a control point is changing\n" }, +#endif + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Message indicating the state of a control point is changing" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ControlPoint_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwnerTeamID_MetaData[] = { + { "Category", "Gameplay" }, + { "ModuleRelativePath", "Public/Messages/ControlPointStatusMessage.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ControlPoint; + static const UECodeGen_Private::FIntPropertyParams NewProp_OwnerTeamID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_ControlPoint = { "ControlPoint", nullptr, (EPropertyFlags)0x0114000000000004, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControlPointStatusMessage, ControlPoint), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ControlPoint_MetaData), NewProp_ControlPoint_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_OwnerTeamID = { "OwnerTeamID", nullptr, (EPropertyFlags)0x0010000000000004, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraControlPointStatusMessage, OwnerTeamID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwnerTeamID_MetaData), NewProp_OwnerTeamID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_ControlPoint, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewProp_OwnerTeamID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "LyraControlPointStatusMessage", + Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::PropPointers), + sizeof(FLyraControlPointStatusMessage), + alignof(FLyraControlPointStatusMessage), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraControlPointStatusMessage() +{ + if (!Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton, Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage.InnerSingleton; +} +// End ScriptStruct FLyraControlPointStatusMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraControlPointStatusMessage::StaticStruct, Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics::NewStructOps, TEXT("LyraControlPointStatusMessage"), &Z_Registration_Info_UScriptStruct_LyraControlPointStatusMessage, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraControlPointStatusMessage), 729978288U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_3060954755(TEXT("/Script/ShooterCoreRuntime"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h new file mode 100644 index 00000000..25c8f191 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Messages/ControlPointStatusMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ControlPointStatusMessage_generated_h +#error "ControlPointStatusMessage.generated.h already included, missing '#pragma once' in ControlPointStatusMessage.h" +#endif +#define SHOOTERCORERUNTIME_ControlPointStatusMessage_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraControlPointStatusMessage_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Messages_ControlPointStatusMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp new file mode 100644 index 00000000..d4b539be --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/ElimChainProcessor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeElimChainProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimChainProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimChainProcessor_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPlayerElimChainInfo(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPlayerElimChainInfo +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PlayerElimChainInfo; +class UScriptStruct* FPlayerElimChainInfo::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPlayerElimChainInfo, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PlayerElimChainInfo")); + } + return Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPlayerElimChainInfo::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PlayerElimChainInfo", + nullptr, + 0, + sizeof(FPlayerElimChainInfo), + alignof(FPlayerElimChainInfo), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPlayerElimChainInfo() +{ + if (!Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton, Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PlayerElimChainInfo.InnerSingleton; +} +// End ScriptStruct FPlayerElimChainInfo + +// Begin Class UElimChainProcessor +void UElimChainProcessor::StaticRegisterNativesUElimChainProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UElimChainProcessor); +UClass* Z_Construct_UClass_UElimChainProcessor_NoRegister() +{ + return UElimChainProcessor::StaticClass(); +} +struct Z_Construct_UClass_UElimChainProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks a chain of eliminations (X eliminations without more than Y seconds passing between each one)\n" }, +#endif + { "IncludePath", "MessageProcessors/ElimChainProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks a chain of eliminations (X eliminations without more than Y seconds passing between each one)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ChainTimeLimit_MetaData[] = { + { "Category", "ElimChainProcessor" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ElimChainTags_MetaData[] = { + { "Category", "ElimChainProcessor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The event to rebroadcast when a user gets a chain of a certain length\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The event to rebroadcast when a user gets a chain of a certain length" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerChainHistory_MetaData[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimChainProcessor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ChainTimeLimit; + static const UECodeGen_Private::FStructPropertyParams NewProp_ElimChainTags_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_ElimChainTags_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ElimChainTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_PlayerChainHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerChainHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PlayerChainHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ChainTimeLimit = { "ChainTimeLimit", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, ChainTimeLimit), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ChainTimeLimit_MetaData), NewProp_ChainTimeLimit_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_ValueProp = { "ElimChainTags", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_Key_KeyProp = { "ElimChainTags_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags = { "ElimChainTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, ElimChainTags), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ElimChainTags_MetaData), NewProp_ElimChainTags_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_ValueProp = { "PlayerChainHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FPlayerElimChainInfo, METADATA_PARAMS(0, nullptr) }; // 2918274542 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_Key_KeyProp = { "PlayerChainHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory = { "PlayerChainHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimChainProcessor, PlayerChainHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerChainHistory_MetaData), NewProp_PlayerChainHistory_MetaData) }; // 2918274542 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ChainTimeLimit, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_ElimChainTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimChainProcessor_Statics::NewProp_PlayerChainHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UElimChainProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UElimChainProcessor_Statics::ClassParams = { + &UElimChainProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UElimChainProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UElimChainProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UElimChainProcessor() +{ + if (!Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton, Z_Construct_UClass_UElimChainProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UElimChainProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UElimChainProcessor::StaticClass(); +} +UElimChainProcessor::UElimChainProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UElimChainProcessor); +UElimChainProcessor::~UElimChainProcessor() {} +// End Class UElimChainProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPlayerElimChainInfo::StaticStruct, Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics::NewStructOps, TEXT("PlayerElimChainInfo"), &Z_Registration_Info_UScriptStruct_PlayerElimChainInfo, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPlayerElimChainInfo), 2918274542U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UElimChainProcessor, UElimChainProcessor::StaticClass, TEXT("UElimChainProcessor"), &Z_Registration_Info_UClass_UElimChainProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UElimChainProcessor), 3345411405U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_4045487697(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h new file mode 100644 index 00000000..88a68166 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimChainProcessor.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/ElimChainProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ElimChainProcessor_generated_h +#error "ElimChainProcessor.generated.h already included, missing '#pragma once' in ElimChainProcessor.h" +#endif +#define SHOOTERCORERUNTIME_ElimChainProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPlayerElimChainInfo_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUElimChainProcessor(); \ + friend struct Z_Construct_UClass_UElimChainProcessor_Statics; \ +public: \ + DECLARE_CLASS(UElimChainProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UElimChainProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UElimChainProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UElimChainProcessor(UElimChainProcessor&&); \ + UElimChainProcessor(const UElimChainProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UElimChainProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UElimChainProcessor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UElimChainProcessor) \ + NO_API virtual ~UElimChainProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_26_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h_29_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimChainProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp new file mode 100644 index 00000000..0800720a --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.gen.cpp @@ -0,0 +1,135 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/MessageProcessors/ElimStreakProcessor.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeElimStreakProcessor() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +LYRAGAME_API UClass* Z_Construct_UClass_UGameplayMessageProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimStreakProcessor(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UElimStreakProcessor_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UElimStreakProcessor +void UElimStreakProcessor::StaticRegisterNativesUElimStreakProcessor() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UElimStreakProcessor); +UClass* Z_Construct_UClass_UElimStreakProcessor_NoRegister() +{ + return UElimStreakProcessor::StaticClass(); +} +struct Z_Construct_UClass_UElimStreakProcessor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// Tracks a streak of eliminations (X eliminations without being eliminated)\n" }, +#endif + { "IncludePath", "MessageProcessors/ElimStreakProcessor.h" }, + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tracks a streak of eliminations (X eliminations without being eliminated)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ElimStreakTags_MetaData[] = { + { "Category", "ElimStreakProcessor" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The event to rebroadcast when a user gets a streak of a certain length\n" }, +#endif + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The event to rebroadcast when a user gets a streak of a certain length" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlayerStreakHistory_MetaData[] = { + { "ModuleRelativePath", "Public/MessageProcessors/ElimStreakProcessor.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ElimStreakTags_ValueProp; + static const UECodeGen_Private::FIntPropertyParams NewProp_ElimStreakTags_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ElimStreakTags; + static const UECodeGen_Private::FIntPropertyParams NewProp_PlayerStreakHistory_ValueProp; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlayerStreakHistory_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_PlayerStreakHistory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_ValueProp = { "ElimStreakTags", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_Key_KeyProp = { "ElimStreakTags_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags = { "ElimStreakTags", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimStreakProcessor, ElimStreakTags), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ElimStreakTags_MetaData), NewProp_ElimStreakTags_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_ValueProp = { "PlayerStreakHistory", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_Key_KeyProp = { "PlayerStreakHistory_Key", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_APlayerState_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory = { "PlayerStreakHistory", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UElimStreakProcessor, PlayerStreakHistory), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlayerStreakHistory_MetaData), NewProp_PlayerStreakHistory_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_ElimStreakTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UElimStreakProcessor_Statics::NewProp_PlayerStreakHistory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UElimStreakProcessor_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayMessageProcessor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UElimStreakProcessor_Statics::ClassParams = { + &UElimStreakProcessor::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::PropPointers), + 0, + 0x00A000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UElimStreakProcessor_Statics::Class_MetaDataParams), Z_Construct_UClass_UElimStreakProcessor_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UElimStreakProcessor() +{ + if (!Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton, Z_Construct_UClass_UElimStreakProcessor_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UElimStreakProcessor.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UElimStreakProcessor::StaticClass(); +} +UElimStreakProcessor::UElimStreakProcessor(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UElimStreakProcessor); +UElimStreakProcessor::~UElimStreakProcessor() {} +// End Class UElimStreakProcessor + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UElimStreakProcessor, UElimStreakProcessor::StaticClass, TEXT("UElimStreakProcessor"), &Z_Registration_Info_UClass_UElimStreakProcessor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UElimStreakProcessor), 352084794U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_3624122353(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h new file mode 100644 index 00000000..bfcd1c19 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ElimStreakProcessor.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "MessageProcessors/ElimStreakProcessor.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ElimStreakProcessor_generated_h +#error "ElimStreakProcessor.generated.h already included, missing '#pragma once' in ElimStreakProcessor.h" +#endif +#define SHOOTERCORERUNTIME_ElimStreakProcessor_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUElimStreakProcessor(); \ + friend struct Z_Construct_UClass_UElimStreakProcessor_Statics; \ +public: \ + DECLARE_CLASS(UElimStreakProcessor, UGameplayMessageProcessor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UElimStreakProcessor) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UElimStreakProcessor(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UElimStreakProcessor(UElimStreakProcessor&&); \ + UElimStreakProcessor(const UElimStreakProcessor&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UElimStreakProcessor); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UElimStreakProcessor); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UElimStreakProcessor) \ + NO_API virtual ~UElimStreakProcessor(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_MessageProcessors_ElimStreakProcessor_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp new file mode 100644 index 00000000..da10922b --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp @@ -0,0 +1,183 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Input/IAimAssistTargetInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIAimAssistTargetInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FAimAssistTargetOptions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_AimAssistTargetOptions; +class UScriptStruct* FAimAssistTargetOptions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FAimAssistTargetOptions, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("AimAssistTargetOptions")); + } + return Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FAimAssistTargetOptions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AssociatedTags_MetaData[] = { + { "Category", "AimAssistTargetOptions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gameplay tags that are associated with this target that can be used to filter it out.\n\x09 *\n\x09 * If the player's aim assist settings have any tags that match these, it will be excluded.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gameplay tags that are associated with this target that can be used to filter it out.\n\nIf the player's aim assist settings have any tags that match these, it will be excluded." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIsActive_MetaData[] = { + { "Category", "AimAssistTargetOptions" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Whether or not this target is currently active. If false, it will not be considered for aim assist */" }, +#endif + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether or not this target is currently active. If false, it will not be considered for aim assist" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_AssociatedTags; + static void NewProp_bIsActive_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIsActive; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_AssociatedTags = { "AssociatedTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FAimAssistTargetOptions, AssociatedTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AssociatedTags_MetaData), NewProp_AssociatedTags_MetaData) }; // 3352185621 +void Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive_SetBit(void* Obj) +{ + ((FAimAssistTargetOptions*)Obj)->bIsActive = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive = { "bIsActive", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FAimAssistTargetOptions), &Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIsActive_MetaData), NewProp_bIsActive_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_AssociatedTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewProp_bIsActive, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "AimAssistTargetOptions", + Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::PropPointers), + sizeof(FAimAssistTargetOptions), + alignof(FAimAssistTargetOptions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FAimAssistTargetOptions() +{ + if (!Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton, Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_AimAssistTargetOptions.InnerSingleton; +} +// End ScriptStruct FAimAssistTargetOptions + +// Begin Interface UAimAssistTaget +void UAimAssistTaget::StaticRegisterNativesUAimAssistTaget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAimAssistTaget); +UClass* Z_Construct_UClass_UAimAssistTaget_NoRegister() +{ + return UAimAssistTaget::StaticClass(); +} +struct Z_Construct_UClass_UAimAssistTaget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "CannotImplementInterfaceInBlueprint", "" }, + { "ModuleRelativePath", "Public/Input/IAimAssistTargetInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UAimAssistTaget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTaget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAimAssistTaget_Statics::ClassParams = { + &UAimAssistTaget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAimAssistTaget_Statics::Class_MetaDataParams), Z_Construct_UClass_UAimAssistTaget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAimAssistTaget() +{ + if (!Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton, Z_Construct_UClass_UAimAssistTaget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAimAssistTaget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UAimAssistTaget::StaticClass(); +} +UAimAssistTaget::UAimAssistTaget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAimAssistTaget); +UAimAssistTaget::~UAimAssistTaget() {} +// End Interface UAimAssistTaget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FAimAssistTargetOptions::StaticStruct, Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics::NewStructOps, TEXT("AimAssistTargetOptions"), &Z_Registration_Info_UScriptStruct_AimAssistTargetOptions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FAimAssistTargetOptions), 2747943985U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAimAssistTaget, UAimAssistTaget::StaticClass, TEXT("UAimAssistTaget"), &Z_Registration_Info_UClass_UAimAssistTaget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAimAssistTaget), 2514343677U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_2614035932(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h new file mode 100644 index 00000000..a4e410e6 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.generated.h @@ -0,0 +1,79 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Input/IAimAssistTargetInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_IAimAssistTargetInterface_generated_h +#error "IAimAssistTargetInterface.generated.h already included, missing '#pragma once' in IAimAssistTargetInterface.h" +#endif +#define SHOOTERCORERUNTIME_IAimAssistTargetInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_13_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FAimAssistTargetOptions_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + SHOOTERCORERUNTIME_API UAimAssistTaget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAimAssistTaget(UAimAssistTaget&&); \ + UAimAssistTaget(const UAimAssistTaget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(SHOOTERCORERUNTIME_API, UAimAssistTaget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAimAssistTaget); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAimAssistTaget) \ + SHOOTERCORERUNTIME_API virtual ~UAimAssistTaget(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUAimAssistTaget(); \ + friend struct Z_Construct_UClass_UAimAssistTaget_Statics; \ +public: \ + DECLARE_CLASS(UAimAssistTaget, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), SHOOTERCORERUNTIME_API) \ + DECLARE_SERIALIZER(UAimAssistTaget) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_BODY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_ENHANCED_CONSTRUCTORS \ +private: \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IAimAssistTaget() {} \ +public: \ + typedef UAimAssistTaget UClassType; \ + typedef IAimAssistTaget ThisClass; \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_36_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_52_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h_39_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Input_IAimAssistTargetInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp new file mode 100644 index 00000000..cf1098d9 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.gen.cpp @@ -0,0 +1,314 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeDefinition.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAccoladeDefinition() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FTableRowBase(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeDefinition(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeDefinition_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FLyraAccoladeDefinitionRow +static_assert(std::is_polymorphic() == std::is_polymorphic(), "USTRUCT FLyraAccoladeDefinitionRow cannot be polymorphic unless super FTableRowBase is polymorphic"); +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow; +class UScriptStruct* FLyraAccoladeDefinitionRow::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("LyraAccoladeDefinitionRow")); + } + return Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FLyraAccoladeDefinitionRow::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayName_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The message to display\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The message to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The sound to play\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The sound to play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "AllowedClasses", "Texture,MaterialInterface,SlateTextureAtlasInterface" }, + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon to display\x09\n" }, +#endif + { "DisallowedClasses", "MediaTexture" }, + { "DisplayThumbnail", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayDuration_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Duration (in seconds) to display this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Duration (in seconds) to display this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationTag_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Location to display this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Location to display this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccoladeTags_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags associated with this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags associated with this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAccoladesWithTag_MetaData[] = { + { "Category", "LyraAccoladeDefinitionRow" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When this accolade is displayed, any existing displayed/pending accolades with any of\n// these tags will be removed (e.g., getting a triple-elim will suppress a double-elim)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When this accolade is displayed, any existing displayed/pending accolades with any of\nthese tags will be removed (e.g., getting a triple-elim will suppress a double-elim)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_DisplayName; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayDuration; + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationTag; + static const UECodeGen_Private::FStructPropertyParams NewProp_AccoladeTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAccoladesWithTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayName = { "DisplayName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, DisplayName), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayName_MetaData), NewProp_DisplayName_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0014000000000015, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayDuration = { "DisplayDuration", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, DisplayDuration), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayDuration_MetaData), NewProp_DisplayDuration_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_LocationTag = { "LocationTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, LocationTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationTag_MetaData), NewProp_LocationTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_AccoladeTags = { "AccoladeTags", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, AccoladeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccoladeTags_MetaData), NewProp_AccoladeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_CancelAccoladesWithTag = { "CancelAccoladesWithTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FLyraAccoladeDefinitionRow, CancelAccoladesWithTag), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAccoladesWithTag_MetaData), NewProp_CancelAccoladesWithTag_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_DisplayDuration, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_LocationTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_AccoladeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewProp_CancelAccoladesWithTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + Z_Construct_UScriptStruct_FTableRowBase, + &NewStructOps, + "LyraAccoladeDefinitionRow", + Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::PropPointers), + sizeof(FLyraAccoladeDefinitionRow), + alignof(FLyraAccoladeDefinitionRow), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow() +{ + if (!Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton, Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow.InnerSingleton; +} +// End ScriptStruct FLyraAccoladeDefinitionRow + +// Begin Class ULyraAccoladeDefinition +void ULyraAccoladeDefinition::StaticRegisterNativesULyraAccoladeDefinition() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAccoladeDefinition); +UClass* Z_Construct_UClass_ULyraAccoladeDefinition_NoRegister() +{ + return ULyraAccoladeDefinition::StaticClass(); +} +struct Z_Construct_UClass_ULyraAccoladeDefinition_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Accolades/LyraAccoladeDefinition.h" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The sound to play\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The sound to play" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "AllowedClasses", "Texture,MaterialInterface,SlateTextureAtlasInterface" }, + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon to display\x09\n" }, +#endif + { "DisallowedClasses", "MediaTexture" }, + { "DisplayThumbnail", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon to display" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AccoladeTags_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Tags associated with this accolade\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Tags associated with this accolade" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelAccoladesWithTag_MetaData[] = { + { "Category", "LyraAccoladeDefinition" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// When this accolade is displayed, any existing displayed/pending accolades with any of\n// these tags will be removed (e.g., getting a triple-elim will suppress a double-elim)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeDefinition.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "When this accolade is displayed, any existing displayed/pending accolades with any of\nthese tags will be removed (e.g., getting a triple-elim will suppress a double-elim)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FStructPropertyParams NewProp_AccoladeTags; + static const UECodeGen_Private::FStructPropertyParams NewProp_CancelAccoladesWithTag; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_AccoladeTags = { "AccoladeTags", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, AccoladeTags), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AccoladeTags_MetaData), NewProp_AccoladeTags_MetaData) }; // 3352185621 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_CancelAccoladesWithTag = { "CancelAccoladesWithTag", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeDefinition, CancelAccoladesWithTag), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelAccoladesWithTag_MetaData), NewProp_CancelAccoladesWithTag_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_AccoladeTags, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeDefinition_Statics::NewProp_CancelAccoladesWithTag, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAccoladeDefinition_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAccoladeDefinition_Statics::ClassParams = { + &ULyraAccoladeDefinition::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::PropPointers), + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeDefinition_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAccoladeDefinition_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAccoladeDefinition() +{ + if (!Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton, Z_Construct_UClass_ULyraAccoladeDefinition_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAccoladeDefinition.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ULyraAccoladeDefinition::StaticClass(); +} +ULyraAccoladeDefinition::ULyraAccoladeDefinition(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAccoladeDefinition); +ULyraAccoladeDefinition::~ULyraAccoladeDefinition() {} +// End Class ULyraAccoladeDefinition + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FLyraAccoladeDefinitionRow::StaticStruct, Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics::NewStructOps, TEXT("LyraAccoladeDefinitionRow"), &Z_Registration_Info_UScriptStruct_LyraAccoladeDefinitionRow, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FLyraAccoladeDefinitionRow), 1787614283U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAccoladeDefinition, ULyraAccoladeDefinition::StaticClass, TEXT("ULyraAccoladeDefinition"), &Z_Registration_Info_UClass_ULyraAccoladeDefinition, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAccoladeDefinition), 1453977109U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_1012295428(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h new file mode 100644 index 00000000..d2d97504 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeDefinition.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Accolades/LyraAccoladeDefinition.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_LyraAccoladeDefinition_generated_h +#error "LyraAccoladeDefinition.generated.h already included, missing '#pragma once' in LyraAccoladeDefinition.h" +#endif +#define SHOOTERCORERUNTIME_LyraAccoladeDefinition_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); \ + typedef FTableRowBase Super; + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAccoladeDefinition(); \ + friend struct Z_Construct_UClass_ULyraAccoladeDefinition_Statics; \ +public: \ + DECLARE_CLASS(ULyraAccoladeDefinition, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraAccoladeDefinition) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAccoladeDefinition(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAccoladeDefinition(ULyraAccoladeDefinition&&); \ + ULyraAccoladeDefinition(const ULyraAccoladeDefinition&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAccoladeDefinition); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAccoladeDefinition); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAccoladeDefinition) \ + NO_API virtual ~ULyraAccoladeDefinition(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_53_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h_56_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeDefinition_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp new file mode 100644 index 00000000..ff32d56e --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.gen.cpp @@ -0,0 +1,348 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeHostWidget.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +#include "ShooterCoreRuntime/Public/Accolades/LyraAccoladeDefinition.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraAccoladeHostWidget() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeHostWidget(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ULyraAccoladeHostWidget_NoRegister(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow(); +SHOOTERCORERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FPendingAccoladeEntry(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin ScriptStruct FPendingAccoladeEntry +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_PendingAccoladeEntry; +class UScriptStruct* FPendingAccoladeEntry::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FPendingAccoladeEntry, (UObject*)Z_Construct_UPackage__Script_ShooterCoreRuntime(), TEXT("PendingAccoladeEntry")); + } + return Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct() +{ + return FPendingAccoladeEntry::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Row_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Sound_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Icon_MetaData[] = { + { "Category", "PendingAccoladeEntry" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllocatedWidget_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Row; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Sound; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Icon; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AllocatedWidget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Row = { "Row", nullptr, (EPropertyFlags)0x0010000000000014, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Row), Z_Construct_UScriptStruct_FLyraAccoladeDefinitionRow, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Row_MetaData), NewProp_Row_MetaData) }; // 1787614283 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Sound = { "Sound", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Sound), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Sound_MetaData), NewProp_Sound_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Icon = { "Icon", nullptr, (EPropertyFlags)0x0114000000000014, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, Icon), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Icon_MetaData), NewProp_Icon_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_AllocatedWidget = { "AllocatedWidget", nullptr, (EPropertyFlags)0x0114000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FPendingAccoladeEntry, AllocatedWidget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllocatedWidget_MetaData), NewProp_AllocatedWidget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Row, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Sound, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_Icon, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewProp_AllocatedWidget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, + nullptr, + &NewStructOps, + "PendingAccoladeEntry", + Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::PropPointers), + sizeof(FPendingAccoladeEntry), + alignof(FPendingAccoladeEntry), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000005), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FPendingAccoladeEntry() +{ + if (!Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton, Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_PendingAccoladeEntry.InnerSingleton; +} +// End ScriptStruct FPendingAccoladeEntry + +// Begin Class ULyraAccoladeHostWidget Function CreateAccoladeWidget +struct LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms +{ + FPendingAccoladeEntry Entry; + UUserWidget* ReturnValue; + + /** Constructor, initializes return property only **/ + LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_ULyraAccoladeHostWidget_CreateAccoladeWidget = FName(TEXT("CreateAccoladeWidget")); +UUserWidget* ULyraAccoladeHostWidget::CreateAccoladeWidget(FPendingAccoladeEntry const& Entry) +{ + LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms Parms; + Parms.Entry=Entry; + UFunction* Func = FindFunctionChecked(NAME_ULyraAccoladeHostWidget_CreateAccoladeWidget); + ProcessEvent(Func,&Parms); + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Entry_MetaData[] = { + { "NativeConst", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Entry; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_Entry = { "Entry", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms, Entry), Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Entry_MetaData), NewProp_Entry_MetaData) }; // 2807307257 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms, ReturnValue), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_Entry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAccoladeHostWidget, nullptr, "CreateAccoladeWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::PropPointers), sizeof(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08420800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAccoladeHostWidget_eventCreateAccoladeWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraAccoladeHostWidget Function CreateAccoladeWidget + +// Begin Class ULyraAccoladeHostWidget Function DestroyAccoladeWidget +struct LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms +{ + UUserWidget* Widget; +}; +static const FName NAME_ULyraAccoladeHostWidget_DestroyAccoladeWidget = FName(TEXT("DestroyAccoladeWidget")); +void ULyraAccoladeHostWidget::DestroyAccoladeWidget(UUserWidget* Widget) +{ + LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms Parms; + Parms.Widget=Widget; + UFunction* Func = FindFunctionChecked(NAME_ULyraAccoladeHostWidget_DestroyAccoladeWidget); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//~End of UUserWidget interface\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Widget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::NewProp_Widget = { "Widget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms, Widget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widget_MetaData), NewProp_Widget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::NewProp_Widget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_ULyraAccoladeHostWidget, nullptr, "DestroyAccoladeWidget", nullptr, nullptr, Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::PropPointers), sizeof(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(LyraAccoladeHostWidget_eventDestroyAccoladeWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class ULyraAccoladeHostWidget Function DestroyAccoladeWidget + +// Begin Class ULyraAccoladeHostWidget +void ULyraAccoladeHostWidget::StaticRegisterNativesULyraAccoladeHostWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraAccoladeHostWidget); +UClass* Z_Construct_UClass_ULyraAccoladeHostWidget_NoRegister() +{ + return ULyraAccoladeHostWidget::StaticClass(); +} +struct Z_Construct_UClass_ULyraAccoladeHostWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Accolades/LyraAccoladeHostWidget.h" }, + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocationName_MetaData[] = { + { "Category", "LyraAccoladeHostWidget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The location tag (used to filter incoming messages to only display the appropriate accolades in a given location)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The location tag (used to filter incoming messages to only display the appropriate accolades in a given location)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingAccoladeLoads_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of async pending load accolades (which might come in the wrong order due to the row read)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of async pending load accolades (which might come in the wrong order due to the row read)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PendingAccoladeDisplays_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// List of pending accolades (due to one at a time display duration; the first one in the list is the current visible one)\n" }, +#endif + { "ModuleRelativePath", "Public/Accolades/LyraAccoladeHostWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of pending accolades (due to one at a time display duration; the first one in the list is the current visible one)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_LocationName; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingAccoladeLoads_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PendingAccoladeLoads; + static const UECodeGen_Private::FStructPropertyParams NewProp_PendingAccoladeDisplays_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PendingAccoladeDisplays; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_ULyraAccoladeHostWidget_CreateAccoladeWidget, "CreateAccoladeWidget" }, // 1307559230 + { &Z_Construct_UFunction_ULyraAccoladeHostWidget_DestroyAccoladeWidget, "DestroyAccoladeWidget" }, // 3248281648 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_LocationName = { "LocationName", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, LocationName), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocationName_MetaData), NewProp_LocationName_MetaData) }; // 1298103297 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads_Inner = { "PendingAccoladeLoads", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(0, nullptr) }; // 2807307257 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads = { "PendingAccoladeLoads", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, PendingAccoladeLoads), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingAccoladeLoads_MetaData), NewProp_PendingAccoladeLoads_MetaData) }; // 2807307257 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays_Inner = { "PendingAccoladeDisplays", nullptr, (EPropertyFlags)0x0000008000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FPendingAccoladeEntry, METADATA_PARAMS(0, nullptr) }; // 2807307257 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays = { "PendingAccoladeDisplays", nullptr, (EPropertyFlags)0x0040008000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraAccoladeHostWidget, PendingAccoladeDisplays), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PendingAccoladeDisplays_MetaData), NewProp_PendingAccoladeDisplays_MetaData) }; // 2807307257 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_LocationName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeLoads, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::NewProp_PendingAccoladeDisplays, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::ClassParams = { + &ULyraAccoladeHostWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::PropPointers), + 0, + 0x00A010A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraAccoladeHostWidget() +{ + if (!Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton, Z_Construct_UClass_ULyraAccoladeHostWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraAccoladeHostWidget.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ULyraAccoladeHostWidget::StaticClass(); +} +ULyraAccoladeHostWidget::ULyraAccoladeHostWidget(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraAccoladeHostWidget); +ULyraAccoladeHostWidget::~ULyraAccoladeHostWidget() {} +// End Class ULyraAccoladeHostWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FPendingAccoladeEntry::StaticStruct, Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics::NewStructOps, TEXT("PendingAccoladeEntry"), &Z_Registration_Info_UScriptStruct_PendingAccoladeEntry, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FPendingAccoladeEntry), 2807307257U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraAccoladeHostWidget, ULyraAccoladeHostWidget::StaticClass, TEXT("ULyraAccoladeHostWidget"), &Z_Registration_Info_UClass_ULyraAccoladeHostWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraAccoladeHostWidget), 3514828148U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_735247475(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h new file mode 100644 index 00000000..e7e59d95 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraAccoladeHostWidget.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Accolades/LyraAccoladeHostWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UUserWidget; +struct FPendingAccoladeEntry; +#ifdef SHOOTERCORERUNTIME_LyraAccoladeHostWidget_generated_h +#error "LyraAccoladeHostWidget.generated.h already included, missing '#pragma once' in LyraAccoladeHostWidget.h" +#endif +#define SHOOTERCORERUNTIME_LyraAccoladeHostWidget_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_21_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FPendingAccoladeEntry_Statics; \ + SHOOTERCORERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> SHOOTERCORERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraAccoladeHostWidget(); \ + friend struct Z_Construct_UClass_ULyraAccoladeHostWidget_Statics; \ +public: \ + DECLARE_CLASS(ULyraAccoladeHostWidget, UCommonUserWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraAccoladeHostWidget) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API ULyraAccoladeHostWidget(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraAccoladeHostWidget(ULyraAccoladeHostWidget&&); \ + ULyraAccoladeHostWidget(const ULyraAccoladeHostWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraAccoladeHostWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraAccoladeHostWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ULyraAccoladeHostWidget) \ + NO_API virtual ~ULyraAccoladeHostWidget(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_45_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h_48_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_Accolades_LyraAccoladeHostWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp new file mode 100644 index 00000000..74f30435 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/LyraWorldCollectable.h" +#include "LyraGame/Interaction/InteractionOption.h" +#include "LyraGame/Inventory/IPickupable.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraWorldCollectable() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AActor(); +LYRAGAME_API UClass* Z_Construct_UClass_UInteractableTarget_NoRegister(); +LYRAGAME_API UClass* Z_Construct_UClass_UPickupable_NoRegister(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInteractionOption(); +LYRAGAME_API UScriptStruct* Z_Construct_UScriptStruct_FInventoryPickup(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ALyraWorldCollectable(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_ALyraWorldCollectable_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class ALyraWorldCollectable +void ALyraWorldCollectable::StaticRegisterNativesALyraWorldCollectable() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ALyraWorldCollectable); +UClass* Z_Construct_UClass_ALyraWorldCollectable_NoRegister() +{ + return ALyraWorldCollectable::StaticClass(); +} +struct Z_Construct_UClass_ALyraWorldCollectable_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "LyraWorldCollectable.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Option_MetaData[] = { + { "Category", "LyraWorldCollectable" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StaticInventory_MetaData[] = { + { "Category", "LyraWorldCollectable" }, + { "ModuleRelativePath", "Public/LyraWorldCollectable.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Option; + static const UECodeGen_Private::FStructPropertyParams NewProp_StaticInventory; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_Option = { "Option", nullptr, (EPropertyFlags)0x0020088000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldCollectable, Option), Z_Construct_UScriptStruct_FInteractionOption, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Option_MetaData), NewProp_Option_MetaData) }; // 4256573821 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_StaticInventory = { "StaticInventory", nullptr, (EPropertyFlags)0x0020080000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ALyraWorldCollectable, StaticInventory), Z_Construct_UScriptStruct_FInventoryPickup, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StaticInventory_MetaData), NewProp_StaticInventory_MetaData) }; // 3290137148 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_Option, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ALyraWorldCollectable_Statics::NewProp_StaticInventory, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ALyraWorldCollectable_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_ALyraWorldCollectable_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UInteractableTarget_NoRegister, (int32)VTABLE_OFFSET(ALyraWorldCollectable, IInteractableTarget), false }, // 2018106830 + { Z_Construct_UClass_UPickupable_NoRegister, (int32)VTABLE_OFFSET(ALyraWorldCollectable, IPickupable), false }, // 1088473728 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_ALyraWorldCollectable_Statics::ClassParams = { + &ALyraWorldCollectable::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x008000A5u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ALyraWorldCollectable_Statics::Class_MetaDataParams), Z_Construct_UClass_ALyraWorldCollectable_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ALyraWorldCollectable() +{ + if (!Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton, Z_Construct_UClass_ALyraWorldCollectable_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ALyraWorldCollectable.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return ALyraWorldCollectable::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ALyraWorldCollectable); +ALyraWorldCollectable::~ALyraWorldCollectable() {} +// End Class ALyraWorldCollectable + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ALyraWorldCollectable, ALyraWorldCollectable::StaticClass, TEXT("ALyraWorldCollectable"), &Z_Registration_Info_UClass_ALyraWorldCollectable, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ALyraWorldCollectable), 1918952670U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_3300932705(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h new file mode 100644 index 00000000..6ac918ef --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/LyraWorldCollectable.generated.h @@ -0,0 +1,55 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraWorldCollectable.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_LyraWorldCollectable_generated_h +#error "LyraWorldCollectable.generated.h already included, missing '#pragma once' in LyraWorldCollectable.h" +#endif +#define SHOOTERCORERUNTIME_LyraWorldCollectable_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesALyraWorldCollectable(); \ + friend struct Z_Construct_UClass_ALyraWorldCollectable_Statics; \ +public: \ + DECLARE_CLASS(ALyraWorldCollectable, AActor, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(ALyraWorldCollectable) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ALyraWorldCollectable(ALyraWorldCollectable&&); \ + ALyraWorldCollectable(const ALyraWorldCollectable&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ALyraWorldCollectable); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ALyraWorldCollectable); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ALyraWorldCollectable) \ + NO_API virtual ~ALyraWorldCollectable(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_LyraWorldCollectable_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp new file mode 100644 index 00000000..32bfd5a9 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterCoreRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ShooterCoreRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime() + { + if (!Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ShooterCoreRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x301C5634, + 0xEBB3397E, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ShooterCoreRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ShooterCoreRuntime(Z_Construct_UPackage__Script_ShooterCoreRuntime, TEXT("/Script/ShooterCoreRuntime"), Z_Registration_Info_UPackage__Script_ShooterCoreRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x301C5634, 0xEBB3397E)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp new file mode 100644 index 00000000..189527ef --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.gen.cpp @@ -0,0 +1,115 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Public/ShooterCoreRuntimeSettings.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterCoreRuntimeSettings() {} + +// Begin Cross Module References +DEVELOPERSETTINGS_API UClass* Z_Construct_UClass_UDeveloperSettings(); +ENGINE_API UEnum* Z_Construct_UEnum_Engine_ECollisionChannel(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UShooterCoreRuntimeSettings +void UShooterCoreRuntimeSettings::StaticRegisterNativesUShooterCoreRuntimeSettings() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UShooterCoreRuntimeSettings); +UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings_NoRegister() +{ + return UShooterCoreRuntimeSettings::StaticClass(); +} +struct Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Runtime settings specific to the ShooterCoreRuntime plugin */" }, +#endif + { "IncludePath", "ShooterCoreRuntimeSettings.h" }, + { "ModuleRelativePath", "Public/ShooterCoreRuntimeSettings.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Runtime settings specific to the ShooterCoreRuntime plugin" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AimAssistCollisionChannel_MetaData[] = { + { "Category", "Aim Assist" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * What trace channel should be used to find available targets for Aim Assist.\n\x09 * @see UAimAssistTargetManagerComponent::GetVisibleTargets\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/ShooterCoreRuntimeSettings.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "What trace channel should be used to find available targets for Aim Assist.\n@see UAimAssistTargetManagerComponent::GetVisibleTargets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_AimAssistCollisionChannel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::NewProp_AimAssistCollisionChannel = { "AimAssistCollisionChannel", nullptr, (EPropertyFlags)0x0040000000004001, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UShooterCoreRuntimeSettings, AimAssistCollisionChannel), Z_Construct_UEnum_Engine_ECollisionChannel, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AimAssistCollisionChannel_MetaData), NewProp_AimAssistCollisionChannel_MetaData) }; // 756624936 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::NewProp_AimAssistCollisionChannel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDeveloperSettings, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::ClassParams = { + &UShooterCoreRuntimeSettings::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::PropPointers), + 0, + 0x000000A6u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::Class_MetaDataParams), Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UShooterCoreRuntimeSettings() +{ + if (!Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton, Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UShooterCoreRuntimeSettings.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UShooterCoreRuntimeSettings::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UShooterCoreRuntimeSettings); +UShooterCoreRuntimeSettings::~UShooterCoreRuntimeSettings() {} +// End Class UShooterCoreRuntimeSettings + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UShooterCoreRuntimeSettings, UShooterCoreRuntimeSettings::StaticClass, TEXT("UShooterCoreRuntimeSettings"), &Z_Registration_Info_UClass_UShooterCoreRuntimeSettings, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UShooterCoreRuntimeSettings), 2981028601U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_3568208481(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h new file mode 100644 index 00000000..e6000ef5 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntimeSettings.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ShooterCoreRuntimeSettings.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_ShooterCoreRuntimeSettings_generated_h +#error "ShooterCoreRuntimeSettings.generated.h already included, missing '#pragma once' in ShooterCoreRuntimeSettings.h" +#endif +#define SHOOTERCORERUNTIME_ShooterCoreRuntimeSettings_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUShooterCoreRuntimeSettings(); \ + friend struct Z_Construct_UClass_UShooterCoreRuntimeSettings_Statics; \ +public: \ + DECLARE_CLASS(UShooterCoreRuntimeSettings, UDeveloperSettings, COMPILED_IN_FLAGS(0 | CLASS_DefaultConfig | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UShooterCoreRuntimeSettings) \ + static const TCHAR* StaticConfigName() {return TEXT("Game");} \ + + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UShooterCoreRuntimeSettings(UShooterCoreRuntimeSettings&&); \ + UShooterCoreRuntimeSettings(const UShooterCoreRuntimeSettings&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UShooterCoreRuntimeSettings); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UShooterCoreRuntimeSettings); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UShooterCoreRuntimeSettings) \ + NO_API virtual ~UShooterCoreRuntimeSettings(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_13_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h_16_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Public_ShooterCoreRuntimeSettings_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp new file mode 100644 index 00000000..389809ab --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.gen.cpp @@ -0,0 +1,95 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterCoreRuntime/Private/TDM_PlayerSpawningManagmentComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTDM_PlayerSpawningManagmentComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraPlayerSpawningManagerComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent(); +SHOOTERCORERUNTIME_API UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterCoreRuntime(); +// End Cross Module References + +// Begin Class UTDM_PlayerSpawningManagmentComponent +void UTDM_PlayerSpawningManagmentComponent::StaticRegisterNativesUTDM_PlayerSpawningManagmentComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTDM_PlayerSpawningManagmentComponent); +UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_NoRegister() +{ + return UTDM_PlayerSpawningManagmentComponent::StaticClass(); +} +struct Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "HideCategories", "Trigger PhysicsVolume" }, + { "IncludePath", "TDM_PlayerSpawningManagmentComponent.h" }, + { "ModuleRelativePath", "Private/TDM_PlayerSpawningManagmentComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraPlayerSpawningManagerComponent, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterCoreRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::ClassParams = { + &UTDM_PlayerSpawningManagmentComponent::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent() +{ + if (!Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton, Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent.OuterSingleton; +} +template<> SHOOTERCORERUNTIME_API UClass* StaticClass() +{ + return UTDM_PlayerSpawningManagmentComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTDM_PlayerSpawningManagmentComponent); +UTDM_PlayerSpawningManagmentComponent::~UTDM_PlayerSpawningManagmentComponent() {} +// End Class UTDM_PlayerSpawningManagmentComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent, UTDM_PlayerSpawningManagmentComponent::StaticClass, TEXT("UTDM_PlayerSpawningManagmentComponent"), &Z_Registration_Info_UClass_UTDM_PlayerSpawningManagmentComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTDM_PlayerSpawningManagmentComponent), 1351437570U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_1325601228(TEXT("/Script/ShooterCoreRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h new file mode 100644 index 00000000..a20a724e --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/TDM_PlayerSpawningManagmentComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TDM_PlayerSpawningManagmentComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef SHOOTERCORERUNTIME_TDM_PlayerSpawningManagmentComponent_generated_h +#error "TDM_PlayerSpawningManagmentComponent.generated.h already included, missing '#pragma once' in TDM_PlayerSpawningManagmentComponent.h" +#endif +#define SHOOTERCORERUNTIME_TDM_PlayerSpawningManagmentComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTDM_PlayerSpawningManagmentComponent(); \ + friend struct Z_Construct_UClass_UTDM_PlayerSpawningManagmentComponent_Statics; \ +public: \ + DECLARE_CLASS(UTDM_PlayerSpawningManagmentComponent, ULyraPlayerSpawningManagerComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterCoreRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTDM_PlayerSpawningManagmentComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTDM_PlayerSpawningManagmentComponent(UTDM_PlayerSpawningManagmentComponent&&); \ + UTDM_PlayerSpawningManagmentComponent(const UTDM_PlayerSpawningManagmentComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTDM_PlayerSpawningManagmentComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTDM_PlayerSpawningManagmentComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UTDM_PlayerSpawningManagmentComponent) \ + NO_API virtual ~UTDM_PlayerSpawningManagmentComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERCORERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterCore_Source_ShooterCoreRuntime_Private_TDM_PlayerSpawningManagmentComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/Timestamp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/Timestamp new file mode 100644 index 00000000..a7398eb0 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/Timestamp @@ -0,0 +1,13 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Accolades\LyraAccoladeDefinition.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistInputModifier.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Accolades\LyraAccoladeHostWidget.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\LyraWorldCollectable.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\IAimAssistTargetInterface.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\AssistProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\ShooterCoreRuntimeSettings.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Messages\ControlPointStatusMessage.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistTargetComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\ElimChainProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\MessageProcessors\ElimStreakProcessor.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public\Input\AimAssistTargetManagerComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Private\TDM_PlayerSpawningManagmentComponent.h diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Default.rc2.res.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Default.rc2.res.rsp new file mode 100644 index 00000000..c71bf315 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-ShooterCoreRuntime.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h new file mode 100644 index 00000000..971c3fce --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h @@ -0,0 +1,71 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for ShooterCoreRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef SHOOTERCORERUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "ShooterCoreRuntime" +#define UE_PLUGIN_NAME "ShooterCore" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define GAMEPLAYABILITIES_API DLLIMPORT +#define DATAREGISTRY_API DLLIMPORT +#define GAMEPLAYMESSAGERUNTIME_API DLLIMPORT +#define COMMONUI_API DLLIMPORT +#define WIDGETCAROUSEL_API DLLIMPORT +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API DLLIMPORT +#define ENHANCEDINPUT_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT +#define ASYNCMIXIN_API DLLIMPORT +#define GAMESUBTITLES_API DLLIMPORT +#define OVERLAY_API DLLIMPORT +#define AIMODULE_API DLLIMPORT +#define SHOOTERCORERUNTIME_API DLLEXPORT +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 1 +#define WITH_HTTPSERVER_LISTENERS 1 +#define LYRAGAME_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define REPLICATIONGRAPH_API DLLIMPORT +#define GAMEFEATURES_API DLLIMPORT +#define SIGNIFICANCEMANAGER_API DLLIMPORT +#define HOTFIX_API DLLIMPORT +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define INSTALLBUNDLEMANAGER_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLIMPORT +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API DLLIMPORT +#define NIAGARACORE_API DLLIMPORT +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API DLLIMPORT +#define NIAGARASHADER_API DLLIMPORT +#define NIAGARAVERTEXFACTORIES_API DLLIMPORT +#define CONTROLFLOWS_API DLLIMPORT +#define COMMONGAME_API DLLIMPORT +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API DLLIMPORT +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API DLLIMPORT diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/LiveCodingInfo.json b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/LiveCodingInfo.json new file mode 100644 index 00000000..605b78ad --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/LiveCodingInfo.json @@ -0,0 +1,23 @@ +{ + "RemapUnityFiles": + { + "Module.ShooterCoreRuntime.cpp.obj": [ + "ControlPointStatusMessage.gen.cpp.obj", + "IAimAssistTargetInterface.gen.cpp.obj", + "ShooterCoreRuntime.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "LyraAccoladeDefinition.cpp.obj", + "LyraAccoladeHostWidget.cpp.obj", + "AimAssistInputModifier.cpp.obj", + "AimAssistTargetComponent.cpp.obj", + "AimAssistTargetManagerComponent.cpp.obj", + "LyraWorldCollectable.cpp.obj", + "AssistProcessor.cpp.obj", + "ElimChainProcessor.cpp.obj", + "ElimStreakProcessor.cpp.obj", + "ShooterCoreRuntimeModule.cpp.obj", + "ShooterCoreRuntimeSettings.cpp.obj", + "TDM_PlayerSpawningManagmentComponent.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp new file mode 100644 index 00000000..263faa79 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp @@ -0,0 +1,17 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Accolades/LyraAccoladeDefinition.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Accolades/LyraAccoladeHostWidget.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistInputModifier.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistTargetComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistTargetManagerComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/LyraWorldCollectable.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/AssistProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/ElimChainProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/ElimStreakProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/ShooterCoreRuntimeModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/ShooterCoreRuntimeSettings.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/TDM_PlayerSpawningManagmentComponent.cpp" diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp new file mode 100644 index 00000000..43270129 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Definitions.ShooterCoreRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\ShooterCoreRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/PerModuleInline.gen.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp new file mode 100644 index 00000000..436bc9e5 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp @@ -0,0 +1,394 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealEditor\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealEditor\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\UnrealEditor\Inc\ShooterCoreRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealEditor\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealEditor\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealEditor\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealEditor\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealEditor\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.dll.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.dll.rsp new file mode 100644 index 00000000..57f3792b --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.dll.rsp @@ -0,0 +1,89 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTasks\UnrealEditor-GameplayTasks.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilities\UnrealEditor-GameplayAbilities.lib" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\UnrealEditor-GameplayMessageRuntime.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUI\UnrealEditor-CommonUI.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\x64\UnrealEditor\Development\DataRegistry\UnrealEditor-DataRegistry.lib" +"E:\Projects\cross_platform\Plugins\AsyncMixin\Intermediate\Build\Win64\x64\UnrealEditor\Development\AsyncMixin\UnrealEditor-AsyncMixin.lib" +"..\Plugins\EnhancedInput\Intermediate\Build\Win64\x64\UnrealEditor\Development\EnhancedInput\UnrealEditor-EnhancedInput.lib" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\UnrealEditor-GameSubtitles.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\DeveloperSettings\UnrealEditor-DeveloperSettings.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\AIModule\UnrealEditor-AIModule.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\UnrealEditor-LyraGame.lib" +"..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplay\UnrealEditor-ModularGameplay.lib" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\UnrealEditor-CommonGame.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor-ShooterCoreRuntime.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Binaries\Win64\UnrealEditor-ShooterCoreRuntime.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.lib.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.lib.rsp new file mode 100644 index 00000000..a4d07393 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterCoreRuntime/UnrealEditor-ShooterCoreRuntime.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-ShooterCoreRuntime.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterCoreRuntime\UnrealEditor-ShooterCoreRuntime.lib" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h new file mode 100644 index 00000000..4977b596 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Definitions.ShooterCoreRuntime.h @@ -0,0 +1,101 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for ShooterCoreRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef SHOOTERCORERUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "ShooterCoreRuntime" +#define UE_PLUGIN_NAME "ShooterCore" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMEPLAYTASKS_API +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define GAMEPLAYABILITIES_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define DATAREGISTRY_API +#define GAMEPLAYMESSAGERUNTIME_API +#define COMMONUI_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define WIDGETCAROUSEL_API +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API +#define ENHANCEDINPUT_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API +#define ASYNCMIXIN_API +#define GAMESUBTITLES_API +#define OVERLAY_API +#define WITH_RECAST 1 +#define AIMODULE_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API +#define SHOOTERCORERUNTIME_API +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 0 +#define WITH_HTTPSERVER_LISTENERS 0 +#define LYRAGAME_API +#define MODULARGAMEPLAY_API +#define MODULARGAMEPLAYACTORS_API +#define REPLICATIONGRAPH_API +#define GAMEFEATURES_API +#define SIGNIFICANCEMANAGER_API +#define HOTFIX_API +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API +#define INSTALLBUNDLEMANAGER_API +#define COMMONLOADINGSCREEN_API +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API +#define NIAGARACORE_API +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API +#define NIAGARASHADER_API +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 0 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 0 +#define PROJECTS_API +#define NIAGARAVERTEXFACTORIES_API +#define CONTROLFLOWS_API +#define COMMONGAME_API +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp new file mode 100644 index 00000000..79ef19db --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp @@ -0,0 +1,16 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ControlPointStatusMessage.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/IAimAssistTargetInterface.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/UnrealGame/Inc/ShooterCoreRuntime/UHT/ShooterCoreRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Accolades/LyraAccoladeDefinition.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Accolades/LyraAccoladeHostWidget.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistInputModifier.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistTargetComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/Input/AimAssistTargetManagerComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/LyraWorldCollectable.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/AssistProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/ElimChainProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/MessageProcessors/ElimStreakProcessor.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/ShooterCoreRuntimeModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/ShooterCoreRuntimeSettings.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterCore/Source/ShooterCoreRuntime/Private/TDM_PlayerSpawningManagmentComponent.cpp" diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp new file mode 100644 index 00000000..c13348ee --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/Module.ShooterCoreRuntime.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\Definitions.ShooterCoreRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\Module.ShooterCoreRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ShooterCoreRuntime\ShooterCoreRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp new file mode 100644 index 00000000..87e65774 --- /dev/null +++ b/Plugins/GameFeatures/ShooterCore/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ShooterCoreRuntime/ShooterCoreRuntime.Shared.rsp @@ -0,0 +1,259 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealGame\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealGame\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealGame\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealGame\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealGame\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Intermediate\Build\Win64\UnrealGame\Inc\ShooterCoreRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterCore\Source\ShooterCoreRuntime\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealGame\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealGame\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealGame\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealGame\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealGame\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealGame\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealGame\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealGame\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp new file mode 100644 index 00000000..df3749d3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp @@ -0,0 +1,407 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterTestsRuntime/Private/ShooterTestsDevicePropertyTester.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/Engine/Classes/GameFramework/InputDevicePropertyHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterTestsDevicePropertyTester() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_AActor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UInputDeviceProperty_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimitiveComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FInputDevicePropertyHandle(); +SHOOTERTESTSRUNTIME_API UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester(); +SHOOTERTESTSRUNTIME_API UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterTestsRuntime(); +// End Cross Module References + +// Begin Class AShooterTestsDevicePropertyTester Function ApplyDeviceProperties +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms + { + FPlatformUserId UserId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Device Property" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_UserId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::NewProp_UserId = { "UserId", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms, UserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserId_MetaData), NewProp_UserId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::NewProp_UserId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "ApplyDeviceProperties", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execApplyDeviceProperties) +{ + P_GET_STRUCT(FPlatformUserId,Z_Param_UserId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyDeviceProperties(Z_Param_UserId); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function ApplyDeviceProperties + +// Begin Class AShooterTestsDevicePropertyTester Function OnEndOverlap +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics +{ + struct ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherBodyIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "OnEndOverlap", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execOnEndOverlap) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnEndOverlap(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function OnEndOverlap + +// Begin Class AShooterTestsDevicePropertyTester Function OnOverlapBegin +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics +{ + struct ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + bool bFromSweep; + FHitResult SweepHitResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SweepHitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static void NewProp_bFromSweep_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFromSweep; + static const UECodeGen_Private::FStructPropertyParams NewProp_SweepHitResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit(void* Obj) +{ + ((ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms*)Obj)->bFromSweep = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep = { "bFromSweep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms), &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_SweepHitResult = { "SweepHitResult", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, SweepHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SweepHitResult_MetaData), NewProp_SweepHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherBodyIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_SweepHitResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "OnOverlapBegin", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00440401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execOnOverlapBegin) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_GET_UBOOL(Z_Param_bFromSweep); + P_GET_STRUCT_REF(FHitResult,Z_Param_Out_SweepHitResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnOverlapBegin(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex,Z_Param_bFromSweep,Z_Param_Out_SweepHitResult); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function OnOverlapBegin + +// Begin Class AShooterTestsDevicePropertyTester Function RemoveDeviceProperties +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Device Property" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "RemoveDeviceProperties", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execRemoveDeviceProperties) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveDeviceProperties(); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function RemoveDeviceProperties + +// Begin Class AShooterTestsDevicePropertyTester +void AShooterTestsDevicePropertyTester::StaticRegisterNativesAShooterTestsDevicePropertyTester() +{ + UClass* Class = AShooterTestsDevicePropertyTester::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyDeviceProperties", &AShooterTestsDevicePropertyTester::execApplyDeviceProperties }, + { "OnEndOverlap", &AShooterTestsDevicePropertyTester::execOnEndOverlap }, + { "OnOverlapBegin", &AShooterTestsDevicePropertyTester::execOnOverlapBegin }, + { "RemoveDeviceProperties", &AShooterTestsDevicePropertyTester::execRemoveDeviceProperties }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AShooterTestsDevicePropertyTester); +UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester_NoRegister() +{ + return AShooterTestsDevicePropertyTester::StaticClass(); +} +struct Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** This tester will apply device properties to a Player Controller on overlap, and remove them once overlap ends. */" }, +#endif + { "IncludePath", "ShooterTestsDevicePropertyTester.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This tester will apply device properties to a Player Controller on overlap, and remove them once overlap ends." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeviceProperties_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Device properties to apply on overlap with a player controller. */" }, +#endif + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties to apply on overlap with a player controller." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionVolume_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The volume that will trigger device properties to be added and removed on overlap */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The volume that will trigger device properties to be added and removed on overlap" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformMesh_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A little mesh to make this collision volume visible */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A little mesh to make this collision volume visible" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivePropertyHandles_MetaData[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_DeviceProperties_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DeviceProperties; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollisionVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlatformMesh; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivePropertyHandles_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ActivePropertyHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties, "ApplyDeviceProperties" }, // 3650254787 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap, "OnEndOverlap" }, // 3460802915 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin, "OnOverlapBegin" }, // 1089136616 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties, "RemoveDeviceProperties" }, // 379622303 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties_Inner = { "DeviceProperties", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UInputDeviceProperty_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties = { "DeviceProperties", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, DeviceProperties), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeviceProperties_MetaData), NewProp_DeviceProperties_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_CollisionVolume = { "CollisionVolume", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, CollisionVolume), Z_Construct_UClass_UCapsuleComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionVolume_MetaData), NewProp_CollisionVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_PlatformMesh = { "PlatformMesh", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, PlatformMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformMesh_MetaData), NewProp_PlatformMesh_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles_ElementProp = { "ActivePropertyHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputDevicePropertyHandle, METADATA_PARAMS(0, nullptr) }; // 158936348 +static_assert(TModels_V, "The structure 'FInputDevicePropertyHandle' is used in a TSet but does not have a GetValueTypeHash defined"); +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles = { "ActivePropertyHandles", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, ActivePropertyHandles), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivePropertyHandles_MetaData), NewProp_ActivePropertyHandles_MetaData) }; // 158936348 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_CollisionVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_PlatformMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterTestsRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::ClassParams = { + &AShooterTestsDevicePropertyTester::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::Class_MetaDataParams), Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester() +{ + if (!Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton, Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton; +} +template<> SHOOTERTESTSRUNTIME_API UClass* StaticClass() +{ + return AShooterTestsDevicePropertyTester::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AShooterTestsDevicePropertyTester); +AShooterTestsDevicePropertyTester::~AShooterTestsDevicePropertyTester() {} +// End Class AShooterTestsDevicePropertyTester + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AShooterTestsDevicePropertyTester, AShooterTestsDevicePropertyTester::StaticClass, TEXT("AShooterTestsDevicePropertyTester"), &Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AShooterTestsDevicePropertyTester), 3939936427U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_233721815(TEXT("/Script/ShooterTestsRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h new file mode 100644 index 00000000..3556fd1b --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ShooterTestsDevicePropertyTester.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UPrimitiveComponent; +struct FHitResult; +struct FPlatformUserId; +#ifdef SHOOTERTESTSRUNTIME_ShooterTestsDevicePropertyTester_generated_h +#error "ShooterTestsDevicePropertyTester.generated.h already included, missing '#pragma once' in ShooterTestsDevicePropertyTester.h" +#endif +#define SHOOTERTESTSRUNTIME_ShooterTestsDevicePropertyTester_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnEndOverlap); \ + DECLARE_FUNCTION(execOnOverlapBegin); \ + DECLARE_FUNCTION(execRemoveDeviceProperties); \ + DECLARE_FUNCTION(execApplyDeviceProperties); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAShooterTestsDevicePropertyTester(); \ + friend struct Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics; \ +public: \ + DECLARE_CLASS(AShooterTestsDevicePropertyTester, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterTestsRuntime"), NO_API) \ + DECLARE_SERIALIZER(AShooterTestsDevicePropertyTester) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AShooterTestsDevicePropertyTester(AShooterTestsDevicePropertyTester&&); \ + AShooterTestsDevicePropertyTester(const AShooterTestsDevicePropertyTester&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AShooterTestsDevicePropertyTester); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AShooterTestsDevicePropertyTester); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(AShooterTestsDevicePropertyTester) \ + NO_API virtual ~AShooterTestsDevicePropertyTester(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERTESTSRUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp new file mode 100644 index 00000000..9dcf88e0 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterTestsRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ShooterTestsRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ShooterTestsRuntime() + { + if (!Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ShooterTestsRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xE630C27B, + 0xBBAE1ADB, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ShooterTestsRuntime(Z_Construct_UPackage__Script_ShooterTestsRuntime, TEXT("/Script/ShooterTestsRuntime"), Z_Registration_Info_UPackage__Script_ShooterTestsRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE630C27B, 0xBBAE1ADB)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/Timestamp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/Timestamp new file mode 100644 index 00000000..996db411 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/Timestamp @@ -0,0 +1 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Source\ShooterTestsRuntime\Private\ShooterTestsDevicePropertyTester.h diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp new file mode 100644 index 00000000..df3749d3 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp @@ -0,0 +1,407 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ShooterTestsRuntime/Private/ShooterTestsDevicePropertyTester.h" +#include "Runtime/Engine/Classes/Engine/HitResult.h" +#include "Runtime/Engine/Classes/GameFramework/InputDevicePropertyHandle.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterTestsDevicePropertyTester() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FPlatformUserId(); +ENGINE_API UClass* Z_Construct_UClass_AActor(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UCapsuleComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UInputDeviceProperty_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UPrimitiveComponent_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMeshComponent_NoRegister(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FHitResult(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FInputDevicePropertyHandle(); +SHOOTERTESTSRUNTIME_API UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester(); +SHOOTERTESTSRUNTIME_API UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ShooterTestsRuntime(); +// End Cross Module References + +// Begin Class AShooterTestsDevicePropertyTester Function ApplyDeviceProperties +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics +{ + struct FPlatformUserId + { + int32 InternalId; + }; + + struct ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms + { + FPlatformUserId UserId; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Device Property" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserId_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_UserId; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::NewProp_UserId = { "UserId", nullptr, (EPropertyFlags)0x0010000000000082, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms, UserId), Z_Construct_UScriptStruct_FPlatformUserId, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserId_MetaData), NewProp_UserId_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::NewProp_UserId, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "ApplyDeviceProperties", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::ShooterTestsDevicePropertyTester_eventApplyDeviceProperties_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execApplyDeviceProperties) +{ + P_GET_STRUCT(FPlatformUserId,Z_Param_UserId); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyDeviceProperties(Z_Param_UserId); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function ApplyDeviceProperties + +// Begin Class AShooterTestsDevicePropertyTester Function OnEndOverlap +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics +{ + struct ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::NewProp_OtherBodyIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "OnEndOverlap", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::ShooterTestsDevicePropertyTester_eventOnEndOverlap_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execOnEndOverlap) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnEndOverlap(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function OnEndOverlap + +// Begin Class AShooterTestsDevicePropertyTester Function OnOverlapBegin +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics +{ + struct ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms + { + UPrimitiveComponent* OverlappedComponent; + AActor* OtherActor; + UPrimitiveComponent* OtherComp; + int32 OtherBodyIndex; + bool bFromSweep; + FHitResult SweepHitResult; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OverlappedComponent_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OtherComp_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SweepHitResult_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_OverlappedComponent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherActor; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OtherComp; + static const UECodeGen_Private::FIntPropertyParams NewProp_OtherBodyIndex; + static void NewProp_bFromSweep_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bFromSweep; + static const UECodeGen_Private::FStructPropertyParams NewProp_SweepHitResult; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OverlappedComponent = { "OverlappedComponent", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OverlappedComponent), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OverlappedComponent_MetaData), NewProp_OverlappedComponent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherActor = { "OtherActor", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherActor), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherComp = { "OtherComp", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherComp), Z_Construct_UClass_UPrimitiveComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OtherComp_MetaData), NewProp_OtherComp_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherBodyIndex = { "OtherBodyIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, OtherBodyIndex), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit(void* Obj) +{ + ((ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms*)Obj)->bFromSweep = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep = { "bFromSweep", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms), &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_SweepHitResult = { "SweepHitResult", nullptr, (EPropertyFlags)0x0010008008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms, SweepHitResult), Z_Construct_UScriptStruct_FHitResult, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SweepHitResult_MetaData), NewProp_SweepHitResult_MetaData) }; // 4100991306 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OverlappedComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherActor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherComp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_OtherBodyIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_bFromSweep, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::NewProp_SweepHitResult, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "OnOverlapBegin", nullptr, nullptr, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::PropPointers), sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00440401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::ShooterTestsDevicePropertyTester_eventOnOverlapBegin_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execOnOverlapBegin) +{ + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OverlappedComponent); + P_GET_OBJECT(AActor,Z_Param_OtherActor); + P_GET_OBJECT(UPrimitiveComponent,Z_Param_OtherComp); + P_GET_PROPERTY(FIntProperty,Z_Param_OtherBodyIndex); + P_GET_UBOOL(Z_Param_bFromSweep); + P_GET_STRUCT_REF(FHitResult,Z_Param_Out_SweepHitResult); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnOverlapBegin(Z_Param_OverlappedComponent,Z_Param_OtherActor,Z_Param_OtherComp,Z_Param_OtherBodyIndex,Z_Param_bFromSweep,Z_Param_Out_SweepHitResult); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function OnOverlapBegin + +// Begin Class AShooterTestsDevicePropertyTester Function RemoveDeviceProperties +struct Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Device Property" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AShooterTestsDevicePropertyTester, nullptr, "RemoveDeviceProperties", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::Function_MetaDataParams), Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(AShooterTestsDevicePropertyTester::execRemoveDeviceProperties) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->RemoveDeviceProperties(); + P_NATIVE_END; +} +// End Class AShooterTestsDevicePropertyTester Function RemoveDeviceProperties + +// Begin Class AShooterTestsDevicePropertyTester +void AShooterTestsDevicePropertyTester::StaticRegisterNativesAShooterTestsDevicePropertyTester() +{ + UClass* Class = AShooterTestsDevicePropertyTester::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyDeviceProperties", &AShooterTestsDevicePropertyTester::execApplyDeviceProperties }, + { "OnEndOverlap", &AShooterTestsDevicePropertyTester::execOnEndOverlap }, + { "OnOverlapBegin", &AShooterTestsDevicePropertyTester::execOnOverlapBegin }, + { "RemoveDeviceProperties", &AShooterTestsDevicePropertyTester::execRemoveDeviceProperties }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AShooterTestsDevicePropertyTester); +UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester_NoRegister() +{ + return AShooterTestsDevicePropertyTester::StaticClass(); +} +struct Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** This tester will apply device properties to a Player Controller on overlap, and remove them once overlap ends. */" }, +#endif + { "IncludePath", "ShooterTestsDevicePropertyTester.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This tester will apply device properties to a Player Controller on overlap, and remove them once overlap ends." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DeviceProperties_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Device properties to apply on overlap with a player controller. */" }, +#endif + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Device properties to apply on overlap with a player controller." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollisionVolume_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The volume that will trigger device properties to be added and removed on overlap */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The volume that will trigger device properties to be added and removed on overlap" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PlatformMesh_MetaData[] = { + { "Category", "Device Property" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** A little mesh to make this collision volume visible */" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A little mesh to make this collision volume visible" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActivePropertyHandles_MetaData[] = { + { "ModuleRelativePath", "Private/ShooterTestsDevicePropertyTester.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_DeviceProperties_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DeviceProperties; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollisionVolume; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PlatformMesh; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActivePropertyHandles_ElementProp; + static const UECodeGen_Private::FSetPropertyParams NewProp_ActivePropertyHandles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_ApplyDeviceProperties, "ApplyDeviceProperties" }, // 3650254787 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnEndOverlap, "OnEndOverlap" }, // 3460802915 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_OnOverlapBegin, "OnOverlapBegin" }, // 1089136616 + { &Z_Construct_UFunction_AShooterTestsDevicePropertyTester_RemoveDeviceProperties, "RemoveDeviceProperties" }, // 379622303 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties_Inner = { "DeviceProperties", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UInputDeviceProperty_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties = { "DeviceProperties", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, DeviceProperties), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DeviceProperties_MetaData), NewProp_DeviceProperties_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_CollisionVolume = { "CollisionVolume", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, CollisionVolume), Z_Construct_UClass_UCapsuleComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollisionVolume_MetaData), NewProp_CollisionVolume_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_PlatformMesh = { "PlatformMesh", nullptr, (EPropertyFlags)0x011400000009001d, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, PlatformMesh), Z_Construct_UClass_UStaticMeshComponent_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PlatformMesh_MetaData), NewProp_PlatformMesh_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles_ElementProp = { "ActivePropertyHandles", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FInputDevicePropertyHandle, METADATA_PARAMS(0, nullptr) }; // 158936348 +static_assert(TModels_V, "The structure 'FInputDevicePropertyHandle' is used in a TSet but does not have a GetValueTypeHash defined"); +const UECodeGen_Private::FSetPropertyParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles = { "ActivePropertyHandles", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Set, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AShooterTestsDevicePropertyTester, ActivePropertyHandles), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActivePropertyHandles_MetaData), NewProp_ActivePropertyHandles_MetaData) }; // 158936348 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_DeviceProperties, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_CollisionVolume, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_PlatformMesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles_ElementProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::NewProp_ActivePropertyHandles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AActor, + (UObject* (*)())Z_Construct_UPackage__Script_ShooterTestsRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::ClassParams = { + &AShooterTestsDevicePropertyTester::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::PropPointers), + 0, + 0x008000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::Class_MetaDataParams), Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AShooterTestsDevicePropertyTester() +{ + if (!Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton, Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester.OuterSingleton; +} +template<> SHOOTERTESTSRUNTIME_API UClass* StaticClass() +{ + return AShooterTestsDevicePropertyTester::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AShooterTestsDevicePropertyTester); +AShooterTestsDevicePropertyTester::~AShooterTestsDevicePropertyTester() {} +// End Class AShooterTestsDevicePropertyTester + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AShooterTestsDevicePropertyTester, AShooterTestsDevicePropertyTester::StaticClass, TEXT("AShooterTestsDevicePropertyTester"), &Z_Registration_Info_UClass_AShooterTestsDevicePropertyTester, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AShooterTestsDevicePropertyTester), 3939936427U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_233721815(TEXT("/Script/ShooterTestsRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h new file mode 100644 index 00000000..3556fd1b --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ShooterTestsDevicePropertyTester.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UPrimitiveComponent; +struct FHitResult; +struct FPlatformUserId; +#ifdef SHOOTERTESTSRUNTIME_ShooterTestsDevicePropertyTester_generated_h +#error "ShooterTestsDevicePropertyTester.generated.h already included, missing '#pragma once' in ShooterTestsDevicePropertyTester.h" +#endif +#define SHOOTERTESTSRUNTIME_ShooterTestsDevicePropertyTester_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnEndOverlap); \ + DECLARE_FUNCTION(execOnOverlapBegin); \ + DECLARE_FUNCTION(execRemoveDeviceProperties); \ + DECLARE_FUNCTION(execApplyDeviceProperties); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAShooterTestsDevicePropertyTester(); \ + friend struct Z_Construct_UClass_AShooterTestsDevicePropertyTester_Statics; \ +public: \ + DECLARE_CLASS(AShooterTestsDevicePropertyTester, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ShooterTestsRuntime"), NO_API) \ + DECLARE_SERIALIZER(AShooterTestsDevicePropertyTester) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AShooterTestsDevicePropertyTester(AShooterTestsDevicePropertyTester&&); \ + AShooterTestsDevicePropertyTester(const AShooterTestsDevicePropertyTester&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AShooterTestsDevicePropertyTester); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AShooterTestsDevicePropertyTester); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(AShooterTestsDevicePropertyTester) \ + NO_API virtual ~AShooterTestsDevicePropertyTester(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> SHOOTERTESTSRUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_ShooterTests_Source_ShooterTestsRuntime_Private_ShooterTestsDevicePropertyTester_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp new file mode 100644 index 00000000..9dcf88e0 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeShooterTestsRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ShooterTestsRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ShooterTestsRuntime() + { + if (!Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ShooterTestsRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xE630C27B, + 0xBBAE1ADB, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ShooterTestsRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ShooterTestsRuntime(Z_Construct_UPackage__Script_ShooterTestsRuntime, TEXT("/Script/ShooterTestsRuntime"), Z_Registration_Info_UPackage__Script_ShooterTestsRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE630C27B, 0xBBAE1ADB)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/Timestamp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/Timestamp new file mode 100644 index 00000000..996db411 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealGame/Inc/ShooterTestsRuntime/UHT/Timestamp @@ -0,0 +1 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Source\ShooterTestsRuntime\Private\ShooterTestsDevicePropertyTester.h diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Default.rc2.res.rsp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Default.rc2.res.rsp new file mode 100644 index 00000000..1bc311a0 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-ShooterTestsRuntime.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Definitions.ShooterTestsRuntime.h b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Definitions.ShooterTestsRuntime.h new file mode 100644 index 00000000..21553f1e --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Definitions.ShooterTestsRuntime.h @@ -0,0 +1,58 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for ShooterTestsRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef SHOOTERTESTSRUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "ShooterTestsRuntime" +#define UE_PLUGIN_NAME "ShooterTests" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define ENHANCEDINPUT_API DLLIMPORT +#define CQTEST_API DLLIMPORT +#define CQTESTENHANCEDINPUT_API DLLIMPORT +#define SHOOTERTESTSRUNTIME_API DLLEXPORT +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 1 +#define WITH_HTTPSERVER_LISTENERS 1 +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define LYRAGAME_API DLLIMPORT +#define GAMEPLAYABILITIES_API DLLIMPORT +#define DATAREGISTRY_API DLLIMPORT +#define AIMODULE_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define REPLICATIONGRAPH_API DLLIMPORT +#define GAMEFEATURES_API DLLIMPORT +#define SIGNIFICANCEMANAGER_API DLLIMPORT +#define HOTFIX_API DLLIMPORT +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define INSTALLBUNDLEMANAGER_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLIMPORT +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API DLLIMPORT +#define NIAGARACORE_API DLLIMPORT +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API DLLIMPORT +#define NIAGARASHADER_API DLLIMPORT +#define NIAGARAVERTEXFACTORIES_API DLLIMPORT +#define ASYNCMIXIN_API DLLIMPORT +#define CONTROLFLOWS_API DLLIMPORT diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/LiveCodingInfo.json b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/LiveCodingInfo.json new file mode 100644 index 00000000..a0e3cfd7 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/LiveCodingInfo.json @@ -0,0 +1,18 @@ +{ + "RemapUnityFiles": + { + "Module.ShooterTestsRuntime.cpp.obj": [ + "ShooterTestsDevicePropertyTester.gen.cpp.obj", + "ShooterTestsRuntime.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "ShooterTestsActorAnimationTests.cpp.obj", + "ShooterTestsActorNetworkTests.cpp.obj", + "ShooterTestsDevicePropertyTester.cpp.obj", + "ShooterTestsMapTests.cpp.obj", + "ShooterTestsRuntimeModule.cpp.obj", + "ShooterTestsActorTestHelper.cpp.obj", + "ShooterTestsAnimationTestHelper.cpp.obj", + "ShooterTestsInputTestHelper.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp new file mode 100644 index 00000000..3eadebbc --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp @@ -0,0 +1,12 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsDevicePropertyTester.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/UnrealEditor/Inc/ShooterTestsRuntime/UHT/ShooterTestsRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/ShooterTestsActorAnimationTests.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/ShooterTestsActorNetworkTests.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/ShooterTestsDevicePropertyTester.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/ShooterTestsMapTests.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/ShooterTestsRuntimeModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/Utilities/ShooterTestsActorTestHelper.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/Utilities/ShooterTestsAnimationTestHelper.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/ShooterTests/Source/ShooterTestsRuntime/Private/Utilities/ShooterTestsInputTestHelper.cpp" diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp.obj.rsp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp.obj.rsp new file mode 100644 index 00000000..38d71b52 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/Module.ShooterTestsRuntime.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Definitions.ShooterTestsRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\ShooterTestsRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/PerModuleInline.gen.cpp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/ShooterTestsRuntime.Shared.rsp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/ShooterTestsRuntime.Shared.rsp new file mode 100644 index 00000000..6fbfe972 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/ShooterTestsRuntime.Shared.rsp @@ -0,0 +1,367 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Source\ShooterTestsRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CQTest\UHT" +/I "Developer\CQTest\Public" +/I "..\Plugins\Tests\CQTestEnhancedInput\Source" +/I "..\Plugins\Tests\CQTestEnhancedInput\Source\CQTestEnhancedInput\Public" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\UnrealEditor\Inc\ShooterTestsRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Source" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealEditor\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealEditor\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealEditor\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealEditor\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealEditor\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.dll.rsp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.dll.rsp new file mode 100644 index 00000000..7ef11c33 --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.dll.rsp @@ -0,0 +1,83 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Plugins\EnhancedInput\Intermediate\Build\Win64\x64\UnrealEditor\Development\EnhancedInput\UnrealEditor-EnhancedInput.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CQTest\UnrealEditor-CQTest.lib" +"..\Plugins\Tests\CQTestEnhancedInput\Intermediate\Build\Win64\x64\UnrealEditor\Development\CQTestEnhancedInput\UnrealEditor-CQTestEnhancedInput.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\EngineSettings\UnrealEditor-EngineSettings.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\LevelEditor\UnrealEditor-LevelEditor.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UnrealEd\UnrealEditor-UnrealEd.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\UnrealEditor-LyraGame.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilities\UnrealEditor-GameplayAbilities.lib" +"..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplay\UnrealEditor-ModularGameplay.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor-ShooterTestsRuntime.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Binaries\Win64\UnrealEditor-ShooterTestsRuntime.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.lib.rsp b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.lib.rsp new file mode 100644 index 00000000..a2da644d --- /dev/null +++ b/Plugins/GameFeatures/ShooterTests/Intermediate/Build/Win64/x64/UnrealEditor/Development/ShooterTestsRuntime/UnrealEditor-ShooterTestsRuntime.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-ShooterTestsRuntime.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Module.ShooterTestsRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\ShooterTests\Intermediate\Build\Win64\x64\UnrealEditor\Development\ShooterTestsRuntime\UnrealEditor-ShooterTestsRuntime.lib" \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp new file mode 100644 index 00000000..72732063 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp @@ -0,0 +1,133 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Public/LyraCameraMode_TopDownArenaCamera.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode_TopDownArenaCamera() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class ULyraCameraMode_TopDownArenaCamera +void ULyraCameraMode_TopDownArenaCamera::StaticRegisterNativesULyraCameraMode_TopDownArenaCamera() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode_TopDownArenaCamera); +UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_NoRegister() +{ + return ULyraCameraMode_TopDownArenaCamera::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode_TopDownArenaCamera\n *\n *\x09""A basic third person camera mode that looks down at a fixed arena.\n */" }, +#endif + { "IncludePath", "LyraCameraMode_TopDownArenaCamera.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode_TopDownArenaCamera\n\n A basic third person camera mode that looks down at a fixed arena." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArenaWidth_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArenaHeight_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPivotRotation_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundsSizeToDistance_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ArenaWidth; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ArenaHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultPivotRotation; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundsSizeToDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaWidth = { "ArenaWidth", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, ArenaWidth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArenaWidth_MetaData), NewProp_ArenaWidth_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaHeight = { "ArenaHeight", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, ArenaHeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArenaHeight_MetaData), NewProp_ArenaHeight_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_DefaultPivotRotation = { "DefaultPivotRotation", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, DefaultPivotRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPivotRotation_MetaData), NewProp_DefaultPivotRotation_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_BoundsSizeToDistance = { "BoundsSizeToDistance", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, BoundsSizeToDistance), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundsSizeToDistance_MetaData), NewProp_BoundsSizeToDistance_MetaData) }; // 1495033350 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_DefaultPivotRotation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_BoundsSizeToDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCameraMode, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::ClassParams = { + &ULyraCameraMode_TopDownArenaCamera::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers), + 0, + 0x000000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return ULyraCameraMode_TopDownArenaCamera::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode_TopDownArenaCamera); +ULyraCameraMode_TopDownArenaCamera::~ULyraCameraMode_TopDownArenaCamera() {} +// End Class ULyraCameraMode_TopDownArenaCamera + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera, ULyraCameraMode_TopDownArenaCamera::StaticClass, TEXT("ULyraCameraMode_TopDownArenaCamera"), &Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode_TopDownArenaCamera), 1824810894U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_2906074281(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h new file mode 100644 index 00000000..719bdd6f --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraCameraMode_TopDownArenaCamera.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_LyraCameraMode_TopDownArenaCamera_generated_h +#error "LyraCameraMode_TopDownArenaCamera.generated.h already included, missing '#pragma once' in LyraCameraMode_TopDownArenaCamera.h" +#endif +#define TOPDOWNARENARUNTIME_LyraCameraMode_TopDownArenaCamera_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode_TopDownArenaCamera(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode_TopDownArenaCamera, ULyraCameraMode, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode_TopDownArenaCamera) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode_TopDownArenaCamera(ULyraCameraMode_TopDownArenaCamera&&); \ + ULyraCameraMode_TopDownArenaCamera(const ULyraCameraMode_TopDownArenaCamera&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode_TopDownArenaCamera); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode_TopDownArenaCamera); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode_TopDownArenaCamera) \ + NO_API virtual ~ULyraCameraMode_TopDownArenaCamera(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/Timestamp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/Timestamp new file mode 100644 index 00000000..78fdb2ed --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Public\LyraCameraMode_TopDownArenaCamera.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaMovementComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaAttributeSet.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaPickupUIData.h diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp new file mode 100644 index 00000000..ca547bce --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp @@ -0,0 +1,367 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaAttributeSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaAttributeSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaAttributeSet(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaAttributeSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombCapacity +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombCapacity", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombCapacity) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombCapacity(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombCapacity + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombRange +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombRange_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombRange_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombRange", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::TopDownArenaAttributeSet_eventOnRep_BombRange_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::TopDownArenaAttributeSet_eventOnRep_BombRange_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombRange) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombRange(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombRange + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombsRemaining +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombsRemaining", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombsRemaining) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombsRemaining(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombsRemaining + +// Begin Class UTopDownArenaAttributeSet Function OnRep_MovementSpeed +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_MovementSpeed", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_MovementSpeed) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MovementSpeed(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_MovementSpeed + +// Begin Class UTopDownArenaAttributeSet +void UTopDownArenaAttributeSet::StaticRegisterNativesUTopDownArenaAttributeSet() +{ + UClass* Class = UTopDownArenaAttributeSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_BombCapacity", &UTopDownArenaAttributeSet::execOnRep_BombCapacity }, + { "OnRep_BombRange", &UTopDownArenaAttributeSet::execOnRep_BombRange }, + { "OnRep_BombsRemaining", &UTopDownArenaAttributeSet::execOnRep_BombsRemaining }, + { "OnRep_MovementSpeed", &UTopDownArenaAttributeSet::execOnRep_MovementSpeed }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaAttributeSet); +UClass* Z_Construct_UClass_UTopDownArenaAttributeSet_NoRegister() +{ + return UTopDownArenaAttributeSet::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaAttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UTopDownArenaAttributeSet\n *\n *\x09""Class that defines attributes specific to the top-down arena gameplay mode.\n */" }, +#endif + { "IncludePath", "TopDownArenaAttributeSet.h" }, + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UTopDownArenaAttributeSet\n\n Class that defines attributes specific to the top-down arena gameplay mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombsRemaining_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The number of bombs remaining\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of bombs remaining" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombCapacity_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The maximum number of bombs that can be placed at once\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of bombs that can be placed at once" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombRange_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The range/radius of bomb blasts\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The range/radius of bomb blasts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MovementSpeed_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The range/radius of bomb blasts\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The range/radius of bomb blasts" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_BombsRemaining; + static const UECodeGen_Private::FStructPropertyParams NewProp_BombCapacity; + static const UECodeGen_Private::FStructPropertyParams NewProp_BombRange; + static const UECodeGen_Private::FStructPropertyParams NewProp_MovementSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity, "OnRep_BombCapacity" }, // 858498114 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange, "OnRep_BombRange" }, // 644365210 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining, "OnRep_BombsRemaining" }, // 220748789 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed, "OnRep_MovementSpeed" }, // 1819663788 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombsRemaining = { "BombsRemaining", "OnRep_BombsRemaining", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombsRemaining), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombsRemaining_MetaData), NewProp_BombsRemaining_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombCapacity = { "BombCapacity", "OnRep_BombCapacity", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombCapacity), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombCapacity_MetaData), NewProp_BombCapacity_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombRange = { "BombRange", "OnRep_BombRange", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombRange), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombRange_MetaData), NewProp_BombRange_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_MovementSpeed = { "MovementSpeed", "OnRep_MovementSpeed", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, MovementSpeed), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MovementSpeed_MetaData), NewProp_MovementSpeed_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombsRemaining, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombCapacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_MovementSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::ClassParams = { + &UTopDownArenaAttributeSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers), + 0, + 0x002000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaAttributeSet() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton, Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaAttributeSet::StaticClass(); +} +void UTopDownArenaAttributeSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_BombsRemaining(TEXT("BombsRemaining")); + static const FName Name_BombCapacity(TEXT("BombCapacity")); + static const FName Name_BombRange(TEXT("BombRange")); + static const FName Name_MovementSpeed(TEXT("MovementSpeed")); + const bool bIsValid = true + && Name_BombsRemaining == ClassReps[(int32)ENetFields_Private::BombsRemaining].Property->GetFName() + && Name_BombCapacity == ClassReps[(int32)ENetFields_Private::BombCapacity].Property->GetFName() + && Name_BombRange == ClassReps[(int32)ENetFields_Private::BombRange].Property->GetFName() + && Name_MovementSpeed == ClassReps[(int32)ENetFields_Private::MovementSpeed].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in UTopDownArenaAttributeSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaAttributeSet); +UTopDownArenaAttributeSet::~UTopDownArenaAttributeSet() {} +// End Class UTopDownArenaAttributeSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaAttributeSet, UTopDownArenaAttributeSet::StaticClass, TEXT("UTopDownArenaAttributeSet"), &Z_Registration_Info_UClass_UTopDownArenaAttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaAttributeSet), 182173748U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_752859497(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h new file mode 100644 index 00000000..34f918dc --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaAttributeSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef TOPDOWNARENARUNTIME_TopDownArenaAttributeSet_generated_h +#error "TopDownArenaAttributeSet.generated.h already included, missing '#pragma once' in TopDownArenaAttributeSet.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaAttributeSet_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MovementSpeed); \ + DECLARE_FUNCTION(execOnRep_BombRange); \ + DECLARE_FUNCTION(execOnRep_BombCapacity); \ + DECLARE_FUNCTION(execOnRep_BombsRemaining); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaAttributeSet(); \ + friend struct Z_Construct_UClass_UTopDownArenaAttributeSet_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaAttributeSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaAttributeSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + BombsRemaining=NETFIELD_REP_START, \ + BombCapacity, \ + BombRange, \ + MovementSpeed, \ + NETFIELD_REP_END=MovementSpeed }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(UTopDownArenaAttributeSet) \ +public: + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaAttributeSet(UTopDownArenaAttributeSet&&); \ + UTopDownArenaAttributeSet(const UTopDownArenaAttributeSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaAttributeSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaAttributeSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UTopDownArenaAttributeSet) \ + NO_API virtual ~UTopDownArenaAttributeSet(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp new file mode 100644 index 00000000..907860fa --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaMovementComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaMovementComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaMovementComponent(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaMovementComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaMovementComponent +void UTopDownArenaMovementComponent::StaticRegisterNativesUTopDownArenaMovementComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaMovementComponent); +UClass* Z_Construct_UClass_UTopDownArenaMovementComponent_NoRegister() +{ + return UTopDownArenaMovementComponent::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaMovementComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "TopDownArenaMovementComponent.h" }, + { "ModuleRelativePath", "Private/TopDownArenaMovementComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCharacterMovementComponent, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::ClassParams = { + &UTopDownArenaMovementComponent::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaMovementComponent() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton, Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaMovementComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaMovementComponent); +UTopDownArenaMovementComponent::~UTopDownArenaMovementComponent() {} +// End Class UTopDownArenaMovementComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaMovementComponent, UTopDownArenaMovementComponent::StaticClass, TEXT("UTopDownArenaMovementComponent"), &Z_Registration_Info_UClass_UTopDownArenaMovementComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaMovementComponent), 4014665108U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_2220282888(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h new file mode 100644 index 00000000..aaa1d3d5 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaMovementComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_TopDownArenaMovementComponent_generated_h +#error "TopDownArenaMovementComponent.generated.h already included, missing '#pragma once' in TopDownArenaMovementComponent.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaMovementComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaMovementComponent(); \ + friend struct Z_Construct_UClass_UTopDownArenaMovementComponent_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaMovementComponent, ULyraCharacterMovementComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaMovementComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaMovementComponent(UTopDownArenaMovementComponent&&); \ + UTopDownArenaMovementComponent(const UTopDownArenaMovementComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaMovementComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaMovementComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UTopDownArenaMovementComponent) \ + NO_API virtual ~UTopDownArenaMovementComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_11_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp new file mode 100644 index 00000000..eecc6068 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp @@ -0,0 +1,173 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaPickupUIData.h" +#include "GameplayAbilities/Public/GameplayEffect.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaPickupUIData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTexture2D_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectUIData(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaPickupUIData(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaPickupUIData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaPickupUIData +void UTopDownArenaPickupUIData::StaticRegisterNativesUTopDownArenaPickupUIData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaPickupUIData); +UClass* Z_Construct_UClass_UTopDownArenaPickupUIData_NoRegister() +{ + return UTopDownArenaPickupUIData::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaPickupUIData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Icon and display name for pickups in the top-down arena game\n" }, +#endif + { "IncludePath", "TopDownArenaPickupUIData.h" }, + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Icon and display name for pickups in the top-down arena game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Description_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The full description of the pickup\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, + { "MultiLine", "true" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The full description of the pickup" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShortDescriptionForToast_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The short description of the pickup (displayed by the player name when picked up)\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, + { "MultiLine", "true" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The short description of the pickup (displayed by the player name when picked up)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IconTexture_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon material used to show the pickup in the world\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon material used to show the pickup in the world" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickupVFX_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The pickup VFX override\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pickup VFX override" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickupSFX_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The pickup SFX override (if not set, a default will play)\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pickup SFX override (if not set, a default will play)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Description; + static const UECodeGen_Private::FTextPropertyParams NewProp_ShortDescriptionForToast; + static const UECodeGen_Private::FObjectPropertyParams NewProp_IconTexture; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickupVFX; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickupSFX; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_Description = { "Description", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, Description), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Description_MetaData), NewProp_Description_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_ShortDescriptionForToast = { "ShortDescriptionForToast", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, ShortDescriptionForToast), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShortDescriptionForToast_MetaData), NewProp_ShortDescriptionForToast_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_IconTexture = { "IconTexture", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, IconTexture), Z_Construct_UClass_UTexture2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IconTexture_MetaData), NewProp_IconTexture_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupVFX = { "PickupVFX", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, PickupVFX), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickupVFX_MetaData), NewProp_PickupVFX_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupSFX = { "PickupSFX", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, PickupSFX), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickupSFX_MetaData), NewProp_PickupSFX_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_ShortDescriptionForToast, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_IconTexture, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupVFX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupSFX, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectUIData, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::ClassParams = { + &UTopDownArenaPickupUIData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers), + 0, + 0x002130A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaPickupUIData() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton, Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaPickupUIData::StaticClass(); +} +UTopDownArenaPickupUIData::UTopDownArenaPickupUIData() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaPickupUIData); +UTopDownArenaPickupUIData::~UTopDownArenaPickupUIData() {} +// End Class UTopDownArenaPickupUIData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaPickupUIData, UTopDownArenaPickupUIData::StaticClass, TEXT("UTopDownArenaPickupUIData"), &Z_Registration_Info_UClass_UTopDownArenaPickupUIData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaPickupUIData), 29565949U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_3471689477(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h new file mode 100644 index 00000000..8d58ba38 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaPickupUIData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_TopDownArenaPickupUIData_generated_h +#error "TopDownArenaPickupUIData.generated.h already included, missing '#pragma once' in TopDownArenaPickupUIData.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaPickupUIData_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaPickupUIData(); \ + friend struct Z_Construct_UClass_UTopDownArenaPickupUIData_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaPickupUIData, UGameplayEffectUIData, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaPickupUIData) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UTopDownArenaPickupUIData(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaPickupUIData(UTopDownArenaPickupUIData&&); \ + UTopDownArenaPickupUIData(const UTopDownArenaPickupUIData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaPickupUIData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaPickupUIData); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UTopDownArenaPickupUIData) \ + NO_API virtual ~UTopDownArenaPickupUIData(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp new file mode 100644 index 00000000..0a3ba6e7 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_TopDownArenaRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime() + { + if (!Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/TopDownArenaRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x81FC9E58, + 0xFB32F9F8, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_TopDownArenaRuntime(Z_Construct_UPackage__Script_TopDownArenaRuntime, TEXT("/Script/TopDownArenaRuntime"), Z_Registration_Info_UPackage__Script_TopDownArenaRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x81FC9E58, 0xFB32F9F8)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp new file mode 100644 index 00000000..72732063 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.gen.cpp @@ -0,0 +1,133 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Public/LyraCameraMode_TopDownArenaCamera.h" +#include "Runtime/Engine/Classes/Curves/CurveFloat.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraCameraMode_TopDownArenaCamera() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FRotator(); +ENGINE_API UScriptStruct* Z_Construct_UScriptStruct_FRuntimeFloatCurve(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCameraMode(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class ULyraCameraMode_TopDownArenaCamera +void ULyraCameraMode_TopDownArenaCamera::StaticRegisterNativesULyraCameraMode_TopDownArenaCamera() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(ULyraCameraMode_TopDownArenaCamera); +UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_NoRegister() +{ + return ULyraCameraMode_TopDownArenaCamera::StaticClass(); +} +struct Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * ULyraCameraMode_TopDownArenaCamera\n *\n *\x09""A basic third person camera mode that looks down at a fixed arena.\n */" }, +#endif + { "IncludePath", "LyraCameraMode_TopDownArenaCamera.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "ULyraCameraMode_TopDownArenaCamera\n\n A basic third person camera mode that looks down at a fixed arena." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArenaWidth_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ArenaHeight_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DefaultPivotRotation_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BoundsSizeToDistance_MetaData[] = { + { "Category", "Third Person" }, + { "ModuleRelativePath", "Public/LyraCameraMode_TopDownArenaCamera.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_ArenaWidth; + static const UECodeGen_Private::FFloatPropertyParams NewProp_ArenaHeight; + static const UECodeGen_Private::FStructPropertyParams NewProp_DefaultPivotRotation; + static const UECodeGen_Private::FStructPropertyParams NewProp_BoundsSizeToDistance; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaWidth = { "ArenaWidth", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, ArenaWidth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArenaWidth_MetaData), NewProp_ArenaWidth_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaHeight = { "ArenaHeight", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, ArenaHeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ArenaHeight_MetaData), NewProp_ArenaHeight_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_DefaultPivotRotation = { "DefaultPivotRotation", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, DefaultPivotRotation), Z_Construct_UScriptStruct_FRotator, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DefaultPivotRotation_MetaData), NewProp_DefaultPivotRotation_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_BoundsSizeToDistance = { "BoundsSizeToDistance", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(ULyraCameraMode_TopDownArenaCamera, BoundsSizeToDistance), Z_Construct_UScriptStruct_FRuntimeFloatCurve, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BoundsSizeToDistance_MetaData), NewProp_BoundsSizeToDistance_MetaData) }; // 1495033350 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_ArenaHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_DefaultPivotRotation, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::NewProp_BoundsSizeToDistance, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCameraMode, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::ClassParams = { + &ULyraCameraMode_TopDownArenaCamera::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::PropPointers), + 0, + 0x000000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::Class_MetaDataParams), Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera() +{ + if (!Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton, Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics::ClassParams); + } + return Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return ULyraCameraMode_TopDownArenaCamera::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(ULyraCameraMode_TopDownArenaCamera); +ULyraCameraMode_TopDownArenaCamera::~ULyraCameraMode_TopDownArenaCamera() {} +// End Class ULyraCameraMode_TopDownArenaCamera + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera, ULyraCameraMode_TopDownArenaCamera::StaticClass, TEXT("ULyraCameraMode_TopDownArenaCamera"), &Z_Registration_Info_UClass_ULyraCameraMode_TopDownArenaCamera, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(ULyraCameraMode_TopDownArenaCamera), 1824810894U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_2906074281(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h new file mode 100644 index 00000000..719bdd6f --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/LyraCameraMode_TopDownArenaCamera.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "LyraCameraMode_TopDownArenaCamera.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_LyraCameraMode_TopDownArenaCamera_generated_h +#error "LyraCameraMode_TopDownArenaCamera.generated.h already included, missing '#pragma once' in LyraCameraMode_TopDownArenaCamera.h" +#endif +#define TOPDOWNARENARUNTIME_LyraCameraMode_TopDownArenaCamera_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesULyraCameraMode_TopDownArenaCamera(); \ + friend struct Z_Construct_UClass_ULyraCameraMode_TopDownArenaCamera_Statics; \ +public: \ + DECLARE_CLASS(ULyraCameraMode_TopDownArenaCamera, ULyraCameraMode, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(ULyraCameraMode_TopDownArenaCamera) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + ULyraCameraMode_TopDownArenaCamera(ULyraCameraMode_TopDownArenaCamera&&); \ + ULyraCameraMode_TopDownArenaCamera(const ULyraCameraMode_TopDownArenaCamera&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ULyraCameraMode_TopDownArenaCamera); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ULyraCameraMode_TopDownArenaCamera); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(ULyraCameraMode_TopDownArenaCamera) \ + NO_API virtual ~ULyraCameraMode_TopDownArenaCamera(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Public_LyraCameraMode_TopDownArenaCamera_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/Timestamp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/Timestamp new file mode 100644 index 00000000..cb56a5fe --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Public\LyraCameraMode_TopDownArenaCamera.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaAttributeSet.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaMovementComponent.h +E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private\TopDownArenaPickupUIData.h diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp new file mode 100644 index 00000000..ca547bce --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.gen.cpp @@ -0,0 +1,367 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaAttributeSet.h" +#include "GameplayAbilities/Public/AttributeSet.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaAttributeSet() {} + +// Begin Cross Module References +GAMEPLAYABILITIES_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayAttributeData(); +LYRAGAME_API UClass* Z_Construct_UClass_ULyraAttributeSet(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaAttributeSet(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaAttributeSet_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombCapacity +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombCapacity", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::TopDownArenaAttributeSet_eventOnRep_BombCapacity_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombCapacity) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombCapacity(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombCapacity + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombRange +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombRange_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombRange_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombRange", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::TopDownArenaAttributeSet_eventOnRep_BombRange_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::TopDownArenaAttributeSet_eventOnRep_BombRange_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombRange) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombRange(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombRange + +// Begin Class UTopDownArenaAttributeSet Function OnRep_BombsRemaining +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_BombsRemaining", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::TopDownArenaAttributeSet_eventOnRep_BombsRemaining_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_BombsRemaining) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_BombsRemaining(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_BombsRemaining + +// Begin Class UTopDownArenaAttributeSet Function OnRep_MovementSpeed +struct Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics +{ + struct TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms + { + FGameplayAttributeData OldValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OldValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_OldValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::NewProp_OldValue = { "OldValue", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms, OldValue), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OldValue_MetaData), NewProp_OldValue_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::NewProp_OldValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UTopDownArenaAttributeSet, nullptr, "OnRep_MovementSpeed", nullptr, nullptr, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::PropPointers), sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::Function_MetaDataParams), Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::TopDownArenaAttributeSet_eventOnRep_MovementSpeed_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UTopDownArenaAttributeSet::execOnRep_MovementSpeed) +{ + P_GET_STRUCT_REF(FGameplayAttributeData,Z_Param_Out_OldValue); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnRep_MovementSpeed(Z_Param_Out_OldValue); + P_NATIVE_END; +} +// End Class UTopDownArenaAttributeSet Function OnRep_MovementSpeed + +// Begin Class UTopDownArenaAttributeSet +void UTopDownArenaAttributeSet::StaticRegisterNativesUTopDownArenaAttributeSet() +{ + UClass* Class = UTopDownArenaAttributeSet::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "OnRep_BombCapacity", &UTopDownArenaAttributeSet::execOnRep_BombCapacity }, + { "OnRep_BombRange", &UTopDownArenaAttributeSet::execOnRep_BombRange }, + { "OnRep_BombsRemaining", &UTopDownArenaAttributeSet::execOnRep_BombsRemaining }, + { "OnRep_MovementSpeed", &UTopDownArenaAttributeSet::execOnRep_MovementSpeed }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaAttributeSet); +UClass* Z_Construct_UClass_UTopDownArenaAttributeSet_NoRegister() +{ + return UTopDownArenaAttributeSet::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaAttributeSet_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UTopDownArenaAttributeSet\n *\n *\x09""Class that defines attributes specific to the top-down arena gameplay mode.\n */" }, +#endif + { "IncludePath", "TopDownArenaAttributeSet.h" }, + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UTopDownArenaAttributeSet\n\n Class that defines attributes specific to the top-down arena gameplay mode." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombsRemaining_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The number of bombs remaining\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The number of bombs remaining" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombCapacity_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The maximum number of bombs that can be placed at once\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The maximum number of bombs that can be placed at once" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BombRange_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The range/radius of bomb blasts\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The range/radius of bomb blasts" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MovementSpeed_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "Category", "TopDownArenaGame" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The range/radius of bomb blasts\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaAttributeSet.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The range/radius of bomb blasts" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_BombsRemaining; + static const UECodeGen_Private::FStructPropertyParams NewProp_BombCapacity; + static const UECodeGen_Private::FStructPropertyParams NewProp_BombRange; + static const UECodeGen_Private::FStructPropertyParams NewProp_MovementSpeed; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombCapacity, "OnRep_BombCapacity" }, // 858498114 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombRange, "OnRep_BombRange" }, // 644365210 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_BombsRemaining, "OnRep_BombsRemaining" }, // 220748789 + { &Z_Construct_UFunction_UTopDownArenaAttributeSet_OnRep_MovementSpeed, "OnRep_MovementSpeed" }, // 1819663788 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombsRemaining = { "BombsRemaining", "OnRep_BombsRemaining", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombsRemaining), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombsRemaining_MetaData), NewProp_BombsRemaining_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombCapacity = { "BombCapacity", "OnRep_BombCapacity", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombCapacity), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombCapacity_MetaData), NewProp_BombCapacity_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombRange = { "BombRange", "OnRep_BombRange", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, BombRange), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BombRange_MetaData), NewProp_BombRange_MetaData) }; // 675369593 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_MovementSpeed = { "MovementSpeed", "OnRep_MovementSpeed", (EPropertyFlags)0x0040000100000034, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaAttributeSet, MovementSpeed), Z_Construct_UScriptStruct_FGameplayAttributeData, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MovementSpeed_MetaData), NewProp_MovementSpeed_MetaData) }; // 675369593 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombsRemaining, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombCapacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_BombRange, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::NewProp_MovementSpeed, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraAttributeSet, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::ClassParams = { + &UTopDownArenaAttributeSet::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::PropPointers), + 0, + 0x002000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaAttributeSet() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton, Z_Construct_UClass_UTopDownArenaAttributeSet_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaAttributeSet.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaAttributeSet::StaticClass(); +} +void UTopDownArenaAttributeSet::ValidateGeneratedRepEnums(const TArray& ClassReps) const +{ + static const FName Name_BombsRemaining(TEXT("BombsRemaining")); + static const FName Name_BombCapacity(TEXT("BombCapacity")); + static const FName Name_BombRange(TEXT("BombRange")); + static const FName Name_MovementSpeed(TEXT("MovementSpeed")); + const bool bIsValid = true + && Name_BombsRemaining == ClassReps[(int32)ENetFields_Private::BombsRemaining].Property->GetFName() + && Name_BombCapacity == ClassReps[(int32)ENetFields_Private::BombCapacity].Property->GetFName() + && Name_BombRange == ClassReps[(int32)ENetFields_Private::BombRange].Property->GetFName() + && Name_MovementSpeed == ClassReps[(int32)ENetFields_Private::MovementSpeed].Property->GetFName(); + checkf(bIsValid, TEXT("UHT Generated Rep Indices do not match runtime populated Rep Indices for properties in UTopDownArenaAttributeSet")); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaAttributeSet); +UTopDownArenaAttributeSet::~UTopDownArenaAttributeSet() {} +// End Class UTopDownArenaAttributeSet + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaAttributeSet, UTopDownArenaAttributeSet::StaticClass, TEXT("UTopDownArenaAttributeSet"), &Z_Registration_Info_UClass_UTopDownArenaAttributeSet, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaAttributeSet), 182173748U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_752859497(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h new file mode 100644 index 00000000..34f918dc --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaAttributeSet.generated.h @@ -0,0 +1,77 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaAttributeSet.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" +#include "Net/Core/PushModel/PushModelMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayAttributeData; +#ifdef TOPDOWNARENARUNTIME_TopDownArenaAttributeSet_generated_h +#error "TopDownArenaAttributeSet.generated.h already included, missing '#pragma once' in TopDownArenaAttributeSet.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaAttributeSet_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execOnRep_MovementSpeed); \ + DECLARE_FUNCTION(execOnRep_BombRange); \ + DECLARE_FUNCTION(execOnRep_BombCapacity); \ + DECLARE_FUNCTION(execOnRep_BombsRemaining); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaAttributeSet(); \ + friend struct Z_Construct_UClass_UTopDownArenaAttributeSet_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaAttributeSet, ULyraAttributeSet, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaAttributeSet) \ + NO_API void GetLifetimeReplicatedProps(TArray& OutLifetimeProps) const override; \ + enum class ENetFields_Private : uint16 \ + { \ + NETFIELD_REP_START=(uint16)((int32)Super::ENetFields_Private::NETFIELD_REP_END + (int32)1), \ + BombsRemaining=NETFIELD_REP_START, \ + BombCapacity, \ + BombRange, \ + MovementSpeed, \ + NETFIELD_REP_END=MovementSpeed }; \ + NO_API virtual void ValidateGeneratedRepEnums(const TArray& ClassReps) const override; \ +private: \ + REPLICATED_BASE_CLASS(UTopDownArenaAttributeSet) \ +public: + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaAttributeSet(UTopDownArenaAttributeSet&&); \ + UTopDownArenaAttributeSet(const UTopDownArenaAttributeSet&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaAttributeSet); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaAttributeSet); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UTopDownArenaAttributeSet) \ + NO_API virtual ~UTopDownArenaAttributeSet(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaAttributeSet_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp new file mode 100644 index 00000000..907860fa --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaMovementComponent.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaMovementComponent() {} + +// Begin Cross Module References +LYRAGAME_API UClass* Z_Construct_UClass_ULyraCharacterMovementComponent(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaMovementComponent(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaMovementComponent_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaMovementComponent +void UTopDownArenaMovementComponent::StaticRegisterNativesUTopDownArenaMovementComponent() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaMovementComponent); +UClass* Z_Construct_UClass_UTopDownArenaMovementComponent_NoRegister() +{ + return UTopDownArenaMovementComponent::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaMovementComponent_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "TopDownArenaMovementComponent.h" }, + { "ModuleRelativePath", "Private/TopDownArenaMovementComponent.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ULyraCharacterMovementComponent, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::ClassParams = { + &UTopDownArenaMovementComponent::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaMovementComponent() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton, Z_Construct_UClass_UTopDownArenaMovementComponent_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaMovementComponent.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaMovementComponent::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaMovementComponent); +UTopDownArenaMovementComponent::~UTopDownArenaMovementComponent() {} +// End Class UTopDownArenaMovementComponent + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaMovementComponent, UTopDownArenaMovementComponent::StaticClass, TEXT("UTopDownArenaMovementComponent"), &Z_Registration_Info_UClass_UTopDownArenaMovementComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaMovementComponent), 4014665108U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_2220282888(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h new file mode 100644 index 00000000..aaa1d3d5 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaMovementComponent.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaMovementComponent.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_TopDownArenaMovementComponent_generated_h +#error "TopDownArenaMovementComponent.generated.h already included, missing '#pragma once' in TopDownArenaMovementComponent.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaMovementComponent_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaMovementComponent(); \ + friend struct Z_Construct_UClass_UTopDownArenaMovementComponent_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaMovementComponent, ULyraCharacterMovementComponent, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaMovementComponent) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaMovementComponent(UTopDownArenaMovementComponent&&); \ + UTopDownArenaMovementComponent(const UTopDownArenaMovementComponent&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaMovementComponent); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaMovementComponent); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UTopDownArenaMovementComponent) \ + NO_API virtual ~UTopDownArenaMovementComponent(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_11_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h_14_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaMovementComponent_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp new file mode 100644 index 00000000..eecc6068 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.gen.cpp @@ -0,0 +1,173 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "TopDownArenaRuntime/Private/TopDownArenaPickupUIData.h" +#include "GameplayAbilities/Public/GameplayEffect.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaPickupUIData() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_USoundBase_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTexture2D_NoRegister(); +GAMEPLAYABILITIES_API UClass* Z_Construct_UClass_UGameplayEffectUIData(); +NIAGARA_API UClass* Z_Construct_UClass_UNiagaraSystem_NoRegister(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaPickupUIData(); +TOPDOWNARENARUNTIME_API UClass* Z_Construct_UClass_UTopDownArenaPickupUIData_NoRegister(); +UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime(); +// End Cross Module References + +// Begin Class UTopDownArenaPickupUIData +void UTopDownArenaPickupUIData::StaticRegisterNativesUTopDownArenaPickupUIData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UTopDownArenaPickupUIData); +UClass* Z_Construct_UClass_UTopDownArenaPickupUIData_NoRegister() +{ + return UTopDownArenaPickupUIData::StaticClass(); +} +struct Z_Construct_UClass_UTopDownArenaPickupUIData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Icon and display name for pickups in the top-down arena game\n" }, +#endif + { "IncludePath", "TopDownArenaPickupUIData.h" }, + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Icon and display name for pickups in the top-down arena game" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Description_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The full description of the pickup\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, + { "MultiLine", "true" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The full description of the pickup" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ShortDescriptionForToast_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The short description of the pickup (displayed by the player name when picked up)\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, + { "MultiLine", "true" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The short description of the pickup (displayed by the player name when picked up)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IconTexture_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The icon material used to show the pickup in the world\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The icon material used to show the pickup in the world" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickupVFX_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The pickup VFX override\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pickup VFX override" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PickupSFX_MetaData[] = { + { "Category", "Data" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The pickup SFX override (if not set, a default will play)\n" }, +#endif + { "ModuleRelativePath", "Private/TopDownArenaPickupUIData.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The pickup SFX override (if not set, a default will play)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_Description; + static const UECodeGen_Private::FTextPropertyParams NewProp_ShortDescriptionForToast; + static const UECodeGen_Private::FObjectPropertyParams NewProp_IconTexture; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickupVFX; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PickupSFX; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_Description = { "Description", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, Description), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Description_MetaData), NewProp_Description_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_ShortDescriptionForToast = { "ShortDescriptionForToast", nullptr, (EPropertyFlags)0x0010000000010015, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, ShortDescriptionForToast), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ShortDescriptionForToast_MetaData), NewProp_ShortDescriptionForToast_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_IconTexture = { "IconTexture", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, IconTexture), Z_Construct_UClass_UTexture2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IconTexture_MetaData), NewProp_IconTexture_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupVFX = { "PickupVFX", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, PickupVFX), Z_Construct_UClass_UNiagaraSystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickupVFX_MetaData), NewProp_PickupVFX_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupSFX = { "PickupSFX", nullptr, (EPropertyFlags)0x0114000000010015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UTopDownArenaPickupUIData, PickupSFX), Z_Construct_UClass_USoundBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PickupSFX_MetaData), NewProp_PickupSFX_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_ShortDescriptionForToast, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_IconTexture, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupVFX, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::NewProp_PickupSFX, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameplayEffectUIData, + (UObject* (*)())Z_Construct_UPackage__Script_TopDownArenaRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::ClassParams = { + &UTopDownArenaPickupUIData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::PropPointers), + 0, + 0x002130A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::Class_MetaDataParams), Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UTopDownArenaPickupUIData() +{ + if (!Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton, Z_Construct_UClass_UTopDownArenaPickupUIData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UTopDownArenaPickupUIData.OuterSingleton; +} +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass() +{ + return UTopDownArenaPickupUIData::StaticClass(); +} +UTopDownArenaPickupUIData::UTopDownArenaPickupUIData() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UTopDownArenaPickupUIData); +UTopDownArenaPickupUIData::~UTopDownArenaPickupUIData() {} +// End Class UTopDownArenaPickupUIData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UTopDownArenaPickupUIData, UTopDownArenaPickupUIData::StaticClass, TEXT("UTopDownArenaPickupUIData"), &Z_Registration_Info_UClass_UTopDownArenaPickupUIData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UTopDownArenaPickupUIData), 29565949U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_3471689477(TEXT("/Script/TopDownArenaRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h new file mode 100644 index 00000000..8d58ba38 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaPickupUIData.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "TopDownArenaPickupUIData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef TOPDOWNARENARUNTIME_TopDownArenaPickupUIData_generated_h +#error "TopDownArenaPickupUIData.generated.h already included, missing '#pragma once' in TopDownArenaPickupUIData.h" +#endif +#define TOPDOWNARENARUNTIME_TopDownArenaPickupUIData_generated_h + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUTopDownArenaPickupUIData(); \ + friend struct Z_Construct_UClass_UTopDownArenaPickupUIData_Statics; \ +public: \ + DECLARE_CLASS(UTopDownArenaPickupUIData, UGameplayEffectUIData, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/TopDownArenaRuntime"), NO_API) \ + DECLARE_SERIALIZER(UTopDownArenaPickupUIData) + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UTopDownArenaPickupUIData(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UTopDownArenaPickupUIData(UTopDownArenaPickupUIData&&); \ + UTopDownArenaPickupUIData(const UTopDownArenaPickupUIData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UTopDownArenaPickupUIData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UTopDownArenaPickupUIData); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UTopDownArenaPickupUIData) \ + NO_API virtual ~UTopDownArenaPickupUIData(); + + +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> TOPDOWNARENARUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameFeatures_TopDownArena_Source_TopDownArenaRuntime_Private_TopDownArenaPickupUIData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp new file mode 100644 index 00000000..0a3ba6e7 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeTopDownArenaRuntime_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_TopDownArenaRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_TopDownArenaRuntime() + { + if (!Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/TopDownArenaRuntime", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x81FC9E58, + 0xFB32F9F8, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_TopDownArenaRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_TopDownArenaRuntime(Z_Construct_UPackage__Script_TopDownArenaRuntime, TEXT("/Script/TopDownArenaRuntime"), Z_Registration_Info_UPackage__Script_TopDownArenaRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x81FC9E58, 0xFB32F9F8)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Default.rc2.res.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Default.rc2.res.rsp new file mode 100644 index 00000000..0cc93b75 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-TopDownArenaRuntime.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h new file mode 100644 index 00000000..93aeba37 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h @@ -0,0 +1,55 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for TopDownArenaRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef TOPDOWNARENARUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "TopDownArenaRuntime" +#define UE_PLUGIN_NAME "TopDownArena" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define GAMEPLAYABILITIES_API DLLIMPORT +#define DATAREGISTRY_API DLLIMPORT +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API DLLIMPORT +#define NIAGARACORE_API DLLIMPORT +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API DLLIMPORT +#define NIAGARASHADER_API DLLIMPORT +#define NIAGARAVERTEXFACTORIES_API DLLIMPORT +#define TOPDOWNARENARUNTIME_API DLLEXPORT +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 1 +#define WITH_HTTPSERVER_LISTENERS 1 +#define LYRAGAME_API DLLIMPORT +#define AIMODULE_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define REPLICATIONGRAPH_API DLLIMPORT +#define GAMEFEATURES_API DLLIMPORT +#define SIGNIFICANCEMANAGER_API DLLIMPORT +#define HOTFIX_API DLLIMPORT +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define INSTALLBUNDLEMANAGER_API DLLIMPORT +#define COMMONLOADINGSCREEN_API DLLIMPORT +#define ASYNCMIXIN_API DLLIMPORT +#define CONTROLFLOWS_API DLLIMPORT diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/LiveCodingInfo.json b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/LiveCodingInfo.json new file mode 100644 index 00000000..2a1b81ed --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/LiveCodingInfo.json @@ -0,0 +1,14 @@ +{ + "RemapUnityFiles": + { + "Module.TopDownArenaRuntime.cpp.obj": [ + "TopDownArenaRuntime.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "LyraCameraMode_TopDownArenaCamera.cpp.obj", + "TopDownArenaAttributeSet.cpp.obj", + "TopDownArenaMovementComponent.cpp.obj", + "TopDownArenaPickupUIData.cpp.obj", + "TopDownArenaRuntimeModule.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp new file mode 100644 index 00000000..f1f1e3e1 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp @@ -0,0 +1,8 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealEditor/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/LyraCameraMode_TopDownArenaCamera.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaAttributeSet.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaMovementComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaPickupUIData.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaRuntimeModule.cpp" diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp new file mode 100644 index 00000000..15594222 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Definitions.TopDownArenaRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\TopDownArenaRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/PerModuleInline.gen.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp new file mode 100644 index 00000000..bc00d234 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp @@ -0,0 +1,361 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealEditor\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealEditor\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\UnrealEditor\Inc\TopDownArenaRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealEditor\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealEditor\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealEditor\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealEditor\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealEditor\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealEditor\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.dll.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.dll.rsp new file mode 100644 index 00000000..664f4d55 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.dll.rsp @@ -0,0 +1,79 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +/NATVIS:"..\Plugins\FX\Niagara\Intermediate\Build\Win64\x64\UnrealEditor\Development\Niagara\Niagara.natvis" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayAbilities\UnrealEditor-GameplayAbilities.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"..\Plugins\FX\Niagara\Intermediate\Build\Win64\x64\UnrealEditor\Development\Niagara\UnrealEditor-Niagara.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraGame\UnrealEditor-LyraGame.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor-TopDownArenaRuntime.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Binaries\Win64\UnrealEditor-TopDownArenaRuntime.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.lib.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.lib.rsp new file mode 100644 index 00000000..a62dec80 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealEditor/Development/TopDownArenaRuntime/UnrealEditor-TopDownArenaRuntime.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-TopDownArenaRuntime.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealEditor\Development\TopDownArenaRuntime\UnrealEditor-TopDownArenaRuntime.lib" \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h new file mode 100644 index 00000000..fe8217ae --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Definitions.TopDownArenaRuntime.h @@ -0,0 +1,75 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for TopDownArenaRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef TOPDOWNARENARUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "TopDownArenaRuntime" +#define UE_PLUGIN_NAME "TopDownArena" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define GAMEPLAYABILITIES_API +#define GAMEPLAYTASKS_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define DATAREGISTRY_API +#define VECTORVM_SUPPORTS_EXPERIMENTAL 1 +#define VECTORVM_SUPPORTS_LEGACY 1 +#define NIAGARA_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define NIAGARACORE_API +#define VECTORVM_SUPPORTS_SERIALIZATION 0 +#define VECTORVM_DEBUG_PRINTF 0 +#define VECTORVM_API +#define NIAGARASHADER_API +#define READ_TARGET_ENABLED_PLUGINS_FROM_RECEIPT 0 +#define LOAD_PLUGINS_FOR_TARGET_PLATFORMS 0 +#define PROJECTS_API +#define NIAGARAVERTEXFACTORIES_API +#define TOPDOWNARENARUNTIME_API +#define SHIPPING_DRAW_DEBUG_ERROR 1 +#define WITH_RPC_REGISTRY 0 +#define WITH_HTTPSERVER_LISTENERS 0 +#define LYRAGAME_API +#define WITH_RECAST 1 +#define AIMODULE_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API +#define MODULARGAMEPLAY_API +#define MODULARGAMEPLAYACTORS_API +#define REPLICATIONGRAPH_API +#define GAMEFEATURES_API +#define SIGNIFICANCEMANAGER_API +#define HOTFIX_API +#define PATCH_CHECK_PLATFORM_ENVIRONMENT_DETECTION 0 +#define PATCHCHECK_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API +#define INSTALLBUNDLEMANAGER_API +#define COMMONLOADINGSCREEN_API +#define ASYNCMIXIN_API +#define CONTROLFLOWS_API +#define PROPERTYPATH_API diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp new file mode 100644 index 00000000..9b9874a3 --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp @@ -0,0 +1,7 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/UnrealGame/Inc/TopDownArenaRuntime/UHT/TopDownArenaRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/LyraCameraMode_TopDownArenaCamera.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaAttributeSet.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaMovementComponent.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaPickupUIData.cpp" +#include "E:/Projects/cross_platform/Plugins/GameFeatures/TopDownArena/Source/TopDownArenaRuntime/Private/TopDownArenaRuntimeModule.cpp" diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp new file mode 100644 index 00000000..f382850f --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/Module.TopDownArenaRuntime.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\Definitions.TopDownArenaRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\Module.TopDownArenaRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\x64\UnrealGame\Shipping\TopDownArenaRuntime\TopDownArenaRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp new file mode 100644 index 00000000..e793509c --- /dev/null +++ b/Plugins/GameFeatures/TopDownArena/Intermediate/Build/Win64/x64/UnrealGame/Shipping/TopDownArenaRuntime/TopDownArenaRuntime.Shared.rsp @@ -0,0 +1,222 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Plugins\Runtime\GameplayAbilities\Intermediate\Build\Win64\UnrealGame\Inc\GameplayAbilities\UHT" +/I "..\Plugins\Runtime\GameplayAbilities\Source" +/I "..\Plugins\Runtime\GameplayAbilities\Source\GameplayAbilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Plugins\Runtime\DataRegistry\Intermediate\Build\Win64\UnrealGame\Inc\DataRegistry\UHT" +/I "..\Plugins\Runtime\DataRegistry\Source" +/I "..\Plugins\Runtime\DataRegistry\Source\DataRegistry\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\Niagara\UHT" +/I "..\Plugins\FX\Niagara\Source" +/I "..\Plugins\FX\Niagara\Source\Niagara\Classes" +/I "..\Plugins\FX\Niagara\Source\Niagara\Public" +/I "..\Plugins\FX\Niagara\Source\Niagara\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraCore\UHT" +/I "..\Plugins\FX\Niagara\Source\NiagaraCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\VectorVM\UHT" +/I "Runtime\VectorVM\Public" +/I "..\Plugins\FX\Niagara\Intermediate\Build\Win64\UnrealGame\Inc\NiagaraShader\UHT" +/I "..\Plugins\FX\Niagara\Shaders\Shared" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Public" +/I "..\Plugins\FX\Niagara\Source\NiagaraShader\Internal" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "..\Plugins\FX\Niagara\Source\NiagaraVertexFactories\Public" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Intermediate\Build\Win64\UnrealGame\Inc\TopDownArenaRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source" +/I "E:\Projects\cross_platform\Plugins\GameFeatures\TopDownArena\Source\TopDownArenaRuntime\Public" +/I "E:\Projects\cross_platform\Intermediate\Build\Win64\UnrealGame\Inc\LyraGame\UHT" +/I "E:\Projects\cross_platform\Source\LyraGame" +/I "E:\Projects\cross_platform\Source" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ReplicationGraph\Intermediate\Build\Win64\UnrealGame\Inc\ReplicationGraph\UHT" +/I "..\Plugins\Runtime\ReplicationGraph\Source" +/I "..\Plugins\Runtime\ReplicationGraph\Source\Public" +/I "..\Plugins\Runtime\GameFeatures\Intermediate\Build\Win64\UnrealGame\Inc\GameFeatures\UHT" +/I "..\Plugins\Runtime\GameFeatures\Source" +/I "..\Plugins\Runtime\GameFeatures\Source\GameFeatures\Public" +/I "..\Plugins\Runtime\SignificanceManager\Intermediate\Build\Win64\UnrealGame\Inc\SignificanceManager\UHT" +/I "..\Plugins\Runtime\SignificanceManager\Source" +/I "..\Plugins\Runtime\SignificanceManager\Source\SignificanceManager\Public" +/I "..\Plugins\Online\OnlineFramework\Intermediate\Build\Win64\UnrealGame\Inc\Hotfix\UHT" +/I "..\Plugins\Online\OnlineFramework\Source" +/I "..\Plugins\Online\OnlineFramework\Source\Hotfix\Public" +/I "..\Plugins\Online\OnlineFramework\Source\PatchCheck\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "Runtime\InstallBundleManager\Public" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Intermediate\Build\Win64\UnrealGame\Inc\CommonLoadingScreen\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source" +/I "E:\Projects\cross_platform\Plugins\CommonLoadingScreen\Source\CommonLoadingScreen\Public" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source" +/I "E:\Projects\cross_platform\Plugins\AsyncMixin\Source\Public" +/I "..\Plugins\Experimental\ControlFlows\Source" +/I "..\Plugins\Experimental\ControlFlows\Source\ControlFlows\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp new file mode 100644 index 00000000..b0475571 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Private/Widgets/Responsive/GameResponsivePanel.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameResponsivePanel() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanel(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelWidget(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameResponsivePanel Function AddChildToGameResponsivePanel +struct Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics +{ + struct GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms + { + UWidget* Content; + UGameResponsivePanelSlot* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Content_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Content; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_Content = { "Content", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms, Content), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Content_MetaData), NewProp_Content_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms, ReturnValue), Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_Content, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameResponsivePanel, nullptr, "AddChildToGameResponsivePanel", nullptr, nullptr, Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameResponsivePanel::execAddChildToGameResponsivePanel) +{ + P_GET_OBJECT(UWidget,Z_Param_Content); + P_FINISH; + P_NATIVE_BEGIN; + *(UGameResponsivePanelSlot**)Z_Param__Result=P_THIS->AddChildToGameResponsivePanel(Z_Param_Content); + P_NATIVE_END; +} +// End Class UGameResponsivePanel Function AddChildToGameResponsivePanel + +// Begin Class UGameResponsivePanel +void UGameResponsivePanel::StaticRegisterNativesUGameResponsivePanel() +{ + UClass* Class = UGameResponsivePanel::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddChildToGameResponsivePanel", &UGameResponsivePanel::execAddChildToGameResponsivePanel }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameResponsivePanel); +UClass* Z_Construct_UClass_UGameResponsivePanel_NoRegister() +{ + return UGameResponsivePanel::StaticClass(); +} +struct Z_Construct_UClass_UGameResponsivePanel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Allows widgets to be laid out in a flow horizontally.\n *\n * * Many Children\n * * Flow Horizontal\n */" }, +#endif + { "IncludePath", "Widgets/Responsive/GameResponsivePanel.h" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows widgets to be laid out in a flow horizontally.\n\n* Many Children\n* Flow Horizontal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanStackVertically_MetaData[] = { + { "Category", "Behavior" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanStackVertically_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanStackVertically; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel, "AddChildToGameResponsivePanel" }, // 3902398232 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically_SetBit(void* Obj) +{ + ((UGameResponsivePanel*)Obj)->bCanStackVertically = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically = { "bCanStackVertically", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UGameResponsivePanel), &Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanStackVertically_MetaData), NewProp_bCanStackVertically_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameResponsivePanel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPanelWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameResponsivePanel_Statics::ClassParams = { + &UGameResponsivePanel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameResponsivePanel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameResponsivePanel() +{ + if (!Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton, Z_Construct_UClass_UGameResponsivePanel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameResponsivePanel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameResponsivePanel); +UGameResponsivePanel::~UGameResponsivePanel() {} +// End Class UGameResponsivePanel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameResponsivePanel, UGameResponsivePanel::StaticClass, TEXT("UGameResponsivePanel"), &Z_Registration_Info_UClass_UGameResponsivePanel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameResponsivePanel), 940797421U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_3890441673(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.generated.h new file mode 100644 index 00000000..a31fbcb0 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanel.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Responsive/GameResponsivePanel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameResponsivePanelSlot; +class UWidget; +#ifdef GAMESETTINGS_GameResponsivePanel_generated_h +#error "GameResponsivePanel.generated.h already included, missing '#pragma once' in GameResponsivePanel.h" +#endif +#define GAMESETTINGS_GameResponsivePanel_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_RPC_WRAPPERS \ + DECLARE_FUNCTION(execAddChildToGameResponsivePanel); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_INCLASS \ +private: \ + static void StaticRegisterNativesUGameResponsivePanel(); \ + friend struct Z_Construct_UClass_UGameResponsivePanel_Statics; \ +public: \ + DECLARE_CLASS(UGameResponsivePanel, UPanelWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameResponsivePanel) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameResponsivePanel(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameResponsivePanel) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameResponsivePanel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameResponsivePanel); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameResponsivePanel(UGameResponsivePanel&&); \ + UGameResponsivePanel(const UGameResponsivePanel&); \ +public: \ + NO_API virtual ~UGameResponsivePanel(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp new file mode 100644 index 00000000..3ea88d62 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Private/Widgets/Responsive/GameResponsivePanelSlot.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameResponsivePanelSlot() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelSlot(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameResponsivePanelSlot +void UGameResponsivePanelSlot::StaticRegisterNativesUGameResponsivePanelSlot() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameResponsivePanelSlot); +UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister() +{ + return UGameResponsivePanelSlot::StaticClass(); +} +struct Z_Construct_UClass_UGameResponsivePanelSlot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Widgets/Responsive/GameResponsivePanelSlot.h" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanelSlot.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameResponsivePanelSlot_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPanelSlot, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanelSlot_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameResponsivePanelSlot_Statics::ClassParams = { + &UGameResponsivePanelSlot::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanelSlot_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameResponsivePanelSlot_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameResponsivePanelSlot() +{ + if (!Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton, Z_Construct_UClass_UGameResponsivePanelSlot_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameResponsivePanelSlot::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameResponsivePanelSlot); +UGameResponsivePanelSlot::~UGameResponsivePanelSlot() {} +// End Class UGameResponsivePanelSlot + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameResponsivePanelSlot, UGameResponsivePanelSlot::StaticClass, TEXT("UGameResponsivePanelSlot"), &Z_Registration_Info_UClass_UGameResponsivePanelSlot, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameResponsivePanelSlot), 3729997617U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_3358801129(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h new file mode 100644 index 00000000..f9980bc5 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Responsive/GameResponsivePanelSlot.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameResponsivePanelSlot_generated_h +#error "GameResponsivePanelSlot.generated.h already included, missing '#pragma once' in GameResponsivePanelSlot.h" +#endif +#define GAMESETTINGS_GameResponsivePanelSlot_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_INCLASS \ +private: \ + static void StaticRegisterNativesUGameResponsivePanelSlot(); \ + friend struct Z_Construct_UClass_UGameResponsivePanelSlot_Statics; \ +public: \ + DECLARE_CLASS(UGameResponsivePanelSlot, UPanelSlot, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameResponsivePanelSlot) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameResponsivePanelSlot(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameResponsivePanelSlot) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameResponsivePanelSlot); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameResponsivePanelSlot); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameResponsivePanelSlot(UGameResponsivePanelSlot&&); \ + UGameResponsivePanelSlot(const UGameResponsivePanelSlot&); \ +public: \ + NO_API virtual ~UGameResponsivePanelSlot(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.gen.cpp new file mode 100644 index 00000000..77bb5a57 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.gen.cpp @@ -0,0 +1,447 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSetting.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSetting() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +UMG_API UEnum* Z_Construct_UEnum_UMG_ESlateVisibility(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSetting Function GetDescriptionRichText +struct Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics +{ + struct GameSetting_eventGetDescriptionRichText_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDescriptionRichText_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDescriptionRichText", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::GameSetting_eventGetDescriptionRichText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::GameSetting_eventGetDescriptionRichText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDescriptionRichText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDescriptionRichText) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDescriptionRichText(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDescriptionRichText + +// Begin Class UGameSetting Function GetDevName +struct Z_Construct_UFunction_UGameSetting_GetDevName_Statics +{ + struct GameSetting_eventGetDevName_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gets the non-localized developer name for this setting. This should remain constant, and represent a \n\x09 * unique identifier for this setting inside this settings registry.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/GameSetting.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the non-localized developer name for this setting. This should remain constant, and represent a\nunique identifier for this setting inside this settings registry." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSetting_GetDevName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDevName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDevName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDevName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDevName", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::GameSetting_eventGetDevName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDevName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::GameSetting_eventGetDevName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDevName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDevName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDevName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetDevName(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDevName + +// Begin Class UGameSetting Function GetDisplayName +struct Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics +{ + struct GameSetting_eventGetDisplayName_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDisplayName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDisplayName", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::GameSetting_eventGetDisplayName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::GameSetting_eventGetDisplayName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDisplayName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDisplayName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDisplayName(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDisplayName + +// Begin Class UGameSetting Function GetDisplayNameVisibility +struct Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics +{ + struct GameSetting_eventGetDisplayNameVisibility_Parms + { + ESlateVisibility ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDisplayNameVisibility_Parms, ReturnValue), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(0, nullptr) }; // 2974316103 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDisplayNameVisibility", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::GameSetting_eventGetDisplayNameVisibility_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::GameSetting_eventGetDisplayNameVisibility_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDisplayNameVisibility) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESlateVisibility*)Z_Param__Result=P_THIS->GetDisplayNameVisibility(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDisplayNameVisibility + +// Begin Class UGameSetting Function GetDynamicDetails +struct Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics +{ + struct GameSetting_eventGetDynamicDetails_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gets the dynamic details about this setting. This may be information like, how many refunds are remaining \n\x09 * on their account, or the account number.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/GameSetting.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the dynamic details about this setting. This may be information like, how many refunds are remaining\non their account, or the account number." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDynamicDetails_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDynamicDetails", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::GameSetting_eventGetDynamicDetails_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::GameSetting_eventGetDynamicDetails_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDynamicDetails() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDynamicDetails) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDynamicDetails(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDynamicDetails + +// Begin Class UGameSetting Function GetTags +struct Z_Construct_UFunction_UGameSetting_GetTags_Statics +{ + struct GameSetting_eventGetTags_Parms + { + FGameplayTagContainer ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameSetting_GetTags_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000008000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetTags_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetTags_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetTags_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetTags", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetTags_Statics::GameSetting_eventGetTags_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetTags_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetTags_Statics::GameSetting_eventGetTags_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetTags() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetTags_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetTags) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayTagContainer*)Z_Param__Result=P_THIS->GetTags(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetTags + +// Begin Class UGameSetting Function GetWarningRichText +struct Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics +{ + struct GameSetting_eventGetWarningRichText_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetWarningRichText_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetWarningRichText", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::GameSetting_eventGetWarningRichText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::GameSetting_eventGetWarningRichText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetWarningRichText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetWarningRichText) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetWarningRichText(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetWarningRichText + +// Begin Class UGameSetting +void UGameSetting::StaticRegisterNativesUGameSetting() +{ + UClass* Class = UGameSetting::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDescriptionRichText", &UGameSetting::execGetDescriptionRichText }, + { "GetDevName", &UGameSetting::execGetDevName }, + { "GetDisplayName", &UGameSetting::execGetDisplayName }, + { "GetDisplayNameVisibility", &UGameSetting::execGetDisplayNameVisibility }, + { "GetDynamicDetails", &UGameSetting::execGetDynamicDetails }, + { "GetTags", &UGameSetting::execGetTags }, + { "GetWarningRichText", &UGameSetting::execGetWarningRichText }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSetting); +UClass* Z_Construct_UClass_UGameSetting_NoRegister() +{ + return UGameSetting::StaticClass(); +} +struct Z_Construct_UClass_UGameSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSetting.h" }, + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingParent_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwningRegistry_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingParent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningRegistry; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSetting_GetDescriptionRichText, "GetDescriptionRichText" }, // 1710720675 + { &Z_Construct_UFunction_UGameSetting_GetDevName, "GetDevName" }, // 542514903 + { &Z_Construct_UFunction_UGameSetting_GetDisplayName, "GetDisplayName" }, // 242604848 + { &Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility, "GetDisplayNameVisibility" }, // 2298409419 + { &Z_Construct_UFunction_UGameSetting_GetDynamicDetails, "GetDynamicDetails" }, // 407856293 + { &Z_Construct_UFunction_UGameSetting_GetTags, "GetTags" }, // 4154832269 + { &Z_Construct_UFunction_UGameSetting_GetWarningRichText, "GetWarningRichText" }, // 824359185 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_SettingParent = { "SettingParent", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, SettingParent), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingParent_MetaData), NewProp_SettingParent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_OwningRegistry = { "OwningRegistry", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, OwningRegistry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwningRegistry_MetaData), NewProp_OwningRegistry_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_SettingParent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_OwningRegistry, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSetting_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSetting_Statics::ClassParams = { + &UGameSetting::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSetting_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSetting_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSetting() +{ + if (!Z_Registration_Info_UClass_UGameSetting.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSetting.OuterSingleton, Z_Construct_UClass_UGameSetting_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSetting.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSetting::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSetting); +UGameSetting::~UGameSetting() {} +// End Class UGameSetting + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSetting, UGameSetting::StaticClass, TEXT("UGameSetting"), &Z_Registration_Info_UClass_UGameSetting, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSetting), 2281187960U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_2391022911(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.generated.h new file mode 100644 index 00000000..09ba686b --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSetting.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSetting.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ESlateVisibility : uint8; +struct FGameplayTagContainer; +#ifdef GAMESETTINGS_GameSetting_generated_h +#error "GameSetting.generated.h already included, missing '#pragma once' in GameSetting.h" +#endif +#define GAMESETTINGS_GameSetting_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetWarningRichText); \ + DECLARE_FUNCTION(execGetDynamicDetails); \ + DECLARE_FUNCTION(execGetTags); \ + DECLARE_FUNCTION(execGetDescriptionRichText); \ + DECLARE_FUNCTION(execGetDisplayNameVisibility); \ + DECLARE_FUNCTION(execGetDisplayName); \ + DECLARE_FUNCTION(execGetDevName); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSetting(); \ + friend struct Z_Construct_UClass_UGameSetting_Statics; \ +public: \ + DECLARE_CLASS(UGameSetting, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSetting) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSetting(UGameSetting&&); \ + UGameSetting(const UGameSetting&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSetting); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSetting); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSetting) \ + NO_API virtual ~UGameSetting(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.gen.cpp new file mode 100644 index 00000000..ce23833e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingAction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingAction() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingAction +void UGameSettingAction::StaticRegisterNativesUGameSettingAction() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingAction); +UClass* Z_Construct_UClass_UGameSettingAction_NoRegister() +{ + return UGameSettingAction::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSettingAction.h" }, + { "ModuleRelativePath", "Public/GameSettingAction.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingAction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingAction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingAction_Statics::ClassParams = { + &UGameSettingAction::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingAction_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingAction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingAction() +{ + if (!Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton, Z_Construct_UClass_UGameSettingAction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingAction::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingAction); +UGameSettingAction::~UGameSettingAction() {} +// End Class UGameSettingAction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingAction, UGameSettingAction::StaticClass, TEXT("UGameSettingAction"), &Z_Registration_Info_UClass_UGameSettingAction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingAction), 506310664U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_1624928764(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.generated.h new file mode 100644 index 00000000..23495561 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingAction.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingAction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingAction_generated_h +#error "GameSettingAction.generated.h already included, missing '#pragma once' in GameSettingAction.h" +#endif +#define GAMESETTINGS_GameSettingAction_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingAction(); \ + friend struct Z_Construct_UClass_UGameSettingAction_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingAction, UGameSetting, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingAction) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingAction(UGameSettingAction&&); \ + UGameSettingAction(const UGameSettingAction&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingAction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingAction); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingAction) \ + NO_API virtual ~UGameSettingAction(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp new file mode 100644 index 00000000..0a4569e1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp @@ -0,0 +1,184 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingCollection.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingCollection() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingCollection +void UGameSettingCollection::StaticRegisterNativesUGameSettingCollection() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingCollection); +UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister() +{ + return UGameSettingCollection::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingCollection_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// UGameSettingCollection\n//--------------------------------------\n" }, +#endif + { "IncludePath", "GameSettingCollection.h" }, + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingCollection" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The settings owned by this collection. */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The settings owned by this collection." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Settings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Settings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings_Inner = { "Settings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings = { "Settings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingCollection, Settings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_MetaData), NewProp_Settings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingCollection_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingCollection_Statics::ClassParams = { + &UGameSettingCollection::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingCollection_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingCollection() +{ + if (!Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton, Z_Construct_UClass_UGameSettingCollection_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingCollection::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingCollection); +UGameSettingCollection::~UGameSettingCollection() {} +// End Class UGameSettingCollection + +// Begin Class UGameSettingCollectionPage +void UGameSettingCollectionPage::StaticRegisterNativesUGameSettingCollectionPage() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingCollectionPage); +UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister() +{ + return UGameSettingCollectionPage::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingCollectionPage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// UGameSettingCollectionPage\n//--------------------------------------\n" }, +#endif + { "IncludePath", "GameSettingCollection.h" }, + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingCollectionPage" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingCollectionPage_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingCollection, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollectionPage_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingCollectionPage_Statics::ClassParams = { + &UGameSettingCollectionPage::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollectionPage_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingCollectionPage_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingCollectionPage() +{ + if (!Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton, Z_Construct_UClass_UGameSettingCollectionPage_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingCollectionPage::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingCollectionPage); +UGameSettingCollectionPage::~UGameSettingCollectionPage() {} +// End Class UGameSettingCollectionPage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingCollection, UGameSettingCollection::StaticClass, TEXT("UGameSettingCollection"), &Z_Registration_Info_UClass_UGameSettingCollection, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingCollection), 2749658513U) }, + { Z_Construct_UClass_UGameSettingCollectionPage, UGameSettingCollectionPage::StaticClass, TEXT("UGameSettingCollectionPage"), &Z_Registration_Info_UClass_UGameSettingCollectionPage, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingCollectionPage), 1490178399U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_2581113274(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.generated.h new file mode 100644 index 00000000..db21d1bb --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingCollection.generated.h @@ -0,0 +1,87 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingCollection.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingCollection_generated_h +#error "GameSettingCollection.generated.h already included, missing '#pragma once' in GameSettingCollection.h" +#endif +#define GAMESETTINGS_GameSettingCollection_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingCollection(); \ + friend struct Z_Construct_UClass_UGameSettingCollection_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingCollection, UGameSetting, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingCollection) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingCollection(UGameSettingCollection&&); \ + UGameSettingCollection(const UGameSettingCollection&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingCollection); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingCollection); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingCollection) \ + NO_API virtual ~UGameSettingCollection(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingCollectionPage(); \ + friend struct Z_Construct_UClass_UGameSettingCollectionPage_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingCollectionPage, UGameSettingCollection, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingCollectionPage) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingCollectionPage(UGameSettingCollectionPage&&); \ + UGameSettingCollectionPage(const UGameSettingCollectionPage&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingCollectionPage); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingCollectionPage); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingCollectionPage) \ + NO_API virtual ~UGameSettingCollectionPage(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_41_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp new file mode 100644 index 00000000..1d49c06c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingDetailExtension.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingDetailExtension() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingDetailExtension Function OnSettingAssigned +struct GameSettingDetailExtension_eventOnSettingAssigned_Parms +{ + UGameSetting* InSetting; +}; +static const FName NAME_UGameSettingDetailExtension_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingDetailExtension::OnSettingAssigned(UGameSetting* InSetting) +{ + GameSettingDetailExtension_eventOnSettingAssigned_Parms Parms; + Parms.InSetting=InSetting; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingDetailExtension_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingDetailExtension_eventOnSettingAssigned_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::NewProp_InSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingDetailExtension, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingDetailExtension_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingDetailExtension_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingDetailExtension Function OnSettingAssigned + +// Begin Class UGameSettingDetailExtension Function OnSettingValueChanged +struct GameSettingDetailExtension_eventOnSettingValueChanged_Parms +{ + UGameSetting* InSetting; +}; +static const FName NAME_UGameSettingDetailExtension_OnSettingValueChanged = FName(TEXT("OnSettingValueChanged")); +void UGameSettingDetailExtension::OnSettingValueChanged(UGameSetting* InSetting) +{ + GameSettingDetailExtension_eventOnSettingValueChanged_Parms Parms; + Parms.InSetting=InSetting; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingDetailExtension_OnSettingValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingDetailExtension_eventOnSettingValueChanged_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::NewProp_InSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingDetailExtension, nullptr, "OnSettingValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers), sizeof(GameSettingDetailExtension_eventOnSettingValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingDetailExtension_eventOnSettingValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingDetailExtension Function OnSettingValueChanged + +// Begin Class UGameSettingDetailExtension +void UGameSettingDetailExtension::StaticRegisterNativesUGameSettingDetailExtension() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingDetailExtension); +UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister() +{ + return UGameSettingDetailExtension::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingDetailExtension_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingDetailExtension.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Setting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned, "OnSettingAssigned" }, // 3610385031 + { &Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged, "OnSettingValueChanged" }, // 829104172 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailExtension_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailExtension, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Setting_MetaData), NewProp_Setting_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailExtension_Statics::NewProp_Setting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingDetailExtension_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingDetailExtension_Statics::ClassParams = { + &UGameSettingDetailExtension::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingDetailExtension_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingDetailExtension() +{ + if (!Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton, Z_Construct_UClass_UGameSettingDetailExtension_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingDetailExtension::StaticClass(); +} +UGameSettingDetailExtension::UGameSettingDetailExtension(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingDetailExtension); +UGameSettingDetailExtension::~UGameSettingDetailExtension() {} +// End Class UGameSettingDetailExtension + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingDetailExtension, UGameSettingDetailExtension::StaticClass, TEXT("UGameSettingDetailExtension"), &Z_Registration_Info_UClass_UGameSettingDetailExtension, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingDetailExtension), 3072199634U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_1057512548(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h new file mode 100644 index 00000000..f88024b2 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingDetailExtension.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +#ifdef GAMESETTINGS_GameSettingDetailExtension_generated_h +#error "GameSettingDetailExtension.generated.h already included, missing '#pragma once' in GameSettingDetailExtension.h" +#endif +#define GAMESETTINGS_GameSettingDetailExtension_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingDetailExtension(); \ + friend struct Z_Construct_UClass_UGameSettingDetailExtension_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingDetailExtension, UUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingDetailExtension) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingDetailExtension(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingDetailExtension(UGameSettingDetailExtension&&); \ + UGameSettingDetailExtension(const UGameSettingDetailExtension&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingDetailExtension); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingDetailExtension); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingDetailExtension) \ + NO_API virtual ~UGameSettingDetailExtension(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp new file mode 100644 index 00000000..d70553a1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingDetailView.h" +#include "Runtime/UMG/Public/Blueprint/UserWidgetPool.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingDetailView() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget(); +UMG_API UClass* Z_Construct_UClass_UVerticalBox_NoRegister(); +UMG_API UScriptStruct* Z_Construct_UScriptStruct_FUserWidgetPool(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingDetailView +void UGameSettingDetailView::StaticRegisterNativesUGameSettingDetailView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingDetailView); +UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister() +{ + return UGameSettingDetailView::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingDetailView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/GameSettingDetailView.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisualData_MetaData[] = { + { "Category", "GameSettingDetailView" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionWidgetPool_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingName_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Description_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_DynamicDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_WarningDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_DisabledDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Box_DetailsExtension_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisualData; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionWidgetPool; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Description; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_DynamicDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_WarningDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_DisabledDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Box_DetailsExtension; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_VisualData = { "VisualData", nullptr, (EPropertyFlags)0x0124080000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, VisualData), Z_Construct_UClass_UGameSettingVisualData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisualData_MetaData), NewProp_VisualData_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_ExtensionWidgetPool = { "ExtensionWidgetPool", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, ExtensionWidgetPool), Z_Construct_UScriptStruct_FUserWidgetPool, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionWidgetPool_MetaData), NewProp_ExtensionWidgetPool_MetaData) }; // 871085244 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_CurrentSetting = { "CurrentSetting", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, CurrentSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentSetting_MetaData), NewProp_CurrentSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Text_SettingName = { "Text_SettingName", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, Text_SettingName), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingName_MetaData), NewProp_Text_SettingName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_Description = { "RichText_Description", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_Description), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Description_MetaData), NewProp_RichText_Description_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DynamicDetails = { "RichText_DynamicDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_DynamicDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_DynamicDetails_MetaData), NewProp_RichText_DynamicDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_WarningDetails = { "RichText_WarningDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_WarningDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_WarningDetails_MetaData), NewProp_RichText_WarningDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DisabledDetails = { "RichText_DisabledDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_DisabledDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_DisabledDetails_MetaData), NewProp_RichText_DisabledDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Box_DetailsExtension = { "Box_DetailsExtension", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, Box_DetailsExtension), Z_Construct_UClass_UVerticalBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Box_DetailsExtension_MetaData), NewProp_Box_DetailsExtension_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_VisualData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_ExtensionWidgetPool, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_CurrentSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Text_SettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DynamicDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_WarningDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DisabledDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Box_DetailsExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingDetailView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingDetailView_Statics::ClassParams = { + &UGameSettingDetailView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingDetailView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingDetailView() +{ + if (!Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton, Z_Construct_UClass_UGameSettingDetailView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingDetailView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingDetailView); +UGameSettingDetailView::~UGameSettingDetailView() {} +// End Class UGameSettingDetailView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingDetailView, UGameSettingDetailView::StaticClass, TEXT("UGameSettingDetailView"), &Z_Registration_Info_UClass_UGameSettingDetailView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingDetailView), 3183589374U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_3805839620(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.generated.h new file mode 100644 index 00000000..74f92899 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingDetailView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingDetailView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingDetailView_generated_h +#error "GameSettingDetailView.generated.h already included, missing '#pragma once' in GameSettingDetailView.h" +#endif +#define GAMESETTINGS_GameSettingDetailView_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingDetailView(); \ + friend struct Z_Construct_UClass_UGameSettingDetailView_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingDetailView, UUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingDetailView) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingDetailView(UGameSettingDetailView&&); \ + UGameSettingDetailView(const UGameSettingDetailView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingDetailView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingDetailView); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingDetailView) \ + NO_API virtual ~UGameSettingDetailView(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp new file mode 100644 index 00000000..d73f8b6f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingFilterState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingFilterState() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin ScriptStruct FGameSettingFilterState +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingFilterState; +class UScriptStruct* FGameSettingFilterState::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingFilterState, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingFilterState")); + } + return Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingFilterState::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingFilterState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The filter state is intended to be any and all filtering we support.\n */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The filter state is intended to be any and all filtering we support." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeDisabled_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeHidden_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeResetable_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeNestedPages_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingRootList_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingAllowList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// If this is non-empty, then only settings in here are allowed\n" }, +#endif + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this is non-empty, then only settings in here are allowed" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bIncludeDisabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeDisabled; + static void NewProp_bIncludeHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeHidden; + static void NewProp_bIncludeResetable_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeResetable; + static void NewProp_bIncludeNestedPages_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeNestedPages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingRootList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingRootList; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingAllowList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingAllowList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeDisabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled = { "bIncludeDisabled", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeDisabled_MetaData), NewProp_bIncludeDisabled_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden = { "bIncludeHidden", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeHidden_MetaData), NewProp_bIncludeHidden_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeResetable = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable = { "bIncludeResetable", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeResetable_MetaData), NewProp_bIncludeResetable_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeNestedPages = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages = { "bIncludeNestedPages", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeNestedPages_MetaData), NewProp_bIncludeNestedPages_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList_Inner = { "SettingRootList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList = { "SettingRootList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingFilterState, SettingRootList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingRootList_MetaData), NewProp_SettingRootList_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList_Inner = { "SettingAllowList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList = { "SettingAllowList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingFilterState, SettingAllowList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingAllowList_MetaData), NewProp_SettingAllowList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingFilterState", + Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers), + sizeof(FGameSettingFilterState), + alignof(FGameSettingFilterState), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton; +} +// End ScriptStruct FGameSettingFilterState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameSettingFilterState::StaticStruct, Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewStructOps, TEXT("GameSettingFilterState"), &Z_Registration_Info_UScriptStruct_GameSettingFilterState, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingFilterState), 2989911353U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_2130271807(TEXT("/Script/GameSettings"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.generated.h new file mode 100644 index 00000000..38fae218 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingFilterState.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingFilterState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingFilterState_generated_h +#error "GameSettingFilterState.generated.h already included, missing '#pragma once' in GameSettingFilterState.h" +#endif +#define GAMESETTINGS_GameSettingFilterState_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_29_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingFilterState_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp new file mode 100644 index 00000000..978ca079 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp @@ -0,0 +1,1008 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingListEntry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingListEntry() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UAnalogSlider_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelWidget_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserObjectListEntry_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingListEntryBase Function GetPrimaryGamepadFocusWidget +struct GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms +{ + UWidget* ReturnValue; + + /** Constructor, initializes return property only **/ + GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget = FName(TEXT("GetPrimaryGamepadFocusWidget")); +UWidget* UGameSettingListEntryBase::GetPrimaryGamepadFocusWidget() +{ + GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms Parms; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget); + ProcessEvent(Func,&Parms); + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms, ReturnValue), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntryBase, nullptr, "GetPrimaryGamepadFocusWidget", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers), sizeof(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntryBase Function GetPrimaryGamepadFocusWidget + +// Begin Class UGameSettingListEntryBase +void UGameSettingListEntryBase::StaticRegisterNativesUGameSettingListEntryBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntryBase); +UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister() +{ + return UGameSettingListEntryBase::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntryBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UAthenaChallengeListEntry\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UAthenaChallengeListEntry" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Setting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Background_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntryBase" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Background; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget, "GetPrimaryGamepadFocusWidget" }, // 3519101504 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntryBase, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Setting_MetaData), NewProp_Setting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Background = { "Background", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntryBase, Background), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Background_MetaData), NewProp_Background_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Setting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Background, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntryBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UUserObjectListEntry_NoRegister, (int32)VTABLE_OFFSET(UGameSettingListEntryBase, IUserObjectListEntry), false }, // 228470651 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::ClassParams = { + &UGameSettingListEntryBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntryBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntryBase() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton, Z_Construct_UClass_UGameSettingListEntryBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntryBase::StaticClass(); +} +UGameSettingListEntryBase::UGameSettingListEntryBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntryBase); +UGameSettingListEntryBase::~UGameSettingListEntryBase() {} +// End Class UGameSettingListEntryBase + +// Begin Class UGameSettingListEntry_Setting +void UGameSettingListEntry_Setting::StaticRegisterNativesUGameSettingListEntry_Setting() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntry_Setting); +UClass* Z_Construct_UClass_UGameSettingListEntry_Setting_NoRegister() +{ + return UGameSettingListEntry_Setting::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntry_Setting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntry_Setting\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntry_Setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingName_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntry_Setting" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::NewProp_Text_SettingName = { "Text_SettingName", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntry_Setting, Text_SettingName), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingName_MetaData), NewProp_Text_SettingName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::NewProp_Text_SettingName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntryBase, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::ClassParams = { + &UGameSettingListEntry_Setting::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntry_Setting() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton, Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntry_Setting::StaticClass(); +} +UGameSettingListEntry_Setting::UGameSettingListEntry_Setting(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntry_Setting); +UGameSettingListEntry_Setting::~UGameSettingListEntry_Setting() {} +// End Class UGameSettingListEntry_Setting + +// Begin Class UGameSettingListEntrySetting_Discrete +void UGameSettingListEntrySetting_Discrete::StaticRegisterNativesUGameSettingListEntrySetting_Discrete() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Discrete); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_NoRegister() +{ + return UGameSettingListEntrySetting_Discrete::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Discrete\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Discrete" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DiscreteSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Panel_Value_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Rotator_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Decrease_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Increase_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DiscreteSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Panel_Value; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Rotator_SettingValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Decrease; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Increase; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_DiscreteSetting = { "DiscreteSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, DiscreteSetting), Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DiscreteSetting_MetaData), NewProp_DiscreteSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Panel_Value = { "Panel_Value", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Panel_Value), Z_Construct_UClass_UPanelWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Panel_Value_MetaData), NewProp_Panel_Value_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Rotator_SettingValue = { "Rotator_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Rotator_SettingValue), Z_Construct_UClass_UGameSettingRotator_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Rotator_SettingValue_MetaData), NewProp_Rotator_SettingValue_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Decrease = { "Button_Decrease", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Button_Decrease), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Decrease_MetaData), NewProp_Button_Decrease_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Increase = { "Button_Increase", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Button_Increase), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Increase_MetaData), NewProp_Button_Increase_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_DiscreteSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Panel_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Rotator_SettingValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Decrease, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Increase, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::ClassParams = { + &UGameSettingListEntrySetting_Discrete::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Discrete::StaticClass(); +} +UGameSettingListEntrySetting_Discrete::UGameSettingListEntrySetting_Discrete(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Discrete); +UGameSettingListEntrySetting_Discrete::~UGameSettingListEntrySetting_Discrete() {} +// End Class UGameSettingListEntrySetting_Discrete + +// Begin Class UGameSettingListEntrySetting_Scalar Function HandleSliderCaptureEnded +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "HandleSliderCaptureEnded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingListEntrySetting_Scalar::execHandleSliderCaptureEnded) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSliderCaptureEnded(); + P_NATIVE_END; +} +// End Class UGameSettingListEntrySetting_Scalar Function HandleSliderCaptureEnded + +// Begin Class UGameSettingListEntrySetting_Scalar Function HandleSliderValueChanged +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics +{ + struct GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms + { + float Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "HandleSliderValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingListEntrySetting_Scalar::execHandleSliderValueChanged) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSliderValueChanged(Z_Param_Value); + P_NATIVE_END; +} +// End Class UGameSettingListEntrySetting_Scalar Function HandleSliderValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar Function OnDefaultValueChanged +struct GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms +{ + float DefaultValue; +}; +static const FName NAME_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged = FName(TEXT("OnDefaultValueChanged")); +void UGameSettingListEntrySetting_Scalar::OnDefaultValueChanged(float DefaultValue) +{ + GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms Parms; + Parms.DefaultValue=DefaultValue; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms, DefaultValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::NewProp_DefaultValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "OnDefaultValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Scalar Function OnDefaultValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar Function OnValueChanged +struct GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms +{ + float Value; +}; +static const FName NAME_UGameSettingListEntrySetting_Scalar_OnValueChanged = FName(TEXT("OnValueChanged")); +void UGameSettingListEntrySetting_Scalar::OnValueChanged(float Value) +{ + GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms Parms; + Parms.Value=Value; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Scalar_OnValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "OnValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Scalar Function OnValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar +void UGameSettingListEntrySetting_Scalar::StaticRegisterNativesUGameSettingListEntrySetting_Scalar() +{ + UClass* Class = UGameSettingListEntrySetting_Scalar::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleSliderCaptureEnded", &UGameSettingListEntrySetting_Scalar::execHandleSliderCaptureEnded }, + { "HandleSliderValueChanged", &UGameSettingListEntrySetting_Scalar::execHandleSliderValueChanged }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Scalar); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_NoRegister() +{ + return UGameSettingListEntrySetting_Scalar::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Scalar\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Scalar" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScalarSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Panel_Value_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slider_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ScalarSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Panel_Value; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slider_SettingValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded, "HandleSliderCaptureEnded" }, // 3244780504 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged, "HandleSliderValueChanged" }, // 4086855042 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged, "OnDefaultValueChanged" }, // 512759954 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged, "OnValueChanged" }, // 2672522595 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_ScalarSetting = { "ScalarSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, ScalarSetting), Z_Construct_UClass_UGameSettingValueScalar_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScalarSetting_MetaData), NewProp_ScalarSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Panel_Value = { "Panel_Value", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Panel_Value), Z_Construct_UClass_UPanelWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Panel_Value_MetaData), NewProp_Panel_Value_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Slider_SettingValue = { "Slider_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Slider_SettingValue), Z_Construct_UClass_UAnalogSlider_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slider_SettingValue_MetaData), NewProp_Slider_SettingValue_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Text_SettingValue = { "Text_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Text_SettingValue), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingValue_MetaData), NewProp_Text_SettingValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_ScalarSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Panel_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Slider_SettingValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Text_SettingValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::ClassParams = { + &UGameSettingListEntrySetting_Scalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Scalar::StaticClass(); +} +UGameSettingListEntrySetting_Scalar::UGameSettingListEntrySetting_Scalar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Scalar); +UGameSettingListEntrySetting_Scalar::~UGameSettingListEntrySetting_Scalar() {} +// End Class UGameSettingListEntrySetting_Scalar + +// Begin Class UGameSettingListEntrySetting_Action Function OnSettingAssigned +struct GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms +{ + FText ActionText; +}; +static const FName NAME_UGameSettingListEntrySetting_Action_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingListEntrySetting_Action::OnSettingAssigned(FText const& ActionText) +{ + GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms Parms; + Parms.ActionText=ActionText; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Action_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ActionText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::NewProp_ActionText = { "ActionText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms, ActionText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionText_MetaData), NewProp_ActionText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::NewProp_ActionText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Action, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Action Function OnSettingAssigned + +// Begin Class UGameSettingListEntrySetting_Action +void UGameSettingListEntrySetting_Action::StaticRegisterNativesUGameSettingListEntrySetting_Action() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Action); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action_NoRegister() +{ + return UGameSettingListEntrySetting_Action::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Action\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Action" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Action_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Action" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActionSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Action; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned, "OnSettingAssigned" }, // 3216430265 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_ActionSetting = { "ActionSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Action, ActionSetting), Z_Construct_UClass_UGameSettingAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionSetting_MetaData), NewProp_ActionSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_Button_Action = { "Button_Action", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Action, Button_Action), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Action_MetaData), NewProp_Button_Action_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_ActionSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_Button_Action, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::ClassParams = { + &UGameSettingListEntrySetting_Action::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Action::StaticClass(); +} +UGameSettingListEntrySetting_Action::UGameSettingListEntrySetting_Action(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Action); +UGameSettingListEntrySetting_Action::~UGameSettingListEntrySetting_Action() {} +// End Class UGameSettingListEntrySetting_Action + +// Begin Class UGameSettingListEntrySetting_Navigation Function OnSettingAssigned +struct GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms +{ + FText ActionText; +}; +static const FName NAME_UGameSettingListEntrySetting_Navigation_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingListEntrySetting_Navigation::OnSettingAssigned(FText const& ActionText) +{ + GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms Parms; + Parms.ActionText=ActionText; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Navigation_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ActionText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::NewProp_ActionText = { "ActionText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms, ActionText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionText_MetaData), NewProp_ActionText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::NewProp_ActionText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Navigation, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Navigation Function OnSettingAssigned + +// Begin Class UGameSettingListEntrySetting_Navigation +void UGameSettingListEntrySetting_Navigation::StaticRegisterNativesUGameSettingListEntrySetting_Navigation() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Navigation); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_NoRegister() +{ + return UGameSettingListEntrySetting_Navigation::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Navigation\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Navigation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollectionSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Navigate_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Navigation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollectionSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Navigate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned, "OnSettingAssigned" }, // 3161729646 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_CollectionSetting = { "CollectionSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Navigation, CollectionSetting), Z_Construct_UClass_UGameSettingCollectionPage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollectionSetting_MetaData), NewProp_CollectionSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_Button_Navigate = { "Button_Navigate", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Navigation, Button_Navigate), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Navigate_MetaData), NewProp_Button_Navigate_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_CollectionSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_Button_Navigate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::ClassParams = { + &UGameSettingListEntrySetting_Navigation::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Navigation::StaticClass(); +} +UGameSettingListEntrySetting_Navigation::UGameSettingListEntrySetting_Navigation(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Navigation); +UGameSettingListEntrySetting_Navigation::~UGameSettingListEntrySetting_Navigation() {} +// End Class UGameSettingListEntrySetting_Navigation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingListEntryBase, UGameSettingListEntryBase::StaticClass, TEXT("UGameSettingListEntryBase"), &Z_Registration_Info_UClass_UGameSettingListEntryBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntryBase), 3369557488U) }, + { Z_Construct_UClass_UGameSettingListEntry_Setting, UGameSettingListEntry_Setting::StaticClass, TEXT("UGameSettingListEntry_Setting"), &Z_Registration_Info_UClass_UGameSettingListEntry_Setting, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntry_Setting), 3040419023U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Discrete, UGameSettingListEntrySetting_Discrete::StaticClass, TEXT("UGameSettingListEntrySetting_Discrete"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Discrete), 2735157497U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, UGameSettingListEntrySetting_Scalar::StaticClass, TEXT("UGameSettingListEntrySetting_Scalar"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Scalar), 683831960U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Action, UGameSettingListEntrySetting_Action::StaticClass, TEXT("UGameSettingListEntrySetting_Action"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Action), 4192235933U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Navigation, UGameSettingListEntrySetting_Navigation::StaticClass, TEXT("UGameSettingListEntrySetting_Navigation"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Navigation), 2337929689U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_369936568(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.generated.h new file mode 100644 index 00000000..63b954b4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListEntry.generated.h @@ -0,0 +1,247 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingListEntry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UWidget; +#ifdef GAMESETTINGS_GameSettingListEntry_generated_h +#error "GameSettingListEntry.generated.h already included, missing '#pragma once' in GameSettingListEntry.h" +#endif +#define GAMESETTINGS_GameSettingListEntry_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntryBase(); \ + friend struct Z_Construct_UClass_UGameSettingListEntryBase_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntryBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntryBase) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntryBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntryBase(UGameSettingListEntryBase&&); \ + UGameSettingListEntryBase(const UGameSettingListEntryBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntryBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntryBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntryBase) \ + NO_API virtual ~UGameSettingListEntryBase(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_34_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntry_Setting(); \ + friend struct Z_Construct_UClass_UGameSettingListEntry_Setting_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntry_Setting, UGameSettingListEntryBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntry_Setting) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntry_Setting(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntry_Setting(UGameSettingListEntry_Setting&&); \ + UGameSettingListEntry_Setting(const UGameSettingListEntry_Setting&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntry_Setting); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntry_Setting); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntry_Setting) \ + NO_API virtual ~UGameSettingListEntry_Setting(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_76_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Discrete(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Discrete, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Discrete) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Discrete(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Discrete(UGameSettingListEntrySetting_Discrete&&); \ + UGameSettingListEntrySetting_Discrete(const UGameSettingListEntrySetting_Discrete&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Discrete); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Discrete); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Discrete) \ + NO_API virtual ~UGameSettingListEntrySetting_Discrete(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_94_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleSliderCaptureEnded); \ + DECLARE_FUNCTION(execHandleSliderValueChanged); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Scalar(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Scalar, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Scalar) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Scalar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Scalar(UGameSettingListEntrySetting_Scalar&&); \ + UGameSettingListEntrySetting_Scalar(const UGameSettingListEntrySetting_Scalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Scalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Scalar); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Scalar) \ + NO_API virtual ~UGameSettingListEntrySetting_Scalar(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_137_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Action(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Action, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Action) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Action(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Action(UGameSettingListEntrySetting_Action&&); \ + UGameSettingListEntrySetting_Action(const UGameSettingListEntrySetting_Action&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Action); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Action); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Action) \ + NO_API virtual ~UGameSettingListEntrySetting_Action(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_184_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Navigation(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Navigation, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Navigation) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Navigation(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Navigation(UGameSettingListEntrySetting_Navigation&&); \ + UGameSettingListEntrySetting_Navigation(const UGameSettingListEntrySetting_Navigation&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Navigation); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Navigation); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Navigation) \ + NO_API virtual ~UGameSettingListEntrySetting_Navigation(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_216_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.gen.cpp new file mode 100644 index 00000000..4afbef4f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.gen.cpp @@ -0,0 +1,110 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingListView.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingListView() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UListView(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingListView +void UGameSettingListView::StaticRegisterNativesUGameSettingListView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListView); +UClass* Z_Construct_UClass_UGameSettingListView_NoRegister() +{ + return UGameSettingListView::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * List of game settings. Every entry widget needs to extend from GameSettingListEntryBase.\n */" }, +#endif + { "EntryClass", "GameSettingListEntryBase" }, + { "IncludePath", "Widgets/GameSettingListView.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of game settings. Every entry widget needs to extend from GameSettingListEntryBase." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisualData_MetaData[] = { + { "Category", "GameSettingListView" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisualData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListView_Statics::NewProp_VisualData = { "VisualData", nullptr, (EPropertyFlags)0x0124080000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListView, VisualData), Z_Construct_UClass_UGameSettingVisualData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisualData_MetaData), NewProp_VisualData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListView_Statics::NewProp_VisualData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UListView, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListView_Statics::ClassParams = { + &UGameSettingListView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListView() +{ + if (!Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton, Z_Construct_UClass_UGameSettingListView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListView); +UGameSettingListView::~UGameSettingListView() {} +// End Class UGameSettingListView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingListView, UGameSettingListView::StaticClass, TEXT("UGameSettingListView"), &Z_Registration_Info_UClass_UGameSettingListView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListView), 1679336813U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_309013391(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.generated.h new file mode 100644 index 00000000..804e2590 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingListView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingListView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingListView_generated_h +#error "GameSettingListView.generated.h already included, missing '#pragma once' in GameSettingListView.h" +#endif +#define GAMESETTINGS_GameSettingListView_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListView(); \ + friend struct Z_Construct_UClass_UGameSettingListView_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListView, UListView, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListView) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListView(UGameSettingListView&&); \ + UGameSettingListView(const UGameSettingListView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListView); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListView) \ + NO_API virtual ~UGameSettingListView(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp new file mode 100644 index 00000000..14c496c7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingPanel.h" +#include "Public/GameSettingFilterState.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingPanel() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +GAMESETTINGS_API UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Delegate FOnExecuteNamedActionBP +struct Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics +{ + struct GameSettingPanel_eventOnExecuteNamedActionBP_Parms + { + UGameSetting* Setting; + FGameplayTag Action; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FStructPropertyParams NewProp_Action; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingPanel_eventOnExecuteNamedActionBP_Parms, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Action = { "Action", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingPanel_eventOnExecuteNamedActionBP_Parms, Action), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Setting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Action, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingPanel, nullptr, "OnExecuteNamedActionBP__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::GameSettingPanel_eventOnExecuteNamedActionBP_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::GameSettingPanel_eventOnExecuteNamedActionBP_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UGameSettingPanel::FOnExecuteNamedActionBP_DelegateWrapper(const FMulticastScriptDelegate& OnExecuteNamedActionBP, UGameSetting* Setting, FGameplayTag Action) +{ + struct GameSettingPanel_eventOnExecuteNamedActionBP_Parms + { + UGameSetting* Setting; + FGameplayTag Action; + }; + GameSettingPanel_eventOnExecuteNamedActionBP_Parms Parms; + Parms.Setting=Setting; + Parms.Action=Action; + OnExecuteNamedActionBP.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnExecuteNamedActionBP + +// Begin Class UGameSettingPanel +void UGameSettingPanel::StaticRegisterNativesUGameSettingPanel() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingPanel); +UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister() +{ + return UGameSettingPanel::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingPanel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Widgets/GameSettingPanel.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Registry_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisibleSettings_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastHoveredOrSelectedSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FilterState_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FilterNavigationStack_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ListView_Settings_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingPanel" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Details_Settings_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingPanel" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BP_OnExecuteNamedAction_MetaData[] = { + { "Category", "Events" }, + { "DisplayName", "On Execute Named Action" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Registry; + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisibleSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_VisibleSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastHoveredOrSelectedSetting; + static const UECodeGen_Private::FStructPropertyParams NewProp_FilterState; + static const UECodeGen_Private::FStructPropertyParams NewProp_FilterNavigationStack_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_FilterNavigationStack; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ListView_Settings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Details_Settings; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_BP_OnExecuteNamedAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, "OnExecuteNamedActionBP__DelegateSignature" }, // 96924240 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Registry = { "Registry", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, Registry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Registry_MetaData), NewProp_Registry_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings_Inner = { "VisibleSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings = { "VisibleSettings", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, VisibleSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisibleSettings_MetaData), NewProp_VisibleSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_LastHoveredOrSelectedSetting = { "LastHoveredOrSelectedSetting", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, LastHoveredOrSelectedSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastHoveredOrSelectedSetting_MetaData), NewProp_LastHoveredOrSelectedSetting_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterState = { "FilterState", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, FilterState), Z_Construct_UScriptStruct_FGameSettingFilterState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FilterState_MetaData), NewProp_FilterState_MetaData) }; // 2989911353 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack_Inner = { "FilterNavigationStack", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameSettingFilterState, METADATA_PARAMS(0, nullptr) }; // 2989911353 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack = { "FilterNavigationStack", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, FilterNavigationStack), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FilterNavigationStack_MetaData), NewProp_FilterNavigationStack_MetaData) }; // 2989911353 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_ListView_Settings = { "ListView_Settings", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, ListView_Settings), Z_Construct_UClass_UGameSettingListView_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ListView_Settings_MetaData), NewProp_ListView_Settings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Details_Settings = { "Details_Settings", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, Details_Settings), Z_Construct_UClass_UGameSettingDetailView_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Details_Settings_MetaData), NewProp_Details_Settings_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_BP_OnExecuteNamedAction = { "BP_OnExecuteNamedAction", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, BP_OnExecuteNamedAction), Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BP_OnExecuteNamedAction_MetaData), NewProp_BP_OnExecuteNamedAction_MetaData) }; // 96924240 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Registry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_LastHoveredOrSelectedSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_ListView_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Details_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_BP_OnExecuteNamedAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingPanel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingPanel_Statics::ClassParams = { + &UGameSettingPanel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingPanel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingPanel() +{ + if (!Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton, Z_Construct_UClass_UGameSettingPanel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingPanel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingPanel); +UGameSettingPanel::~UGameSettingPanel() {} +// End Class UGameSettingPanel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingPanel, UGameSettingPanel::StaticClass, TEXT("UGameSettingPanel"), &Z_Registration_Info_UClass_UGameSettingPanel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingPanel), 999012750U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_43599752(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.generated.h new file mode 100644 index 00000000..89d658d7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPanel.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingPanel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +struct FGameplayTag; +#ifdef GAMESETTINGS_GameSettingPanel_generated_h +#error "GameSettingPanel.generated.h already included, missing '#pragma once' in GameSettingPanel.h" +#endif +#define GAMESETTINGS_GameSettingPanel_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_108_DELEGATE \ +static void FOnExecuteNamedActionBP_DelegateWrapper(const FMulticastScriptDelegate& OnExecuteNamedActionBP, UGameSetting* Setting, FGameplayTag Action); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingPanel(); \ + friend struct Z_Construct_UClass_UGameSettingPanel_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingPanel, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingPanel) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingPanel(UGameSettingPanel&&); \ + UGameSettingPanel(const UGameSettingPanel&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingPanel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingPanel); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingPanel) \ + NO_API virtual ~UGameSettingPanel(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp new file mode 100644 index 00000000..2a0d548e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp @@ -0,0 +1,94 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/GameSettingPressAnyKey.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingPressAnyKey() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingPressAnyKey +void UGameSettingPressAnyKey::StaticRegisterNativesUGameSettingPressAnyKey() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingPressAnyKey); +UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister() +{ + return UGameSettingPressAnyKey::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingPressAnyKey_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/Misc/GameSettingPressAnyKey.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingPressAnyKey.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingPressAnyKey_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPressAnyKey_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingPressAnyKey_Statics::ClassParams = { + &UGameSettingPressAnyKey::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPressAnyKey_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingPressAnyKey_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingPressAnyKey() +{ + if (!Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton, Z_Construct_UClass_UGameSettingPressAnyKey_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingPressAnyKey::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingPressAnyKey); +UGameSettingPressAnyKey::~UGameSettingPressAnyKey() {} +// End Class UGameSettingPressAnyKey + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingPressAnyKey, UGameSettingPressAnyKey::StaticClass, TEXT("UGameSettingPressAnyKey"), &Z_Registration_Info_UClass_UGameSettingPressAnyKey, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingPressAnyKey), 912399220U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_2126931791(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h new file mode 100644 index 00000000..c0f7085d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/GameSettingPressAnyKey.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingPressAnyKey_generated_h +#error "GameSettingPressAnyKey.generated.h already included, missing '#pragma once' in GameSettingPressAnyKey.h" +#endif +#define GAMESETTINGS_GameSettingPressAnyKey_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingPressAnyKey(); \ + friend struct Z_Construct_UClass_UGameSettingPressAnyKey_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingPressAnyKey, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingPressAnyKey) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingPressAnyKey(UGameSettingPressAnyKey&&); \ + UGameSettingPressAnyKey(const UGameSettingPressAnyKey&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingPressAnyKey); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingPressAnyKey); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingPressAnyKey) \ + NO_API virtual ~UGameSettingPressAnyKey(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp new file mode 100644 index 00000000..02ed4a15 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingRegistry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingRegistry() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingRegistry +void UGameSettingRegistry::StaticRegisterNativesUGameSettingRegistry() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingRegistry); +UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister() +{ + return UGameSettingRegistry::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingRegistry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSettingRegistry.h" }, + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TopLevelSettings_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RegisteredSettings_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwningLocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TopLevelSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TopLevelSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RegisteredSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RegisteredSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningLocalPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings_Inner = { "TopLevelSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings = { "TopLevelSettings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, TopLevelSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TopLevelSettings_MetaData), NewProp_TopLevelSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings_Inner = { "RegisteredSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings = { "RegisteredSettings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, RegisteredSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RegisteredSettings_MetaData), NewProp_RegisteredSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_OwningLocalPlayer = { "OwningLocalPlayer", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, OwningLocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwningLocalPlayer_MetaData), NewProp_OwningLocalPlayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_OwningLocalPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingRegistry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingRegistry_Statics::ClassParams = { + &UGameSettingRegistry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingRegistry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingRegistry() +{ + if (!Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton, Z_Construct_UClass_UGameSettingRegistry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingRegistry::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingRegistry); +UGameSettingRegistry::~UGameSettingRegistry() {} +// End Class UGameSettingRegistry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingRegistry, UGameSettingRegistry::StaticClass, TEXT("UGameSettingRegistry"), &Z_Registration_Info_UClass_UGameSettingRegistry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingRegistry), 3677350250U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_3500073381(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.generated.h new file mode 100644 index 00000000..3969761b --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRegistry.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingRegistry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingRegistry_generated_h +#error "GameSettingRegistry.generated.h already included, missing '#pragma once' in GameSettingRegistry.h" +#endif +#define GAMESETTINGS_GameSettingRegistry_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingRegistry(); \ + friend struct Z_Construct_UClass_UGameSettingRegistry_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingRegistry, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingRegistry) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingRegistry(UGameSettingRegistry&&); \ + UGameSettingRegistry(const UGameSettingRegistry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingRegistry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingRegistry); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingRegistry) \ + NO_API virtual ~UGameSettingRegistry(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp new file mode 100644 index 00000000..a2e204d7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp @@ -0,0 +1,144 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/GameSettingRotator.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingRotator() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonRotator(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingRotator Function BP_OnDefaultOptionSpecified +struct GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms +{ + int32 DefaultOptionIndex; +}; +static const FName NAME_UGameSettingRotator_BP_OnDefaultOptionSpecified = FName(TEXT("BP_OnDefaultOptionSpecified")); +void UGameSettingRotator::BP_OnDefaultOptionSpecified(int32 DefaultOptionIndex) +{ + GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms Parms; + Parms.DefaultOptionIndex=DefaultOptionIndex; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingRotator_BP_OnDefaultOptionSpecified); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Events" }, + { "DisplayName", "On Default Option Specified" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingRotator.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_DefaultOptionIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::NewProp_DefaultOptionIndex = { "DefaultOptionIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms, DefaultOptionIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::NewProp_DefaultOptionIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingRotator, nullptr, "BP_OnDefaultOptionSpecified", nullptr, nullptr, Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers), sizeof(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingRotator Function BP_OnDefaultOptionSpecified + +// Begin Class UGameSettingRotator +void UGameSettingRotator::StaticRegisterNativesUGameSettingRotator() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingRotator); +UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister() +{ + return UGameSettingRotator::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingRotator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/Misc/GameSettingRotator.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingRotator.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified, "BP_OnDefaultOptionSpecified" }, // 2286580386 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingRotator_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonRotator, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRotator_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingRotator_Statics::ClassParams = { + &UGameSettingRotator::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRotator_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingRotator_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingRotator() +{ + if (!Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton, Z_Construct_UClass_UGameSettingRotator_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingRotator::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingRotator); +UGameSettingRotator::~UGameSettingRotator() {} +// End Class UGameSettingRotator + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingRotator, UGameSettingRotator::StaticClass, TEXT("UGameSettingRotator"), &Z_Registration_Info_UClass_UGameSettingRotator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingRotator), 2117309986U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_2911406432(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.generated.h new file mode 100644 index 00000000..1bbb8733 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingRotator.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/GameSettingRotator.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingRotator_generated_h +#error "GameSettingRotator.generated.h already included, missing '#pragma once' in GameSettingRotator.h" +#endif +#define GAMESETTINGS_GameSettingRotator_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingRotator(); \ + friend struct Z_Construct_UClass_UGameSettingRotator_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingRotator, UCommonRotator, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingRotator) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingRotator(UGameSettingRotator&&); \ + UGameSettingRotator(const UGameSettingRotator&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingRotator); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingRotator); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingRotator) \ + NO_API virtual ~UGameSettingRotator(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp new file mode 100644 index 00000000..a660638d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp @@ -0,0 +1,507 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingScreen.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingScreen() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingScreen Function ApplyChanges +struct Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "ApplyChanges", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingScreen_ApplyChanges() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execApplyChanges) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyChanges(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function ApplyChanges + +// Begin Class UGameSettingScreen Function AttemptToPopNavigation +struct Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics +{ + struct GameSettingScreen_eventAttemptToPopNavigation_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingScreen_eventAttemptToPopNavigation_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventAttemptToPopNavigation_Parms), &Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "AttemptToPopNavigation", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::GameSettingScreen_eventAttemptToPopNavigation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::GameSettingScreen_eventAttemptToPopNavigation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execAttemptToPopNavigation) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->AttemptToPopNavigation(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function AttemptToPopNavigation + +// Begin Class UGameSettingScreen Function CancelChanges +struct Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "CancelChanges", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingScreen_CancelChanges() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execCancelChanges) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CancelChanges(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function CancelChanges + +// Begin Class UGameSettingScreen Function GetSettingCollection +struct Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics +{ + struct GameSettingScreen_eventGetSettingCollection_Parms + { + FName SettingDevName; + bool HasAnySettings; + UGameSettingCollection* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevName; + static void NewProp_HasAnySettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_HasAnySettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_SettingDevName = { "SettingDevName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventGetSettingCollection_Parms, SettingDevName), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings_SetBit(void* Obj) +{ + ((GameSettingScreen_eventGetSettingCollection_Parms*)Obj)->HasAnySettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings = { "HasAnySettings", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventGetSettingCollection_Parms), &Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventGetSettingCollection_Parms, ReturnValue), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_SettingDevName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "GetSettingCollection", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::GameSettingScreen_eventGetSettingCollection_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::GameSettingScreen_eventGetSettingCollection_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execGetSettingCollection) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SettingDevName); + P_GET_UBOOL_REF(Z_Param_Out_HasAnySettings); + P_FINISH; + P_NATIVE_BEGIN; + *(UGameSettingCollection**)Z_Param__Result=P_THIS->GetSettingCollection(Z_Param_SettingDevName,Z_Param_Out_HasAnySettings); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function GetSettingCollection + +// Begin Class UGameSettingScreen Function HaveSettingsBeenChanged +struct Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics +{ + struct GameSettingScreen_eventHaveSettingsBeenChanged_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingScreen_eventHaveSettingsBeenChanged_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventHaveSettingsBeenChanged_Parms), &Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "HaveSettingsBeenChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::GameSettingScreen_eventHaveSettingsBeenChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::GameSettingScreen_eventHaveSettingsBeenChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execHaveSettingsBeenChanged) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HaveSettingsBeenChanged(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function HaveSettingsBeenChanged + +// Begin Class UGameSettingScreen Function NavigateToSetting +struct Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics +{ + struct GameSettingScreen_eventNavigateToSetting_Parms + { + FName SettingDevName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::NewProp_SettingDevName = { "SettingDevName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventNavigateToSetting_Parms, SettingDevName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::NewProp_SettingDevName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "NavigateToSetting", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::GameSettingScreen_eventNavigateToSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::GameSettingScreen_eventNavigateToSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execNavigateToSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SettingDevName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->NavigateToSetting(Z_Param_SettingDevName); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function NavigateToSetting + +// Begin Class UGameSettingScreen Function NavigateToSettings +struct Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics +{ + struct GameSettingScreen_eventNavigateToSettings_Parms + { + TArray SettingDevNames; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingDevNames_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingDevNames; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames_Inner = { "SettingDevNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames = { "SettingDevNames", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventNavigateToSettings_Parms, SettingDevNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingDevNames_MetaData), NewProp_SettingDevNames_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "NavigateToSettings", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::GameSettingScreen_eventNavigateToSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::GameSettingScreen_eventNavigateToSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execNavigateToSettings) +{ + P_GET_TARRAY_REF(FName,Z_Param_Out_SettingDevNames); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->NavigateToSettings(Z_Param_Out_SettingDevNames); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function NavigateToSettings + +// Begin Class UGameSettingScreen Function OnSettingsDirtyStateChanged +struct GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms +{ + bool bSettingsDirty; +}; +static const FName NAME_UGameSettingScreen_OnSettingsDirtyStateChanged = FName(TEXT("OnSettingsDirtyStateChanged")); +void UGameSettingScreen::OnSettingsDirtyStateChanged(bool bSettingsDirty) +{ + UFunction* Func = FindFunctionChecked(NAME_UGameSettingScreen_OnSettingsDirtyStateChanged); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms Parms; + Parms.bSettingsDirty=bSettingsDirty ? true : false; + ProcessEvent(Func,&Parms); + } + else + { + OnSettingsDirtyStateChanged_Implementation(bSettingsDirty); + } +} +struct Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bSettingsDirty_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSettingsDirty; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty_SetBit(void* Obj) +{ + ((GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms*)Obj)->bSettingsDirty = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty = { "bSettingsDirty", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms), &Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "OnSettingsDirtyStateChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers), sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execOnSettingsDirtyStateChanged) +{ + P_GET_UBOOL(Z_Param_bSettingsDirty); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnSettingsDirtyStateChanged_Implementation(Z_Param_bSettingsDirty); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function OnSettingsDirtyStateChanged + +// Begin Class UGameSettingScreen +void UGameSettingScreen::StaticRegisterNativesUGameSettingScreen() +{ + UClass* Class = UGameSettingScreen::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyChanges", &UGameSettingScreen::execApplyChanges }, + { "AttemptToPopNavigation", &UGameSettingScreen::execAttemptToPopNavigation }, + { "CancelChanges", &UGameSettingScreen::execCancelChanges }, + { "GetSettingCollection", &UGameSettingScreen::execGetSettingCollection }, + { "HaveSettingsBeenChanged", &UGameSettingScreen::execHaveSettingsBeenChanged }, + { "NavigateToSetting", &UGameSettingScreen::execNavigateToSetting }, + { "NavigateToSettings", &UGameSettingScreen::execNavigateToSettings }, + { "OnSettingsDirtyStateChanged", &UGameSettingScreen::execOnSettingsDirtyStateChanged }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingScreen); +UClass* Z_Construct_UClass_UGameSettingScreen_NoRegister() +{ + return UGameSettingScreen::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingScreen.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_Panel_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Registry_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Settings_Panel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Registry; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingScreen_ApplyChanges, "ApplyChanges" }, // 2871902737 + { &Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation, "AttemptToPopNavigation" }, // 1439138950 + { &Z_Construct_UFunction_UGameSettingScreen_CancelChanges, "CancelChanges" }, // 3941068252 + { &Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection, "GetSettingCollection" }, // 1892236229 + { &Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged, "HaveSettingsBeenChanged" }, // 1279399345 + { &Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting, "NavigateToSetting" }, // 66770425 + { &Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings, "NavigateToSettings" }, // 1196035665 + { &Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged, "OnSettingsDirtyStateChanged" }, // 1480340330 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Settings_Panel = { "Settings_Panel", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingScreen, Settings_Panel), Z_Construct_UClass_UGameSettingPanel_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_Panel_MetaData), NewProp_Settings_Panel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Registry = { "Registry", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingScreen, Registry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Registry_MetaData), NewProp_Registry_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Settings_Panel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Registry, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingScreen_Statics::ClassParams = { + &UGameSettingScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingScreen() +{ + if (!Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton, Z_Construct_UClass_UGameSettingScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingScreen::StaticClass(); +} +UGameSettingScreen::UGameSettingScreen(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingScreen); +UGameSettingScreen::~UGameSettingScreen() {} +// End Class UGameSettingScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingScreen, UGameSettingScreen::StaticClass, TEXT("UGameSettingScreen"), &Z_Registration_Info_UClass_UGameSettingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingScreen), 1919204161U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_1937490542(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.generated.h new file mode 100644 index 00000000..4b941de4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingScreen.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSettingCollection; +#ifdef GAMESETTINGS_GameSettingScreen_generated_h +#error "GameSettingScreen.generated.h already included, missing '#pragma once' in GameSettingScreen.h" +#endif +#define GAMESETTINGS_GameSettingScreen_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHaveSettingsBeenChanged); \ + DECLARE_FUNCTION(execApplyChanges); \ + DECLARE_FUNCTION(execCancelChanges); \ + DECLARE_FUNCTION(execGetSettingCollection); \ + DECLARE_FUNCTION(execAttemptToPopNavigation); \ + DECLARE_FUNCTION(execOnSettingsDirtyStateChanged); \ + DECLARE_FUNCTION(execNavigateToSettings); \ + DECLARE_FUNCTION(execNavigateToSetting); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingScreen(); \ + friend struct Z_Construct_UClass_UGameSettingScreen_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingScreen, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingScreen) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingScreen(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingScreen(UGameSettingScreen&&); \ + UGameSettingScreen(const UGameSettingScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingScreen) \ + NO_API virtual ~UGameSettingScreen(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_23_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.gen.cpp new file mode 100644 index 00000000..22b42d91 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValue.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValue() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValue +void UGameSettingValue::StaticRegisterNativesUGameSettingValue() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValue); +UClass* Z_Construct_UClass_UGameSettingValue_NoRegister() +{ + return UGameSettingValue::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValue_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The base class for all settings that are conceptually a value, that can be \n * changed, and thus reset or restored to their initial value.\n */" }, +#endif + { "IncludePath", "GameSettingValue.h" }, + { "ModuleRelativePath", "Public/GameSettingValue.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base class for all settings that are conceptually a value, that can be\nchanged, and thus reset or restored to their initial value." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValue_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValue_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValue_Statics::ClassParams = { + &UGameSettingValue::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValue_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValue_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValue() +{ + if (!Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton, Z_Construct_UClass_UGameSettingValue_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValue::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValue); +UGameSettingValue::~UGameSettingValue() {} +// End Class UGameSettingValue + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValue, UGameSettingValue::StaticClass, TEXT("UGameSettingValue"), &Z_Registration_Info_UClass_UGameSettingValue, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValue), 1373387846U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_2601201315(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.generated.h new file mode 100644 index 00000000..1a79903d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValue.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValue.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValue_generated_h +#error "GameSettingValue.generated.h already included, missing '#pragma once' in GameSettingValue.h" +#endif +#define GAMESETTINGS_GameSettingValue_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValue(); \ + friend struct Z_Construct_UClass_UGameSettingValue_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValue, UGameSetting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValue) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValue(UGameSettingValue&&); \ + UGameSettingValue(const UGameSettingValue&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValue); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValue); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValue) \ + NO_API virtual ~UGameSettingValue(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_19_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp new file mode 100644 index 00000000..fe352a5e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp @@ -0,0 +1,235 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueDiscrete.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueDiscrete() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptionDefaultIndex +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Optional */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Optional" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptionDefaultIndex", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptionDefaultIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetDiscreteOptionDefaultIndex(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptionDefaultIndex + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptionIndex +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptionIndex", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptionIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetDiscreteOptionIndex(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptionIndex + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptions +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptions_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptions_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptions", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::GameSettingValueDiscrete_eventGetDiscreteOptions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::GameSettingValueDiscrete_eventGetDiscreteOptions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptions) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetDiscreteOptions(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptions + +// Begin Class UGameSettingValueDiscrete +void UGameSettingValueDiscrete::StaticRegisterNativesUGameSettingValueDiscrete() +{ + UClass* Class = UGameSettingValueDiscrete::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDiscreteOptionDefaultIndex", &UGameSettingValueDiscrete::execGetDiscreteOptionDefaultIndex }, + { "GetDiscreteOptionIndex", &UGameSettingValueDiscrete::execGetDiscreteOptionIndex }, + { "GetDiscreteOptions", &UGameSettingValueDiscrete::execGetDiscreteOptions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscrete); +UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister() +{ + return UGameSettingValueDiscrete::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscrete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueDiscrete.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex, "GetDiscreteOptionDefaultIndex" }, // 1450543490 + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex, "GetDiscreteOptionIndex" }, // 2225194349 + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions, "GetDiscreteOptions" }, // 861247989 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscrete_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscrete_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscrete_Statics::ClassParams = { + &UGameSettingValueDiscrete::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscrete_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscrete_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscrete() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscrete_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscrete::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscrete); +UGameSettingValueDiscrete::~UGameSettingValueDiscrete() {} +// End Class UGameSettingValueDiscrete + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueDiscrete, UGameSettingValueDiscrete::StaticClass, TEXT("UGameSettingValueDiscrete"), &Z_Registration_Info_UClass_UGameSettingValueDiscrete, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscrete), 535713849U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_1873134891(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h new file mode 100644 index 00000000..34dd00b1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueDiscrete.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueDiscrete_generated_h +#error "GameSettingValueDiscrete.generated.h already included, missing '#pragma once' in GameSettingValueDiscrete.h" +#endif +#define GAMESETTINGS_GameSettingValueDiscrete_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDiscreteOptions); \ + DECLARE_FUNCTION(execGetDiscreteOptionDefaultIndex); \ + DECLARE_FUNCTION(execGetDiscreteOptionIndex); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscrete(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscrete_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscrete, UGameSettingValue, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscrete) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscrete(UGameSettingValueDiscrete&&); \ + UGameSettingValueDiscrete(const UGameSettingValueDiscrete&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscrete); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscrete); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscrete) \ + NO_API virtual ~UGameSettingValueDiscrete(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp new file mode 100644 index 00000000..1f835014 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp @@ -0,0 +1,436 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueDiscreteDynamic.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueDiscreteDynamic() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueDiscreteDynamic +void UGameSettingValueDiscreteDynamic::StaticRegisterNativesUGameSettingValueDiscreteDynamic() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_NoRegister() +{ + return UGameSettingValueDiscreteDynamic::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic); +UGameSettingValueDiscreteDynamic::~UGameSettingValueDiscreteDynamic() {} +// End Class UGameSettingValueDiscreteDynamic + +// Begin Class UGameSettingValueDiscreteDynamic_Bool +void UGameSettingValueDiscreteDynamic_Bool::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Bool() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Bool); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Bool::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Bool\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Bool" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Bool::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Bool::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Bool); +UGameSettingValueDiscreteDynamic_Bool::~UGameSettingValueDiscreteDynamic_Bool() {} +// End Class UGameSettingValueDiscreteDynamic_Bool + +// Begin Class UGameSettingValueDiscreteDynamic_Number +void UGameSettingValueDiscreteDynamic_Number::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Number() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Number); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Number::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Number\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Number" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Number::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Number::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Number); +UGameSettingValueDiscreteDynamic_Number::~UGameSettingValueDiscreteDynamic_Number() {} +// End Class UGameSettingValueDiscreteDynamic_Number + +// Begin Class UGameSettingValueDiscreteDynamic_Enum +void UGameSettingValueDiscreteDynamic_Enum::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Enum() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Enum); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Enum::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Enum\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Enum" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Enum::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Enum::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Enum); +UGameSettingValueDiscreteDynamic_Enum::~UGameSettingValueDiscreteDynamic_Enum() {} +// End Class UGameSettingValueDiscreteDynamic_Enum + +// Begin Class UGameSettingValueDiscreteDynamic_Color +void UGameSettingValueDiscreteDynamic_Color::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Color() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Color); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Color::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Color\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Color" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Color::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Color::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Color); +UGameSettingValueDiscreteDynamic_Color::~UGameSettingValueDiscreteDynamic_Color() {} +// End Class UGameSettingValueDiscreteDynamic_Color + +// Begin Class UGameSettingValueDiscreteDynamic_Vector2D +void UGameSettingValueDiscreteDynamic_Vector2D::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Vector2D() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Vector2D); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Vector2D::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Vector2D\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Vector2D" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Vector2D::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Vector2D::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Vector2D); +UGameSettingValueDiscreteDynamic_Vector2D::~UGameSettingValueDiscreteDynamic_Vector2D() {} +// End Class UGameSettingValueDiscreteDynamic_Vector2D + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic, UGameSettingValueDiscreteDynamic::StaticClass, TEXT("UGameSettingValueDiscreteDynamic"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic), 3076102642U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool, UGameSettingValueDiscreteDynamic_Bool::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Bool"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Bool), 99294893U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number, UGameSettingValueDiscreteDynamic_Number::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Number"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Number), 1260129619U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum, UGameSettingValueDiscreteDynamic_Enum::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Enum"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Enum), 3533649785U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color, UGameSettingValueDiscreteDynamic_Color::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Color"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Color), 2849694914U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D, UGameSettingValueDiscreteDynamic_Vector2D::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Vector2D"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Vector2D), 719681153U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_1087927517(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h new file mode 100644 index 00000000..a8937f70 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h @@ -0,0 +1,219 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueDiscreteDynamic.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueDiscreteDynamic_generated_h +#error "GameSettingValueDiscreteDynamic.generated.h already included, missing '#pragma once' in GameSettingValueDiscreteDynamic.h" +#endif +#define GAMESETTINGS_GameSettingValueDiscreteDynamic_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic(UGameSettingValueDiscreteDynamic&&); \ + UGameSettingValueDiscreteDynamic(const UGameSettingValueDiscreteDynamic&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Bool(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Bool, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Bool) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Bool(UGameSettingValueDiscreteDynamic_Bool&&); \ + UGameSettingValueDiscreteDynamic_Bool(const UGameSettingValueDiscreteDynamic_Bool&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Bool); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Bool); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Bool) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Bool(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_76_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Number(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Number, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Number) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Number(UGameSettingValueDiscreteDynamic_Number&&); \ + UGameSettingValueDiscreteDynamic_Number(const UGameSettingValueDiscreteDynamic_Number&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Number); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Number); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Number) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Number(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_100_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Enum(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Enum, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Enum) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Enum(UGameSettingValueDiscreteDynamic_Enum&&); \ + UGameSettingValueDiscreteDynamic_Enum(const UGameSettingValueDiscreteDynamic_Enum&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Enum); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Enum); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Enum) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Enum(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_147_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Color(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Color, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Color) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Color(UGameSettingValueDiscreteDynamic_Color&&); \ + UGameSettingValueDiscreteDynamic_Color(const UGameSettingValueDiscreteDynamic_Color&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Color); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Color); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Color) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Color(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_193_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Vector2D(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Vector2D, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Vector2D) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Vector2D(UGameSettingValueDiscreteDynamic_Vector2D&&); \ + UGameSettingValueDiscreteDynamic_Vector2D(const UGameSettingValueDiscreteDynamic_Vector2D&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Vector2D); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Vector2D); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Vector2D) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Vector2D(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_234_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp new file mode 100644 index 00000000..e3d8a5e6 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueScalar.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueScalar() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueScalar +void UGameSettingValueScalar::StaticRegisterNativesUGameSettingValueScalar() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueScalar); +UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister() +{ + return UGameSettingValueScalar::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueScalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueScalar.h" }, + { "ModuleRelativePath", "Public/GameSettingValueScalar.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueScalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueScalar_Statics::ClassParams = { + &UGameSettingValueScalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalar_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueScalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueScalar() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton, Z_Construct_UClass_UGameSettingValueScalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueScalar::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueScalar); +UGameSettingValueScalar::~UGameSettingValueScalar() {} +// End Class UGameSettingValueScalar + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueScalar, UGameSettingValueScalar::StaticClass, TEXT("UGameSettingValueScalar"), &Z_Registration_Info_UClass_UGameSettingValueScalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueScalar), 1486174764U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_174268002(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h new file mode 100644 index 00000000..a24ca44c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueScalar.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueScalar_generated_h +#error "GameSettingValueScalar.generated.h already included, missing '#pragma once' in GameSettingValueScalar.h" +#endif +#define GAMESETTINGS_GameSettingValueScalar_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueScalar(); \ + friend struct Z_Construct_UClass_UGameSettingValueScalar_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueScalar, UGameSettingValue, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueScalar) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueScalar(UGameSettingValueScalar&&); \ + UGameSettingValueScalar(const UGameSettingValueScalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueScalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueScalar); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueScalar) \ + NO_API virtual ~UGameSettingValueScalar(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp new file mode 100644 index 00000000..00e44426 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueScalarDynamic.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueScalarDynamic() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueScalarDynamic +void UGameSettingValueScalarDynamic::StaticRegisterNativesUGameSettingValueScalarDynamic() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueScalarDynamic); +UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic_NoRegister() +{ + return UGameSettingValueScalarDynamic::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueScalarDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueScalarDynamic.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueScalar, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::ClassParams = { + &UGameSettingValueScalarDynamic::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton, Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueScalarDynamic::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueScalarDynamic); +UGameSettingValueScalarDynamic::~UGameSettingValueScalarDynamic() {} +// End Class UGameSettingValueScalarDynamic + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueScalarDynamic, UGameSettingValueScalarDynamic::StaticClass, TEXT("UGameSettingValueScalarDynamic"), &Z_Registration_Info_UClass_UGameSettingValueScalarDynamic, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueScalarDynamic), 2151772642U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_3580281015(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h new file mode 100644 index 00000000..68c02aa0 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueScalarDynamic.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueScalarDynamic_generated_h +#error "GameSettingValueScalarDynamic.generated.h already included, missing '#pragma once' in GameSettingValueScalarDynamic.h" +#endif +#define GAMESETTINGS_GameSettingValueScalarDynamic_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueScalarDynamic(); \ + friend struct Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueScalarDynamic, UGameSettingValueScalar, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueScalarDynamic) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueScalarDynamic(UGameSettingValueScalarDynamic&&); \ + UGameSettingValueScalarDynamic(const UGameSettingValueScalarDynamic&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueScalarDynamic); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueScalarDynamic); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueScalarDynamic) \ + NO_API virtual ~UGameSettingValueScalarDynamic(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp new file mode 100644 index 00000000..925f6d80 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp @@ -0,0 +1,306 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingVisualData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingVisualData() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingClassExtensions(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingNameExtensions(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin ScriptStruct FGameSettingClassExtensions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingClassExtensions; +class UScriptStruct* FGameSettingClassExtensions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingClassExtensions, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingClassExtensions")); + } + return Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingClassExtensions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_Extensions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Extensions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions_Inner = { "Extensions", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSettingDetailExtension_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions = { "Extensions", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingClassExtensions, Extensions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extensions_MetaData), NewProp_Extensions_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingClassExtensions", + Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers), + sizeof(FGameSettingClassExtensions), + alignof(FGameSettingClassExtensions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingClassExtensions() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton; +} +// End ScriptStruct FGameSettingClassExtensions + +// Begin ScriptStruct FGameSettingNameExtensions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingNameExtensions; +class UScriptStruct* FGameSettingNameExtensions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingNameExtensions, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingNameExtensions")); + } + return Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingNameExtensions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeClassDefaultExtensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bIncludeClassDefaultExtensions_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeClassDefaultExtensions; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_Extensions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Extensions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions_SetBit(void* Obj) +{ + ((FGameSettingNameExtensions*)Obj)->bIncludeClassDefaultExtensions = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions = { "bIncludeClassDefaultExtensions", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingNameExtensions), &Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeClassDefaultExtensions_MetaData), NewProp_bIncludeClassDefaultExtensions_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions_Inner = { "Extensions", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSettingDetailExtension_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions = { "Extensions", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingNameExtensions, Extensions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extensions_MetaData), NewProp_Extensions_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingNameExtensions", + Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers), + sizeof(FGameSettingNameExtensions), + alignof(FGameSettingNameExtensions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingNameExtensions() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton; +} +// End ScriptStruct FGameSettingNameExtensions + +// Begin Class UGameSettingVisualData +void UGameSettingVisualData::StaticRegisterNativesUGameSettingVisualData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingVisualData); +UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister() +{ + return UGameSettingVisualData::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingVisualData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/GameSettingVisualData.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForClass_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForName_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionsForClasses_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionsForName_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForName_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_EntryWidgetForName_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionsForClasses_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExtensionsForClasses_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionsForClasses; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionsForName_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ExtensionsForName_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionsForName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_ValueProp = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingListEntryBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_Key_KeyProp = { "EntryWidgetForClass_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, EntryWidgetForClass), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForClass_MetaData), NewProp_EntryWidgetForClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_ValueProp = { "EntryWidgetForName", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingListEntryBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_Key_KeyProp = { "EntryWidgetForName_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName = { "EntryWidgetForName", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, EntryWidgetForName), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForName_MetaData), NewProp_EntryWidgetForName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_ValueProp = { "ExtensionsForClasses", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameSettingClassExtensions, METADATA_PARAMS(0, nullptr) }; // 1023154710 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_Key_KeyProp = { "ExtensionsForClasses_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses = { "ExtensionsForClasses", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, ExtensionsForClasses), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionsForClasses_MetaData), NewProp_ExtensionsForClasses_MetaData) }; // 1023154710 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_ValueProp = { "ExtensionsForName", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameSettingNameExtensions, METADATA_PARAMS(0, nullptr) }; // 1443050342 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_Key_KeyProp = { "ExtensionsForName_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName = { "ExtensionsForName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, ExtensionsForName), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionsForName_MetaData), NewProp_ExtensionsForName_MetaData) }; // 1443050342 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingVisualData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingVisualData_Statics::ClassParams = { + &UGameSettingVisualData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingVisualData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingVisualData() +{ + if (!Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton, Z_Construct_UClass_UGameSettingVisualData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingVisualData::StaticClass(); +} +UGameSettingVisualData::UGameSettingVisualData(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingVisualData); +UGameSettingVisualData::~UGameSettingVisualData() {} +// End Class UGameSettingVisualData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameSettingClassExtensions::StaticStruct, Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewStructOps, TEXT("GameSettingClassExtensions"), &Z_Registration_Info_UScriptStruct_GameSettingClassExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingClassExtensions), 1023154710U) }, + { FGameSettingNameExtensions::StaticStruct, Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewStructOps, TEXT("GameSettingNameExtensions"), &Z_Registration_Info_UScriptStruct_GameSettingNameExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingNameExtensions), 1443050342U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingVisualData, UGameSettingVisualData::StaticClass, TEXT("UGameSettingVisualData"), &Z_Registration_Info_UClass_UGameSettingVisualData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingVisualData), 2040353489U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_252792939(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.generated.h new file mode 100644 index 00000000..99dda1f8 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingVisualData.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingVisualData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingVisualData_generated_h +#error "GameSettingVisualData.generated.h already included, missing '#pragma once' in GameSettingVisualData.h" +#endif +#define GAMESETTINGS_GameSettingVisualData_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics; \ + GAMESETTINGS_API static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_28_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics; \ + GAMESETTINGS_API static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingVisualData(); \ + friend struct Z_Construct_UClass_UGameSettingVisualData_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingVisualData, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingVisualData) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingVisualData(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingVisualData(UGameSettingVisualData&&); \ + UGameSettingVisualData(const UGameSettingVisualData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingVisualData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingVisualData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingVisualData) \ + NO_API virtual ~UGameSettingVisualData(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_41_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettings.init.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettings.init.gen.cpp new file mode 100644 index 00000000..ac0533f4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettings.init.gen.cpp @@ -0,0 +1,33 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettings_init() {} + GAMESETTINGS_API UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameSettings; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameSettings() + { + if (!Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameSettings", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x6C44EA84, + 0x26465116, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameSettings(Z_Construct_UPackage__Script_GameSettings, TEXT("/Script/GameSettings"), Z_Registration_Info_UPackage__Script_GameSettings, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x6C44EA84, 0x26465116)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingsClasses.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettingsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp new file mode 100644 index 00000000..b2dfa645 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp @@ -0,0 +1,192 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/IGameSettingActionInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIGameSettingActionInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Interface UGameSettingActionInterface Function ExecuteActionForSetting +struct GameSettingActionInterface_eventExecuteActionForSetting_Parms +{ + FGameplayTag ActionTag; + UGameSetting* InSetting; + bool ReturnValue; + + /** Constructor, initializes return property only **/ + GameSettingActionInterface_eventExecuteActionForSetting_Parms() + : ReturnValue(false) + { + } +}; +bool IGameSettingActionInterface::ExecuteActionForSetting(FGameplayTag ActionTag, UGameSetting* InSetting) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_ExecuteActionForSetting instead."); + GameSettingActionInterface_eventExecuteActionForSetting_Parms Parms; + return Parms.ReturnValue; +} +static FName NAME_UGameSettingActionInterface_ExecuteActionForSetting = FName(TEXT("ExecuteActionForSetting")); +bool IGameSettingActionInterface::Execute_ExecuteActionForSetting(UObject* O, FGameplayTag ActionTag, UGameSetting* InSetting) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UGameSettingActionInterface::StaticClass())); + GameSettingActionInterface_eventExecuteActionForSetting_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UGameSettingActionInterface_ExecuteActionForSetting); + if (Func) + { + Parms.ActionTag=ActionTag; + Parms.InSetting=InSetting; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IGameSettingActionInterface*)(O->GetNativeInterfaceAddress(UGameSettingActionInterface::StaticClass()))) + { + Parms.ReturnValue = I->ExecuteActionForSetting_Implementation(ActionTag,InSetting); + } + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/IGameSettingActionInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ActionTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ActionTag = { "ActionTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingActionInterface_eventExecuteActionForSetting_Parms, ActionTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingActionInterface_eventExecuteActionForSetting_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingActionInterface_eventExecuteActionForSetting_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms), &Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ActionTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_InSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingActionInterface, nullptr, "ExecuteActionForSetting", nullptr, nullptr, Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers), sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x0C020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IGameSettingActionInterface::execExecuteActionForSetting) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ActionTag); + P_GET_OBJECT(UGameSetting,Z_Param_InSetting); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ExecuteActionForSetting_Implementation(Z_Param_ActionTag,Z_Param_InSetting); + P_NATIVE_END; +} +// End Interface UGameSettingActionInterface Function ExecuteActionForSetting + +// Begin Interface UGameSettingActionInterface +void UGameSettingActionInterface::StaticRegisterNativesUGameSettingActionInterface() +{ + UClass* Class = UGameSettingActionInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ExecuteActionForSetting", &IGameSettingActionInterface::execExecuteActionForSetting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingActionInterface); +UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister() +{ + return UGameSettingActionInterface::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingActionInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "" }, + { "ModuleRelativePath", "Public/Widgets/IGameSettingActionInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting, "ExecuteActionForSetting" }, // 2867925820 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingActionInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingActionInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingActionInterface_Statics::ClassParams = { + &UGameSettingActionInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingActionInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingActionInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingActionInterface() +{ + if (!Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton, Z_Construct_UClass_UGameSettingActionInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingActionInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingActionInterface); +UGameSettingActionInterface::~UGameSettingActionInterface() {} +// End Interface UGameSettingActionInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingActionInterface, UGameSettingActionInterface::StaticClass, TEXT("UGameSettingActionInterface"), &Z_Registration_Info_UClass_UGameSettingActionInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingActionInterface), 3882456604U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_2406590174(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h new file mode 100644 index 00000000..85c4bc90 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h @@ -0,0 +1,82 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/IGameSettingActionInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +struct FGameplayTag; +#ifdef GAMESETTINGS_IGameSettingActionInterface_generated_h +#error "IGameSettingActionInterface.generated.h already included, missing '#pragma once' in IGameSettingActionInterface.h" +#endif +#define GAMESETTINGS_IGameSettingActionInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual bool ExecuteActionForSetting_Implementation(FGameplayTag ActionTag, UGameSetting* InSetting) { return false; }; \ + DECLARE_FUNCTION(execExecuteActionForSetting); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + GAMESETTINGS_API UGameSettingActionInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingActionInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(GAMESETTINGS_API, UGameSettingActionInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingActionInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingActionInterface(UGameSettingActionInterface&&); \ + UGameSettingActionInterface(const UGameSettingActionInterface&); \ +public: \ + GAMESETTINGS_API virtual ~UGameSettingActionInterface(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUGameSettingActionInterface(); \ + friend struct Z_Construct_UClass_UGameSettingActionInterface_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingActionInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/GameSettings"), GAMESETTINGS_API) \ + DECLARE_SERIALIZER(UGameSettingActionInterface) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IGameSettingActionInterface() {} \ +public: \ + typedef UGameSettingActionInterface UClassType; \ + typedef IGameSettingActionInterface ThisClass; \ + static bool Execute_ExecuteActionForSetting(UObject* O, FGameplayTag ActionTag, UGameSetting* InSetting); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp new file mode 100644 index 00000000..11412e35 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeKeyAlreadyBoundWarning() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UTextBlock_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UKeyAlreadyBoundWarning +void UKeyAlreadyBoundWarning::StaticRegisterNativesUKeyAlreadyBoundWarning() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UKeyAlreadyBoundWarning); +UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister() +{ + return UKeyAlreadyBoundWarning::StaticClass(); +} +struct Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UKeyAlreadyBoundWarning\n * Press any key screen with text blocks for warning users when a key is already bound\n */" }, +#endif + { "IncludePath", "Widgets/Misc/KeyAlreadyBoundWarning.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UKeyAlreadyBoundWarning\nPress any key screen with text blocks for warning users when a key is already bound" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WarningText_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "KeyAlreadyBoundWarning" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelText_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "KeyAlreadyBoundWarning" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WarningText; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CancelText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_WarningText = { "WarningText", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UKeyAlreadyBoundWarning, WarningText), Z_Construct_UClass_UTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WarningText_MetaData), NewProp_WarningText_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_CancelText = { "CancelText", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UKeyAlreadyBoundWarning, CancelText), Z_Construct_UClass_UTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelText_MetaData), NewProp_CancelText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_WarningText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_CancelText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingPressAnyKey, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::ClassParams = { + &UKeyAlreadyBoundWarning::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::Class_MetaDataParams), Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning() +{ + if (!Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton, Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UKeyAlreadyBoundWarning::StaticClass(); +} +UKeyAlreadyBoundWarning::UKeyAlreadyBoundWarning(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UKeyAlreadyBoundWarning); +UKeyAlreadyBoundWarning::~UKeyAlreadyBoundWarning() {} +// End Class UKeyAlreadyBoundWarning + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UKeyAlreadyBoundWarning, UKeyAlreadyBoundWarning::StaticClass, TEXT("UKeyAlreadyBoundWarning"), &Z_Registration_Info_UClass_UKeyAlreadyBoundWarning, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UKeyAlreadyBoundWarning), 4103890129U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_1833835952(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h new file mode 100644 index 00000000..5ff9497c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/KeyAlreadyBoundWarning.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_KeyAlreadyBoundWarning_generated_h +#error "KeyAlreadyBoundWarning.generated.h already included, missing '#pragma once' in KeyAlreadyBoundWarning.h" +#endif +#define GAMESETTINGS_KeyAlreadyBoundWarning_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUKeyAlreadyBoundWarning(); \ + friend struct Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics; \ +public: \ + DECLARE_CLASS(UKeyAlreadyBoundWarning, UGameSettingPressAnyKey, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UKeyAlreadyBoundWarning) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UKeyAlreadyBoundWarning(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UKeyAlreadyBoundWarning(UKeyAlreadyBoundWarning&&); \ + UKeyAlreadyBoundWarning(const UKeyAlreadyBoundWarning&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UKeyAlreadyBoundWarning); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UKeyAlreadyBoundWarning); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UKeyAlreadyBoundWarning) \ + NO_API virtual ~UKeyAlreadyBoundWarning(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/Timestamp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/Timestamp new file mode 100644 index 00000000..4204360f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/Timestamp @@ -0,0 +1,23 @@ +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSetting.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingAction.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingCollection.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingFilterState.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingRegistry.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValue.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueDiscrete.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueDiscreteDynamic.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueScalarDynamic.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueScalar.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingDetailExtension.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingListEntry.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingListView.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingDetailView.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingPanel.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\IGameSettingActionInterface.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingScreen.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\GameSettingPressAnyKey.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\GameSettingRotator.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingVisualData.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\KeyAlreadyBoundWarning.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Private\Widgets\Responsive\GameResponsivePanelSlot.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Private\Widgets\Responsive\GameResponsivePanel.h diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp new file mode 100644 index 00000000..b0475571 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.gen.cpp @@ -0,0 +1,179 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Private/Widgets/Responsive/GameResponsivePanel.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameResponsivePanel() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanel(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelWidget(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameResponsivePanel Function AddChildToGameResponsivePanel +struct Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics +{ + struct GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms + { + UWidget* Content; + UGameResponsivePanelSlot* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Widget" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Content_MetaData[] = { + { "EditInline", "true" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Content; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_Content = { "Content", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms, Content), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Content_MetaData), NewProp_Content_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms, ReturnValue), Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_Content, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameResponsivePanel, nullptr, "AddChildToGameResponsivePanel", nullptr, nullptr, Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::GameResponsivePanel_eventAddChildToGameResponsivePanel_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameResponsivePanel::execAddChildToGameResponsivePanel) +{ + P_GET_OBJECT(UWidget,Z_Param_Content); + P_FINISH; + P_NATIVE_BEGIN; + *(UGameResponsivePanelSlot**)Z_Param__Result=P_THIS->AddChildToGameResponsivePanel(Z_Param_Content); + P_NATIVE_END; +} +// End Class UGameResponsivePanel Function AddChildToGameResponsivePanel + +// Begin Class UGameResponsivePanel +void UGameResponsivePanel::StaticRegisterNativesUGameResponsivePanel() +{ + UClass* Class = UGameResponsivePanel::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "AddChildToGameResponsivePanel", &UGameResponsivePanel::execAddChildToGameResponsivePanel }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameResponsivePanel); +UClass* Z_Construct_UClass_UGameResponsivePanel_NoRegister() +{ + return UGameResponsivePanel::StaticClass(); +} +struct Z_Construct_UClass_UGameResponsivePanel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Allows widgets to be laid out in a flow horizontally.\n *\n * * Many Children\n * * Flow Horizontal\n */" }, +#endif + { "IncludePath", "Widgets/Responsive/GameResponsivePanel.h" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Allows widgets to be laid out in a flow horizontally.\n\n* Many Children\n* Flow Horizontal" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCanStackVertically_MetaData[] = { + { "Category", "Behavior" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanel.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bCanStackVertically_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bCanStackVertically; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameResponsivePanel_AddChildToGameResponsivePanel, "AddChildToGameResponsivePanel" }, // 3902398232 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +void Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically_SetBit(void* Obj) +{ + ((UGameResponsivePanel*)Obj)->bCanStackVertically = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically = { "bCanStackVertically", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UGameResponsivePanel), &Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCanStackVertically_MetaData), NewProp_bCanStackVertically_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameResponsivePanel_Statics::NewProp_bCanStackVertically, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameResponsivePanel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPanelWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameResponsivePanel_Statics::ClassParams = { + &UGameResponsivePanel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::PropPointers), + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanel_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameResponsivePanel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameResponsivePanel() +{ + if (!Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton, Z_Construct_UClass_UGameResponsivePanel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameResponsivePanel.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameResponsivePanel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameResponsivePanel); +UGameResponsivePanel::~UGameResponsivePanel() {} +// End Class UGameResponsivePanel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameResponsivePanel, UGameResponsivePanel::StaticClass, TEXT("UGameResponsivePanel"), &Z_Registration_Info_UClass_UGameResponsivePanel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameResponsivePanel), 940797421U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_3890441673(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.generated.h new file mode 100644 index 00000000..a31fbcb0 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanel.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Responsive/GameResponsivePanel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameResponsivePanelSlot; +class UWidget; +#ifdef GAMESETTINGS_GameResponsivePanel_generated_h +#error "GameResponsivePanel.generated.h already included, missing '#pragma once' in GameResponsivePanel.h" +#endif +#define GAMESETTINGS_GameResponsivePanel_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_RPC_WRAPPERS \ + DECLARE_FUNCTION(execAddChildToGameResponsivePanel); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_INCLASS \ +private: \ + static void StaticRegisterNativesUGameResponsivePanel(); \ + friend struct Z_Construct_UClass_UGameResponsivePanel_Statics; \ +public: \ + DECLARE_CLASS(UGameResponsivePanel, UPanelWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameResponsivePanel) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameResponsivePanel(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameResponsivePanel) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameResponsivePanel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameResponsivePanel); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameResponsivePanel(UGameResponsivePanel&&); \ + UGameResponsivePanel(const UGameResponsivePanel&); \ +public: \ + NO_API virtual ~UGameResponsivePanel(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h_19_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp new file mode 100644 index 00000000..3ea88d62 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Private/Widgets/Responsive/GameResponsivePanelSlot.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameResponsivePanelSlot() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelSlot(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameResponsivePanelSlot +void UGameResponsivePanelSlot::StaticRegisterNativesUGameResponsivePanelSlot() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameResponsivePanelSlot); +UClass* Z_Construct_UClass_UGameResponsivePanelSlot_NoRegister() +{ + return UGameResponsivePanelSlot::StaticClass(); +} +struct Z_Construct_UClass_UGameResponsivePanelSlot_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Widgets/Responsive/GameResponsivePanelSlot.h" }, + { "ModuleRelativePath", "Private/Widgets/Responsive/GameResponsivePanelSlot.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameResponsivePanelSlot_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UPanelSlot, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanelSlot_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameResponsivePanelSlot_Statics::ClassParams = { + &UGameResponsivePanelSlot::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00A000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameResponsivePanelSlot_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameResponsivePanelSlot_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameResponsivePanelSlot() +{ + if (!Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton, Z_Construct_UClass_UGameResponsivePanelSlot_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameResponsivePanelSlot.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameResponsivePanelSlot::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameResponsivePanelSlot); +UGameResponsivePanelSlot::~UGameResponsivePanelSlot() {} +// End Class UGameResponsivePanelSlot + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameResponsivePanelSlot, UGameResponsivePanelSlot::StaticClass, TEXT("UGameResponsivePanelSlot"), &Z_Registration_Info_UClass_UGameResponsivePanelSlot, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameResponsivePanelSlot), 3729997617U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_3358801129(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h new file mode 100644 index 00000000..f9980bc5 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameResponsivePanelSlot.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Responsive/GameResponsivePanelSlot.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameResponsivePanelSlot_generated_h +#error "GameResponsivePanelSlot.generated.h already included, missing '#pragma once' in GameResponsivePanelSlot.h" +#endif +#define GAMESETTINGS_GameResponsivePanelSlot_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_INCLASS \ +private: \ + static void StaticRegisterNativesUGameResponsivePanelSlot(); \ + friend struct Z_Construct_UClass_UGameResponsivePanelSlot_Statics; \ +public: \ + DECLARE_CLASS(UGameResponsivePanelSlot, UPanelSlot, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameResponsivePanelSlot) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameResponsivePanelSlot(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameResponsivePanelSlot) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameResponsivePanelSlot); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameResponsivePanelSlot); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameResponsivePanelSlot(UGameResponsivePanelSlot&&); \ + UGameResponsivePanelSlot(const UGameResponsivePanelSlot&); \ +public: \ + NO_API virtual ~UGameResponsivePanelSlot(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h_15_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Private_Widgets_Responsive_GameResponsivePanelSlot_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.gen.cpp new file mode 100644 index 00000000..77bb5a57 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.gen.cpp @@ -0,0 +1,447 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSetting.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSetting() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTagContainer(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +UMG_API UEnum* Z_Construct_UEnum_UMG_ESlateVisibility(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSetting Function GetDescriptionRichText +struct Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics +{ + struct GameSetting_eventGetDescriptionRichText_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDescriptionRichText_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDescriptionRichText", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::GameSetting_eventGetDescriptionRichText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::GameSetting_eventGetDescriptionRichText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDescriptionRichText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDescriptionRichText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDescriptionRichText) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDescriptionRichText(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDescriptionRichText + +// Begin Class UGameSetting Function GetDevName +struct Z_Construct_UFunction_UGameSetting_GetDevName_Statics +{ + struct GameSetting_eventGetDevName_Parms + { + FName ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gets the non-localized developer name for this setting. This should remain constant, and represent a \n\x09 * unique identifier for this setting inside this settings registry.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/GameSetting.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the non-localized developer name for this setting. This should remain constant, and represent a\nunique identifier for this setting inside this settings registry." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSetting_GetDevName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDevName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDevName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDevName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDevName", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::GameSetting_eventGetDevName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDevName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDevName_Statics::GameSetting_eventGetDevName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDevName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDevName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDevName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FName*)Z_Param__Result=P_THIS->GetDevName(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDevName + +// Begin Class UGameSetting Function GetDisplayName +struct Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics +{ + struct GameSetting_eventGetDisplayName_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDisplayName_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDisplayName", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::GameSetting_eventGetDisplayName_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::GameSetting_eventGetDisplayName_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDisplayName() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDisplayName_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDisplayName) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDisplayName(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDisplayName + +// Begin Class UGameSetting Function GetDisplayNameVisibility +struct Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics +{ + struct GameSetting_eventGetDisplayNameVisibility_Parms + { + ESlateVisibility ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_ReturnValue_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDisplayNameVisibility_Parms, ReturnValue), Z_Construct_UEnum_UMG_ESlateVisibility, METADATA_PARAMS(0, nullptr) }; // 2974316103 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDisplayNameVisibility", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::GameSetting_eventGetDisplayNameVisibility_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::GameSetting_eventGetDisplayNameVisibility_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDisplayNameVisibility) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(ESlateVisibility*)Z_Param__Result=P_THIS->GetDisplayNameVisibility(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDisplayNameVisibility + +// Begin Class UGameSetting Function GetDynamicDetails +struct Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics +{ + struct GameSetting_eventGetDynamicDetails_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Gets the dynamic details about this setting. This may be information like, how many refunds are remaining \n\x09 * on their account, or the account number.\n\x09 */" }, +#endif + { "ModuleRelativePath", "Public/GameSetting.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Gets the dynamic details about this setting. This may be information like, how many refunds are remaining\non their account, or the account number." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetDynamicDetails_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetDynamicDetails", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::GameSetting_eventGetDynamicDetails_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::GameSetting_eventGetDynamicDetails_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetDynamicDetails() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetDynamicDetails_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetDynamicDetails) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetDynamicDetails(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetDynamicDetails + +// Begin Class UGameSetting Function GetTags +struct Z_Construct_UFunction_UGameSetting_GetTags_Statics +{ + struct GameSetting_eventGetTags_Parms + { + FGameplayTagContainer ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameSetting_GetTags_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000008000582, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetTags_Parms, ReturnValue), Z_Construct_UScriptStruct_FGameplayTagContainer, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; // 3352185621 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetTags_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetTags_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetTags", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetTags_Statics::GameSetting_eventGetTags_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetTags_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetTags_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetTags_Statics::GameSetting_eventGetTags_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetTags() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetTags_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetTags) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FGameplayTagContainer*)Z_Param__Result=P_THIS->GetTags(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetTags + +// Begin Class UGameSetting Function GetWarningRichText +struct Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics +{ + struct GameSetting_eventGetWarningRichText_Parms + { + FText ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSetting_eventGetWarningRichText_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSetting, nullptr, "GetWarningRichText", nullptr, nullptr, Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::GameSetting_eventGetWarningRichText_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::GameSetting_eventGetWarningRichText_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSetting_GetWarningRichText() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSetting_GetWarningRichText_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSetting::execGetWarningRichText) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(FText*)Z_Param__Result=P_THIS->GetWarningRichText(); + P_NATIVE_END; +} +// End Class UGameSetting Function GetWarningRichText + +// Begin Class UGameSetting +void UGameSetting::StaticRegisterNativesUGameSetting() +{ + UClass* Class = UGameSetting::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDescriptionRichText", &UGameSetting::execGetDescriptionRichText }, + { "GetDevName", &UGameSetting::execGetDevName }, + { "GetDisplayName", &UGameSetting::execGetDisplayName }, + { "GetDisplayNameVisibility", &UGameSetting::execGetDisplayNameVisibility }, + { "GetDynamicDetails", &UGameSetting::execGetDynamicDetails }, + { "GetTags", &UGameSetting::execGetTags }, + { "GetWarningRichText", &UGameSetting::execGetWarningRichText }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSetting); +UClass* Z_Construct_UClass_UGameSetting_NoRegister() +{ + return UGameSetting::StaticClass(); +} +struct Z_Construct_UClass_UGameSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSetting.h" }, + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingParent_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwningRegistry_MetaData[] = { + { "ModuleRelativePath", "Public/GameSetting.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingParent; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningRegistry; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSetting_GetDescriptionRichText, "GetDescriptionRichText" }, // 1710720675 + { &Z_Construct_UFunction_UGameSetting_GetDevName, "GetDevName" }, // 542514903 + { &Z_Construct_UFunction_UGameSetting_GetDisplayName, "GetDisplayName" }, // 242604848 + { &Z_Construct_UFunction_UGameSetting_GetDisplayNameVisibility, "GetDisplayNameVisibility" }, // 2298409419 + { &Z_Construct_UFunction_UGameSetting_GetDynamicDetails, "GetDynamicDetails" }, // 407856293 + { &Z_Construct_UFunction_UGameSetting_GetTags, "GetTags" }, // 4154832269 + { &Z_Construct_UFunction_UGameSetting_GetWarningRichText, "GetWarningRichText" }, // 824359185 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_SettingParent = { "SettingParent", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, SettingParent), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingParent_MetaData), NewProp_SettingParent_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSetting_Statics::NewProp_OwningRegistry = { "OwningRegistry", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSetting, OwningRegistry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwningRegistry_MetaData), NewProp_OwningRegistry_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_SettingParent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSetting_Statics::NewProp_OwningRegistry, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSetting_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSetting_Statics::ClassParams = { + &UGameSetting::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSetting_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSetting_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSetting_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSetting() +{ + if (!Z_Registration_Info_UClass_UGameSetting.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSetting.OuterSingleton, Z_Construct_UClass_UGameSetting_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSetting.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSetting::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSetting); +UGameSetting::~UGameSetting() {} +// End Class UGameSetting + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSetting, UGameSetting::StaticClass, TEXT("UGameSetting"), &Z_Registration_Info_UClass_UGameSetting, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSetting), 2281187960U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_2391022911(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.generated.h new file mode 100644 index 00000000..09ba686b --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSetting.generated.h @@ -0,0 +1,67 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSetting.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +enum class ESlateVisibility : uint8; +struct FGameplayTagContainer; +#ifdef GAMESETTINGS_GameSetting_generated_h +#error "GameSetting.generated.h already included, missing '#pragma once' in GameSetting.h" +#endif +#define GAMESETTINGS_GameSetting_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetWarningRichText); \ + DECLARE_FUNCTION(execGetDynamicDetails); \ + DECLARE_FUNCTION(execGetTags); \ + DECLARE_FUNCTION(execGetDescriptionRichText); \ + DECLARE_FUNCTION(execGetDisplayNameVisibility); \ + DECLARE_FUNCTION(execGetDisplayName); \ + DECLARE_FUNCTION(execGetDevName); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSetting(); \ + friend struct Z_Construct_UClass_UGameSetting_Statics; \ +public: \ + DECLARE_CLASS(UGameSetting, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSetting) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSetting(UGameSetting&&); \ + UGameSetting(const UGameSetting&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSetting); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSetting); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSetting) \ + NO_API virtual ~UGameSetting(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSetting_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.gen.cpp new file mode 100644 index 00000000..ce23833e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.gen.cpp @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingAction.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingAction() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingAction +void UGameSettingAction::StaticRegisterNativesUGameSettingAction() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingAction); +UClass* Z_Construct_UClass_UGameSettingAction_NoRegister() +{ + return UGameSettingAction::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSettingAction.h" }, + { "ModuleRelativePath", "Public/GameSettingAction.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingAction_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingAction_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingAction_Statics::ClassParams = { + &UGameSettingAction::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingAction_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingAction_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingAction() +{ + if (!Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton, Z_Construct_UClass_UGameSettingAction_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingAction.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingAction::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingAction); +UGameSettingAction::~UGameSettingAction() {} +// End Class UGameSettingAction + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingAction, UGameSettingAction::StaticClass, TEXT("UGameSettingAction"), &Z_Registration_Info_UClass_UGameSettingAction, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingAction), 506310664U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_1624928764(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.generated.h new file mode 100644 index 00000000..23495561 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingAction.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingAction.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingAction_generated_h +#error "GameSettingAction.generated.h already included, missing '#pragma once' in GameSettingAction.h" +#endif +#define GAMESETTINGS_GameSettingAction_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingAction(); \ + friend struct Z_Construct_UClass_UGameSettingAction_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingAction, UGameSetting, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingAction) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingAction(UGameSettingAction&&); \ + UGameSettingAction(const UGameSettingAction&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingAction); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingAction); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingAction) \ + NO_API virtual ~UGameSettingAction(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingAction_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp new file mode 100644 index 00000000..0a4569e1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.gen.cpp @@ -0,0 +1,184 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingCollection.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingCollection() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingCollection +void UGameSettingCollection::StaticRegisterNativesUGameSettingCollection() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingCollection); +UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister() +{ + return UGameSettingCollection::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingCollection_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// UGameSettingCollection\n//--------------------------------------\n" }, +#endif + { "IncludePath", "GameSettingCollection.h" }, + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingCollection" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** The settings owned by this collection. */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The settings owned by this collection." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Settings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Settings; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings_Inner = { "Settings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings = { "Settings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingCollection, Settings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_MetaData), NewProp_Settings_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingCollection_Statics::NewProp_Settings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingCollection_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingCollection_Statics::ClassParams = { + &UGameSettingCollection::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollection_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingCollection_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingCollection() +{ + if (!Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton, Z_Construct_UClass_UGameSettingCollection_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingCollection.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingCollection::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingCollection); +UGameSettingCollection::~UGameSettingCollection() {} +// End Class UGameSettingCollection + +// Begin Class UGameSettingCollectionPage +void UGameSettingCollectionPage::StaticRegisterNativesUGameSettingCollectionPage() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingCollectionPage); +UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister() +{ + return UGameSettingCollectionPage::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingCollectionPage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//--------------------------------------\n// UGameSettingCollectionPage\n//--------------------------------------\n" }, +#endif + { "IncludePath", "GameSettingCollection.h" }, + { "ModuleRelativePath", "Public/GameSettingCollection.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingCollectionPage" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingCollectionPage_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingCollection, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollectionPage_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingCollectionPage_Statics::ClassParams = { + &UGameSettingCollectionPage::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingCollectionPage_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingCollectionPage_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingCollectionPage() +{ + if (!Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton, Z_Construct_UClass_UGameSettingCollectionPage_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingCollectionPage.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingCollectionPage::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingCollectionPage); +UGameSettingCollectionPage::~UGameSettingCollectionPage() {} +// End Class UGameSettingCollectionPage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingCollection, UGameSettingCollection::StaticClass, TEXT("UGameSettingCollection"), &Z_Registration_Info_UClass_UGameSettingCollection, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingCollection), 2749658513U) }, + { Z_Construct_UClass_UGameSettingCollectionPage, UGameSettingCollectionPage::StaticClass, TEXT("UGameSettingCollectionPage"), &Z_Registration_Info_UClass_UGameSettingCollectionPage, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingCollectionPage), 1490178399U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_2581113274(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.generated.h new file mode 100644 index 00000000..db21d1bb --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingCollection.generated.h @@ -0,0 +1,87 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingCollection.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingCollection_generated_h +#error "GameSettingCollection.generated.h already included, missing '#pragma once' in GameSettingCollection.h" +#endif +#define GAMESETTINGS_GameSettingCollection_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingCollection(); \ + friend struct Z_Construct_UClass_UGameSettingCollection_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingCollection, UGameSetting, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingCollection) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingCollection(UGameSettingCollection&&); \ + UGameSettingCollection(const UGameSettingCollection&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingCollection); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingCollection); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingCollection) \ + NO_API virtual ~UGameSettingCollection(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingCollectionPage(); \ + friend struct Z_Construct_UClass_UGameSettingCollectionPage_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingCollectionPage, UGameSettingCollection, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingCollectionPage) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingCollectionPage(UGameSettingCollectionPage&&); \ + UGameSettingCollectionPage(const UGameSettingCollectionPage&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingCollectionPage); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingCollectionPage); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingCollectionPage) \ + NO_API virtual ~UGameSettingCollectionPage(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_41_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingCollection_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp new file mode 100644 index 00000000..1d49c06c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingDetailExtension.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingDetailExtension() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingDetailExtension Function OnSettingAssigned +struct GameSettingDetailExtension_eventOnSettingAssigned_Parms +{ + UGameSetting* InSetting; +}; +static const FName NAME_UGameSettingDetailExtension_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingDetailExtension::OnSettingAssigned(UGameSetting* InSetting) +{ + GameSettingDetailExtension_eventOnSettingAssigned_Parms Parms; + Parms.InSetting=InSetting; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingDetailExtension_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingDetailExtension_eventOnSettingAssigned_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::NewProp_InSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingDetailExtension, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingDetailExtension_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingDetailExtension_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingDetailExtension Function OnSettingAssigned + +// Begin Class UGameSettingDetailExtension Function OnSettingValueChanged +struct GameSettingDetailExtension_eventOnSettingValueChanged_Parms +{ + UGameSetting* InSetting; +}; +static const FName NAME_UGameSettingDetailExtension_OnSettingValueChanged = FName(TEXT("OnSettingValueChanged")); +void UGameSettingDetailExtension::OnSettingValueChanged(UGameSetting* InSetting) +{ + GameSettingDetailExtension_eventOnSettingValueChanged_Parms Parms; + Parms.InSetting=InSetting; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingDetailExtension_OnSettingValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingDetailExtension_eventOnSettingValueChanged_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::NewProp_InSetting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingDetailExtension, nullptr, "OnSettingValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::PropPointers), sizeof(GameSettingDetailExtension_eventOnSettingValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingDetailExtension_eventOnSettingValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingDetailExtension Function OnSettingValueChanged + +// Begin Class UGameSettingDetailExtension +void UGameSettingDetailExtension::StaticRegisterNativesUGameSettingDetailExtension() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingDetailExtension); +UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister() +{ + return UGameSettingDetailExtension::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingDetailExtension_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingDetailExtension.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Setting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailExtension.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingAssigned, "OnSettingAssigned" }, // 3610385031 + { &Z_Construct_UFunction_UGameSettingDetailExtension_OnSettingValueChanged, "OnSettingValueChanged" }, // 829104172 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailExtension_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailExtension, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Setting_MetaData), NewProp_Setting_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailExtension_Statics::NewProp_Setting, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingDetailExtension_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingDetailExtension_Statics::ClassParams = { + &UGameSettingDetailExtension::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailExtension_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingDetailExtension_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingDetailExtension() +{ + if (!Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton, Z_Construct_UClass_UGameSettingDetailExtension_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingDetailExtension.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingDetailExtension::StaticClass(); +} +UGameSettingDetailExtension::UGameSettingDetailExtension(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingDetailExtension); +UGameSettingDetailExtension::~UGameSettingDetailExtension() {} +// End Class UGameSettingDetailExtension + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingDetailExtension, UGameSettingDetailExtension::StaticClass, TEXT("UGameSettingDetailExtension"), &Z_Registration_Info_UClass_UGameSettingDetailExtension, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingDetailExtension), 3072199634U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_1057512548(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h new file mode 100644 index 00000000..f88024b2 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailExtension.generated.h @@ -0,0 +1,59 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingDetailExtension.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +#ifdef GAMESETTINGS_GameSettingDetailExtension_generated_h +#error "GameSettingDetailExtension.generated.h already included, missing '#pragma once' in GameSettingDetailExtension.h" +#endif +#define GAMESETTINGS_GameSettingDetailExtension_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingDetailExtension(); \ + friend struct Z_Construct_UClass_UGameSettingDetailExtension_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingDetailExtension, UUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingDetailExtension) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingDetailExtension(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingDetailExtension(UGameSettingDetailExtension&&); \ + UGameSettingDetailExtension(const UGameSettingDetailExtension&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingDetailExtension); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingDetailExtension); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingDetailExtension) \ + NO_API virtual ~UGameSettingDetailExtension(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailExtension_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp new file mode 100644 index 00000000..d70553a1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingDetailView.h" +#include "Runtime/UMG/Public/Blueprint/UserWidgetPool.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingDetailView() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonRichTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget(); +UMG_API UClass* Z_Construct_UClass_UVerticalBox_NoRegister(); +UMG_API UScriptStruct* Z_Construct_UScriptStruct_FUserWidgetPool(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingDetailView +void UGameSettingDetailView::StaticRegisterNativesUGameSettingDetailView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingDetailView); +UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister() +{ + return UGameSettingDetailView::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingDetailView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/GameSettingDetailView.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisualData_MetaData[] = { + { "Category", "GameSettingDetailView" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionWidgetPool_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CurrentSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingName_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_Description_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_DynamicDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_WarningDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RichText_DisabledDetails_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Box_DetailsExtension_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingDetailView" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingDetailView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisualData; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionWidgetPool; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CurrentSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingName; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_Description; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_DynamicDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_WarningDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RichText_DisabledDetails; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Box_DetailsExtension; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_VisualData = { "VisualData", nullptr, (EPropertyFlags)0x0124080000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, VisualData), Z_Construct_UClass_UGameSettingVisualData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisualData_MetaData), NewProp_VisualData_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_ExtensionWidgetPool = { "ExtensionWidgetPool", nullptr, (EPropertyFlags)0x0020088000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, ExtensionWidgetPool), Z_Construct_UScriptStruct_FUserWidgetPool, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionWidgetPool_MetaData), NewProp_ExtensionWidgetPool_MetaData) }; // 871085244 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_CurrentSetting = { "CurrentSetting", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, CurrentSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CurrentSetting_MetaData), NewProp_CurrentSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Text_SettingName = { "Text_SettingName", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, Text_SettingName), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingName_MetaData), NewProp_Text_SettingName_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_Description = { "RichText_Description", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_Description), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_Description_MetaData), NewProp_RichText_Description_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DynamicDetails = { "RichText_DynamicDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_DynamicDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_DynamicDetails_MetaData), NewProp_RichText_DynamicDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_WarningDetails = { "RichText_WarningDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_WarningDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_WarningDetails_MetaData), NewProp_RichText_WarningDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DisabledDetails = { "RichText_DisabledDetails", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, RichText_DisabledDetails), Z_Construct_UClass_UCommonRichTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RichText_DisabledDetails_MetaData), NewProp_RichText_DisabledDetails_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Box_DetailsExtension = { "Box_DetailsExtension", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingDetailView, Box_DetailsExtension), Z_Construct_UClass_UVerticalBox_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Box_DetailsExtension_MetaData), NewProp_Box_DetailsExtension_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_VisualData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_ExtensionWidgetPool, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_CurrentSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Text_SettingName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_Description, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DynamicDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_WarningDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_RichText_DisabledDetails, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingDetailView_Statics::NewProp_Box_DetailsExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingDetailView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingDetailView_Statics::ClassParams = { + &UGameSettingDetailView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingDetailView_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingDetailView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingDetailView() +{ + if (!Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton, Z_Construct_UClass_UGameSettingDetailView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingDetailView.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingDetailView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingDetailView); +UGameSettingDetailView::~UGameSettingDetailView() {} +// End Class UGameSettingDetailView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingDetailView, UGameSettingDetailView::StaticClass, TEXT("UGameSettingDetailView"), &Z_Registration_Info_UClass_UGameSettingDetailView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingDetailView), 3183589374U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_3805839620(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.generated.h new file mode 100644 index 00000000..74f92899 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingDetailView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingDetailView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingDetailView_generated_h +#error "GameSettingDetailView.generated.h already included, missing '#pragma once' in GameSettingDetailView.h" +#endif +#define GAMESETTINGS_GameSettingDetailView_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingDetailView(); \ + friend struct Z_Construct_UClass_UGameSettingDetailView_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingDetailView, UUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingDetailView) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingDetailView(UGameSettingDetailView&&); \ + UGameSettingDetailView(const UGameSettingDetailView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingDetailView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingDetailView); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingDetailView) \ + NO_API virtual ~UGameSettingDetailView(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingDetailView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp new file mode 100644 index 00000000..d73f8b6f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.gen.cpp @@ -0,0 +1,158 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingFilterState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingFilterState() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin ScriptStruct FGameSettingFilterState +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingFilterState; +class UScriptStruct* FGameSettingFilterState::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingFilterState, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingFilterState")); + } + return Z_Registration_Info_UScriptStruct_GameSettingFilterState.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingFilterState::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingFilterState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The filter state is intended to be any and all filtering we support.\n */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The filter state is intended to be any and all filtering we support." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeDisabled_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeHidden_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeResetable_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeNestedPages_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingRootList_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingAllowList_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// If this is non-empty, then only settings in here are allowed\n" }, +#endif + { "ModuleRelativePath", "Public/GameSettingFilterState.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "If this is non-empty, then only settings in here are allowed" }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_bIncludeDisabled_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeDisabled; + static void NewProp_bIncludeHidden_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeHidden; + static void NewProp_bIncludeResetable_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeResetable; + static void NewProp_bIncludeNestedPages_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeNestedPages; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingRootList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingRootList; + static const UECodeGen_Private::FObjectPropertyParams NewProp_SettingAllowList_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingAllowList; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeDisabled = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled = { "bIncludeDisabled", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeDisabled_MetaData), NewProp_bIncludeDisabled_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeHidden = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden = { "bIncludeHidden", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeHidden_MetaData), NewProp_bIncludeHidden_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeResetable = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable = { "bIncludeResetable", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeResetable_MetaData), NewProp_bIncludeResetable_MetaData) }; +void Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages_SetBit(void* Obj) +{ + ((FGameSettingFilterState*)Obj)->bIncludeNestedPages = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages = { "bIncludeNestedPages", nullptr, (EPropertyFlags)0x0010000000000000, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingFilterState), &Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeNestedPages_MetaData), NewProp_bIncludeNestedPages_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList_Inner = { "SettingRootList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList = { "SettingRootList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingFilterState, SettingRootList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingRootList_MetaData), NewProp_SettingRootList_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList_Inner = { "SettingAllowList", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList = { "SettingAllowList", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingFilterState, SettingAllowList), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingAllowList_MetaData), NewProp_SettingAllowList_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeDisabled, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeHidden, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeResetable, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_bIncludeNestedPages, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingRootList, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewProp_SettingAllowList, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingFilterState", + Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::PropPointers), + sizeof(FGameSettingFilterState), + alignof(FGameSettingFilterState), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingFilterState.InnerSingleton; +} +// End ScriptStruct FGameSettingFilterState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameSettingFilterState::StaticStruct, Z_Construct_UScriptStruct_FGameSettingFilterState_Statics::NewStructOps, TEXT("GameSettingFilterState"), &Z_Registration_Info_UScriptStruct_GameSettingFilterState, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingFilterState), 2989911353U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_2130271807(TEXT("/Script/GameSettings"), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.generated.h new file mode 100644 index 00000000..38fae218 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingFilterState.generated.h @@ -0,0 +1,28 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingFilterState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingFilterState_generated_h +#error "GameSettingFilterState.generated.h already included, missing '#pragma once' in GameSettingFilterState.h" +#endif +#define GAMESETTINGS_GameSettingFilterState_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h_29_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingFilterState_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingFilterState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp new file mode 100644 index 00000000..978ca079 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.gen.cpp @@ -0,0 +1,1008 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingListEntry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingListEntry() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UAnalogSlider_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonButtonBase_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonTextBlock_NoRegister(); +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingAction_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollectionPage_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntry_Setting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UPanelWidget_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserObjectListEntry_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingListEntryBase Function GetPrimaryGamepadFocusWidget +struct GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms +{ + UWidget* ReturnValue; + + /** Constructor, initializes return property only **/ + GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms() + : ReturnValue(NULL) + { + } +}; +static const FName NAME_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget = FName(TEXT("GetPrimaryGamepadFocusWidget")); +UWidget* UGameSettingListEntryBase::GetPrimaryGamepadFocusWidget() +{ + GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms Parms; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget); + ProcessEvent(Func,&Parms); + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ReturnValue_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000080588, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms, ReturnValue), Z_Construct_UClass_UWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ReturnValue_MetaData), NewProp_ReturnValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntryBase, nullptr, "GetPrimaryGamepadFocusWidget", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::PropPointers), sizeof(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntryBase_eventGetPrimaryGamepadFocusWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntryBase Function GetPrimaryGamepadFocusWidget + +// Begin Class UGameSettingListEntryBase +void UGameSettingListEntryBase::StaticRegisterNativesUGameSettingListEntryBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntryBase); +UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister() +{ + return UGameSettingListEntryBase::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntryBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UAthenaChallengeListEntry\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "false" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UAthenaChallengeListEntry" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Setting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Background_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntryBase" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Background; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntryBase_GetPrimaryGamepadFocusWidget, "GetPrimaryGamepadFocusWidget" }, // 3519101504 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static const UECodeGen_Private::FImplementedInterfaceParams InterfaceParams[]; + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntryBase, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Setting_MetaData), NewProp_Setting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Background = { "Background", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntryBase, Background), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Background_MetaData), NewProp_Background_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Setting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntryBase_Statics::NewProp_Background, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntryBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FImplementedInterfaceParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::InterfaceParams[] = { + { Z_Construct_UClass_UUserObjectListEntry_NoRegister, (int32)VTABLE_OFFSET(UGameSettingListEntryBase, IUserObjectListEntry), false }, // 228470651 +}; +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntryBase_Statics::ClassParams = { + &UGameSettingListEntryBase::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers, + InterfaceParams, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::PropPointers), + UE_ARRAY_COUNT(InterfaceParams), + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntryBase_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntryBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntryBase() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton, Z_Construct_UClass_UGameSettingListEntryBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntryBase.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntryBase::StaticClass(); +} +UGameSettingListEntryBase::UGameSettingListEntryBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntryBase); +UGameSettingListEntryBase::~UGameSettingListEntryBase() {} +// End Class UGameSettingListEntryBase + +// Begin Class UGameSettingListEntry_Setting +void UGameSettingListEntry_Setting::StaticRegisterNativesUGameSettingListEntry_Setting() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntry_Setting); +UClass* Z_Construct_UClass_UGameSettingListEntry_Setting_NoRegister() +{ + return UGameSettingListEntry_Setting::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntry_Setting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntry_Setting\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntry_Setting" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingName_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntry_Setting" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::NewProp_Text_SettingName = { "Text_SettingName", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntry_Setting, Text_SettingName), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingName_MetaData), NewProp_Text_SettingName_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::NewProp_Text_SettingName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntryBase, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::ClassParams = { + &UGameSettingListEntry_Setting::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntry_Setting() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton, Z_Construct_UClass_UGameSettingListEntry_Setting_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntry_Setting.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntry_Setting::StaticClass(); +} +UGameSettingListEntry_Setting::UGameSettingListEntry_Setting(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntry_Setting); +UGameSettingListEntry_Setting::~UGameSettingListEntry_Setting() {} +// End Class UGameSettingListEntry_Setting + +// Begin Class UGameSettingListEntrySetting_Discrete +void UGameSettingListEntrySetting_Discrete::StaticRegisterNativesUGameSettingListEntrySetting_Discrete() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Discrete); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_NoRegister() +{ + return UGameSettingListEntrySetting_Discrete::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Discrete\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Discrete" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DiscreteSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Panel_Value_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Rotator_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Decrease_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Increase_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Discrete" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DiscreteSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Panel_Value; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Rotator_SettingValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Decrease; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Increase; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_DiscreteSetting = { "DiscreteSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, DiscreteSetting), Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DiscreteSetting_MetaData), NewProp_DiscreteSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Panel_Value = { "Panel_Value", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Panel_Value), Z_Construct_UClass_UPanelWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Panel_Value_MetaData), NewProp_Panel_Value_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Rotator_SettingValue = { "Rotator_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Rotator_SettingValue), Z_Construct_UClass_UGameSettingRotator_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Rotator_SettingValue_MetaData), NewProp_Rotator_SettingValue_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Decrease = { "Button_Decrease", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Button_Decrease), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Decrease_MetaData), NewProp_Button_Decrease_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Increase = { "Button_Increase", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Discrete, Button_Increase), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Increase_MetaData), NewProp_Button_Increase_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_DiscreteSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Panel_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Rotator_SettingValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Decrease, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::NewProp_Button_Increase, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::ClassParams = { + &UGameSettingListEntrySetting_Discrete::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Discrete() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Discrete::StaticClass(); +} +UGameSettingListEntrySetting_Discrete::UGameSettingListEntrySetting_Discrete(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Discrete); +UGameSettingListEntrySetting_Discrete::~UGameSettingListEntrySetting_Discrete() {} +// End Class UGameSettingListEntrySetting_Discrete + +// Begin Class UGameSettingListEntrySetting_Scalar Function HandleSliderCaptureEnded +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "HandleSliderCaptureEnded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingListEntrySetting_Scalar::execHandleSliderCaptureEnded) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSliderCaptureEnded(); + P_NATIVE_END; +} +// End Class UGameSettingListEntrySetting_Scalar Function HandleSliderCaptureEnded + +// Begin Class UGameSettingListEntrySetting_Scalar Function HandleSliderValueChanged +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics +{ + struct GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms + { + float Value; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "HandleSliderValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::GameSettingListEntrySetting_Scalar_eventHandleSliderValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingListEntrySetting_Scalar::execHandleSliderValueChanged) +{ + P_GET_PROPERTY(FFloatProperty,Z_Param_Value); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandleSliderValueChanged(Z_Param_Value); + P_NATIVE_END; +} +// End Class UGameSettingListEntrySetting_Scalar Function HandleSliderValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar Function OnDefaultValueChanged +struct GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms +{ + float DefaultValue; +}; +static const FName NAME_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged = FName(TEXT("OnDefaultValueChanged")); +void UGameSettingListEntrySetting_Scalar::OnDefaultValueChanged(float DefaultValue) +{ + GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms Parms; + Parms.DefaultValue=DefaultValue; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_DefaultValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::NewProp_DefaultValue = { "DefaultValue", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms, DefaultValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::NewProp_DefaultValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "OnDefaultValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Scalar_eventOnDefaultValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Scalar Function OnDefaultValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar Function OnValueChanged +struct GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms +{ + float Value; +}; +static const FName NAME_UGameSettingListEntrySetting_Scalar_OnValueChanged = FName(TEXT("OnValueChanged")); +void UGameSettingListEntrySetting_Scalar::OnValueChanged(float Value) +{ + GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms Parms; + Parms.Value=Value; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Scalar_OnValueChanged); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFloatPropertyParams NewProp_Value; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::NewProp_Value = { "Value", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms, Value), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::NewProp_Value, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, nullptr, "OnValueChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Scalar_eventOnValueChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Scalar Function OnValueChanged + +// Begin Class UGameSettingListEntrySetting_Scalar +void UGameSettingListEntrySetting_Scalar::StaticRegisterNativesUGameSettingListEntrySetting_Scalar() +{ + UClass* Class = UGameSettingListEntrySetting_Scalar::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandleSliderCaptureEnded", &UGameSettingListEntrySetting_Scalar::execHandleSliderCaptureEnded }, + { "HandleSliderValueChanged", &UGameSettingListEntrySetting_Scalar::execHandleSliderValueChanged }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Scalar); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_NoRegister() +{ + return UGameSettingListEntrySetting_Scalar::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Scalar\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Scalar" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ScalarSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Panel_Value_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Slider_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Text_SettingValue_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Scalar" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ScalarSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Panel_Value; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Slider_SettingValue; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Text_SettingValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderCaptureEnded, "HandleSliderCaptureEnded" }, // 3244780504 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_HandleSliderValueChanged, "HandleSliderValueChanged" }, // 4086855042 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnDefaultValueChanged, "OnDefaultValueChanged" }, // 512759954 + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Scalar_OnValueChanged, "OnValueChanged" }, // 2672522595 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_ScalarSetting = { "ScalarSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, ScalarSetting), Z_Construct_UClass_UGameSettingValueScalar_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ScalarSetting_MetaData), NewProp_ScalarSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Panel_Value = { "Panel_Value", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Panel_Value), Z_Construct_UClass_UPanelWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Panel_Value_MetaData), NewProp_Panel_Value_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Slider_SettingValue = { "Slider_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Slider_SettingValue), Z_Construct_UClass_UAnalogSlider_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Slider_SettingValue_MetaData), NewProp_Slider_SettingValue_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Text_SettingValue = { "Text_SettingValue", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Scalar, Text_SettingValue), Z_Construct_UClass_UCommonTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Text_SettingValue_MetaData), NewProp_Text_SettingValue_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_ScalarSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Panel_Value, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Slider_SettingValue, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::NewProp_Text_SettingValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::ClassParams = { + &UGameSettingListEntrySetting_Scalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Scalar() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Scalar::StaticClass(); +} +UGameSettingListEntrySetting_Scalar::UGameSettingListEntrySetting_Scalar(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Scalar); +UGameSettingListEntrySetting_Scalar::~UGameSettingListEntrySetting_Scalar() {} +// End Class UGameSettingListEntrySetting_Scalar + +// Begin Class UGameSettingListEntrySetting_Action Function OnSettingAssigned +struct GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms +{ + FText ActionText; +}; +static const FName NAME_UGameSettingListEntrySetting_Action_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingListEntrySetting_Action::OnSettingAssigned(FText const& ActionText) +{ + GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms Parms; + Parms.ActionText=ActionText; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Action_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ActionText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::NewProp_ActionText = { "ActionText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms, ActionText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionText_MetaData), NewProp_ActionText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::NewProp_ActionText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Action, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Action_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Action Function OnSettingAssigned + +// Begin Class UGameSettingListEntrySetting_Action +void UGameSettingListEntrySetting_Action::StaticRegisterNativesUGameSettingListEntrySetting_Action() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Action); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action_NoRegister() +{ + return UGameSettingListEntrySetting_Action::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Action\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Action" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Action_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Action" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ActionSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Action; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Action_OnSettingAssigned, "OnSettingAssigned" }, // 3216430265 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_ActionSetting = { "ActionSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Action, ActionSetting), Z_Construct_UClass_UGameSettingAction_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionSetting_MetaData), NewProp_ActionSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_Button_Action = { "Button_Action", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Action, Button_Action), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Action_MetaData), NewProp_Button_Action_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_ActionSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::NewProp_Button_Action, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::ClassParams = { + &UGameSettingListEntrySetting_Action::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Action() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Action::StaticClass(); +} +UGameSettingListEntrySetting_Action::UGameSettingListEntrySetting_Action(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Action); +UGameSettingListEntrySetting_Action::~UGameSettingListEntrySetting_Action() {} +// End Class UGameSettingListEntrySetting_Action + +// Begin Class UGameSettingListEntrySetting_Navigation Function OnSettingAssigned +struct GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms +{ + FText ActionText; +}; +static const FName NAME_UGameSettingListEntrySetting_Navigation_OnSettingAssigned = FName(TEXT("OnSettingAssigned")); +void UGameSettingListEntrySetting_Navigation::OnSettingAssigned(FText const& ActionText) +{ + GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms Parms; + Parms.ActionText=ActionText; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingListEntrySetting_Navigation_OnSettingAssigned); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ActionText_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ActionText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::NewProp_ActionText = { "ActionText", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms, ActionText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ActionText_MetaData), NewProp_ActionText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::NewProp_ActionText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingListEntrySetting_Navigation, nullptr, "OnSettingAssigned", nullptr, nullptr, Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::PropPointers), sizeof(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08480800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingListEntrySetting_Navigation_eventOnSettingAssigned_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingListEntrySetting_Navigation Function OnSettingAssigned + +// Begin Class UGameSettingListEntrySetting_Navigation +void UGameSettingListEntrySetting_Navigation::StaticRegisterNativesUGameSettingListEntrySetting_Navigation() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListEntrySetting_Navigation); +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_NoRegister() +{ + return UGameSettingListEntrySetting_Navigation::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingListEntrySetting_Navigation\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingListEntry.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingListEntrySetting_Navigation" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CollectionSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Button_Navigate_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingListEntrySetting_Navigation" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListEntry.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_CollectionSetting; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Button_Navigate; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingListEntrySetting_Navigation_OnSettingAssigned, "OnSettingAssigned" }, // 3161729646 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_CollectionSetting = { "CollectionSetting", nullptr, (EPropertyFlags)0x0124080000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Navigation, CollectionSetting), Z_Construct_UClass_UGameSettingCollectionPage_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CollectionSetting_MetaData), NewProp_CollectionSetting_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_Button_Navigate = { "Button_Navigate", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListEntrySetting_Navigation, Button_Navigate), Z_Construct_UClass_UCommonButtonBase_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Button_Navigate_MetaData), NewProp_Button_Navigate_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_CollectionSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::NewProp_Button_Navigate, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingListEntry_Setting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::ClassParams = { + &UGameSettingListEntrySetting_Navigation::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListEntrySetting_Navigation() +{ + if (!Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton, Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListEntrySetting_Navigation::StaticClass(); +} +UGameSettingListEntrySetting_Navigation::UGameSettingListEntrySetting_Navigation(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListEntrySetting_Navigation); +UGameSettingListEntrySetting_Navigation::~UGameSettingListEntrySetting_Navigation() {} +// End Class UGameSettingListEntrySetting_Navigation + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingListEntryBase, UGameSettingListEntryBase::StaticClass, TEXT("UGameSettingListEntryBase"), &Z_Registration_Info_UClass_UGameSettingListEntryBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntryBase), 3369557488U) }, + { Z_Construct_UClass_UGameSettingListEntry_Setting, UGameSettingListEntry_Setting::StaticClass, TEXT("UGameSettingListEntry_Setting"), &Z_Registration_Info_UClass_UGameSettingListEntry_Setting, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntry_Setting), 3040419023U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Discrete, UGameSettingListEntrySetting_Discrete::StaticClass, TEXT("UGameSettingListEntrySetting_Discrete"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Discrete, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Discrete), 2735157497U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Scalar, UGameSettingListEntrySetting_Scalar::StaticClass, TEXT("UGameSettingListEntrySetting_Scalar"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Scalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Scalar), 683831960U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Action, UGameSettingListEntrySetting_Action::StaticClass, TEXT("UGameSettingListEntrySetting_Action"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Action, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Action), 4192235933U) }, + { Z_Construct_UClass_UGameSettingListEntrySetting_Navigation, UGameSettingListEntrySetting_Navigation::StaticClass, TEXT("UGameSettingListEntrySetting_Navigation"), &Z_Registration_Info_UClass_UGameSettingListEntrySetting_Navigation, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListEntrySetting_Navigation), 2337929689U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_369936568(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.generated.h new file mode 100644 index 00000000..63b954b4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListEntry.generated.h @@ -0,0 +1,247 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingListEntry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UWidget; +#ifdef GAMESETTINGS_GameSettingListEntry_generated_h +#error "GameSettingListEntry.generated.h already included, missing '#pragma once' in GameSettingListEntry.h" +#endif +#define GAMESETTINGS_GameSettingListEntry_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntryBase(); \ + friend struct Z_Construct_UClass_UGameSettingListEntryBase_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntryBase, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntryBase) \ + virtual UObject* _getUObject() const override { return const_cast(this); } + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntryBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntryBase(UGameSettingListEntryBase&&); \ + UGameSettingListEntryBase(const UGameSettingListEntryBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntryBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntryBase); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntryBase) \ + NO_API virtual ~UGameSettingListEntryBase(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_34_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_37_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntry_Setting(); \ + friend struct Z_Construct_UClass_UGameSettingListEntry_Setting_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntry_Setting, UGameSettingListEntryBase, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntry_Setting) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntry_Setting(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntry_Setting(UGameSettingListEntry_Setting&&); \ + UGameSettingListEntry_Setting(const UGameSettingListEntry_Setting&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntry_Setting); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntry_Setting); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntry_Setting) \ + NO_API virtual ~UGameSettingListEntry_Setting(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_76_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_79_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Discrete(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Discrete_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Discrete, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Discrete) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Discrete(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Discrete(UGameSettingListEntrySetting_Discrete&&); \ + UGameSettingListEntrySetting_Discrete(const UGameSettingListEntrySetting_Discrete&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Discrete); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Discrete); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Discrete) \ + NO_API virtual ~UGameSettingListEntrySetting_Discrete(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_94_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_97_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandleSliderCaptureEnded); \ + DECLARE_FUNCTION(execHandleSliderValueChanged); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Scalar(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Scalar_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Scalar, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Scalar) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Scalar(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Scalar(UGameSettingListEntrySetting_Scalar&&); \ + UGameSettingListEntrySetting_Scalar(const UGameSettingListEntrySetting_Scalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Scalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Scalar); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Scalar) \ + NO_API virtual ~UGameSettingListEntrySetting_Scalar(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_137_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_140_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Action(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Action_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Action, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Action) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Action(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Action(UGameSettingListEntrySetting_Action&&); \ + UGameSettingListEntrySetting_Action(const UGameSettingListEntrySetting_Action&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Action); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Action); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Action) \ + NO_API virtual ~UGameSettingListEntrySetting_Action(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_184_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_187_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListEntrySetting_Navigation(); \ + friend struct Z_Construct_UClass_UGameSettingListEntrySetting_Navigation_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListEntrySetting_Navigation, UGameSettingListEntry_Setting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListEntrySetting_Navigation) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingListEntrySetting_Navigation(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListEntrySetting_Navigation(UGameSettingListEntrySetting_Navigation&&); \ + UGameSettingListEntrySetting_Navigation(const UGameSettingListEntrySetting_Navigation&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListEntrySetting_Navigation); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListEntrySetting_Navigation); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListEntrySetting_Navigation) \ + NO_API virtual ~UGameSettingListEntrySetting_Navigation(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_216_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h_219_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListEntry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.gen.cpp new file mode 100644 index 00000000..4afbef4f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.gen.cpp @@ -0,0 +1,110 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingListView.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingListView() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UListView(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingListView +void UGameSettingListView::StaticRegisterNativesUGameSettingListView() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingListView); +UClass* Z_Construct_UClass_UGameSettingListView_NoRegister() +{ + return UGameSettingListView::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingListView_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * List of game settings. Every entry widget needs to extend from GameSettingListEntryBase.\n */" }, +#endif + { "EntryClass", "GameSettingListEntryBase" }, + { "IncludePath", "Widgets/GameSettingListView.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListView.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "List of game settings. Every entry widget needs to extend from GameSettingListEntryBase." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisualData_MetaData[] = { + { "Category", "GameSettingListView" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingListView.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisualData; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingListView_Statics::NewProp_VisualData = { "VisualData", nullptr, (EPropertyFlags)0x0124080000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingListView, VisualData), Z_Construct_UClass_UGameSettingVisualData_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisualData_MetaData), NewProp_VisualData_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingListView_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingListView_Statics::NewProp_VisualData, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingListView_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UListView, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingListView_Statics::ClassParams = { + &UGameSettingListView::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingListView_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingListView_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingListView_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingListView() +{ + if (!Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton, Z_Construct_UClass_UGameSettingListView_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingListView.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingListView::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingListView); +UGameSettingListView::~UGameSettingListView() {} +// End Class UGameSettingListView + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingListView, UGameSettingListView::StaticClass, TEXT("UGameSettingListView"), &Z_Registration_Info_UClass_UGameSettingListView, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingListView), 1679336813U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_309013391(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.generated.h new file mode 100644 index 00000000..804e2590 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingListView.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingListView.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingListView_generated_h +#error "GameSettingListView.generated.h already included, missing '#pragma once' in GameSettingListView.h" +#endif +#define GAMESETTINGS_GameSettingListView_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingListView(); \ + friend struct Z_Construct_UClass_UGameSettingListView_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingListView, UListView, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingListView) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingListView(UGameSettingListView&&); \ + UGameSettingListView(const UGameSettingListView&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingListView); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingListView); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingListView) \ + NO_API virtual ~UGameSettingListView(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingListView_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp new file mode 100644 index 00000000..14c496c7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.gen.cpp @@ -0,0 +1,229 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingPanel.h" +#include "Public/GameSettingFilterState.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingPanel() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonUserWidget(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListView_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +GAMESETTINGS_API UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingFilterState(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Delegate FOnExecuteNamedActionBP +struct Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics +{ + struct GameSettingPanel_eventOnExecuteNamedActionBP_Parms + { + UGameSetting* Setting; + FGameplayTag Action; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Setting; + static const UECodeGen_Private::FStructPropertyParams NewProp_Action; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Setting = { "Setting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingPanel_eventOnExecuteNamedActionBP_Parms, Setting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Action = { "Action", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingPanel_eventOnExecuteNamedActionBP_Parms, Action), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Setting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::NewProp_Action, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingPanel, nullptr, "OnExecuteNamedActionBP__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::GameSettingPanel_eventOnExecuteNamedActionBP_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::GameSettingPanel_eventOnExecuteNamedActionBP_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UGameSettingPanel::FOnExecuteNamedActionBP_DelegateWrapper(const FMulticastScriptDelegate& OnExecuteNamedActionBP, UGameSetting* Setting, FGameplayTag Action) +{ + struct GameSettingPanel_eventOnExecuteNamedActionBP_Parms + { + UGameSetting* Setting; + FGameplayTag Action; + }; + GameSettingPanel_eventOnExecuteNamedActionBP_Parms Parms; + Parms.Setting=Setting; + Parms.Action=Action; + OnExecuteNamedActionBP.ProcessMulticastDelegate(&Parms); +} +// End Delegate FOnExecuteNamedActionBP + +// Begin Class UGameSettingPanel +void UGameSettingPanel::StaticRegisterNativesUGameSettingPanel() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingPanel); +UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister() +{ + return UGameSettingPanel::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingPanel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "Widgets/GameSettingPanel.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Registry_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VisibleSettings_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LastHoveredOrSelectedSetting_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FilterState_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_FilterNavigationStack_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ListView_Settings_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingPanel" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Details_Settings_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidgetOptional", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingPanel" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BP_OnExecuteNamedAction_MetaData[] = { + { "Category", "Events" }, + { "DisplayName", "On Execute Named Action" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingPanel.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Registry; + static const UECodeGen_Private::FObjectPropertyParams NewProp_VisibleSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_VisibleSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_LastHoveredOrSelectedSetting; + static const UECodeGen_Private::FStructPropertyParams NewProp_FilterState; + static const UECodeGen_Private::FStructPropertyParams NewProp_FilterNavigationStack_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_FilterNavigationStack; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ListView_Settings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Details_Settings; + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_BP_OnExecuteNamedAction; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, "OnExecuteNamedActionBP__DelegateSignature" }, // 96924240 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Registry = { "Registry", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, Registry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Registry_MetaData), NewProp_Registry_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings_Inner = { "VisibleSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings = { "VisibleSettings", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, VisibleSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VisibleSettings_MetaData), NewProp_VisibleSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_LastHoveredOrSelectedSetting = { "LastHoveredOrSelectedSetting", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, LastHoveredOrSelectedSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LastHoveredOrSelectedSetting_MetaData), NewProp_LastHoveredOrSelectedSetting_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterState = { "FilterState", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, FilterState), Z_Construct_UScriptStruct_FGameSettingFilterState, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FilterState_MetaData), NewProp_FilterState_MetaData) }; // 2989911353 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack_Inner = { "FilterNavigationStack", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FGameSettingFilterState, METADATA_PARAMS(0, nullptr) }; // 2989911353 +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack = { "FilterNavigationStack", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, FilterNavigationStack), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_FilterNavigationStack_MetaData), NewProp_FilterNavigationStack_MetaData) }; // 2989911353 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_ListView_Settings = { "ListView_Settings", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, ListView_Settings), Z_Construct_UClass_UGameSettingListView_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ListView_Settings_MetaData), NewProp_ListView_Settings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Details_Settings = { "Details_Settings", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, Details_Settings), Z_Construct_UClass_UGameSettingDetailView_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Details_Settings_MetaData), NewProp_Details_Settings_MetaData) }; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_BP_OnExecuteNamedAction = { "BP_OnExecuteNamedAction", nullptr, (EPropertyFlags)0x0040000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingPanel, BP_OnExecuteNamedAction), Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BP_OnExecuteNamedAction_MetaData), NewProp_BP_OnExecuteNamedAction_MetaData) }; // 96924240 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Registry, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_VisibleSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_LastHoveredOrSelectedSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterState, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_FilterNavigationStack, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_ListView_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_Details_Settings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingPanel_Statics::NewProp_BP_OnExecuteNamedAction, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingPanel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonUserWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingPanel_Statics::ClassParams = { + &UGameSettingPanel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPanel_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingPanel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingPanel() +{ + if (!Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton, Z_Construct_UClass_UGameSettingPanel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingPanel.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingPanel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingPanel); +UGameSettingPanel::~UGameSettingPanel() {} +// End Class UGameSettingPanel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingPanel, UGameSettingPanel::StaticClass, TEXT("UGameSettingPanel"), &Z_Registration_Info_UClass_UGameSettingPanel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingPanel), 999012750U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_43599752(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.generated.h new file mode 100644 index 00000000..89d658d7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPanel.generated.h @@ -0,0 +1,60 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingPanel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +struct FGameplayTag; +#ifdef GAMESETTINGS_GameSettingPanel_generated_h +#error "GameSettingPanel.generated.h already included, missing '#pragma once' in GameSettingPanel.h" +#endif +#define GAMESETTINGS_GameSettingPanel_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_108_DELEGATE \ +static void FOnExecuteNamedActionBP_DelegateWrapper(const FMulticastScriptDelegate& OnExecuteNamedActionBP, UGameSetting* Setting, FGameplayTag Action); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingPanel(); \ + friend struct Z_Construct_UClass_UGameSettingPanel_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingPanel, UCommonUserWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingPanel) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingPanel(UGameSettingPanel&&); \ + UGameSettingPanel(const UGameSettingPanel&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingPanel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingPanel); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingPanel) \ + NO_API virtual ~UGameSettingPanel(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingPanel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp new file mode 100644 index 00000000..2a0d548e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.gen.cpp @@ -0,0 +1,94 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/GameSettingPressAnyKey.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingPressAnyKey() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingPressAnyKey +void UGameSettingPressAnyKey::StaticRegisterNativesUGameSettingPressAnyKey() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingPressAnyKey); +UClass* Z_Construct_UClass_UGameSettingPressAnyKey_NoRegister() +{ + return UGameSettingPressAnyKey::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingPressAnyKey_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/Misc/GameSettingPressAnyKey.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingPressAnyKey.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingPressAnyKey_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPressAnyKey_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingPressAnyKey_Statics::ClassParams = { + &UGameSettingPressAnyKey::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingPressAnyKey_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingPressAnyKey_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingPressAnyKey() +{ + if (!Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton, Z_Construct_UClass_UGameSettingPressAnyKey_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingPressAnyKey.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingPressAnyKey::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingPressAnyKey); +UGameSettingPressAnyKey::~UGameSettingPressAnyKey() {} +// End Class UGameSettingPressAnyKey + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingPressAnyKey, UGameSettingPressAnyKey::StaticClass, TEXT("UGameSettingPressAnyKey"), &Z_Registration_Info_UClass_UGameSettingPressAnyKey, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingPressAnyKey), 912399220U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_2126931791(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h new file mode 100644 index 00000000..c0f7085d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingPressAnyKey.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/GameSettingPressAnyKey.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingPressAnyKey_generated_h +#error "GameSettingPressAnyKey.generated.h already included, missing '#pragma once' in GameSettingPressAnyKey.h" +#endif +#define GAMESETTINGS_GameSettingPressAnyKey_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingPressAnyKey(); \ + friend struct Z_Construct_UClass_UGameSettingPressAnyKey_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingPressAnyKey, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingPressAnyKey) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingPressAnyKey(UGameSettingPressAnyKey&&); \ + UGameSettingPressAnyKey(const UGameSettingPressAnyKey&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingPressAnyKey); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingPressAnyKey); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingPressAnyKey) \ + NO_API virtual ~UGameSettingPressAnyKey(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_16_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h_19_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingPressAnyKey_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp new file mode 100644 index 00000000..02ed4a15 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingRegistry.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingRegistry() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingRegistry +void UGameSettingRegistry::StaticRegisterNativesUGameSettingRegistry() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingRegistry); +UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister() +{ + return UGameSettingRegistry::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingRegistry_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "GameSettingRegistry.h" }, + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_TopLevelSettings_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RegisteredSettings_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OwningLocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/GameSettingRegistry.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_TopLevelSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_TopLevelSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_RegisteredSettings_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_RegisteredSettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_OwningLocalPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings_Inner = { "TopLevelSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings = { "TopLevelSettings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, TopLevelSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_TopLevelSettings_MetaData), NewProp_TopLevelSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings_Inner = { "RegisteredSettings", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings = { "RegisteredSettings", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, RegisteredSettings), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RegisteredSettings_MetaData), NewProp_RegisteredSettings_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_OwningLocalPlayer = { "OwningLocalPlayer", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingRegistry, OwningLocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OwningLocalPlayer_MetaData), NewProp_OwningLocalPlayer_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_TopLevelSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_RegisteredSettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingRegistry_Statics::NewProp_OwningLocalPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingRegistry_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingRegistry_Statics::ClassParams = { + &UGameSettingRegistry::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::PropPointers), + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRegistry_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingRegistry_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingRegistry() +{ + if (!Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton, Z_Construct_UClass_UGameSettingRegistry_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingRegistry.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingRegistry::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingRegistry); +UGameSettingRegistry::~UGameSettingRegistry() {} +// End Class UGameSettingRegistry + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingRegistry, UGameSettingRegistry::StaticClass, TEXT("UGameSettingRegistry"), &Z_Registration_Info_UClass_UGameSettingRegistry, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingRegistry), 3677350250U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_3500073381(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.generated.h new file mode 100644 index 00000000..3969761b --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRegistry.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingRegistry.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingRegistry_generated_h +#error "GameSettingRegistry.generated.h already included, missing '#pragma once' in GameSettingRegistry.h" +#endif +#define GAMESETTINGS_GameSettingRegistry_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingRegistry(); \ + friend struct Z_Construct_UClass_UGameSettingRegistry_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingRegistry, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingRegistry) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingRegistry(UGameSettingRegistry&&); \ + UGameSettingRegistry(const UGameSettingRegistry&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingRegistry); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingRegistry); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingRegistry) \ + NO_API virtual ~UGameSettingRegistry(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingRegistry_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp new file mode 100644 index 00000000..a2e204d7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.gen.cpp @@ -0,0 +1,144 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/GameSettingRotator.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingRotator() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonRotator(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingRotator Function BP_OnDefaultOptionSpecified +struct GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms +{ + int32 DefaultOptionIndex; +}; +static const FName NAME_UGameSettingRotator_BP_OnDefaultOptionSpecified = FName(TEXT("BP_OnDefaultOptionSpecified")); +void UGameSettingRotator::BP_OnDefaultOptionSpecified(int32 DefaultOptionIndex) +{ + GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms Parms; + Parms.DefaultOptionIndex=DefaultOptionIndex; + UFunction* Func = FindFunctionChecked(NAME_UGameSettingRotator_BP_OnDefaultOptionSpecified); + ProcessEvent(Func,&Parms); +} +struct Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Events" }, + { "DisplayName", "On Default Option Specified" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingRotator.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_DefaultOptionIndex; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::NewProp_DefaultOptionIndex = { "DefaultOptionIndex", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms, DefaultOptionIndex), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::NewProp_DefaultOptionIndex, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingRotator, nullptr, "BP_OnDefaultOptionSpecified", nullptr, nullptr, Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::PropPointers), sizeof(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080800, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingRotator_eventBP_OnDefaultOptionSpecified_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameSettingRotator Function BP_OnDefaultOptionSpecified + +// Begin Class UGameSettingRotator +void UGameSettingRotator::StaticRegisterNativesUGameSettingRotator() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingRotator); +UClass* Z_Construct_UClass_UGameSettingRotator_NoRegister() +{ + return UGameSettingRotator::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingRotator_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/Misc/GameSettingRotator.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/GameSettingRotator.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingRotator_BP_OnDefaultOptionSpecified, "BP_OnDefaultOptionSpecified" }, // 2286580386 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingRotator_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonRotator, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRotator_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingRotator_Statics::ClassParams = { + &UGameSettingRotator::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingRotator_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingRotator_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingRotator() +{ + if (!Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton, Z_Construct_UClass_UGameSettingRotator_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingRotator.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingRotator::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingRotator); +UGameSettingRotator::~UGameSettingRotator() {} +// End Class UGameSettingRotator + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingRotator, UGameSettingRotator::StaticClass, TEXT("UGameSettingRotator"), &Z_Registration_Info_UClass_UGameSettingRotator, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingRotator), 2117309986U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_2911406432(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.generated.h new file mode 100644 index 00000000..1bbb8733 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingRotator.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/GameSettingRotator.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingRotator_generated_h +#error "GameSettingRotator.generated.h already included, missing '#pragma once' in GameSettingRotator.h" +#endif +#define GAMESETTINGS_GameSettingRotator_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingRotator(); \ + friend struct Z_Construct_UClass_UGameSettingRotator_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingRotator, UCommonRotator, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingRotator) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingRotator(UGameSettingRotator&&); \ + UGameSettingRotator(const UGameSettingRotator&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingRotator); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingRotator); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingRotator) \ + NO_API virtual ~UGameSettingRotator(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_GameSettingRotator_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp new file mode 100644 index 00000000..a660638d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.gen.cpp @@ -0,0 +1,507 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingScreen.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingScreen() {} + +// Begin Cross Module References +COMMONUI_API UClass* Z_Construct_UClass_UCommonActivatableWidget(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingCollection_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPanel_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingRegistry_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingScreen_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingScreen Function ApplyChanges +struct Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "ApplyChanges", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingScreen_ApplyChanges() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_ApplyChanges_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execApplyChanges) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ApplyChanges(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function ApplyChanges + +// Begin Class UGameSettingScreen Function AttemptToPopNavigation +struct Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics +{ + struct GameSettingScreen_eventAttemptToPopNavigation_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingScreen_eventAttemptToPopNavigation_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventAttemptToPopNavigation_Parms), &Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "AttemptToPopNavigation", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::GameSettingScreen_eventAttemptToPopNavigation_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::GameSettingScreen_eventAttemptToPopNavigation_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execAttemptToPopNavigation) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->AttemptToPopNavigation(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function AttemptToPopNavigation + +// Begin Class UGameSettingScreen Function CancelChanges +struct Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "CancelChanges", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UGameSettingScreen_CancelChanges() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_CancelChanges_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execCancelChanges) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CancelChanges(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function CancelChanges + +// Begin Class UGameSettingScreen Function GetSettingCollection +struct Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics +{ + struct GameSettingScreen_eventGetSettingCollection_Parms + { + FName SettingDevName; + bool HasAnySettings; + UGameSettingCollection* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevName; + static void NewProp_HasAnySettings_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_HasAnySettings; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_SettingDevName = { "SettingDevName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventGetSettingCollection_Parms, SettingDevName), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings_SetBit(void* Obj) +{ + ((GameSettingScreen_eventGetSettingCollection_Parms*)Obj)->HasAnySettings = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings = { "HasAnySettings", nullptr, (EPropertyFlags)0x0010000000000180, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventGetSettingCollection_Parms), &Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventGetSettingCollection_Parms, ReturnValue), Z_Construct_UClass_UGameSettingCollection_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_SettingDevName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_HasAnySettings, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "GetSettingCollection", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::GameSettingScreen_eventGetSettingCollection_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::GameSettingScreen_eventGetSettingCollection_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execGetSettingCollection) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SettingDevName); + P_GET_UBOOL_REF(Z_Param_Out_HasAnySettings); + P_FINISH; + P_NATIVE_BEGIN; + *(UGameSettingCollection**)Z_Param__Result=P_THIS->GetSettingCollection(Z_Param_SettingDevName,Z_Param_Out_HasAnySettings); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function GetSettingCollection + +// Begin Class UGameSettingScreen Function HaveSettingsBeenChanged +struct Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics +{ + struct GameSettingScreen_eventHaveSettingsBeenChanged_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingScreen_eventHaveSettingsBeenChanged_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventHaveSettingsBeenChanged_Parms), &Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "HaveSettingsBeenChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::GameSettingScreen_eventHaveSettingsBeenChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::GameSettingScreen_eventHaveSettingsBeenChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execHaveSettingsBeenChanged) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HaveSettingsBeenChanged(); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function HaveSettingsBeenChanged + +// Begin Class UGameSettingScreen Function NavigateToSetting +struct Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics +{ + struct GameSettingScreen_eventNavigateToSetting_Parms + { + FName SettingDevName; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::NewProp_SettingDevName = { "SettingDevName", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventNavigateToSetting_Parms, SettingDevName), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::NewProp_SettingDevName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "NavigateToSetting", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::GameSettingScreen_eventNavigateToSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::GameSettingScreen_eventNavigateToSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execNavigateToSetting) +{ + P_GET_PROPERTY(FNameProperty,Z_Param_SettingDevName); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->NavigateToSetting(Z_Param_SettingDevName); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function NavigateToSetting + +// Begin Class UGameSettingScreen Function NavigateToSettings +struct Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics +{ + struct GameSettingScreen_eventNavigateToSettings_Parms + { + TArray SettingDevNames; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SettingDevNames_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FNamePropertyParams NewProp_SettingDevNames_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_SettingDevNames; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames_Inner = { "SettingDevNames", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames = { "SettingDevNames", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingScreen_eventNavigateToSettings_Parms, SettingDevNames), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SettingDevNames_MetaData), NewProp_SettingDevNames_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::NewProp_SettingDevNames, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "NavigateToSettings", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::GameSettingScreen_eventNavigateToSettings_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::GameSettingScreen_eventNavigateToSettings_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execNavigateToSettings) +{ + P_GET_TARRAY_REF(FName,Z_Param_Out_SettingDevNames); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->NavigateToSettings(Z_Param_Out_SettingDevNames); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function NavigateToSettings + +// Begin Class UGameSettingScreen Function OnSettingsDirtyStateChanged +struct GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms +{ + bool bSettingsDirty; +}; +static const FName NAME_UGameSettingScreen_OnSettingsDirtyStateChanged = FName(TEXT("OnSettingsDirtyStateChanged")); +void UGameSettingScreen::OnSettingsDirtyStateChanged(bool bSettingsDirty) +{ + UFunction* Func = FindFunctionChecked(NAME_UGameSettingScreen_OnSettingsDirtyStateChanged); + if (!Func->GetOwnerClass()->HasAnyClassFlags(CLASS_Native)) + { + GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms Parms; + Parms.bSettingsDirty=bSettingsDirty ? true : false; + ProcessEvent(Func,&Parms); + } + else + { + OnSettingsDirtyStateChanged_Implementation(bSettingsDirty); + } +} +struct Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bSettingsDirty_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bSettingsDirty; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty_SetBit(void* Obj) +{ + ((GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms*)Obj)->bSettingsDirty = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty = { "bSettingsDirty", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms), &Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::NewProp_bSettingsDirty, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingScreen, nullptr, "OnSettingsDirtyStateChanged", nullptr, nullptr, Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::PropPointers), sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08080C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingScreen_eventOnSettingsDirtyStateChanged_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingScreen::execOnSettingsDirtyStateChanged) +{ + P_GET_UBOOL(Z_Param_bSettingsDirty); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->OnSettingsDirtyStateChanged_Implementation(Z_Param_bSettingsDirty); + P_NATIVE_END; +} +// End Class UGameSettingScreen Function OnSettingsDirtyStateChanged + +// Begin Class UGameSettingScreen +void UGameSettingScreen::StaticRegisterNativesUGameSettingScreen() +{ + UClass* Class = UGameSettingScreen::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ApplyChanges", &UGameSettingScreen::execApplyChanges }, + { "AttemptToPopNavigation", &UGameSettingScreen::execAttemptToPopNavigation }, + { "CancelChanges", &UGameSettingScreen::execCancelChanges }, + { "GetSettingCollection", &UGameSettingScreen::execGetSettingCollection }, + { "HaveSettingsBeenChanged", &UGameSettingScreen::execHaveSettingsBeenChanged }, + { "NavigateToSetting", &UGameSettingScreen::execNavigateToSetting }, + { "NavigateToSettings", &UGameSettingScreen::execNavigateToSettings }, + { "OnSettingsDirtyStateChanged", &UGameSettingScreen::execOnSettingsDirtyStateChanged }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingScreen); +UClass* Z_Construct_UClass_UGameSettingScreen_NoRegister() +{ + return UGameSettingScreen::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingScreen_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "Category", "Settings" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/GameSettingScreen.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Settings_Panel_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "GameSettingScreen" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Bound Widgets\n" }, +#endif + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Bound Widgets" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Registry_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/GameSettingScreen.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Settings_Panel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Registry; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingScreen_ApplyChanges, "ApplyChanges" }, // 2871902737 + { &Z_Construct_UFunction_UGameSettingScreen_AttemptToPopNavigation, "AttemptToPopNavigation" }, // 1439138950 + { &Z_Construct_UFunction_UGameSettingScreen_CancelChanges, "CancelChanges" }, // 3941068252 + { &Z_Construct_UFunction_UGameSettingScreen_GetSettingCollection, "GetSettingCollection" }, // 1892236229 + { &Z_Construct_UFunction_UGameSettingScreen_HaveSettingsBeenChanged, "HaveSettingsBeenChanged" }, // 1279399345 + { &Z_Construct_UFunction_UGameSettingScreen_NavigateToSetting, "NavigateToSetting" }, // 66770425 + { &Z_Construct_UFunction_UGameSettingScreen_NavigateToSettings, "NavigateToSettings" }, // 1196035665 + { &Z_Construct_UFunction_UGameSettingScreen_OnSettingsDirtyStateChanged, "OnSettingsDirtyStateChanged" }, // 1480340330 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Settings_Panel = { "Settings_Panel", nullptr, (EPropertyFlags)0x014400000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingScreen, Settings_Panel), Z_Construct_UClass_UGameSettingPanel_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Settings_Panel_MetaData), NewProp_Settings_Panel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Registry = { "Registry", nullptr, (EPropertyFlags)0x0144000000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingScreen, Registry), Z_Construct_UClass_UGameSettingRegistry_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Registry_MetaData), NewProp_Registry_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Settings_Panel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingScreen_Statics::NewProp_Registry, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingScreen_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCommonActivatableWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingScreen_Statics::ClassParams = { + &UGameSettingScreen::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingScreen_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingScreen_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingScreen() +{ + if (!Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton, Z_Construct_UClass_UGameSettingScreen_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingScreen.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingScreen::StaticClass(); +} +UGameSettingScreen::UGameSettingScreen(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingScreen); +UGameSettingScreen::~UGameSettingScreen() {} +// End Class UGameSettingScreen + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingScreen, UGameSettingScreen::StaticClass, TEXT("UGameSettingScreen"), &Z_Registration_Info_UClass_UGameSettingScreen, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingScreen), 1919204161U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_1937490542(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.generated.h new file mode 100644 index 00000000..4b941de4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingScreen.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingScreen.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSettingCollection; +#ifdef GAMESETTINGS_GameSettingScreen_generated_h +#error "GameSettingScreen.generated.h already included, missing '#pragma once' in GameSettingScreen.h" +#endif +#define GAMESETTINGS_GameSettingScreen_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHaveSettingsBeenChanged); \ + DECLARE_FUNCTION(execApplyChanges); \ + DECLARE_FUNCTION(execCancelChanges); \ + DECLARE_FUNCTION(execGetSettingCollection); \ + DECLARE_FUNCTION(execAttemptToPopNavigation); \ + DECLARE_FUNCTION(execOnSettingsDirtyStateChanged); \ + DECLARE_FUNCTION(execNavigateToSettings); \ + DECLARE_FUNCTION(execNavigateToSetting); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingScreen(); \ + friend struct Z_Construct_UClass_UGameSettingScreen_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingScreen, UCommonActivatableWidget, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingScreen) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingScreen(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingScreen(UGameSettingScreen&&); \ + UGameSettingScreen(const UGameSettingScreen&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingScreen); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingScreen); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingScreen) \ + NO_API virtual ~UGameSettingScreen(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_23_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h_26_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingScreen_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.gen.cpp new file mode 100644 index 00000000..22b42d91 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.gen.cpp @@ -0,0 +1,96 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValue.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValue() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValue +void UGameSettingValue::StaticRegisterNativesUGameSettingValue() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValue); +UClass* Z_Construct_UClass_UGameSettingValue_NoRegister() +{ + return UGameSettingValue::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValue_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * The base class for all settings that are conceptually a value, that can be \n * changed, and thus reset or restored to their initial value.\n */" }, +#endif + { "IncludePath", "GameSettingValue.h" }, + { "ModuleRelativePath", "Public/GameSettingValue.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The base class for all settings that are conceptually a value, that can be\nchanged, and thus reset or restored to their initial value." }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValue_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSetting, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValue_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValue_Statics::ClassParams = { + &UGameSettingValue::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValue_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValue_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValue() +{ + if (!Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton, Z_Construct_UClass_UGameSettingValue_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValue.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValue::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValue); +UGameSettingValue::~UGameSettingValue() {} +// End Class UGameSettingValue + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValue, UGameSettingValue::StaticClass, TEXT("UGameSettingValue"), &Z_Registration_Info_UClass_UGameSettingValue, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValue), 1373387846U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_2601201315(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.generated.h new file mode 100644 index 00000000..1a79903d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValue.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValue.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValue_generated_h +#error "GameSettingValue.generated.h already included, missing '#pragma once' in GameSettingValue.h" +#endif +#define GAMESETTINGS_GameSettingValue_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValue(); \ + friend struct Z_Construct_UClass_UGameSettingValue_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValue, UGameSetting, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValue) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValue(UGameSettingValue&&); \ + UGameSettingValue(const UGameSettingValue&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValue); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValue); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValue) \ + NO_API virtual ~UGameSettingValue(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_19_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValue_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp new file mode 100644 index 00000000..fe352a5e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.gen.cpp @@ -0,0 +1,235 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueDiscrete.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueDiscrete() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptionDefaultIndex +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Optional */" }, +#endif + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Optional" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptionDefaultIndex", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionDefaultIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptionDefaultIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetDiscreteOptionDefaultIndex(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptionDefaultIndex + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptionIndex +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptionIndex", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::GameSettingValueDiscrete_eventGetDiscreteOptionIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptionIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetDiscreteOptionIndex(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptionIndex + +// Begin Class UGameSettingValueDiscrete Function GetDiscreteOptions +struct Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics +{ + struct GameSettingValueDiscrete_eventGetDiscreteOptions_Parms + { + TArray ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FTextPropertyParams NewProp_ReturnValue_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue_Inner = { "ReturnValue", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingValueDiscrete_eventGetDiscreteOptions_Parms, ReturnValue), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingValueDiscrete, nullptr, "GetDiscreteOptions", nullptr, nullptr, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::GameSettingValueDiscrete_eventGetDiscreteOptions_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::GameSettingValueDiscrete_eventGetDiscreteOptions_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UGameSettingValueDiscrete::execGetDiscreteOptions) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(TArray*)Z_Param__Result=P_THIS->GetDiscreteOptions(); + P_NATIVE_END; +} +// End Class UGameSettingValueDiscrete Function GetDiscreteOptions + +// Begin Class UGameSettingValueDiscrete +void UGameSettingValueDiscrete::StaticRegisterNativesUGameSettingValueDiscrete() +{ + UClass* Class = UGameSettingValueDiscrete::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetDiscreteOptionDefaultIndex", &UGameSettingValueDiscrete::execGetDiscreteOptionDefaultIndex }, + { "GetDiscreteOptionIndex", &UGameSettingValueDiscrete::execGetDiscreteOptionIndex }, + { "GetDiscreteOptions", &UGameSettingValueDiscrete::execGetDiscreteOptions }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscrete); +UClass* Z_Construct_UClass_UGameSettingValueDiscrete_NoRegister() +{ + return UGameSettingValueDiscrete::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscrete_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueDiscrete.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscrete.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionDefaultIndex, "GetDiscreteOptionDefaultIndex" }, // 1450543490 + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptionIndex, "GetDiscreteOptionIndex" }, // 2225194349 + { &Z_Construct_UFunction_UGameSettingValueDiscrete_GetDiscreteOptions, "GetDiscreteOptions" }, // 861247989 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscrete_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscrete_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscrete_Statics::ClassParams = { + &UGameSettingValueDiscrete::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscrete_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscrete_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscrete() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscrete_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscrete.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscrete::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscrete); +UGameSettingValueDiscrete::~UGameSettingValueDiscrete() {} +// End Class UGameSettingValueDiscrete + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueDiscrete, UGameSettingValueDiscrete::StaticClass, TEXT("UGameSettingValueDiscrete"), &Z_Registration_Info_UClass_UGameSettingValueDiscrete, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscrete), 535713849U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_1873134891(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h new file mode 100644 index 00000000..34dd00b1 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscrete.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueDiscrete.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueDiscrete_generated_h +#error "GameSettingValueDiscrete.generated.h already included, missing '#pragma once' in GameSettingValueDiscrete.h" +#endif +#define GAMESETTINGS_GameSettingValueDiscrete_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetDiscreteOptions); \ + DECLARE_FUNCTION(execGetDiscreteOptionDefaultIndex); \ + DECLARE_FUNCTION(execGetDiscreteOptionIndex); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscrete(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscrete_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscrete, UGameSettingValue, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscrete) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscrete(UGameSettingValueDiscrete&&); \ + UGameSettingValueDiscrete(const UGameSettingValueDiscrete&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscrete); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscrete); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscrete) \ + NO_API virtual ~UGameSettingValueDiscrete(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscrete_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp new file mode 100644 index 00000000..1f835014 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.gen.cpp @@ -0,0 +1,436 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueDiscreteDynamic.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueDiscreteDynamic() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscrete(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueDiscreteDynamic +void UGameSettingValueDiscreteDynamic::StaticRegisterNativesUGameSettingValueDiscreteDynamic() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_NoRegister() +{ + return UGameSettingValueDiscreteDynamic::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscrete, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic); +UGameSettingValueDiscreteDynamic::~UGameSettingValueDiscreteDynamic() {} +// End Class UGameSettingValueDiscreteDynamic + +// Begin Class UGameSettingValueDiscreteDynamic_Bool +void UGameSettingValueDiscreteDynamic_Bool::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Bool() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Bool); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Bool::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Bool\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Bool" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Bool::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Bool::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Bool); +UGameSettingValueDiscreteDynamic_Bool::~UGameSettingValueDiscreteDynamic_Bool() {} +// End Class UGameSettingValueDiscreteDynamic_Bool + +// Begin Class UGameSettingValueDiscreteDynamic_Number +void UGameSettingValueDiscreteDynamic_Number::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Number() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Number); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Number::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Number\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Number" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Number::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Number::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Number); +UGameSettingValueDiscreteDynamic_Number::~UGameSettingValueDiscreteDynamic_Number() {} +// End Class UGameSettingValueDiscreteDynamic_Number + +// Begin Class UGameSettingValueDiscreteDynamic_Enum +void UGameSettingValueDiscreteDynamic_Enum::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Enum() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Enum); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Enum::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Enum\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Enum" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Enum::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Enum::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Enum); +UGameSettingValueDiscreteDynamic_Enum::~UGameSettingValueDiscreteDynamic_Enum() {} +// End Class UGameSettingValueDiscreteDynamic_Enum + +// Begin Class UGameSettingValueDiscreteDynamic_Color +void UGameSettingValueDiscreteDynamic_Color::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Color() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Color); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Color::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Color\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Color" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Color::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Color::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Color); +UGameSettingValueDiscreteDynamic_Color::~UGameSettingValueDiscreteDynamic_Color() {} +// End Class UGameSettingValueDiscreteDynamic_Color + +// Begin Class UGameSettingValueDiscreteDynamic_Vector2D +void UGameSettingValueDiscreteDynamic_Vector2D::StaticRegisterNativesUGameSettingValueDiscreteDynamic_Vector2D() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueDiscreteDynamic_Vector2D); +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_NoRegister() +{ + return UGameSettingValueDiscreteDynamic_Vector2D::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "//////////////////////////////////////////////////////////////////////////\n// UGameSettingValueDiscreteDynamic_Vector2D\n//////////////////////////////////////////////////////////////////////////\n" }, +#endif + { "IncludePath", "GameSettingValueDiscreteDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueDiscreteDynamic.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UGameSettingValueDiscreteDynamic_Vector2D" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueDiscreteDynamic, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::ClassParams = { + &UGameSettingValueDiscreteDynamic_Vector2D::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton, Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueDiscreteDynamic_Vector2D::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueDiscreteDynamic_Vector2D); +UGameSettingValueDiscreteDynamic_Vector2D::~UGameSettingValueDiscreteDynamic_Vector2D() {} +// End Class UGameSettingValueDiscreteDynamic_Vector2D + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic, UGameSettingValueDiscreteDynamic::StaticClass, TEXT("UGameSettingValueDiscreteDynamic"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic), 3076102642U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool, UGameSettingValueDiscreteDynamic_Bool::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Bool"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Bool, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Bool), 99294893U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number, UGameSettingValueDiscreteDynamic_Number::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Number"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Number, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Number), 1260129619U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum, UGameSettingValueDiscreteDynamic_Enum::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Enum"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Enum, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Enum), 3533649785U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color, UGameSettingValueDiscreteDynamic_Color::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Color"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Color, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Color), 2849694914U) }, + { Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D, UGameSettingValueDiscreteDynamic_Vector2D::StaticClass, TEXT("UGameSettingValueDiscreteDynamic_Vector2D"), &Z_Registration_Info_UClass_UGameSettingValueDiscreteDynamic_Vector2D, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueDiscreteDynamic_Vector2D), 719681153U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_1087927517(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h new file mode 100644 index 00000000..a8937f70 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueDiscreteDynamic.generated.h @@ -0,0 +1,219 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueDiscreteDynamic.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueDiscreteDynamic_generated_h +#error "GameSettingValueDiscreteDynamic.generated.h already included, missing '#pragma once' in GameSettingValueDiscreteDynamic.h" +#endif +#define GAMESETTINGS_GameSettingValueDiscreteDynamic_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic, UGameSettingValueDiscrete, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic(UGameSettingValueDiscreteDynamic&&); \ + UGameSettingValueDiscreteDynamic(const UGameSettingValueDiscreteDynamic&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Bool(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Bool_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Bool, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Bool) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Bool(UGameSettingValueDiscreteDynamic_Bool&&); \ + UGameSettingValueDiscreteDynamic_Bool(const UGameSettingValueDiscreteDynamic_Bool&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Bool); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Bool); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Bool) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Bool(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_76_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_79_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Number(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Number_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Number, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Number) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Number(UGameSettingValueDiscreteDynamic_Number&&); \ + UGameSettingValueDiscreteDynamic_Number(const UGameSettingValueDiscreteDynamic_Number&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Number); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Number); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Number) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Number(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_100_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_103_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Enum(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Enum_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Enum, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Enum) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Enum(UGameSettingValueDiscreteDynamic_Enum&&); \ + UGameSettingValueDiscreteDynamic_Enum(const UGameSettingValueDiscreteDynamic_Enum&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Enum); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Enum); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Enum) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Enum(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_147_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_150_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Color(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Color_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Color, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Color) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Color(UGameSettingValueDiscreteDynamic_Color&&); \ + UGameSettingValueDiscreteDynamic_Color(const UGameSettingValueDiscreteDynamic_Color&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Color); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Color); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Color) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Color(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_193_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_196_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueDiscreteDynamic_Vector2D(); \ + friend struct Z_Construct_UClass_UGameSettingValueDiscreteDynamic_Vector2D_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueDiscreteDynamic_Vector2D, UGameSettingValueDiscreteDynamic, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueDiscreteDynamic_Vector2D) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueDiscreteDynamic_Vector2D(UGameSettingValueDiscreteDynamic_Vector2D&&); \ + UGameSettingValueDiscreteDynamic_Vector2D(const UGameSettingValueDiscreteDynamic_Vector2D&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueDiscreteDynamic_Vector2D); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueDiscreteDynamic_Vector2D); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueDiscreteDynamic_Vector2D) \ + NO_API virtual ~UGameSettingValueDiscreteDynamic_Vector2D(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_234_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h_237_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueDiscreteDynamic_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp new file mode 100644 index 00000000..e3d8a5e6 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueScalar.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueScalar() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValue(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueScalar +void UGameSettingValueScalar::StaticRegisterNativesUGameSettingValueScalar() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueScalar); +UClass* Z_Construct_UClass_UGameSettingValueScalar_NoRegister() +{ + return UGameSettingValueScalar::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueScalar_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueScalar.h" }, + { "ModuleRelativePath", "Public/GameSettingValueScalar.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueScalar_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValue, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalar_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueScalar_Statics::ClassParams = { + &UGameSettingValueScalar::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalar_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueScalar_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueScalar() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton, Z_Construct_UClass_UGameSettingValueScalar_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueScalar.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueScalar::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueScalar); +UGameSettingValueScalar::~UGameSettingValueScalar() {} +// End Class UGameSettingValueScalar + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueScalar, UGameSettingValueScalar::StaticClass, TEXT("UGameSettingValueScalar"), &Z_Registration_Info_UClass_UGameSettingValueScalar, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueScalar), 1486174764U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_174268002(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h new file mode 100644 index 00000000..a24ca44c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalar.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueScalar.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueScalar_generated_h +#error "GameSettingValueScalar.generated.h already included, missing '#pragma once' in GameSettingValueScalar.h" +#endif +#define GAMESETTINGS_GameSettingValueScalar_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueScalar(); \ + friend struct Z_Construct_UClass_UGameSettingValueScalar_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueScalar, UGameSettingValue, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueScalar) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueScalar(UGameSettingValueScalar&&); \ + UGameSettingValueScalar(const UGameSettingValueScalar&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueScalar); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueScalar); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueScalar) \ + NO_API virtual ~UGameSettingValueScalar(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalar_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp new file mode 100644 index 00000000..00e44426 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.gen.cpp @@ -0,0 +1,90 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/GameSettingValueScalarDynamic.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingValueScalarDynamic() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalar(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UGameSettingValueScalarDynamic +void UGameSettingValueScalarDynamic::StaticRegisterNativesUGameSettingValueScalarDynamic() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingValueScalarDynamic); +UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic_NoRegister() +{ + return UGameSettingValueScalarDynamic::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "GameSettingValueScalarDynamic.h" }, + { "ModuleRelativePath", "Public/GameSettingValueScalarDynamic.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingValueScalar, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::ClassParams = { + &UGameSettingValueScalarDynamic::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingValueScalarDynamic() +{ + if (!Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton, Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingValueScalarDynamic.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingValueScalarDynamic::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingValueScalarDynamic); +UGameSettingValueScalarDynamic::~UGameSettingValueScalarDynamic() {} +// End Class UGameSettingValueScalarDynamic + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingValueScalarDynamic, UGameSettingValueScalarDynamic::StaticClass, TEXT("UGameSettingValueScalarDynamic"), &Z_Registration_Info_UClass_UGameSettingValueScalarDynamic, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingValueScalarDynamic), 2151772642U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_3580281015(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h new file mode 100644 index 00000000..68c02aa0 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingValueScalarDynamic.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameSettingValueScalarDynamic.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingValueScalarDynamic_generated_h +#error "GameSettingValueScalarDynamic.generated.h already included, missing '#pragma once' in GameSettingValueScalarDynamic.h" +#endif +#define GAMESETTINGS_GameSettingValueScalarDynamic_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingValueScalarDynamic(); \ + friend struct Z_Construct_UClass_UGameSettingValueScalarDynamic_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingValueScalarDynamic, UGameSettingValueScalar, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingValueScalarDynamic) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingValueScalarDynamic(UGameSettingValueScalarDynamic&&); \ + UGameSettingValueScalarDynamic(const UGameSettingValueScalarDynamic&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingValueScalarDynamic); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingValueScalarDynamic); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameSettingValueScalarDynamic) \ + NO_API virtual ~UGameSettingValueScalarDynamic(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h_23_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_GameSettingValueScalarDynamic_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp new file mode 100644 index 00000000..925f6d80 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.gen.cpp @@ -0,0 +1,306 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/GameSettingVisualData.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettingVisualData() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingDetailExtension_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingListEntryBase_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingClassExtensions(); +GAMESETTINGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameSettingNameExtensions(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin ScriptStruct FGameSettingClassExtensions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingClassExtensions; +class UScriptStruct* FGameSettingClassExtensions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingClassExtensions, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingClassExtensions")); + } + return Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingClassExtensions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_Extensions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Extensions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions_Inner = { "Extensions", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSettingDetailExtension_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions = { "Extensions", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingClassExtensions, Extensions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extensions_MetaData), NewProp_Extensions_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewProp_Extensions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingClassExtensions", + Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::PropPointers), + sizeof(FGameSettingClassExtensions), + alignof(FGameSettingClassExtensions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingClassExtensions() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingClassExtensions.InnerSingleton; +} +// End ScriptStruct FGameSettingClassExtensions + +// Begin ScriptStruct FGameSettingNameExtensions +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameSettingNameExtensions; +class UScriptStruct* FGameSettingNameExtensions::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameSettingNameExtensions, (UObject*)Z_Construct_UPackage__Script_GameSettings(), TEXT("GameSettingNameExtensions")); + } + return Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.OuterSingleton; +} +template<> GAMESETTINGS_API UScriptStruct* StaticStruct() +{ + return FGameSettingNameExtensions::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bIncludeClassDefaultExtensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Extensions_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static void NewProp_bIncludeClassDefaultExtensions_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bIncludeClassDefaultExtensions; + static const UECodeGen_Private::FSoftClassPropertyParams NewProp_Extensions_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Extensions; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +void Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions_SetBit(void* Obj) +{ + ((FGameSettingNameExtensions*)Obj)->bIncludeClassDefaultExtensions = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions = { "bIncludeClassDefaultExtensions", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(FGameSettingNameExtensions), &Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bIncludeClassDefaultExtensions_MetaData), NewProp_bIncludeClassDefaultExtensions_MetaData) }; +const UECodeGen_Private::FSoftClassPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions_Inner = { "Extensions", nullptr, (EPropertyFlags)0x0004000000000000, UECodeGen_Private::EPropertyGenFlags::SoftClass, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UGameSettingDetailExtension_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions = { "Extensions", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameSettingNameExtensions, Extensions), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Extensions_MetaData), NewProp_Extensions_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_bIncludeClassDefaultExtensions, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewProp_Extensions, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, + nullptr, + &NewStructOps, + "GameSettingNameExtensions", + Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::PropPointers), + sizeof(FGameSettingNameExtensions), + alignof(FGameSettingNameExtensions), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameSettingNameExtensions() +{ + if (!Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton, Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameSettingNameExtensions.InnerSingleton; +} +// End ScriptStruct FGameSettingNameExtensions + +// Begin Class UGameSettingVisualData +void UGameSettingVisualData::StaticRegisterNativesUGameSettingVisualData() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingVisualData); +UClass* Z_Construct_UClass_UGameSettingVisualData_NoRegister() +{ + return UGameSettingVisualData::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingVisualData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "Widgets/GameSettingVisualData.h" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForClass_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EntryWidgetForName_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "ListEntries" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionsForClasses_MetaData[] = { + { "AllowAbstract", "" }, + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionsForName_MetaData[] = { + { "Category", "Extensions" }, + { "ModuleRelativePath", "Public/Widgets/GameSettingVisualData.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForClass_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForClass; + static const UECodeGen_Private::FClassPropertyParams NewProp_EntryWidgetForName_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_EntryWidgetForName_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_EntryWidgetForName; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionsForClasses_ValueProp; + static const UECodeGen_Private::FClassPropertyParams NewProp_ExtensionsForClasses_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionsForClasses; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionsForName_ValueProp; + static const UECodeGen_Private::FNamePropertyParams NewProp_ExtensionsForName_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionsForName; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_ValueProp = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingListEntryBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_Key_KeyProp = { "EntryWidgetForClass_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass = { "EntryWidgetForClass", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, EntryWidgetForClass), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForClass_MetaData), NewProp_EntryWidgetForClass_MetaData) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_ValueProp = { "EntryWidgetForName", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSettingListEntryBase_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_Key_KeyProp = { "EntryWidgetForName_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName = { "EntryWidgetForName", nullptr, (EPropertyFlags)0x0024080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, EntryWidgetForName), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EntryWidgetForName_MetaData), NewProp_EntryWidgetForName_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_ValueProp = { "ExtensionsForClasses", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameSettingClassExtensions, METADATA_PARAMS(0, nullptr) }; // 1023154710 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_Key_KeyProp = { "ExtensionsForClasses_Key", nullptr, (EPropertyFlags)0x0004000000000001, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses = { "ExtensionsForClasses", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, ExtensionsForClasses), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionsForClasses_MetaData), NewProp_ExtensionsForClasses_MetaData) }; // 1023154710 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_ValueProp = { "ExtensionsForName", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UScriptStruct_FGameSettingNameExtensions, METADATA_PARAMS(0, nullptr) }; // 1443050342 +const UECodeGen_Private::FNamePropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_Key_KeyProp = { "ExtensionsForName_Key", nullptr, (EPropertyFlags)0x0000000000000001, UECodeGen_Private::EPropertyGenFlags::Name, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName = { "ExtensionsForName", nullptr, (EPropertyFlags)0x0020080000010001, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UGameSettingVisualData, ExtensionsForName), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionsForName_MetaData), NewProp_ExtensionsForName_MetaData) }; // 1443050342 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_EntryWidgetForName, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UGameSettingVisualData_Statics::NewProp_ExtensionsForName, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UGameSettingVisualData_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingVisualData_Statics::ClassParams = { + &UGameSettingVisualData::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingVisualData_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingVisualData_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingVisualData() +{ + if (!Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton, Z_Construct_UClass_UGameSettingVisualData_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingVisualData.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingVisualData::StaticClass(); +} +UGameSettingVisualData::UGameSettingVisualData(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingVisualData); +UGameSettingVisualData::~UGameSettingVisualData() {} +// End Class UGameSettingVisualData + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameSettingClassExtensions::StaticStruct, Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics::NewStructOps, TEXT("GameSettingClassExtensions"), &Z_Registration_Info_UScriptStruct_GameSettingClassExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingClassExtensions), 1023154710U) }, + { FGameSettingNameExtensions::StaticStruct, Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics::NewStructOps, TEXT("GameSettingNameExtensions"), &Z_Registration_Info_UScriptStruct_GameSettingNameExtensions, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameSettingNameExtensions), 1443050342U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingVisualData, UGameSettingVisualData::StaticClass, TEXT("UGameSettingVisualData"), &Z_Registration_Info_UClass_UGameSettingVisualData, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingVisualData), 2040353489U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_252792939(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.generated.h new file mode 100644 index 00000000..99dda1f8 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingVisualData.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/GameSettingVisualData.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_GameSettingVisualData_generated_h +#error "GameSettingVisualData.generated.h already included, missing '#pragma once' in GameSettingVisualData.h" +#endif +#define GAMESETTINGS_GameSettingVisualData_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_18_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingClassExtensions_Statics; \ + GAMESETTINGS_API static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_28_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameSettingNameExtensions_Statics; \ + GAMESETTINGS_API static class UScriptStruct* StaticStruct(); + + +template<> GAMESETTINGS_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameSettingVisualData(); \ + friend struct Z_Construct_UClass_UGameSettingVisualData_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingVisualData, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UGameSettingVisualData) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameSettingVisualData(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingVisualData(UGameSettingVisualData&&); \ + UGameSettingVisualData(const UGameSettingVisualData&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameSettingVisualData); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingVisualData); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingVisualData) \ + NO_API virtual ~UGameSettingVisualData(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_41_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h_44_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_GameSettingVisualData_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettings.init.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettings.init.gen.cpp new file mode 100644 index 00000000..ac0533f4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettings.init.gen.cpp @@ -0,0 +1,33 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSettings_init() {} + GAMESETTINGS_API UFunction* Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameSettings; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameSettings() + { + if (!Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_UGameSettingPanel_OnExecuteNamedActionBP__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameSettings", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x6C44EA84, + 0x26465116, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameSettings.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameSettings(Z_Construct_UPackage__Script_GameSettings, TEXT("/Script/GameSettings"), Z_Registration_Info_UPackage__Script_GameSettings, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x6C44EA84, 0x26465116)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingsClasses.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettingsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp new file mode 100644 index 00000000..b2dfa645 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.gen.cpp @@ -0,0 +1,192 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/IGameSettingActionInterface.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeIGameSettingActionInterface() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UInterface(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSetting_NoRegister(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Interface UGameSettingActionInterface Function ExecuteActionForSetting +struct GameSettingActionInterface_eventExecuteActionForSetting_Parms +{ + FGameplayTag ActionTag; + UGameSetting* InSetting; + bool ReturnValue; + + /** Constructor, initializes return property only **/ + GameSettingActionInterface_eventExecuteActionForSetting_Parms() + : ReturnValue(false) + { + } +}; +bool IGameSettingActionInterface::ExecuteActionForSetting(FGameplayTag ActionTag, UGameSetting* InSetting) +{ + check(0 && "Do not directly call Event functions in Interfaces. Call Execute_ExecuteActionForSetting instead."); + GameSettingActionInterface_eventExecuteActionForSetting_Parms Parms; + return Parms.ReturnValue; +} +static FName NAME_UGameSettingActionInterface_ExecuteActionForSetting = FName(TEXT("ExecuteActionForSetting")); +bool IGameSettingActionInterface::Execute_ExecuteActionForSetting(UObject* O, FGameplayTag ActionTag, UGameSetting* InSetting) +{ + check(O != NULL); + check(O->GetClass()->ImplementsInterface(UGameSettingActionInterface::StaticClass())); + GameSettingActionInterface_eventExecuteActionForSetting_Parms Parms; + UFunction* const Func = O->FindFunction(NAME_UGameSettingActionInterface_ExecuteActionForSetting); + if (Func) + { + Parms.ActionTag=ActionTag; + Parms.InSetting=InSetting; + O->ProcessEvent(Func, &Parms); + } + else if (auto I = (IGameSettingActionInterface*)(O->GetNativeInterfaceAddress(UGameSettingActionInterface::StaticClass()))) + { + Parms.ReturnValue = I->ExecuteActionForSetting_Implementation(ActionTag,InSetting); + } + return Parms.ReturnValue; +} +struct Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/IGameSettingActionInterface.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ActionTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_InSetting; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ActionTag = { "ActionTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingActionInterface_eventExecuteActionForSetting_Parms, ActionTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_InSetting = { "InSetting", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameSettingActionInterface_eventExecuteActionForSetting_Parms, InSetting), Z_Construct_UClass_UGameSetting_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((GameSettingActionInterface_eventExecuteActionForSetting_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms), &Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ActionTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_InSetting, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameSettingActionInterface, nullptr, "ExecuteActionForSetting", nullptr, nullptr, Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::PropPointers), sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x0C020C00, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::Function_MetaDataParams) }; +static_assert(sizeof(GameSettingActionInterface_eventExecuteActionForSetting_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(IGameSettingActionInterface::execExecuteActionForSetting) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ActionTag); + P_GET_OBJECT(UGameSetting,Z_Param_InSetting); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->ExecuteActionForSetting_Implementation(Z_Param_ActionTag,Z_Param_InSetting); + P_NATIVE_END; +} +// End Interface UGameSettingActionInterface Function ExecuteActionForSetting + +// Begin Interface UGameSettingActionInterface +void UGameSettingActionInterface::StaticRegisterNativesUGameSettingActionInterface() +{ + UClass* Class = UGameSettingActionInterface::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ExecuteActionForSetting", &IGameSettingActionInterface::execExecuteActionForSetting }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameSettingActionInterface); +UClass* Z_Construct_UClass_UGameSettingActionInterface_NoRegister() +{ + return UGameSettingActionInterface::StaticClass(); +} +struct Z_Construct_UClass_UGameSettingActionInterface_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "" }, + { "ModuleRelativePath", "Public/Widgets/IGameSettingActionInterface.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameSettingActionInterface_ExecuteActionForSetting, "ExecuteActionForSetting" }, // 2867925820 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameSettingActionInterface_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UInterface, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingActionInterface_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameSettingActionInterface_Statics::ClassParams = { + &UGameSettingActionInterface::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000840A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameSettingActionInterface_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameSettingActionInterface_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameSettingActionInterface() +{ + if (!Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton, Z_Construct_UClass_UGameSettingActionInterface_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameSettingActionInterface.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UGameSettingActionInterface::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameSettingActionInterface); +UGameSettingActionInterface::~UGameSettingActionInterface() {} +// End Interface UGameSettingActionInterface + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameSettingActionInterface, UGameSettingActionInterface::StaticClass, TEXT("UGameSettingActionInterface"), &Z_Registration_Info_UClass_UGameSettingActionInterface, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameSettingActionInterface), 3882456604U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_2406590174(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h new file mode 100644 index 00000000..85c4bc90 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/IGameSettingActionInterface.generated.h @@ -0,0 +1,82 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/IGameSettingActionInterface.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UGameSetting; +struct FGameplayTag; +#ifdef GAMESETTINGS_IGameSettingActionInterface_generated_h +#error "IGameSettingActionInterface.generated.h already included, missing '#pragma once' in IGameSettingActionInterface.h" +#endif +#define GAMESETTINGS_IGameSettingActionInterface_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + virtual bool ExecuteActionForSetting_Implementation(FGameplayTag ActionTag, UGameSetting* InSetting) { return false; }; \ + DECLARE_FUNCTION(execExecuteActionForSetting); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_CALLBACK_WRAPPERS +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + GAMESETTINGS_API UGameSettingActionInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UGameSettingActionInterface) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(GAMESETTINGS_API, UGameSettingActionInterface); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameSettingActionInterface); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameSettingActionInterface(UGameSettingActionInterface&&); \ + UGameSettingActionInterface(const UGameSettingActionInterface&); \ +public: \ + GAMESETTINGS_API virtual ~UGameSettingActionInterface(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_UINTERFACE_BODY() \ +private: \ + static void StaticRegisterNativesUGameSettingActionInterface(); \ + friend struct Z_Construct_UClass_UGameSettingActionInterface_Statics; \ +public: \ + DECLARE_CLASS(UGameSettingActionInterface, UInterface, COMPILED_IN_FLAGS(CLASS_Abstract | CLASS_Interface), CASTCLASS_None, TEXT("/Script/GameSettings"), GAMESETTINGS_API) \ + DECLARE_SERIALIZER(UGameSettingActionInterface) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_BODY_LEGACY \ + PRAGMA_DISABLE_DEPRECATION_WARNINGS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_GENERATED_UINTERFACE_BODY() \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_STANDARD_CONSTRUCTORS \ + PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +protected: \ + virtual ~IGameSettingActionInterface() {} \ +public: \ + typedef UGameSettingActionInterface UClassType; \ + typedef IGameSettingActionInterface ThisClass; \ + static bool Execute_ExecuteActionForSetting(UObject* O, FGameplayTag ActionTag, UGameSetting* InSetting); \ + virtual UObject* _getUObject() const { return nullptr; } + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_CALLBACK_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h_17_INCLASS_IINTERFACE_NO_PURE_DECLS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_IGameSettingActionInterface_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp new file mode 100644 index 00000000..11412e35 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp @@ -0,0 +1,124 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeKeyAlreadyBoundWarning() {} + +// Begin Cross Module References +GAMESETTINGS_API UClass* Z_Construct_UClass_UGameSettingPressAnyKey(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning(); +GAMESETTINGS_API UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister(); +UMG_API UClass* Z_Construct_UClass_UTextBlock_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSettings(); +// End Cross Module References + +// Begin Class UKeyAlreadyBoundWarning +void UKeyAlreadyBoundWarning::StaticRegisterNativesUKeyAlreadyBoundWarning() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UKeyAlreadyBoundWarning); +UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning_NoRegister() +{ + return UKeyAlreadyBoundWarning::StaticClass(); +} +struct Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * UKeyAlreadyBoundWarning\n * Press any key screen with text blocks for warning users when a key is already bound\n */" }, +#endif + { "IncludePath", "Widgets/Misc/KeyAlreadyBoundWarning.h" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "UKeyAlreadyBoundWarning\nPress any key screen with text blocks for warning users when a key is already bound" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WarningText_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "KeyAlreadyBoundWarning" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CancelText_MetaData[] = { + { "AllowPrivateAccess", "TRUE" }, + { "BindWidget", "" }, + { "BlueprintProtected", "TRUE" }, + { "Category", "KeyAlreadyBoundWarning" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/Misc/KeyAlreadyBoundWarning.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WarningText; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CancelText; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_WarningText = { "WarningText", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UKeyAlreadyBoundWarning, WarningText), Z_Construct_UClass_UTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WarningText_MetaData), NewProp_WarningText_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_CancelText = { "CancelText", nullptr, (EPropertyFlags)0x012408000008001c, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UKeyAlreadyBoundWarning, CancelText), Z_Construct_UClass_UTextBlock_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CancelText_MetaData), NewProp_CancelText_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_WarningText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::NewProp_CancelText, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameSettingPressAnyKey, + (UObject* (*)())Z_Construct_UPackage__Script_GameSettings, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::ClassParams = { + &UKeyAlreadyBoundWarning::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::PropPointers), + 0, + 0x00B010A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::Class_MetaDataParams), Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UKeyAlreadyBoundWarning() +{ + if (!Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton, Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UKeyAlreadyBoundWarning.OuterSingleton; +} +template<> GAMESETTINGS_API UClass* StaticClass() +{ + return UKeyAlreadyBoundWarning::StaticClass(); +} +UKeyAlreadyBoundWarning::UKeyAlreadyBoundWarning(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UKeyAlreadyBoundWarning); +UKeyAlreadyBoundWarning::~UKeyAlreadyBoundWarning() {} +// End Class UKeyAlreadyBoundWarning + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UKeyAlreadyBoundWarning, UKeyAlreadyBoundWarning::StaticClass, TEXT("UKeyAlreadyBoundWarning"), &Z_Registration_Info_UClass_UKeyAlreadyBoundWarning, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UKeyAlreadyBoundWarning), 4103890129U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_1833835952(TEXT("/Script/GameSettings"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h new file mode 100644 index 00000000..5ff9497c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/Misc/KeyAlreadyBoundWarning.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESETTINGS_KeyAlreadyBoundWarning_generated_h +#error "KeyAlreadyBoundWarning.generated.h already included, missing '#pragma once' in KeyAlreadyBoundWarning.h" +#endif +#define GAMESETTINGS_KeyAlreadyBoundWarning_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUKeyAlreadyBoundWarning(); \ + friend struct Z_Construct_UClass_UKeyAlreadyBoundWarning_Statics; \ +public: \ + DECLARE_CLASS(UKeyAlreadyBoundWarning, UGameSettingPressAnyKey, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/GameSettings"), NO_API) \ + DECLARE_SERIALIZER(UKeyAlreadyBoundWarning) + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UKeyAlreadyBoundWarning(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UKeyAlreadyBoundWarning(UKeyAlreadyBoundWarning&&); \ + UKeyAlreadyBoundWarning(const UKeyAlreadyBoundWarning&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UKeyAlreadyBoundWarning); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UKeyAlreadyBoundWarning); \ + DEFINE_ABSTRACT_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UKeyAlreadyBoundWarning) \ + NO_API virtual ~UKeyAlreadyBoundWarning(); + + +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESETTINGS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSettings_Source_Public_Widgets_Misc_KeyAlreadyBoundWarning_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/Timestamp b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/Timestamp new file mode 100644 index 00000000..2f6ef6e5 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/Timestamp @@ -0,0 +1,23 @@ +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingAction.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingFilterState.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSetting.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingCollection.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingRegistry.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueDiscreteDynamic.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValue.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueDiscrete.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueScalar.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\GameSettingValueScalarDynamic.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingDetailView.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingListEntry.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingDetailExtension.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingScreen.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingListView.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingPanel.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\GameSettingVisualData.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\IGameSettingActionInterface.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\KeyAlreadyBoundWarning.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\GameSettingRotator.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Public\Widgets\Misc\GameSettingPressAnyKey.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Private\Widgets\Responsive\GameResponsivePanel.h +E:\Projects\cross_platform\Plugins\GameSettings\Source\Private\Widgets\Responsive\GameResponsivePanelSlot.h diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Default.rc2.res.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Default.rc2.res.rsp new file mode 100644 index 00000000..63ac7ec7 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-GameSettings.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Definitions.GameSettings.h b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Definitions.GameSettings.h new file mode 100644 index 00000000..9775a402 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Definitions.GameSettings.h @@ -0,0 +1,28 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameSettings +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef GAMESETTINGS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "GameSettings" +#define UE_PLUGIN_NAME "GameSettings" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMESETTINGS_API DLLEXPORT +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API DLLIMPORT +#define ENHANCEDINPUT_API DLLIMPORT +#define COMMONUI_API DLLIMPORT +#define WIDGETCAROUSEL_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/GameSettings.Shared.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/GameSettings.Shared.rsp new file mode 100644 index 00000000..a9dcff0c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/GameSettings.Shared.rsp @@ -0,0 +1,317 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Private" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\UnrealEditor\Inc\GameSettings\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/LiveCodingInfo.json b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/LiveCodingInfo.json new file mode 100644 index 00000000..f0ad261e --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/LiveCodingInfo.json @@ -0,0 +1,39 @@ +{ + "RemapUnityFiles": + { + "Module.GameSettings.cpp.obj": [ + "GameSettings.init.gen.cpp.obj", + "KeyAlreadyBoundWarning.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "GameSettingDataSourceDynamic.cpp.obj", + "WhenPlatformHasTrait.cpp.obj", + "WhenPlayingAsPrimaryPlayer.cpp.obj", + "GameSetting.cpp.obj", + "GameSettingAction.cpp.obj", + "GameSettingCollection.cpp.obj", + "GameSettingFilterState.cpp.obj", + "GameSettingsModule.cpp.obj", + "GameSettingValue.cpp.obj", + "GameSettingValueDiscrete.cpp.obj", + "GameSettingValueDiscreteDynamic.cpp.obj", + "GameSettingValueScalar.cpp.obj", + "GameSettingValueScalarDynamic.cpp.obj", + "GameSettingRegistry.cpp.obj", + "GameSettingRegistryChangeTracker.cpp.obj", + "GameSettingDetailExtension.cpp.obj", + "GameSettingDetailView.cpp.obj", + "GameSettingListEntry.cpp.obj", + "GameSettingListView.cpp.obj", + "GameSettingPanel.cpp.obj", + "GameSettingScreen.cpp.obj", + "GameSettingVisualData.cpp.obj", + "IGameSettingActionInterface.cpp.obj", + "GameSettingPressAnyKey.cpp.obj", + "GameSettingRotator.cpp.obj", + "KeyAlreadyBoundWarning.cpp.obj", + "GameResponsivePanel.cpp.obj", + "GameResponsivePanelSlot.cpp.obj", + "SGameResponsivePanel.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp new file mode 100644 index 00000000..20f2488c --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp @@ -0,0 +1,33 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/GameSettings.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Intermediate/Build/Win64/UnrealEditor/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/DataSource/GameSettingDataSourceDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/EditCondition/WhenPlatformHasTrait.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/EditCondition/WhenPlayingAsPrimaryPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSetting.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingAction.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingCollection.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingFilterState.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingsModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValue.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueDiscrete.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueDiscreteDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueScalar.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueScalarDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Registry/GameSettingRegistry.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Registry/GameSettingRegistryChangeTracker.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingDetailExtension.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingDetailView.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingListEntry.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingListView.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingPanel.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingVisualData.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/IGameSettingActionInterface.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/GameSettingPressAnyKey.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/GameSettingRotator.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/KeyAlreadyBoundWarning.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/GameResponsivePanel.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/GameResponsivePanelSlot.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/SGameResponsivePanel.cpp" diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp.obj.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp.obj.rsp new file mode 100644 index 00000000..f2c7907a --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/Module.GameSettings.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Definitions.GameSettings.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\GameSettings.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/PerModuleInline.gen.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.dll.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.dll.rsp new file mode 100644 index 00000000..8f1423b8 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.dll.rsp @@ -0,0 +1,83 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\ApplicationCore\UnrealEditor-ApplicationCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PropertyPath\UnrealEditor-PropertyPath.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\InputCore\UnrealEditor-InputCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonInput\UnrealEditor-CommonInput.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUI\UnrealEditor-CommonUI.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +"uiautomationcore.lib" +"DXGI.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor-GameSettings.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameSettings\Binaries\Win64\UnrealEditor-GameSettings.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.lib.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.lib.rsp new file mode 100644 index 00000000..2471708d --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSettings/UnrealEditor-GameSettings.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-GameSettings.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Module.GameSettings.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSettings\UnrealEditor-GameSettings.lib" \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Definitions.GameSettings.h b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Definitions.GameSettings.h new file mode 100644 index 00000000..b7bfbf83 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Definitions.GameSettings.h @@ -0,0 +1,44 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameSettings +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef GAMESETTINGS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "GameSettings" +#define UE_PLUGIN_NAME "GameSettings" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define PROPERTYPATH_API +#define GAMESETTINGS_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API +#define ENHANCEDINPUT_API +#define COMMONUI_API +#define WIDGETCAROUSEL_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/GameSettings.Shared.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/GameSettings.Shared.rsp new file mode 100644 index 00000000..b5ede42f --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/GameSettings.Shared.rsp @@ -0,0 +1,163 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Private" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\UnrealGame\Inc\GameSettings\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source" +/I "E:\Projects\cross_platform\Plugins\GameSettings\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealGame\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp new file mode 100644 index 00000000..ace00485 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp @@ -0,0 +1,32 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/GameSettings.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Intermediate/Build/Win64/UnrealGame/Inc/GameSettings/UHT/KeyAlreadyBoundWarning.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/DataSource/GameSettingDataSourceDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/EditCondition/WhenPlatformHasTrait.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/EditCondition/WhenPlayingAsPrimaryPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSetting.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingAction.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingCollection.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingFilterState.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingsModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValue.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueDiscrete.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueDiscreteDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueScalar.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/GameSettingValueScalarDynamic.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Registry/GameSettingRegistry.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Registry/GameSettingRegistryChangeTracker.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingDetailExtension.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingDetailView.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingListEntry.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingListView.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingPanel.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingScreen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/GameSettingVisualData.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/IGameSettingActionInterface.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/GameSettingPressAnyKey.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/GameSettingRotator.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Misc/KeyAlreadyBoundWarning.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/GameResponsivePanel.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/GameResponsivePanelSlot.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSettings/Source/Private/Widgets/Responsive/SGameResponsivePanel.cpp" diff --git a/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp.obj.rsp b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp.obj.rsp new file mode 100644 index 00000000..3aea64f4 --- /dev/null +++ b/Plugins/GameSettings/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSettings/Module.GameSettings.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\Module.GameSettings.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\Definitions.GameSettings.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\Module.GameSettings.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\Module.GameSettings.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\Module.GameSettings.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameSettings\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSettings\GameSettings.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp new file mode 100644 index 00000000..6ef2703f --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSubtitles_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameSubtitles; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameSubtitles() + { + if (!Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameSubtitles", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xE6FA39F1, + 0x36BC3A95, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameSubtitles(Z_Construct_UPackage__Script_GameSubtitles, TEXT("/Script/GameSubtitles"), Z_Registration_Info_UPackage__Script_GameSubtitles, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE6FA39F1, 0x36BC3A95)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp new file mode 100644 index 00000000..ea727ed9 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp @@ -0,0 +1,301 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Players/MediaSubtitlesPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeMediaSubtitlesPlayer() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_UMediaSubtitlesPlayer(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_UMediaSubtitlesPlayer_NoRegister(); +MEDIAASSETS_API UClass* Z_Construct_UClass_UMediaPlayer_NoRegister(); +OVERLAY_API UClass* Z_Construct_UClass_UOverlays_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Class UMediaSubtitlesPlayer Function BindToMediaPlayer +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics +{ + struct MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms + { + UMediaPlayer* InMediaPlayer; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Binds the subtitle playback to the tick of a media player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Binds the subtitle playback to the tick of a media player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InMediaPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::NewProp_InMediaPlayer = { "InMediaPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms, InMediaPlayer), Z_Construct_UClass_UMediaPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::NewProp_InMediaPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "BindToMediaPlayer", nullptr, nullptr, Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execBindToMediaPlayer) +{ + P_GET_OBJECT(UMediaPlayer,Z_Param_InMediaPlayer); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->BindToMediaPlayer(Z_Param_InMediaPlayer); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function BindToMediaPlayer + +// Begin Class UMediaSubtitlesPlayer Function Play +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Begins playing the currently set subtitles. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Begins playing the currently set subtitles." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "Play", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_Play() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execPlay) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Play(); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function Play + +// Begin Class UMediaSubtitlesPlayer Function SetSubtitles +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics +{ + struct MediaSubtitlesPlayer_eventSetSubtitles_Parms + { + UOverlays* Subtitles; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the source with the new subtitles set. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the source with the new subtitles set." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Subtitles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::NewProp_Subtitles = { "Subtitles", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MediaSubtitlesPlayer_eventSetSubtitles_Parms, Subtitles), Z_Construct_UClass_UOverlays_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::NewProp_Subtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "SetSubtitles", nullptr, nullptr, Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::MediaSubtitlesPlayer_eventSetSubtitles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::MediaSubtitlesPlayer_eventSetSubtitles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execSetSubtitles) +{ + P_GET_OBJECT(UOverlays,Z_Param_Subtitles); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitles(Z_Param_Subtitles); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function SetSubtitles + +// Begin Class UMediaSubtitlesPlayer Function Stop +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Stops the subtitle player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stops the subtitle player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "Stop", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execStop) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Stop(); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function Stop + +// Begin Class UMediaSubtitlesPlayer +void UMediaSubtitlesPlayer::StaticRegisterNativesUMediaSubtitlesPlayer() +{ + UClass* Class = UMediaSubtitlesPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "BindToMediaPlayer", &UMediaSubtitlesPlayer::execBindToMediaPlayer }, + { "Play", &UMediaSubtitlesPlayer::execPlay }, + { "SetSubtitles", &UMediaSubtitlesPlayer::execSetSubtitles }, + { "Stop", &UMediaSubtitlesPlayer::execStop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UMediaSubtitlesPlayer); +UClass* Z_Construct_UClass_UMediaSubtitlesPlayer_NoRegister() +{ + return UMediaSubtitlesPlayer::StaticClass(); +} +struct Z_Construct_UClass_UMediaSubtitlesPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A Game-specific player for media subtitles. This needs to exist next to Media Players\n * and have its Play() / Pause() / Stop() methods called at the same time as the media players'\n * methods.\n */" }, +#endif + { "IncludePath", "Players/MediaSubtitlesPlayer.h" }, + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A Game-specific player for media subtitles. This needs to exist next to Media Players\nand have its Play() / Pause() / Stop() methods called at the same time as the media players'\nmethods." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SourceSubtitles_MetaData[] = { + { "Category", "Subtitles Source" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The subtitles to use for this player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The subtitles to use for this player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SourceSubtitles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer, "BindToMediaPlayer" }, // 2921213486 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_Play, "Play" }, // 2460212252 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles, "SetSubtitles" }, // 3950086787 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop, "Stop" }, // 2591699617 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::NewProp_SourceSubtitles = { "SourceSubtitles", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMediaSubtitlesPlayer, SourceSubtitles), Z_Construct_UClass_UOverlays_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SourceSubtitles_MetaData), NewProp_SourceSubtitles_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::NewProp_SourceSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::ClassParams = { + &UMediaSubtitlesPlayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UMediaSubtitlesPlayer() +{ + if (!Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton, Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return UMediaSubtitlesPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UMediaSubtitlesPlayer); +UMediaSubtitlesPlayer::~UMediaSubtitlesPlayer() {} +// End Class UMediaSubtitlesPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UMediaSubtitlesPlayer, UMediaSubtitlesPlayer::StaticClass, TEXT("UMediaSubtitlesPlayer"), &Z_Registration_Info_UClass_UMediaSubtitlesPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UMediaSubtitlesPlayer), 182314167U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_1470369624(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h new file mode 100644 index 00000000..d58c6300 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Players/MediaSubtitlesPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UMediaPlayer; +class UOverlays; +#ifdef GAMESUBTITLES_MediaSubtitlesPlayer_generated_h +#error "MediaSubtitlesPlayer.generated.h already included, missing '#pragma once' in MediaSubtitlesPlayer.h" +#endif +#define GAMESUBTITLES_MediaSubtitlesPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execBindToMediaPlayer); \ + DECLARE_FUNCTION(execSetSubtitles); \ + DECLARE_FUNCTION(execStop); \ + DECLARE_FUNCTION(execPlay); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUMediaSubtitlesPlayer(); \ + friend struct Z_Construct_UClass_UMediaSubtitlesPlayer_Statics; \ +public: \ + DECLARE_CLASS(UMediaSubtitlesPlayer, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(UMediaSubtitlesPlayer) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UMediaSubtitlesPlayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UMediaSubtitlesPlayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UMediaSubtitlesPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UMediaSubtitlesPlayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UMediaSubtitlesPlayer(UMediaSubtitlesPlayer&&); \ + UMediaSubtitlesPlayer(const UMediaSubtitlesPlayer&); \ +public: \ + NO_API virtual ~UMediaSubtitlesPlayer(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp new file mode 100644 index 00000000..14021e3b --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp @@ -0,0 +1,233 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/SubtitleDisplay.h" +#include "Public/SubtitleDisplaySubsystem.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +#include "Runtime/SlateCore/Public/Styling/SlateTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplay() {} + +// Begin Cross Module References +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplay(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplay_NoRegister(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister(); +GAMESUBTITLES_API UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FTextBlockStyle(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Class USubtitleDisplay Function HasSubtitles +struct Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics +{ + struct SubtitleDisplay_eventHasSubtitles_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Subtitles" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "Tooltip", "True if there are subtitles currently. False if the subtitle text is empty." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((SubtitleDisplay_eventHasSubtitles_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(SubtitleDisplay_eventHasSubtitles_Parms), &Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_USubtitleDisplay, nullptr, "HasSubtitles", nullptr, nullptr, Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers), sizeof(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::SubtitleDisplay_eventHasSubtitles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::Function_MetaDataParams), Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::SubtitleDisplay_eventHasSubtitles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_USubtitleDisplay_HasSubtitles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(USubtitleDisplay::execHasSubtitles) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasSubtitles(); + P_NATIVE_END; +} +// End Class USubtitleDisplay Function HasSubtitles + +// Begin Class USubtitleDisplay +void USubtitleDisplay::StaticRegisterNativesUSubtitleDisplay() +{ + UClass* Class = USubtitleDisplay::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HasSubtitles", &USubtitleDisplay::execHasSubtitles }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplay); +UClass* Z_Construct_UClass_USubtitleDisplay_NoRegister() +{ + return USubtitleDisplay::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplay_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/SubtitleDisplay.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Format_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Options_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WrapTextAt_MetaData[] = { + { "Category", "Display Info" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Whether text wraps onto a new line when it's length exceeds this width; if this value is zero or negative, no wrapping occurs.\n" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether text wraps onto a new line when it's length exceeds this width; if this value is zero or negative, no wrapping occurs." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewMode_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Preview text to be displayed when designing the widget */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview text to be displayed when designing the widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewText_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Preview text to be displayed when designing the widget */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview text to be displayed when designing the widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GeneratedStyle_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GeneratedBackgroundBorder_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Format; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Options; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WrapTextAt; + static void NewProp_bPreviewMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewMode; + static const UECodeGen_Private::FTextPropertyParams NewProp_PreviewText; + static const UECodeGen_Private::FStructPropertyParams NewProp_GeneratedStyle; + static const UECodeGen_Private::FStructPropertyParams NewProp_GeneratedBackgroundBorder; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_USubtitleDisplay_HasSubtitles, "HasSubtitles" }, // 1970154791 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Format = { "Format", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, Format), Z_Construct_UScriptStruct_FSubtitleFormat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Format_MetaData), NewProp_Format_MetaData) }; // 898911869 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Options = { "Options", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, Options), Z_Construct_UClass_USubtitleDisplayOptions_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Options_MetaData), NewProp_Options_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_WrapTextAt = { "WrapTextAt", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, WrapTextAt), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WrapTextAt_MetaData), NewProp_WrapTextAt_MetaData) }; +void Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode_SetBit(void* Obj) +{ + ((USubtitleDisplay*)Obj)->bPreviewMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode = { "bPreviewMode", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(USubtitleDisplay), &Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewMode_MetaData), NewProp_bPreviewMode_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_PreviewText = { "PreviewText", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, PreviewText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewText_MetaData), NewProp_PreviewText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedStyle = { "GeneratedStyle", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, GeneratedStyle), Z_Construct_UScriptStruct_FTextBlockStyle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GeneratedStyle_MetaData), NewProp_GeneratedStyle_MetaData) }; // 3854901059 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedBackgroundBorder = { "GeneratedBackgroundBorder", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, GeneratedBackgroundBorder), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GeneratedBackgroundBorder_MetaData), NewProp_GeneratedBackgroundBorder_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Format, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Options, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_WrapTextAt, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_PreviewText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedBackgroundBorder, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplay_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplay_Statics::ClassParams = { + &USubtitleDisplay::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplay_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplay() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton, Z_Construct_UClass_USubtitleDisplay_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplay::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplay); +USubtitleDisplay::~USubtitleDisplay() {} +// End Class USubtitleDisplay + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplay, USubtitleDisplay::StaticClass, TEXT("USubtitleDisplay"), &Z_Registration_Info_UClass_USubtitleDisplay, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplay), 3837067246U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_3251384037(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h new file mode 100644 index 00000000..e4b184b2 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/SubtitleDisplay.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplay_generated_h +#error "SubtitleDisplay.generated.h already included, missing '#pragma once' in SubtitleDisplay.h" +#endif +#define GAMESUBTITLES_SubtitleDisplay_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_RPC_WRAPPERS \ + DECLARE_FUNCTION(execHasSubtitles); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_INCLASS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplay(); \ + friend struct Z_Construct_UClass_USubtitleDisplay_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplay, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplay) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API USubtitleDisplay(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USubtitleDisplay) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplay); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplay); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplay(USubtitleDisplay&&); \ + USubtitleDisplay(const USubtitleDisplay&); \ +public: \ + NO_API virtual ~USubtitleDisplay(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp new file mode 100644 index 00000000..9711e4dd --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp @@ -0,0 +1,385 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/SubtitleDisplayOptions.h" +#include "Runtime/SlateCore/Public/Fonts/SlateFontInfo.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplayOptions() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateFontInfo(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Enum ESubtitleDisplayTextSize +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextSize; +static UEnum* ESubtitleDisplayTextSize_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextSize")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextSize_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ESubtitleDisplayTextSize_MAX.Name", "ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX" }, + { "ExtraLarge.Name", "ESubtitleDisplayTextSize::ExtraLarge" }, + { "ExtraSmall.Name", "ESubtitleDisplayTextSize::ExtraSmall" }, + { "Large.Name", "ESubtitleDisplayTextSize::Large" }, + { "Medium.Name", "ESubtitleDisplayTextSize::Medium" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "Small.Name", "ESubtitleDisplayTextSize::Small" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextSize::ExtraSmall", (int64)ESubtitleDisplayTextSize::ExtraSmall }, + { "ESubtitleDisplayTextSize::Small", (int64)ESubtitleDisplayTextSize::Small }, + { "ESubtitleDisplayTextSize::Medium", (int64)ESubtitleDisplayTextSize::Medium }, + { "ESubtitleDisplayTextSize::Large", (int64)ESubtitleDisplayTextSize::Large }, + { "ESubtitleDisplayTextSize::ExtraLarge", (int64)ESubtitleDisplayTextSize::ExtraLarge }, + { "ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX", (int64)ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextSize", + "ESubtitleDisplayTextSize", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton; +} +// End Enum ESubtitleDisplayTextSize + +// Begin Enum ESubtitleDisplayTextColor +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextColor; +static UEnum* ESubtitleDisplayTextColor_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextColor")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextColor_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ESubtitleDisplayTextColor_MAX.Name", "ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "White.Name", "ESubtitleDisplayTextColor::White" }, + { "Yellow.Name", "ESubtitleDisplayTextColor::Yellow" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextColor::White", (int64)ESubtitleDisplayTextColor::White }, + { "ESubtitleDisplayTextColor::Yellow", (int64)ESubtitleDisplayTextColor::Yellow }, + { "ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX", (int64)ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextColor", + "ESubtitleDisplayTextColor", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton; +} +// End Enum ESubtitleDisplayTextColor + +// Begin Enum ESubtitleDisplayTextBorder +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder; +static UEnum* ESubtitleDisplayTextBorder_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextBorder")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextBorder_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "DropShadow.Name", "ESubtitleDisplayTextBorder::DropShadow" }, + { "ESubtitleDisplayTextBorder_MAX.Name", "ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "None.Name", "ESubtitleDisplayTextBorder::None" }, + { "Outline.Name", "ESubtitleDisplayTextBorder::Outline" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextBorder::None", (int64)ESubtitleDisplayTextBorder::None }, + { "ESubtitleDisplayTextBorder::Outline", (int64)ESubtitleDisplayTextBorder::Outline }, + { "ESubtitleDisplayTextBorder::DropShadow", (int64)ESubtitleDisplayTextBorder::DropShadow }, + { "ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX", (int64)ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextBorder", + "ESubtitleDisplayTextBorder", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton; +} +// End Enum ESubtitleDisplayTextBorder + +// Begin Enum ESubtitleDisplayBackgroundOpacity +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity; +static UEnum* ESubtitleDisplayBackgroundOpacity_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayBackgroundOpacity")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayBackgroundOpacity_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Clear.Name", "ESubtitleDisplayBackgroundOpacity::Clear" }, + { "ESubtitleDisplayBackgroundOpacity_MAX.Name", "ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX" }, + { "High.Name", "ESubtitleDisplayBackgroundOpacity::High" }, + { "Low.Name", "ESubtitleDisplayBackgroundOpacity::Low" }, + { "Medium.Name", "ESubtitleDisplayBackgroundOpacity::Medium" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "Solid.Name", "ESubtitleDisplayBackgroundOpacity::Solid" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayBackgroundOpacity::Clear", (int64)ESubtitleDisplayBackgroundOpacity::Clear }, + { "ESubtitleDisplayBackgroundOpacity::Low", (int64)ESubtitleDisplayBackgroundOpacity::Low }, + { "ESubtitleDisplayBackgroundOpacity::Medium", (int64)ESubtitleDisplayBackgroundOpacity::Medium }, + { "ESubtitleDisplayBackgroundOpacity::High", (int64)ESubtitleDisplayBackgroundOpacity::High }, + { "ESubtitleDisplayBackgroundOpacity::Solid", (int64)ESubtitleDisplayBackgroundOpacity::Solid }, + { "ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX", (int64)ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayBackgroundOpacity", + "ESubtitleDisplayBackgroundOpacity", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton; +} +// End Enum ESubtitleDisplayBackgroundOpacity + +// Begin Class USubtitleDisplayOptions +void USubtitleDisplayOptions::StaticRegisterNativesUSubtitleDisplayOptions() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplayOptions); +UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister() +{ + return USubtitleDisplayOptions::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplayOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "SubtitleDisplayOptions.h" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Font_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayTextSizes_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextSize" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayTextColors_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextColor" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayBorderSize_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextBorder" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayBackgroundOpacity_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayBackgroundOpacity" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackgroundBrush_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Font; + static const UECodeGen_Private::FIntPropertyParams NewProp_DisplayTextSizes; + static const UECodeGen_Private::FStructPropertyParams NewProp_DisplayTextColors; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayBorderSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayBackgroundOpacity; + static const UECodeGen_Private::FStructPropertyParams NewProp_BackgroundBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_Font = { "Font", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplayOptions, Font), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Font_MetaData), NewProp_Font_MetaData) }; // 1633227880 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextSizes = { "DisplayTextSizes", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayTextSizes, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayTextSizes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayTextSizes_MetaData), NewProp_DisplayTextSizes_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextColors = { "DisplayTextColors", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayTextColors, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayTextColors), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayTextColors_MetaData), NewProp_DisplayTextColors_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBorderSize = { "DisplayBorderSize", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayBorderSize, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayBorderSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayBorderSize_MetaData), NewProp_DisplayBorderSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBackgroundOpacity = { "DisplayBackgroundOpacity", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayBackgroundOpacity, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayBackgroundOpacity), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayBackgroundOpacity_MetaData), NewProp_DisplayBackgroundOpacity_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_BackgroundBrush = { "BackgroundBrush", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplayOptions, BackgroundBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackgroundBrush_MetaData), NewProp_BackgroundBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_Font, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextSizes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextColors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBorderSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBackgroundOpacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_BackgroundBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplayOptions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::ClassParams = { + &USubtitleDisplayOptions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplayOptions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplayOptions() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton, Z_Construct_UClass_USubtitleDisplayOptions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplayOptions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplayOptions); +USubtitleDisplayOptions::~USubtitleDisplayOptions() {} +// End Class USubtitleDisplayOptions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ESubtitleDisplayTextSize_StaticEnum, TEXT("ESubtitleDisplayTextSize"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextSize, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4054621106U) }, + { ESubtitleDisplayTextColor_StaticEnum, TEXT("ESubtitleDisplayTextColor"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextColor, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3844635282U) }, + { ESubtitleDisplayTextBorder_StaticEnum, TEXT("ESubtitleDisplayTextBorder"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4054656008U) }, + { ESubtitleDisplayBackgroundOpacity_StaticEnum, TEXT("ESubtitleDisplayBackgroundOpacity"), &Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 587908002U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplayOptions, USubtitleDisplayOptions::StaticClass, TEXT("USubtitleDisplayOptions"), &Z_Registration_Info_UClass_USubtitleDisplayOptions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplayOptions), 3252647751U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_1908034870(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h new file mode 100644 index 00000000..1787e4fd --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "SubtitleDisplayOptions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplayOptions_generated_h +#error "SubtitleDisplayOptions.generated.h already included, missing '#pragma once' in SubtitleDisplayOptions.h" +#endif +#define GAMESUBTITLES_SubtitleDisplayOptions_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplayOptions(); \ + friend struct Z_Construct_UClass_USubtitleDisplayOptions_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplayOptions, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplayOptions) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplayOptions(USubtitleDisplayOptions&&); \ + USubtitleDisplayOptions(const USubtitleDisplayOptions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplayOptions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplayOptions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(USubtitleDisplayOptions) \ + NO_API virtual ~USubtitleDisplayOptions(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_55_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h + + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTSIZE(op) \ + op(ESubtitleDisplayTextSize::ExtraSmall) \ + op(ESubtitleDisplayTextSize::Small) \ + op(ESubtitleDisplayTextSize::Medium) \ + op(ESubtitleDisplayTextSize::Large) \ + op(ESubtitleDisplayTextSize::ExtraLarge) + +enum class ESubtitleDisplayTextSize : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTCOLOR(op) \ + op(ESubtitleDisplayTextColor::White) \ + op(ESubtitleDisplayTextColor::Yellow) + +enum class ESubtitleDisplayTextColor : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTBORDER(op) \ + op(ESubtitleDisplayTextBorder::None) \ + op(ESubtitleDisplayTextBorder::Outline) \ + op(ESubtitleDisplayTextBorder::DropShadow) + +enum class ESubtitleDisplayTextBorder : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYBACKGROUNDOPACITY(op) \ + op(ESubtitleDisplayBackgroundOpacity::Clear) \ + op(ESubtitleDisplayBackgroundOpacity::Low) \ + op(ESubtitleDisplayBackgroundOpacity::Medium) \ + op(ESubtitleDisplayBackgroundOpacity::High) \ + op(ESubtitleDisplayBackgroundOpacity::Solid) + +enum class ESubtitleDisplayBackgroundOpacity : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp new file mode 100644 index 00000000..af245459 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp @@ -0,0 +1,205 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/SubtitleDisplaySubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplaySubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplaySubsystem(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplaySubsystem_NoRegister(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +GAMESUBTITLES_API UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin ScriptStruct FSubtitleFormat +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_SubtitleFormat; +class UScriptStruct* FSubtitleFormat::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSubtitleFormat, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("SubtitleFormat")); + } + return Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton; +} +template<> GAMESUBTITLES_API UScriptStruct* StaticStruct() +{ + return FSubtitleFormat::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FSubtitleFormat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextSize_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextColor_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextBorder_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleBackgroundOpacity_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextSize_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextSize; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextColor_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextColor; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextBorder_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextBorder; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleBackgroundOpacity_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleBackgroundOpacity; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize = { "SubtitleTextSize", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextSize), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextSize_MetaData), NewProp_SubtitleTextSize_MetaData) }; // 4054621106 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor = { "SubtitleTextColor", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextColor), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextColor_MetaData), NewProp_SubtitleTextColor_MetaData) }; // 3844635282 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder = { "SubtitleTextBorder", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextBorder), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextBorder_MetaData), NewProp_SubtitleTextBorder_MetaData) }; // 4054656008 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity = { "SubtitleBackgroundOpacity", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleBackgroundOpacity), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleBackgroundOpacity_MetaData), NewProp_SubtitleBackgroundOpacity_MetaData) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + &NewStructOps, + "SubtitleFormat", + Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers), + sizeof(FSubtitleFormat), + alignof(FSubtitleFormat), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSubtitleFormat_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat() +{ + if (!Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton, Z_Construct_UScriptStruct_FSubtitleFormat_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton; +} +// End ScriptStruct FSubtitleFormat + +// Begin Class USubtitleDisplaySubsystem +void USubtitleDisplaySubsystem::StaticRegisterNativesUSubtitleDisplaySubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplaySubsystem); +UClass* Z_Construct_UClass_USubtitleDisplaySubsystem_NoRegister() +{ + return USubtitleDisplaySubsystem::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplaySubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisplayName", "Subtitle Display" }, + { "IncludePath", "SubtitleDisplaySubsystem.h" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleFormat_MetaData[] = { + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SubtitleFormat; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::NewProp_SubtitleFormat = { "SubtitleFormat", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplaySubsystem, SubtitleFormat), Z_Construct_UScriptStruct_FSubtitleFormat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleFormat_MetaData), NewProp_SubtitleFormat_MetaData) }; // 898911869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::NewProp_SubtitleFormat, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::ClassParams = { + &USubtitleDisplaySubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplaySubsystem() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton, Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplaySubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplaySubsystem); +USubtitleDisplaySubsystem::~USubtitleDisplaySubsystem() {} +// End Class USubtitleDisplaySubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FSubtitleFormat::StaticStruct, Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewStructOps, TEXT("SubtitleFormat"), &Z_Registration_Info_UScriptStruct_SubtitleFormat, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSubtitleFormat), 898911869U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplaySubsystem, USubtitleDisplaySubsystem::StaticClass, TEXT("USubtitleDisplaySubsystem"), &Z_Registration_Info_UClass_USubtitleDisplaySubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplaySubsystem), 2239785932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_3654209853(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h new file mode 100644 index 00000000..a5087931 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "SubtitleDisplaySubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplaySubsystem_generated_h +#error "SubtitleDisplaySubsystem.generated.h already included, missing '#pragma once' in SubtitleDisplaySubsystem.h" +#endif +#define GAMESUBTITLES_SubtitleDisplaySubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FSubtitleFormat_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMESUBTITLES_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplaySubsystem(); \ + friend struct Z_Construct_UClass_USubtitleDisplaySubsystem_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplaySubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplaySubsystem) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplaySubsystem(USubtitleDisplaySubsystem&&); \ + USubtitleDisplaySubsystem(const USubtitleDisplaySubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplaySubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplaySubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(USubtitleDisplaySubsystem) \ + NO_API virtual ~USubtitleDisplaySubsystem(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_42_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/Timestamp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/Timestamp new file mode 100644 index 00000000..dddcbf0b --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\SubtitleDisplayOptions.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\SubtitleDisplaySubsystem.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\Players\MediaSubtitlesPlayer.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\Widgets\SubtitleDisplay.h diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp new file mode 100644 index 00000000..6ef2703f --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameSubtitles_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameSubtitles; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameSubtitles() + { + if (!Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameSubtitles", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xE6FA39F1, + 0x36BC3A95, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameSubtitles.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameSubtitles(Z_Construct_UPackage__Script_GameSubtitles, TEXT("/Script/GameSubtitles"), Z_Registration_Info_UPackage__Script_GameSubtitles, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xE6FA39F1, 0x36BC3A95)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitlesClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp new file mode 100644 index 00000000..ea727ed9 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.gen.cpp @@ -0,0 +1,301 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Players/MediaSubtitlesPlayer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeMediaSubtitlesPlayer() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_UMediaSubtitlesPlayer(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_UMediaSubtitlesPlayer_NoRegister(); +MEDIAASSETS_API UClass* Z_Construct_UClass_UMediaPlayer_NoRegister(); +OVERLAY_API UClass* Z_Construct_UClass_UOverlays_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Class UMediaSubtitlesPlayer Function BindToMediaPlayer +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics +{ + struct MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms + { + UMediaPlayer* InMediaPlayer; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Binds the subtitle playback to the tick of a media player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Binds the subtitle playback to the tick of a media player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InMediaPlayer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::NewProp_InMediaPlayer = { "InMediaPlayer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms, InMediaPlayer), Z_Construct_UClass_UMediaPlayer_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::NewProp_InMediaPlayer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "BindToMediaPlayer", nullptr, nullptr, Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::MediaSubtitlesPlayer_eventBindToMediaPlayer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execBindToMediaPlayer) +{ + P_GET_OBJECT(UMediaPlayer,Z_Param_InMediaPlayer); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->BindToMediaPlayer(Z_Param_InMediaPlayer); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function BindToMediaPlayer + +// Begin Class UMediaSubtitlesPlayer Function Play +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Begins playing the currently set subtitles. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Begins playing the currently set subtitles." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "Play", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_Play() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_Play_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execPlay) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Play(); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function Play + +// Begin Class UMediaSubtitlesPlayer Function SetSubtitles +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics +{ + struct MediaSubtitlesPlayer_eventSetSubtitles_Parms + { + UOverlays* Subtitles; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Sets the source with the new subtitles set. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Sets the source with the new subtitles set." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Subtitles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::NewProp_Subtitles = { "Subtitles", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(MediaSubtitlesPlayer_eventSetSubtitles_Parms, Subtitles), Z_Construct_UClass_UOverlays_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::NewProp_Subtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "SetSubtitles", nullptr, nullptr, Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::PropPointers), sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::MediaSubtitlesPlayer_eventSetSubtitles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::MediaSubtitlesPlayer_eventSetSubtitles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execSetSubtitles) +{ + P_GET_OBJECT(UOverlays,Z_Param_Subtitles); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetSubtitles(Z_Param_Subtitles); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function SetSubtitles + +// Begin Class UMediaSubtitlesPlayer Function Stop +struct Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Game Subtitles|Subtitles Player" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Stops the subtitle player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Stops the subtitle player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UMediaSubtitlesPlayer, nullptr, "Stop", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::Function_MetaDataParams), Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UMediaSubtitlesPlayer::execStop) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->Stop(); + P_NATIVE_END; +} +// End Class UMediaSubtitlesPlayer Function Stop + +// Begin Class UMediaSubtitlesPlayer +void UMediaSubtitlesPlayer::StaticRegisterNativesUMediaSubtitlesPlayer() +{ + UClass* Class = UMediaSubtitlesPlayer::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "BindToMediaPlayer", &UMediaSubtitlesPlayer::execBindToMediaPlayer }, + { "Play", &UMediaSubtitlesPlayer::execPlay }, + { "SetSubtitles", &UMediaSubtitlesPlayer::execSetSubtitles }, + { "Stop", &UMediaSubtitlesPlayer::execStop }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UMediaSubtitlesPlayer); +UClass* Z_Construct_UClass_UMediaSubtitlesPlayer_NoRegister() +{ + return UMediaSubtitlesPlayer::StaticClass(); +} +struct Z_Construct_UClass_UMediaSubtitlesPlayer_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A Game-specific player for media subtitles. This needs to exist next to Media Players\n * and have its Play() / Pause() / Stop() methods called at the same time as the media players'\n * methods.\n */" }, +#endif + { "IncludePath", "Players/MediaSubtitlesPlayer.h" }, + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A Game-specific player for media subtitles. This needs to exist next to Media Players\nand have its Play() / Pause() / Stop() methods called at the same time as the media players'\nmethods." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SourceSubtitles_MetaData[] = { + { "Category", "Subtitles Source" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The subtitles to use for this player. */" }, +#endif + { "ModuleRelativePath", "Public/Players/MediaSubtitlesPlayer.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The subtitles to use for this player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_SourceSubtitles; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_BindToMediaPlayer, "BindToMediaPlayer" }, // 2921213486 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_Play, "Play" }, // 2460212252 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_SetSubtitles, "SetSubtitles" }, // 3950086787 + { &Z_Construct_UFunction_UMediaSubtitlesPlayer_Stop, "Stop" }, // 2591699617 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::NewProp_SourceSubtitles = { "SourceSubtitles", nullptr, (EPropertyFlags)0x0114000000000005, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UMediaSubtitlesPlayer, SourceSubtitles), Z_Construct_UClass_UOverlays_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SourceSubtitles_MetaData), NewProp_SourceSubtitles_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::NewProp_SourceSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::ClassParams = { + &UMediaSubtitlesPlayer::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::Class_MetaDataParams), Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UMediaSubtitlesPlayer() +{ + if (!Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton, Z_Construct_UClass_UMediaSubtitlesPlayer_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UMediaSubtitlesPlayer.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return UMediaSubtitlesPlayer::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UMediaSubtitlesPlayer); +UMediaSubtitlesPlayer::~UMediaSubtitlesPlayer() {} +// End Class UMediaSubtitlesPlayer + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UMediaSubtitlesPlayer, UMediaSubtitlesPlayer::StaticClass, TEXT("UMediaSubtitlesPlayer"), &Z_Registration_Info_UClass_UMediaSubtitlesPlayer, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UMediaSubtitlesPlayer), 182314167U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_1470369624(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h new file mode 100644 index 00000000..d58c6300 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/MediaSubtitlesPlayer.generated.h @@ -0,0 +1,66 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Players/MediaSubtitlesPlayer.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UMediaPlayer; +class UOverlays; +#ifdef GAMESUBTITLES_MediaSubtitlesPlayer_generated_h +#error "MediaSubtitlesPlayer.generated.h already included, missing '#pragma once' in MediaSubtitlesPlayer.h" +#endif +#define GAMESUBTITLES_MediaSubtitlesPlayer_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_RPC_WRAPPERS \ + DECLARE_FUNCTION(execBindToMediaPlayer); \ + DECLARE_FUNCTION(execSetSubtitles); \ + DECLARE_FUNCTION(execStop); \ + DECLARE_FUNCTION(execPlay); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_INCLASS \ +private: \ + static void StaticRegisterNativesUMediaSubtitlesPlayer(); \ + friend struct Z_Construct_UClass_UMediaSubtitlesPlayer_Statics; \ +public: \ + DECLARE_CLASS(UMediaSubtitlesPlayer, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(UMediaSubtitlesPlayer) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UMediaSubtitlesPlayer(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UMediaSubtitlesPlayer) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UMediaSubtitlesPlayer); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UMediaSubtitlesPlayer); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UMediaSubtitlesPlayer(UMediaSubtitlesPlayer&&); \ + UMediaSubtitlesPlayer(const UMediaSubtitlesPlayer&); \ +public: \ + NO_API virtual ~UMediaSubtitlesPlayer(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_20_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h_25_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Players_MediaSubtitlesPlayer_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp new file mode 100644 index 00000000..14021e3b --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.gen.cpp @@ -0,0 +1,233 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/SubtitleDisplay.h" +#include "Public/SubtitleDisplaySubsystem.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +#include "Runtime/SlateCore/Public/Styling/SlateTypes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplay() {} + +// Begin Cross Module References +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplay(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplay_NoRegister(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister(); +GAMESUBTITLES_API UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FTextBlockStyle(); +UMG_API UClass* Z_Construct_UClass_UWidget(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Class USubtitleDisplay Function HasSubtitles +struct Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics +{ + struct SubtitleDisplay_eventHasSubtitles_Parms + { + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Subtitles" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "Tooltip", "True if there are subtitles currently. False if the subtitle text is empty." }, +#endif + }; +#endif // WITH_METADATA + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +void Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((SubtitleDisplay_eventHasSubtitles_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(SubtitleDisplay_eventHasSubtitles_Parms), &Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_USubtitleDisplay, nullptr, "HasSubtitles", nullptr, nullptr, Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::PropPointers), sizeof(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::SubtitleDisplay_eventHasSubtitles_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::Function_MetaDataParams), Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::SubtitleDisplay_eventHasSubtitles_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_USubtitleDisplay_HasSubtitles() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_USubtitleDisplay_HasSubtitles_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(USubtitleDisplay::execHasSubtitles) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=P_THIS->HasSubtitles(); + P_NATIVE_END; +} +// End Class USubtitleDisplay Function HasSubtitles + +// Begin Class USubtitleDisplay +void USubtitleDisplay::StaticRegisterNativesUSubtitleDisplay() +{ + UClass* Class = USubtitleDisplay::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HasSubtitles", &USubtitleDisplay::execHasSubtitles }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplay); +UClass* Z_Construct_UClass_USubtitleDisplay_NoRegister() +{ + return USubtitleDisplay::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplay_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "DisableNativeTick", "" }, + { "IncludePath", "Widgets/SubtitleDisplay.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Format_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Options_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_WrapTextAt_MetaData[] = { + { "Category", "Display Info" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Whether text wraps onto a new line when it's length exceeds this width; if this value is zero or negative, no wrapping occurs.\n" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Whether text wraps onto a new line when it's length exceeds this width; if this value is zero or negative, no wrapping occurs." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bPreviewMode_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Preview text to be displayed when designing the widget */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview text to be displayed when designing the widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PreviewText_MetaData[] = { + { "Category", "Preview" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Preview text to be displayed when designing the widget */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Preview text to be displayed when designing the widget" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GeneratedStyle_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GeneratedBackgroundBorder_MetaData[] = { + { "ModuleRelativePath", "Public/Widgets/SubtitleDisplay.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Format; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Options; + static const UECodeGen_Private::FFloatPropertyParams NewProp_WrapTextAt; + static void NewProp_bPreviewMode_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_bPreviewMode; + static const UECodeGen_Private::FTextPropertyParams NewProp_PreviewText; + static const UECodeGen_Private::FStructPropertyParams NewProp_GeneratedStyle; + static const UECodeGen_Private::FStructPropertyParams NewProp_GeneratedBackgroundBorder; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_USubtitleDisplay_HasSubtitles, "HasSubtitles" }, // 1970154791 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Format = { "Format", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, Format), Z_Construct_UScriptStruct_FSubtitleFormat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Format_MetaData), NewProp_Format_MetaData) }; // 898911869 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Options = { "Options", nullptr, (EPropertyFlags)0x0114000000000001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, Options), Z_Construct_UClass_USubtitleDisplayOptions_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Options_MetaData), NewProp_Options_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_WrapTextAt = { "WrapTextAt", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, WrapTextAt), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_WrapTextAt_MetaData), NewProp_WrapTextAt_MetaData) }; +void Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode_SetBit(void* Obj) +{ + ((USubtitleDisplay*)Obj)->bPreviewMode = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode = { "bPreviewMode", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(USubtitleDisplay), &Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bPreviewMode_MetaData), NewProp_bPreviewMode_MetaData) }; +const UECodeGen_Private::FTextPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_PreviewText = { "PreviewText", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Text, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, PreviewText), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PreviewText_MetaData), NewProp_PreviewText_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedStyle = { "GeneratedStyle", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, GeneratedStyle), Z_Construct_UScriptStruct_FTextBlockStyle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GeneratedStyle_MetaData), NewProp_GeneratedStyle_MetaData) }; // 3854901059 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedBackgroundBorder = { "GeneratedBackgroundBorder", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplay, GeneratedBackgroundBorder), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GeneratedBackgroundBorder_MetaData), NewProp_GeneratedBackgroundBorder_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Format, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_Options, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_WrapTextAt, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_bPreviewMode, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_PreviewText, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedStyle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplay_Statics::NewProp_GeneratedBackgroundBorder, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplay_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWidget, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplay_Statics::ClassParams = { + &USubtitleDisplay::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplay_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplay_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplay() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton, Z_Construct_UClass_USubtitleDisplay_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplay.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplay::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplay); +USubtitleDisplay::~USubtitleDisplay() {} +// End Class USubtitleDisplay + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplay, USubtitleDisplay::StaticClass, TEXT("USubtitleDisplay"), &Z_Registration_Info_UClass_USubtitleDisplay, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplay), 3837067246U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_3251384037(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h new file mode 100644 index 00000000..e4b184b2 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplay.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/SubtitleDisplay.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplay_generated_h +#error "SubtitleDisplay.generated.h already included, missing '#pragma once' in SubtitleDisplay.h" +#endif +#define GAMESUBTITLES_SubtitleDisplay_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_RPC_WRAPPERS \ + DECLARE_FUNCTION(execHasSubtitles); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_INCLASS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplay(); \ + friend struct Z_Construct_UClass_USubtitleDisplay_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplay, UWidget, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplay) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_STANDARD_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API USubtitleDisplay(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(USubtitleDisplay) \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplay); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplay); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplay(USubtitleDisplay&&); \ + USubtitleDisplay(const USubtitleDisplay&); \ +public: \ + NO_API virtual ~USubtitleDisplay(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_GENERATED_BODY_LEGACY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_RPC_WRAPPERS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_INCLASS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h_18_STANDARD_CONSTRUCTORS \ +public: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_Widgets_SubtitleDisplay_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp new file mode 100644 index 00000000..9711e4dd --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp @@ -0,0 +1,385 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/SubtitleDisplayOptions.h" +#include "Runtime/SlateCore/Public/Fonts/SlateFontInfo.h" +#include "Runtime/SlateCore/Public/Styling/SlateBrush.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplayOptions() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FLinearColor(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateBrush(); +SLATECORE_API UScriptStruct* Z_Construct_UScriptStruct_FSlateFontInfo(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin Enum ESubtitleDisplayTextSize +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextSize; +static UEnum* ESubtitleDisplayTextSize_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextSize")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextSize_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ESubtitleDisplayTextSize_MAX.Name", "ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX" }, + { "ExtraLarge.Name", "ESubtitleDisplayTextSize::ExtraLarge" }, + { "ExtraSmall.Name", "ESubtitleDisplayTextSize::ExtraSmall" }, + { "Large.Name", "ESubtitleDisplayTextSize::Large" }, + { "Medium.Name", "ESubtitleDisplayTextSize::Medium" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "Small.Name", "ESubtitleDisplayTextSize::Small" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextSize::ExtraSmall", (int64)ESubtitleDisplayTextSize::ExtraSmall }, + { "ESubtitleDisplayTextSize::Small", (int64)ESubtitleDisplayTextSize::Small }, + { "ESubtitleDisplayTextSize::Medium", (int64)ESubtitleDisplayTextSize::Medium }, + { "ESubtitleDisplayTextSize::Large", (int64)ESubtitleDisplayTextSize::Large }, + { "ESubtitleDisplayTextSize::ExtraLarge", (int64)ESubtitleDisplayTextSize::ExtraLarge }, + { "ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX", (int64)ESubtitleDisplayTextSize::ESubtitleDisplayTextSize_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextSize", + "ESubtitleDisplayTextSize", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextSize.InnerSingleton; +} +// End Enum ESubtitleDisplayTextSize + +// Begin Enum ESubtitleDisplayTextColor +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextColor; +static UEnum* ESubtitleDisplayTextColor_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextColor")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextColor_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "ESubtitleDisplayTextColor_MAX.Name", "ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "White.Name", "ESubtitleDisplayTextColor::White" }, + { "Yellow.Name", "ESubtitleDisplayTextColor::Yellow" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextColor::White", (int64)ESubtitleDisplayTextColor::White }, + { "ESubtitleDisplayTextColor::Yellow", (int64)ESubtitleDisplayTextColor::Yellow }, + { "ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX", (int64)ESubtitleDisplayTextColor::ESubtitleDisplayTextColor_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextColor", + "ESubtitleDisplayTextColor", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextColor.InnerSingleton; +} +// End Enum ESubtitleDisplayTextColor + +// Begin Enum ESubtitleDisplayTextBorder +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder; +static UEnum* ESubtitleDisplayTextBorder_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayTextBorder")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayTextBorder_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "DropShadow.Name", "ESubtitleDisplayTextBorder::DropShadow" }, + { "ESubtitleDisplayTextBorder_MAX.Name", "ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "None.Name", "ESubtitleDisplayTextBorder::None" }, + { "Outline.Name", "ESubtitleDisplayTextBorder::Outline" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayTextBorder::None", (int64)ESubtitleDisplayTextBorder::None }, + { "ESubtitleDisplayTextBorder::Outline", (int64)ESubtitleDisplayTextBorder::Outline }, + { "ESubtitleDisplayTextBorder::DropShadow", (int64)ESubtitleDisplayTextBorder::DropShadow }, + { "ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX", (int64)ESubtitleDisplayTextBorder::ESubtitleDisplayTextBorder_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayTextBorder", + "ESubtitleDisplayTextBorder", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder.InnerSingleton; +} +// End Enum ESubtitleDisplayTextBorder + +// Begin Enum ESubtitleDisplayBackgroundOpacity +static FEnumRegistrationInfo Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity; +static UEnum* ESubtitleDisplayBackgroundOpacity_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton) + { + Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("ESubtitleDisplayBackgroundOpacity")); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.OuterSingleton; +} +template<> GAMESUBTITLES_API UEnum* StaticEnum() +{ + return ESubtitleDisplayBackgroundOpacity_StaticEnum(); +} +struct Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Clear.Name", "ESubtitleDisplayBackgroundOpacity::Clear" }, + { "ESubtitleDisplayBackgroundOpacity_MAX.Name", "ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX" }, + { "High.Name", "ESubtitleDisplayBackgroundOpacity::High" }, + { "Low.Name", "ESubtitleDisplayBackgroundOpacity::Low" }, + { "Medium.Name", "ESubtitleDisplayBackgroundOpacity::Medium" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + { "Solid.Name", "ESubtitleDisplayBackgroundOpacity::Solid" }, + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "ESubtitleDisplayBackgroundOpacity::Clear", (int64)ESubtitleDisplayBackgroundOpacity::Clear }, + { "ESubtitleDisplayBackgroundOpacity::Low", (int64)ESubtitleDisplayBackgroundOpacity::Low }, + { "ESubtitleDisplayBackgroundOpacity::Medium", (int64)ESubtitleDisplayBackgroundOpacity::Medium }, + { "ESubtitleDisplayBackgroundOpacity::High", (int64)ESubtitleDisplayBackgroundOpacity::High }, + { "ESubtitleDisplayBackgroundOpacity::Solid", (int64)ESubtitleDisplayBackgroundOpacity::Solid }, + { "ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX", (int64)ESubtitleDisplayBackgroundOpacity::ESubtitleDisplayBackgroundOpacity_MAX }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + "ESubtitleDisplayBackgroundOpacity", + "ESubtitleDisplayBackgroundOpacity", + Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity() +{ + if (!Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton, Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity.InnerSingleton; +} +// End Enum ESubtitleDisplayBackgroundOpacity + +// Begin Class USubtitleDisplayOptions +void USubtitleDisplayOptions::StaticRegisterNativesUSubtitleDisplayOptions() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplayOptions); +UClass* Z_Construct_UClass_USubtitleDisplayOptions_NoRegister() +{ + return USubtitleDisplayOptions::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplayOptions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "SubtitleDisplayOptions.h" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Font_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayTextSizes_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextSize" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayTextColors_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextColor" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayBorderSize_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayTextBorder" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DisplayBackgroundOpacity_MetaData[] = { + { "ArraySizeEnum", "/Script/GameSubtitles.ESubtitleDisplayBackgroundOpacity" }, + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_BackgroundBrush_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplayOptions.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Font; + static const UECodeGen_Private::FIntPropertyParams NewProp_DisplayTextSizes; + static const UECodeGen_Private::FStructPropertyParams NewProp_DisplayTextColors; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayBorderSize; + static const UECodeGen_Private::FFloatPropertyParams NewProp_DisplayBackgroundOpacity; + static const UECodeGen_Private::FStructPropertyParams NewProp_BackgroundBrush; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_Font = { "Font", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplayOptions, Font), Z_Construct_UScriptStruct_FSlateFontInfo, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Font_MetaData), NewProp_Font_MetaData) }; // 1633227880 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextSizes = { "DisplayTextSizes", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayTextSizes, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayTextSizes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayTextSizes_MetaData), NewProp_DisplayTextSizes_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextColors = { "DisplayTextColors", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayTextColors, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayTextColors), Z_Construct_UScriptStruct_FLinearColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayTextColors_MetaData), NewProp_DisplayTextColors_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBorderSize = { "DisplayBorderSize", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayBorderSize, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayBorderSize), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayBorderSize_MetaData), NewProp_DisplayBorderSize_MetaData) }; +const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBackgroundOpacity = { "DisplayBackgroundOpacity", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, CPP_ARRAY_DIM(DisplayBackgroundOpacity, USubtitleDisplayOptions), STRUCT_OFFSET(USubtitleDisplayOptions, DisplayBackgroundOpacity), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DisplayBackgroundOpacity_MetaData), NewProp_DisplayBackgroundOpacity_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_BackgroundBrush = { "BackgroundBrush", nullptr, (EPropertyFlags)0x0010000000010001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplayOptions, BackgroundBrush), Z_Construct_UScriptStruct_FSlateBrush, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_BackgroundBrush_MetaData), NewProp_BackgroundBrush_MetaData) }; // 4269649686 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_Font, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextSizes, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayTextColors, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBorderSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_DisplayBackgroundOpacity, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplayOptions_Statics::NewProp_BackgroundBrush, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplayOptions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplayOptions_Statics::ClassParams = { + &USubtitleDisplayOptions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplayOptions_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplayOptions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplayOptions() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton, Z_Construct_UClass_USubtitleDisplayOptions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplayOptions.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplayOptions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplayOptions); +USubtitleDisplayOptions::~USubtitleDisplayOptions() {} +// End Class USubtitleDisplayOptions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { ESubtitleDisplayTextSize_StaticEnum, TEXT("ESubtitleDisplayTextSize"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextSize, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4054621106U) }, + { ESubtitleDisplayTextColor_StaticEnum, TEXT("ESubtitleDisplayTextColor"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextColor, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3844635282U) }, + { ESubtitleDisplayTextBorder_StaticEnum, TEXT("ESubtitleDisplayTextBorder"), &Z_Registration_Info_UEnum_ESubtitleDisplayTextBorder, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 4054656008U) }, + { ESubtitleDisplayBackgroundOpacity_StaticEnum, TEXT("ESubtitleDisplayBackgroundOpacity"), &Z_Registration_Info_UEnum_ESubtitleDisplayBackgroundOpacity, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 587908002U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplayOptions, USubtitleDisplayOptions::StaticClass, TEXT("USubtitleDisplayOptions"), &Z_Registration_Info_UClass_USubtitleDisplayOptions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplayOptions), 3252647751U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_1908034870(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::ClassInfo), + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h new file mode 100644 index 00000000..1787e4fd --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.generated.h @@ -0,0 +1,93 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "SubtitleDisplayOptions.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplayOptions_generated_h +#error "SubtitleDisplayOptions.generated.h already included, missing '#pragma once' in SubtitleDisplayOptions.h" +#endif +#define GAMESUBTITLES_SubtitleDisplayOptions_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplayOptions(); \ + friend struct Z_Construct_UClass_USubtitleDisplayOptions_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplayOptions, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplayOptions) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplayOptions(USubtitleDisplayOptions&&); \ + USubtitleDisplayOptions(const USubtitleDisplayOptions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplayOptions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplayOptions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(USubtitleDisplayOptions) \ + NO_API virtual ~USubtitleDisplayOptions(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_55_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h_58_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplayOptions_h + + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTSIZE(op) \ + op(ESubtitleDisplayTextSize::ExtraSmall) \ + op(ESubtitleDisplayTextSize::Small) \ + op(ESubtitleDisplayTextSize::Medium) \ + op(ESubtitleDisplayTextSize::Large) \ + op(ESubtitleDisplayTextSize::ExtraLarge) + +enum class ESubtitleDisplayTextSize : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTCOLOR(op) \ + op(ESubtitleDisplayTextColor::White) \ + op(ESubtitleDisplayTextColor::Yellow) + +enum class ESubtitleDisplayTextColor : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYTEXTBORDER(op) \ + op(ESubtitleDisplayTextBorder::None) \ + op(ESubtitleDisplayTextBorder::Outline) \ + op(ESubtitleDisplayTextBorder::DropShadow) + +enum class ESubtitleDisplayTextBorder : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_ESUBTITLEDISPLAYBACKGROUNDOPACITY(op) \ + op(ESubtitleDisplayBackgroundOpacity::Clear) \ + op(ESubtitleDisplayBackgroundOpacity::Low) \ + op(ESubtitleDisplayBackgroundOpacity::Medium) \ + op(ESubtitleDisplayBackgroundOpacity::High) \ + op(ESubtitleDisplayBackgroundOpacity::Solid) + +enum class ESubtitleDisplayBackgroundOpacity : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMESUBTITLES_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp new file mode 100644 index 00000000..af245459 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.gen.cpp @@ -0,0 +1,205 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/SubtitleDisplaySubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeSubtitleDisplaySubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplaySubsystem(); +GAMESUBTITLES_API UClass* Z_Construct_UClass_USubtitleDisplaySubsystem_NoRegister(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor(); +GAMESUBTITLES_API UEnum* Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize(); +GAMESUBTITLES_API UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat(); +UPackage* Z_Construct_UPackage__Script_GameSubtitles(); +// End Cross Module References + +// Begin ScriptStruct FSubtitleFormat +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_SubtitleFormat; +class UScriptStruct* FSubtitleFormat::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FSubtitleFormat, (UObject*)Z_Construct_UPackage__Script_GameSubtitles(), TEXT("SubtitleFormat")); + } + return Z_Registration_Info_UScriptStruct_SubtitleFormat.OuterSingleton; +} +template<> GAMESUBTITLES_API UScriptStruct* StaticStruct() +{ + return FSubtitleFormat::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FSubtitleFormat_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextSize_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextColor_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleTextBorder_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleBackgroundOpacity_MetaData[] = { + { "Category", "Display Info" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextSize_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextSize; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextColor_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextColor; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleTextBorder_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleTextBorder; + static const UECodeGen_Private::FBytePropertyParams NewProp_SubtitleBackgroundOpacity_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_SubtitleBackgroundOpacity; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize = { "SubtitleTextSize", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextSize), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextSize, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextSize_MetaData), NewProp_SubtitleTextSize_MetaData) }; // 4054621106 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor = { "SubtitleTextColor", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextColor), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextColor, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextColor_MetaData), NewProp_SubtitleTextColor_MetaData) }; // 3844635282 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder = { "SubtitleTextBorder", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleTextBorder), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayTextBorder, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleTextBorder_MetaData), NewProp_SubtitleTextBorder_MetaData) }; // 4054656008 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity = { "SubtitleBackgroundOpacity", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FSubtitleFormat, SubtitleBackgroundOpacity), Z_Construct_UEnum_GameSubtitles_ESubtitleDisplayBackgroundOpacity, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleBackgroundOpacity_MetaData), NewProp_SubtitleBackgroundOpacity_MetaData) }; // 587908002 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextSize, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextColor, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleTextBorder, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewProp_SubtitleBackgroundOpacity, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FSubtitleFormat_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, + nullptr, + &NewStructOps, + "SubtitleFormat", + Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::PropPointers), + sizeof(FSubtitleFormat), + alignof(FSubtitleFormat), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FSubtitleFormat_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FSubtitleFormat_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FSubtitleFormat() +{ + if (!Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton, Z_Construct_UScriptStruct_FSubtitleFormat_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_SubtitleFormat.InnerSingleton; +} +// End ScriptStruct FSubtitleFormat + +// Begin Class USubtitleDisplaySubsystem +void USubtitleDisplaySubsystem::StaticRegisterNativesUSubtitleDisplaySubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(USubtitleDisplaySubsystem); +UClass* Z_Construct_UClass_USubtitleDisplaySubsystem_NoRegister() +{ + return USubtitleDisplaySubsystem::StaticClass(); +} +struct Z_Construct_UClass_USubtitleDisplaySubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "DisplayName", "Subtitle Display" }, + { "IncludePath", "SubtitleDisplaySubsystem.h" }, + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SubtitleFormat_MetaData[] = { + { "ModuleRelativePath", "Public/SubtitleDisplaySubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_SubtitleFormat; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::NewProp_SubtitleFormat = { "SubtitleFormat", nullptr, (EPropertyFlags)0x0040000000000000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(USubtitleDisplaySubsystem, SubtitleFormat), Z_Construct_UScriptStruct_FSubtitleFormat, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SubtitleFormat_MetaData), NewProp_SubtitleFormat_MetaData) }; // 898911869 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::NewProp_SubtitleFormat, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_GameSubtitles, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::ClassParams = { + &USubtitleDisplaySubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_USubtitleDisplaySubsystem() +{ + if (!Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton, Z_Construct_UClass_USubtitleDisplaySubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_USubtitleDisplaySubsystem.OuterSingleton; +} +template<> GAMESUBTITLES_API UClass* StaticClass() +{ + return USubtitleDisplaySubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(USubtitleDisplaySubsystem); +USubtitleDisplaySubsystem::~USubtitleDisplaySubsystem() {} +// End Class USubtitleDisplaySubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FSubtitleFormat::StaticStruct, Z_Construct_UScriptStruct_FSubtitleFormat_Statics::NewStructOps, TEXT("SubtitleFormat"), &Z_Registration_Info_UScriptStruct_SubtitleFormat, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FSubtitleFormat), 898911869U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_USubtitleDisplaySubsystem, USubtitleDisplaySubsystem::StaticClass, TEXT("USubtitleDisplaySubsystem"), &Z_Registration_Info_UClass_USubtitleDisplaySubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(USubtitleDisplaySubsystem), 2239785932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_3654209853(TEXT("/Script/GameSubtitles"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h new file mode 100644 index 00000000..a5087931 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplaySubsystem.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "SubtitleDisplaySubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMESUBTITLES_SubtitleDisplaySubsystem_generated_h +#error "SubtitleDisplaySubsystem.generated.h already included, missing '#pragma once' in SubtitleDisplaySubsystem.h" +#endif +#define GAMESUBTITLES_SubtitleDisplaySubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_17_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FSubtitleFormat_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMESUBTITLES_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUSubtitleDisplaySubsystem(); \ + friend struct Z_Construct_UClass_USubtitleDisplaySubsystem_Statics; \ +public: \ + DECLARE_CLASS(USubtitleDisplaySubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameSubtitles"), NO_API) \ + DECLARE_SERIALIZER(USubtitleDisplaySubsystem) + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + USubtitleDisplaySubsystem(USubtitleDisplaySubsystem&&); \ + USubtitleDisplaySubsystem(const USubtitleDisplaySubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, USubtitleDisplaySubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(USubtitleDisplaySubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(USubtitleDisplaySubsystem) \ + NO_API virtual ~USubtitleDisplaySubsystem(); + + +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_42_PROLOG +#define FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h_45_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMESUBTITLES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameSubtitles_Source_Public_SubtitleDisplaySubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/Timestamp b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/Timestamp new file mode 100644 index 00000000..dddcbf0b --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/Timestamp @@ -0,0 +1,4 @@ +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\SubtitleDisplayOptions.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\SubtitleDisplaySubsystem.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\Players\MediaSubtitlesPlayer.h +E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public\Widgets\SubtitleDisplay.h diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Default.rc2.res.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Default.rc2.res.rsp new file mode 100644 index 00000000..cb81fe10 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-GameSubtitles.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Definitions.GameSubtitles.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Definitions.GameSubtitles.h new file mode 100644 index 00000000..3c2cb246 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Definitions.GameSubtitles.h @@ -0,0 +1,24 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameSubtitles +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef GAMESUBTITLES_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "GameSubtitles" +#define UE_PLUGIN_NAME "GameSubtitles" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMESUBTITLES_API DLLEXPORT +#define OVERLAY_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/GameSubtitles.Shared.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/GameSubtitles.Shared.rsp new file mode 100644 index 00000000..91c35b00 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/GameSubtitles.Shared.rsp @@ -0,0 +1,309 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealEditor\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/LiveCodingInfo.json b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/LiveCodingInfo.json new file mode 100644 index 00000000..a9a4ba01 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/LiveCodingInfo.json @@ -0,0 +1,15 @@ +{ + "RemapUnityFiles": + { + "Module.GameSubtitles.cpp.obj": [ + "GameSubtitles.init.gen.cpp.obj", + "SubtitleDisplayOptions.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "GameSubtitlesModule.cpp.obj", + "MediaSubtitlesPlayer.cpp.obj", + "SubtitleDisplaySubsystem.cpp.obj", + "SSubtitleDisplay.cpp.obj", + "SubtitleDisplay.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp new file mode 100644 index 00000000..c408e018 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp @@ -0,0 +1,9 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealEditor/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/GameSubtitlesModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Players/MediaSubtitlesPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/SubtitleDisplaySubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Widgets/SSubtitleDisplay.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Widgets/SubtitleDisplay.cpp" diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp new file mode 100644 index 00000000..c5a2b284 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Definitions.GameSubtitles.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\GameSubtitles.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/PerModuleInline.gen.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.dll.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.dll.rsp new file mode 100644 index 00000000..9f97ce37 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.dll.rsp @@ -0,0 +1,79 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Overlay\UnrealEditor-Overlay.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\MediaAssets\UnrealEditor-MediaAssets.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\MediaUtils\UnrealEditor-MediaUtils.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor-GameSubtitles.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameSubtitles\Binaries\Win64\UnrealEditor-GameSubtitles.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.lib.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.lib.rsp new file mode 100644 index 00000000..b521e9b6 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameSubtitles/UnrealEditor-GameSubtitles.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-GameSubtitles.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Module.GameSubtitles.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameSubtitles\UnrealEditor-GameSubtitles.lib" \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Definitions.GameSubtitles.h b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Definitions.GameSubtitles.h new file mode 100644 index 00000000..f53ad8f6 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Definitions.GameSubtitles.h @@ -0,0 +1,40 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameSubtitles +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef GAMESUBTITLES_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "GameSubtitles" +#define UE_PLUGIN_NAME "GameSubtitles" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMESUBTITLES_API +#define OVERLAY_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/GameSubtitles.Shared.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/GameSubtitles.Shared.rsp new file mode 100644 index 00000000..bbc80747 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/GameSubtitles.Shared.rsp @@ -0,0 +1,155 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\UnrealGame\Inc\GameSubtitles\UHT" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source" +/I "E:\Projects\cross_platform\Plugins\GameSubtitles\Source\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Overlay\UHT" +/I "Runtime\Overlay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp new file mode 100644 index 00000000..a3dd7868 --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp @@ -0,0 +1,8 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/GameSubtitles.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Intermediate/Build/Win64/UnrealGame/Inc/GameSubtitles/UHT/SubtitleDisplayOptions.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/GameSubtitlesModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Players/MediaSubtitlesPlayer.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/SubtitleDisplaySubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Widgets/SSubtitleDisplay.cpp" +#include "E:/Projects/cross_platform/Plugins/GameSubtitles/Source/Private/Widgets/SubtitleDisplay.cpp" diff --git a/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp new file mode 100644 index 00000000..4577463a --- /dev/null +++ b/Plugins/GameSubtitles/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameSubtitles/Module.GameSubtitles.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\Module.GameSubtitles.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\Definitions.GameSubtitles.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\Module.GameSubtitles.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\Module.GameSubtitles.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\Module.GameSubtitles.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameSubtitles\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameSubtitles\GameSubtitles.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodes.init.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodes.init.gen.cpp new file mode 100644 index 00000000..8f053823 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodes.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageNodes_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameplayMessageNodes; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameplayMessageNodes() + { + if (!Z_Registration_Info_UPackage__Script_GameplayMessageNodes.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameplayMessageNodes", + nullptr, + 0, + PKG_CompiledIn | 0x00000100, + 0x82A7C685, + 0xA5AABE37, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameplayMessageNodes.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameplayMessageNodes.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameplayMessageNodes(Z_Construct_UPackage__Script_GameplayMessageNodes, TEXT("/Script/GameplayMessageNodes"), Z_Registration_Info_UPackage__Script_GameplayMessageNodes, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x82A7C685, 0xA5AABE37)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodesClasses.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodesClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodesClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.gen.cpp new file mode 100644 index 00000000..00022850 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.gen.cpp @@ -0,0 +1,97 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageNodes/Public/K2Node_AsyncAction_ListenForGameplayMessages.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeK2Node_AsyncAction_ListenForGameplayMessages() {} + +// Begin Cross Module References +BLUEPRINTGRAPH_API UClass* Z_Construct_UClass_UK2Node_AsyncAction(); +GAMEPLAYMESSAGENODES_API UClass* Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages(); +GAMEPLAYMESSAGENODES_API UClass* Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_NoRegister(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageNodes(); +// End Cross Module References + +// Begin Class UK2Node_AsyncAction_ListenForGameplayMessages +void UK2Node_AsyncAction_ListenForGameplayMessages::StaticRegisterNativesUK2Node_AsyncAction_ListenForGameplayMessages() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UK2Node_AsyncAction_ListenForGameplayMessages); +UClass* Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_NoRegister() +{ + return UK2Node_AsyncAction_ListenForGameplayMessages::StaticClass(); +} +struct Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Blueprint node which is spawned to handle the async logic for UAsyncAction_RegisterGameplayMessageReceiver\n */" }, +#endif + { "IncludePath", "K2Node_AsyncAction_ListenForGameplayMessages.h" }, + { "ModuleRelativePath", "Public/K2Node_AsyncAction_ListenForGameplayMessages.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Blueprint node which is spawned to handle the async logic for UAsyncAction_RegisterGameplayMessageReceiver" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UK2Node_AsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageNodes, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::ClassParams = { + &UK2Node_AsyncAction_ListenForGameplayMessages::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::Class_MetaDataParams), Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages() +{ + if (!Z_Registration_Info_UClass_UK2Node_AsyncAction_ListenForGameplayMessages.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UK2Node_AsyncAction_ListenForGameplayMessages.OuterSingleton, Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UK2Node_AsyncAction_ListenForGameplayMessages.OuterSingleton; +} +template<> GAMEPLAYMESSAGENODES_API UClass* StaticClass() +{ + return UK2Node_AsyncAction_ListenForGameplayMessages::StaticClass(); +} +UK2Node_AsyncAction_ListenForGameplayMessages::UK2Node_AsyncAction_ListenForGameplayMessages(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UK2Node_AsyncAction_ListenForGameplayMessages); +UK2Node_AsyncAction_ListenForGameplayMessages::~UK2Node_AsyncAction_ListenForGameplayMessages() {} +// End Class UK2Node_AsyncAction_ListenForGameplayMessages + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages, UK2Node_AsyncAction_ListenForGameplayMessages::StaticClass, TEXT("UK2Node_AsyncAction_ListenForGameplayMessages"), &Z_Registration_Info_UClass_UK2Node_AsyncAction_ListenForGameplayMessages, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UK2Node_AsyncAction_ListenForGameplayMessages), 193482932U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_3848873811(TEXT("/Script/GameplayMessageNodes"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.generated.h new file mode 100644 index 00000000..13bf74f9 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/K2Node_AsyncAction_ListenForGameplayMessages.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "K2Node_AsyncAction_ListenForGameplayMessages.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMEPLAYMESSAGENODES_K2Node_AsyncAction_ListenForGameplayMessages_generated_h +#error "K2Node_AsyncAction_ListenForGameplayMessages.generated.h already included, missing '#pragma once' in K2Node_AsyncAction_ListenForGameplayMessages.h" +#endif +#define GAMEPLAYMESSAGENODES_K2Node_AsyncAction_ListenForGameplayMessages_generated_h + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_24_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUK2Node_AsyncAction_ListenForGameplayMessages(); \ + friend struct Z_Construct_UClass_UK2Node_AsyncAction_ListenForGameplayMessages_Statics; \ +public: \ + DECLARE_CLASS(UK2Node_AsyncAction_ListenForGameplayMessages, UK2Node_AsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameplayMessageNodes"), NO_API) \ + DECLARE_SERIALIZER(UK2Node_AsyncAction_ListenForGameplayMessages) + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_24_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UK2Node_AsyncAction_ListenForGameplayMessages(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UK2Node_AsyncAction_ListenForGameplayMessages(UK2Node_AsyncAction_ListenForGameplayMessages&&); \ + UK2Node_AsyncAction_ListenForGameplayMessages(const UK2Node_AsyncAction_ListenForGameplayMessages&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UK2Node_AsyncAction_ListenForGameplayMessages); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UK2Node_AsyncAction_ListenForGameplayMessages); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UK2Node_AsyncAction_ListenForGameplayMessages) \ + NO_API virtual ~UK2Node_AsyncAction_ListenForGameplayMessages(); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_21_PROLOG +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_24_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_24_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h_24_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMEPLAYMESSAGENODES_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageNodes_Public_K2Node_AsyncAction_ListenForGameplayMessages_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/Timestamp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/Timestamp new file mode 100644 index 00000000..3381cc59 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/Timestamp @@ -0,0 +1 @@ +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageNodes\Public\K2Node_AsyncAction_ListenForGameplayMessages.h diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp new file mode 100644 index 00000000..b4c9fbef --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp @@ -0,0 +1,308 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ListenForGameplayMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UScriptStruct(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister(); +GAMEPLAYMESSAGERUNTIME_API UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch(); +GAMEPLAYMESSAGERUNTIME_API UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin Delegate FAsyncGameplayMessageDelegate +struct Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics +{ + struct _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms + { + UAsyncAction_ListenForGameplayMessage* ProxyObject; + FGameplayTag ActualChannel; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Proxy object pin will be hidden in K2Node_GameplayMessageAsyncAction. Is used to get a reference to the object triggering the delegate for the follow up call of 'GetPayload'.\n *\n * @param ActualChannel\x09\x09The actual message channel that we received Payload from (will always start with Channel, but may be more specific if partial matches were enabled)\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Proxy object pin will be hidden in K2Node_GameplayMessageAsyncAction. Is used to get a reference to the object triggering the delegate for the follow up call of 'GetPayload'.\n\n@param ActualChannel The actual message channel that we received Payload from (will always start with Channel, but may be more specific if partial matches were enabled)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ProxyObject; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActualChannel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ProxyObject = { "ProxyObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms, ProxyObject), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ActualChannel = { "ActualChannel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms, ActualChannel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ProxyObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ActualChannel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, nullptr, "AsyncGameplayMessageDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FAsyncGameplayMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& AsyncGameplayMessageDelegate, UAsyncAction_ListenForGameplayMessage* ProxyObject, FGameplayTag ActualChannel) +{ + struct _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms + { + UAsyncAction_ListenForGameplayMessage* ProxyObject; + FGameplayTag ActualChannel; + }; + _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms Parms; + Parms.ProxyObject=ProxyObject; + Parms.ActualChannel=ActualChannel; + AsyncGameplayMessageDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FAsyncGameplayMessageDelegate + +// Begin Class UAsyncAction_ListenForGameplayMessage Function GetPayload +struct Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics +{ + struct AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms + { + int32 OutPayload; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Attempt to copy the payload received from the broadcasted gameplay message into the specified wildcard.\n\x09 * The wildcard's type must match the type from the received message.\n\x09 *\n\x09 * @param OutPayload\x09The wildcard reference the payload should be copied into\n\x09 * @return\x09\x09\x09\x09If the copy was a success\n\x09 */" }, +#endif + { "CustomStructureParam", "OutPayload" }, + { "CustomThunk", "true" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempt to copy the payload received from the broadcasted gameplay message into the specified wildcard.\nThe wildcard's type must match the type from the received message.\n\n@param OutPayload The wildcard reference the payload should be copied into\n@return If the copy was a success" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_OutPayload; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_OutPayload = { "OutPayload", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms, OutPayload), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms), &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_OutPayload, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, nullptr, "GetPayload", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UAsyncAction_ListenForGameplayMessage Function GetPayload + +// Begin Class UAsyncAction_ListenForGameplayMessage Function ListenForGameplayMessages +struct Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics +{ + struct AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms + { + UObject* WorldContextObject; + FGameplayTag Channel; + UScriptStruct* PayloadType; + EGameplayMessageMatch MatchType; + UAsyncAction_ListenForGameplayMessage* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Asynchronously waits for a gameplay message to be broadcast on the specified channel.\n\x09 *\n\x09 * @param Channel\x09\x09\x09The message channel to listen for\n\x09 * @param PayloadType\x09\x09The kind of message structure to use (this must match the same type that the sender is broadcasting)\n\x09 * @param MatchType\x09\x09\x09The rule used for matching the channel with broadcasted messages\n\x09 */" }, +#endif + { "CPP_Default_MatchType", "ExactMatch" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asynchronously waits for a gameplay message to be broadcast on the specified channel.\n\n@param Channel The message channel to listen for\n@param PayloadType The kind of message structure to use (this must match the same type that the sender is broadcasting)\n@param MatchType The rule used for matching the channel with broadcasted messages" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PayloadType; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_PayloadType = { "PayloadType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, PayloadType), Z_Construct_UClass_UScriptStruct, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, MatchType), Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch, METADATA_PARAMS(0, nullptr) }; // 1992465379 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_PayloadType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, nullptr, "ListenForGameplayMessages", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ListenForGameplayMessage::execListenForGameplayMessages) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_STRUCT(FGameplayTag,Z_Param_Channel); + P_GET_OBJECT(UScriptStruct,Z_Param_PayloadType); + P_GET_ENUM(EGameplayMessageMatch,Z_Param_MatchType); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ListenForGameplayMessage**)Z_Param__Result=UAsyncAction_ListenForGameplayMessage::ListenForGameplayMessages(Z_Param_WorldContextObject,Z_Param_Channel,Z_Param_PayloadType,EGameplayMessageMatch(Z_Param_MatchType)); + P_NATIVE_END; +} +// End Class UAsyncAction_ListenForGameplayMessage Function ListenForGameplayMessages + +// Begin Class UAsyncAction_ListenForGameplayMessage +void UAsyncAction_ListenForGameplayMessage::StaticRegisterNativesUAsyncAction_ListenForGameplayMessage() +{ + UClass* Class = UAsyncAction_ListenForGameplayMessage::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPayload", &UAsyncAction_ListenForGameplayMessage::execGetPayload }, + { "ListenForGameplayMessages", &UAsyncAction_ListenForGameplayMessage::execListenForGameplayMessages }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ListenForGameplayMessage); +UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister() +{ + return UAsyncAction_ListenForGameplayMessage::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HasDedicatedAsyncNode", "" }, + { "IncludePath", "GameFramework/AsyncAction_ListenForGameplayMessage.h" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnMessageReceived_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when a message is broadcast on the specified channel. Use GetPayload() to request the message payload. */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when a message is broadcast on the specified channel. Use GetPayload() to request the message payload." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnMessageReceived; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload, "GetPayload" }, // 3639819053 + { &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages, "ListenForGameplayMessages" }, // 4154493433 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::NewProp_OnMessageReceived = { "OnMessageReceived", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ListenForGameplayMessage, OnMessageReceived), Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnMessageReceived_MetaData), NewProp_OnMessageReceived_MetaData) }; // 3775955378 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::NewProp_OnMessageReceived, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::ClassParams = { + &UAsyncAction_ListenForGameplayMessage::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton, Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass() +{ + return UAsyncAction_ListenForGameplayMessage::StaticClass(); +} +UAsyncAction_ListenForGameplayMessage::UAsyncAction_ListenForGameplayMessage(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ListenForGameplayMessage); +UAsyncAction_ListenForGameplayMessage::~UAsyncAction_ListenForGameplayMessage() {} +// End Class UAsyncAction_ListenForGameplayMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, UAsyncAction_ListenForGameplayMessage::StaticClass, TEXT("UAsyncAction_ListenForGameplayMessage"), &Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ListenForGameplayMessage), 400500357U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_2542487587(TEXT("/Script/GameplayMessageRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h new file mode 100644 index 00000000..f6acbbcd --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/AsyncAction_ListenForGameplayMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ListenForGameplayMessage; +class UObject; +class UScriptStruct; +enum class EGameplayMessageMatch : uint8; +struct FGameplayTag; +#ifdef GAMEPLAYMESSAGERUNTIME_AsyncAction_ListenForGameplayMessage_generated_h +#error "AsyncAction_ListenForGameplayMessage.generated.h already included, missing '#pragma once' in AsyncAction_ListenForGameplayMessage.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_AsyncAction_ListenForGameplayMessage_generated_h + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_20_DELEGATE \ +GAMEPLAYMESSAGERUNTIME_API void FAsyncGameplayMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& AsyncGameplayMessageDelegate, UAsyncAction_ListenForGameplayMessage* ProxyObject, FGameplayTag ActualChannel); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execListenForGameplayMessages); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ListenForGameplayMessage(); \ + friend struct Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ListenForGameplayMessage, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameplayMessageRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ListenForGameplayMessage) + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ListenForGameplayMessage(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ListenForGameplayMessage(UAsyncAction_ListenForGameplayMessage&&); \ + UAsyncAction_ListenForGameplayMessage(const UAsyncAction_ListenForGameplayMessage&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ListenForGameplayMessage); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ListenForGameplayMessage); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ListenForGameplayMessage) \ + NO_API virtual ~UAsyncAction_ListenForGameplayMessage(); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp new file mode 100644 index 00000000..11811bf2 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp @@ -0,0 +1,33 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageRuntime_init() {} + GAMEPLAYMESSAGERUNTIME_API UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameplayMessageRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime() + { + if (!Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameplayMessageRuntime", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x631F2F6C, + 0x364B925A, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameplayMessageRuntime(Z_Construct_UPackage__Script_GameplayMessageRuntime, TEXT("/Script/GameplayMessageRuntime"), Z_Registration_Info_UPackage__Script_GameplayMessageRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x631F2F6C, 0x364B925A)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp new file mode 100644 index 00000000..7caa0c0d --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp @@ -0,0 +1,302 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/GameplayMessageSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageSubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UGameplayMessageSubsystem(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister(); +GAMEPLAYMESSAGERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerData(); +GAMEPLAYMESSAGERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin ScriptStruct FGameplayMessageListenerHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle; +class UScriptStruct* FGameplayMessageListenerHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("GameplayMessageListenerHandle")); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct() +{ + return FGameplayMessageListenerHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An opaque handle that can be used to remove a previously registered message listener\n * @see UGameplayMessageSubsystem::RegisterListener and UGameplayMessageSubsystem::UnregisterListener\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An opaque handle that can be used to remove a previously registered message listener\n@see UGameplayMessageSubsystem::RegisterListener and UGameplayMessageSubsystem::UnregisterListener" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Subsystem_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Channel_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ID_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_Subsystem; + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FIntPropertyParams NewProp_ID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Subsystem = { "Subsystem", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, Subsystem), Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Subsystem_MetaData), NewProp_Subsystem_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Channel_MetaData), NewProp_Channel_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_ID = { "ID", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, ID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ID_MetaData), NewProp_ID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Subsystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_ID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + &NewStructOps, + "GameplayMessageListenerHandle", + Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers), + sizeof(FGameplayMessageListenerHandle), + alignof(FGameplayMessageListenerHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerHandle() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton, Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton; +} +// End ScriptStruct FGameplayMessageListenerHandle + +// Begin ScriptStruct FGameplayMessageListenerData +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayMessageListenerData; +class UScriptStruct* FGameplayMessageListenerData::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayMessageListenerData, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("GameplayMessageListenerData")); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct() +{ + return FGameplayMessageListenerData::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Entry information for a single registered listener\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Entry information for a single registered listener" }, +#endif + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + &NewStructOps, + "GameplayMessageListenerData", + nullptr, + 0, + sizeof(FGameplayMessageListenerData), + alignof(FGameplayMessageListenerData), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerData() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton, Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton; +} +// End ScriptStruct FGameplayMessageListenerData + +// Begin Class UGameplayMessageSubsystem Function K2_BroadcastMessage +struct Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics +{ + struct GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms + { + FGameplayTag Channel; + int32 Message; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AllowAbstract", "false" }, + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Broadcast a message on the specified channel\n\x09 *\n\x09 * @param Channel\x09\x09\x09The message channel to broadcast on\n\x09 * @param Message\x09\x09\x09The message to send (must be the same type of UScriptStruct expected by the listeners for this channel, otherwise an error will be logged)\n\x09 */" }, +#endif + { "CustomStructureParam", "Message" }, + { "CustomThunk", "true" }, + { "DisplayName", "Broadcast Message" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Broadcast a message on the specified channel\n\n@param Channel The message channel to broadcast on\n@param Message The message to send (must be the same type of UScriptStruct expected by the listeners for this channel, otherwise an error will be logged)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FIntPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms, Message), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameplayMessageSubsystem, nullptr, "K2_BroadcastMessage", nullptr, nullptr, Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameplayMessageSubsystem Function K2_BroadcastMessage + +// Begin Class UGameplayMessageSubsystem +void UGameplayMessageSubsystem::StaticRegisterNativesUGameplayMessageSubsystem() +{ + UClass* Class = UGameplayMessageSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "K2_BroadcastMessage", &UGameplayMessageSubsystem::execK2_BroadcastMessage }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameplayMessageSubsystem); +UClass* Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister() +{ + return UGameplayMessageSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UGameplayMessageSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This system allows event raisers and listeners to register for messages without\n * having to know about each other directly, though they must agree on the format\n * of the message (as a USTRUCT() type).\n *\n *\n * You can get to the message router from the game instance:\n * UGameInstance::GetSubsystem(GameInstance)\n * or directly from anything that has a route to a world:\n * UGameplayMessageSubsystem::Get(WorldContextObject)\n *\n * Note that call order when there are multiple listeners for the same channel is\n * not guaranteed and can change over time!\n */" }, +#endif + { "IncludePath", "GameFramework/GameplayMessageSubsystem.h" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This system allows event raisers and listeners to register for messages without\nhaving to know about each other directly, though they must agree on the format\nof the message (as a USTRUCT() type).\n\n\nYou can get to the message router from the game instance:\n UGameInstance::GetSubsystem(GameInstance)\nor directly from anything that has a route to a world:\n UGameplayMessageSubsystem::Get(WorldContextObject)\n\nNote that call order when there are multiple listeners for the same channel is\nnot guaranteed and can change over time!" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage, "K2_BroadcastMessage" }, // 4235780623 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameplayMessageSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameplayMessageSubsystem_Statics::ClassParams = { + &UGameplayMessageSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameplayMessageSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameplayMessageSubsystem() +{ + if (!Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton, Z_Construct_UClass_UGameplayMessageSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass() +{ + return UGameplayMessageSubsystem::StaticClass(); +} +UGameplayMessageSubsystem::UGameplayMessageSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameplayMessageSubsystem); +UGameplayMessageSubsystem::~UGameplayMessageSubsystem() {} +// End Class UGameplayMessageSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameplayMessageListenerHandle::StaticStruct, Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewStructOps, TEXT("GameplayMessageListenerHandle"), &Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayMessageListenerHandle), 2295597265U) }, + { FGameplayMessageListenerData::StaticStruct, Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::NewStructOps, TEXT("GameplayMessageListenerData"), &Z_Registration_Info_UScriptStruct_GameplayMessageListenerData, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayMessageListenerData), 1223272090U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameplayMessageSubsystem, UGameplayMessageSubsystem::StaticClass, TEXT("UGameplayMessageSubsystem"), &Z_Registration_Info_UClass_UGameplayMessageSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameplayMessageSubsystem), 1007149444U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_1523141913(TEXT("/Script/GameplayMessageRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h new file mode 100644 index 00000000..86fcae92 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/GameplayMessageSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayTag; +#ifdef GAMEPLAYMESSAGERUNTIME_GameplayMessageSubsystem_generated_h +#error "GameplayMessageSubsystem.generated.h already included, missing '#pragma once' in GameplayMessageSubsystem.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_GameplayMessageSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_58_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics; \ + GAMEPLAYMESSAGERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameplayMessageSubsystem(); \ + friend struct Z_Construct_UClass_UGameplayMessageSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UGameplayMessageSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameplayMessageRuntime"), NO_API) \ + DECLARE_SERIALIZER(UGameplayMessageSubsystem) + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameplayMessageSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameplayMessageSubsystem(UGameplayMessageSubsystem&&); \ + UGameplayMessageSubsystem(const UGameplayMessageSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameplayMessageSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameplayMessageSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameplayMessageSubsystem) \ + NO_API virtual ~UGameplayMessageSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_85_PROLOG +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp new file mode 100644 index 00000000..87fa81f0 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/GameplayMessageTypes2.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageTypes2() {} + +// Begin Cross Module References +GAMEPLAYMESSAGERUNTIME_API UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin Enum EGameplayMessageMatch +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EGameplayMessageMatch; +static UEnum* EGameplayMessageMatch_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton) + { + Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("EGameplayMessageMatch")); + } + return Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UEnum* StaticEnum() +{ + return EGameplayMessageMatch_StaticEnum(); +} +struct Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for message listeners\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive messages with exactly the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EGameplayMessageMatch::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive messages with exactly the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageTypes2.h" }, + { "PartialMatch.Comment", "// A partial match will receive any messages rooted in the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EGameplayMessageMatch::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any messages rooted in the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for message listeners" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EGameplayMessageMatch::ExactMatch", (int64)EGameplayMessageMatch::ExactMatch }, + { "EGameplayMessageMatch::PartialMatch", (int64)EGameplayMessageMatch::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + "EGameplayMessageMatch", + "EGameplayMessageMatch", + Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch() +{ + if (!Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton, Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton; +} +// End Enum EGameplayMessageMatch + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EGameplayMessageMatch_StaticEnum, TEXT("EGameplayMessageMatch"), &Z_Registration_Info_UEnum_EGameplayMessageMatch, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1992465379U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_2137425532(TEXT("/Script/GameplayMessageRuntime"), + nullptr, 0, + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h new file mode 100644 index 00000000..2e85d9e7 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h @@ -0,0 +1,30 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/GameplayMessageTypes2.h" +#include "Templates/IsUEnumClass.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ReflectedTypeAccessors.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMEPLAYMESSAGERUNTIME_GameplayMessageTypes2_generated_h +#error "GameplayMessageTypes2.generated.h already included, missing '#pragma once' in GameplayMessageTypes2.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_GameplayMessageTypes2_generated_h + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h + + +#define FOREACH_ENUM_EGAMEPLAYMESSAGEMATCH(op) \ + op(EGameplayMessageMatch::ExactMatch) \ + op(EGameplayMessageMatch::PartialMatch) + +enum class EGameplayMessageMatch : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMEPLAYMESSAGERUNTIME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/Timestamp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/Timestamp new file mode 100644 index 00000000..0a03f481 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/Timestamp @@ -0,0 +1,3 @@ +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\AsyncAction_ListenForGameplayMessage.h +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\GameplayMessageSubsystem.h +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\GameplayMessageTypes2.h diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp new file mode 100644 index 00000000..b4c9fbef --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.gen.cpp @@ -0,0 +1,308 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeAsyncAction_ListenForGameplayMessage() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +COREUOBJECT_API UClass* Z_Construct_UClass_UScriptStruct(); +ENGINE_API UClass* Z_Construct_UClass_UCancellableAsyncAction(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister(); +GAMEPLAYMESSAGERUNTIME_API UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch(); +GAMEPLAYMESSAGERUNTIME_API UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin Delegate FAsyncGameplayMessageDelegate +struct Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics +{ + struct _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms + { + UAsyncAction_ListenForGameplayMessage* ProxyObject; + FGameplayTag ActualChannel; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * Proxy object pin will be hidden in K2Node_GameplayMessageAsyncAction. Is used to get a reference to the object triggering the delegate for the follow up call of 'GetPayload'.\n *\n * @param ActualChannel\x09\x09The actual message channel that we received Payload from (will always start with Channel, but may be more specific if partial matches were enabled)\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Proxy object pin will be hidden in K2Node_GameplayMessageAsyncAction. Is used to get a reference to the object triggering the delegate for the follow up call of 'GetPayload'.\n\n@param ActualChannel The actual message channel that we received Payload from (will always start with Channel, but may be more specific if partial matches were enabled)" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ProxyObject; + static const UECodeGen_Private::FStructPropertyParams NewProp_ActualChannel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ProxyObject = { "ProxyObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms, ProxyObject), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ActualChannel = { "ActualChannel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms, ActualChannel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ProxyObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::NewProp_ActualChannel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, nullptr, "AsyncGameplayMessageDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00130000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::_Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FAsyncGameplayMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& AsyncGameplayMessageDelegate, UAsyncAction_ListenForGameplayMessage* ProxyObject, FGameplayTag ActualChannel) +{ + struct _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms + { + UAsyncAction_ListenForGameplayMessage* ProxyObject; + FGameplayTag ActualChannel; + }; + _Script_GameplayMessageRuntime_eventAsyncGameplayMessageDelegate_Parms Parms; + Parms.ProxyObject=ProxyObject; + Parms.ActualChannel=ActualChannel; + AsyncGameplayMessageDelegate.ProcessMulticastDelegate(&Parms); +} +// End Delegate FAsyncGameplayMessageDelegate + +// Begin Class UAsyncAction_ListenForGameplayMessage Function GetPayload +struct Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics +{ + struct AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms + { + int32 OutPayload; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Attempt to copy the payload received from the broadcasted gameplay message into the specified wildcard.\n\x09 * The wildcard's type must match the type from the received message.\n\x09 *\n\x09 * @param OutPayload\x09The wildcard reference the payload should be copied into\n\x09 * @return\x09\x09\x09\x09If the copy was a success\n\x09 */" }, +#endif + { "CustomStructureParam", "OutPayload" }, + { "CustomThunk", "true" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Attempt to copy the payload received from the broadcasted gameplay message into the specified wildcard.\nThe wildcard's type must match the type from the received message.\n\n@param OutPayload The wildcard reference the payload should be copied into\n@return If the copy was a success" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_OutPayload; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_OutPayload = { "OutPayload", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms, OutPayload), METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms), &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_OutPayload, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, nullptr, "GetPayload", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::AsyncAction_ListenForGameplayMessage_eventGetPayload_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UAsyncAction_ListenForGameplayMessage Function GetPayload + +// Begin Class UAsyncAction_ListenForGameplayMessage Function ListenForGameplayMessages +struct Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics +{ + struct AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms + { + UObject* WorldContextObject; + FGameplayTag Channel; + UScriptStruct* PayloadType; + EGameplayMessageMatch MatchType; + UAsyncAction_ListenForGameplayMessage* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "BlueprintInternalUseOnly", "true" }, + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Asynchronously waits for a gameplay message to be broadcast on the specified channel.\n\x09 *\n\x09 * @param Channel\x09\x09\x09The message channel to listen for\n\x09 * @param PayloadType\x09\x09The kind of message structure to use (this must match the same type that the sender is broadcasting)\n\x09 * @param MatchType\x09\x09\x09The rule used for matching the channel with broadcasted messages\n\x09 */" }, +#endif + { "CPP_Default_MatchType", "ExactMatch" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Asynchronously waits for a gameplay message to be broadcast on the specified channel.\n\n@param Channel The message channel to listen for\n@param PayloadType The kind of message structure to use (this must match the same type that the sender is broadcasting)\n@param MatchType The rule used for matching the channel with broadcasted messages" }, +#endif + { "WorldContext", "WorldContextObject" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_WorldContextObject; + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PayloadType; + static const UECodeGen_Private::FBytePropertyParams NewProp_MatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_MatchType; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_WorldContextObject = { "WorldContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, WorldContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_PayloadType = { "PayloadType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, PayloadType), Z_Construct_UClass_UScriptStruct, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType = { "MatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, MatchType), Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch, METADATA_PARAMS(0, nullptr) }; // 1992465379 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms, ReturnValue), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_WorldContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_PayloadType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_MatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, nullptr, "ListenForGameplayMessages", nullptr, nullptr, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::PropPointers), sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04022401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::Function_MetaDataParams), Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::AsyncAction_ListenForGameplayMessage_eventListenForGameplayMessages_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UAsyncAction_ListenForGameplayMessage::execListenForGameplayMessages) +{ + P_GET_OBJECT(UObject,Z_Param_WorldContextObject); + P_GET_STRUCT(FGameplayTag,Z_Param_Channel); + P_GET_OBJECT(UScriptStruct,Z_Param_PayloadType); + P_GET_ENUM(EGameplayMessageMatch,Z_Param_MatchType); + P_FINISH; + P_NATIVE_BEGIN; + *(UAsyncAction_ListenForGameplayMessage**)Z_Param__Result=UAsyncAction_ListenForGameplayMessage::ListenForGameplayMessages(Z_Param_WorldContextObject,Z_Param_Channel,Z_Param_PayloadType,EGameplayMessageMatch(Z_Param_MatchType)); + P_NATIVE_END; +} +// End Class UAsyncAction_ListenForGameplayMessage Function ListenForGameplayMessages + +// Begin Class UAsyncAction_ListenForGameplayMessage +void UAsyncAction_ListenForGameplayMessage::StaticRegisterNativesUAsyncAction_ListenForGameplayMessage() +{ + UClass* Class = UAsyncAction_ListenForGameplayMessage::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "GetPayload", &UAsyncAction_ListenForGameplayMessage::execGetPayload }, + { "ListenForGameplayMessages", &UAsyncAction_ListenForGameplayMessage::execListenForGameplayMessages }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UAsyncAction_ListenForGameplayMessage); +UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_NoRegister() +{ + return UAsyncAction_ListenForGameplayMessage::StaticClass(); +} +struct Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "HasDedicatedAsyncNode", "" }, + { "IncludePath", "GameFramework/AsyncAction_ListenForGameplayMessage.h" }, + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_OnMessageReceived_MetaData[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** Called when a message is broadcast on the specified channel. Use GetPayload() to request the message payload. */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/AsyncAction_ListenForGameplayMessage.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Called when a message is broadcast on the specified channel. Use GetPayload() to request the message payload." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FMulticastDelegatePropertyParams NewProp_OnMessageReceived; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_GetPayload, "GetPayload" }, // 3639819053 + { &Z_Construct_UFunction_UAsyncAction_ListenForGameplayMessage_ListenForGameplayMessages, "ListenForGameplayMessages" }, // 4154493433 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FMulticastDelegatePropertyParams Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::NewProp_OnMessageReceived = { "OnMessageReceived", nullptr, (EPropertyFlags)0x0010000010080000, UECodeGen_Private::EPropertyGenFlags::InlineMulticastDelegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UAsyncAction_ListenForGameplayMessage, OnMessageReceived), Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_OnMessageReceived_MetaData), NewProp_OnMessageReceived_MetaData) }; // 3775955378 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::NewProp_OnMessageReceived, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UCancellableAsyncAction, + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::ClassParams = { + &UAsyncAction_ListenForGameplayMessage::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::PropPointers), + 0, + 0x009000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::Class_MetaDataParams), Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage() +{ + if (!Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton, Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass() +{ + return UAsyncAction_ListenForGameplayMessage::StaticClass(); +} +UAsyncAction_ListenForGameplayMessage::UAsyncAction_ListenForGameplayMessage(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UAsyncAction_ListenForGameplayMessage); +UAsyncAction_ListenForGameplayMessage::~UAsyncAction_ListenForGameplayMessage() {} +// End Class UAsyncAction_ListenForGameplayMessage + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage, UAsyncAction_ListenForGameplayMessage::StaticClass, TEXT("UAsyncAction_ListenForGameplayMessage"), &Z_Registration_Info_UClass_UAsyncAction_ListenForGameplayMessage, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UAsyncAction_ListenForGameplayMessage), 400500357U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_2542487587(TEXT("/Script/GameplayMessageRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h new file mode 100644 index 00000000..f6acbbcd --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/AsyncAction_ListenForGameplayMessage.generated.h @@ -0,0 +1,70 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/AsyncAction_ListenForGameplayMessage.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UAsyncAction_ListenForGameplayMessage; +class UObject; +class UScriptStruct; +enum class EGameplayMessageMatch : uint8; +struct FGameplayTag; +#ifdef GAMEPLAYMESSAGERUNTIME_AsyncAction_ListenForGameplayMessage_generated_h +#error "AsyncAction_ListenForGameplayMessage.generated.h already included, missing '#pragma once' in AsyncAction_ListenForGameplayMessage.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_AsyncAction_ListenForGameplayMessage_generated_h + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_20_DELEGATE \ +GAMEPLAYMESSAGERUNTIME_API void FAsyncGameplayMessageDelegate_DelegateWrapper(const FMulticastScriptDelegate& AsyncGameplayMessageDelegate, UAsyncAction_ListenForGameplayMessage* ProxyObject, FGameplayTag ActualChannel); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execListenForGameplayMessages); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUAsyncAction_ListenForGameplayMessage(); \ + friend struct Z_Construct_UClass_UAsyncAction_ListenForGameplayMessage_Statics; \ +public: \ + DECLARE_CLASS(UAsyncAction_ListenForGameplayMessage, UCancellableAsyncAction, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameplayMessageRuntime"), NO_API) \ + DECLARE_SERIALIZER(UAsyncAction_ListenForGameplayMessage) + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UAsyncAction_ListenForGameplayMessage(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UAsyncAction_ListenForGameplayMessage(UAsyncAction_ListenForGameplayMessage&&); \ + UAsyncAction_ListenForGameplayMessage(const UAsyncAction_ListenForGameplayMessage&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UAsyncAction_ListenForGameplayMessage); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UAsyncAction_ListenForGameplayMessage); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UAsyncAction_ListenForGameplayMessage) \ + NO_API virtual ~UAsyncAction_ListenForGameplayMessage(); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_AsyncAction_ListenForGameplayMessage_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp new file mode 100644 index 00000000..11811bf2 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp @@ -0,0 +1,33 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageRuntime_init() {} + GAMEPLAYMESSAGERUNTIME_API UFunction* Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_GameplayMessageRuntime; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime() + { + if (!Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_GameplayMessageRuntime_AsyncGameplayMessageDelegate__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/GameplayMessageRuntime", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0x631F2F6C, + 0x364B925A, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_GameplayMessageRuntime.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_GameplayMessageRuntime(Z_Construct_UPackage__Script_GameplayMessageRuntime, TEXT("/Script/GameplayMessageRuntime"), Z_Registration_Info_UPackage__Script_GameplayMessageRuntime, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x631F2F6C, 0x364B925A)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntimeClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp new file mode 100644 index 00000000..7caa0c0d --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.gen.cpp @@ -0,0 +1,302 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/GameplayMessageSubsystem.h" +#include "Runtime/Engine/Classes/Engine/GameInstance.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageSubsystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UGameInstanceSubsystem(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UGameplayMessageSubsystem(); +GAMEPLAYMESSAGERUNTIME_API UClass* Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister(); +GAMEPLAYMESSAGERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerData(); +GAMEPLAYMESSAGERUNTIME_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerHandle(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin ScriptStruct FGameplayMessageListenerHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle; +class UScriptStruct* FGameplayMessageListenerHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("GameplayMessageListenerHandle")); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct() +{ + return FGameplayMessageListenerHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * An opaque handle that can be used to remove a previously registered message listener\n * @see UGameplayMessageSubsystem::RegisterListener and UGameplayMessageSubsystem::UnregisterListener\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "An opaque handle that can be used to remove a previously registered message listener\n@see UGameplayMessageSubsystem::RegisterListener and UGameplayMessageSubsystem::UnregisterListener" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Subsystem_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Channel_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ID_MetaData[] = { + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_Subsystem; + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FIntPropertyParams NewProp_ID; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Subsystem = { "Subsystem", nullptr, (EPropertyFlags)0x0044000000002000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, Subsystem), Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Subsystem_MetaData), NewProp_Subsystem_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Channel_MetaData), NewProp_Channel_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_ID = { "ID", nullptr, (EPropertyFlags)0x0040000000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FGameplayMessageListenerHandle, ID), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ID_MetaData), NewProp_ID_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Subsystem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewProp_ID, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + &NewStructOps, + "GameplayMessageListenerHandle", + Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::PropPointers), + sizeof(FGameplayMessageListenerHandle), + alignof(FGameplayMessageListenerHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerHandle() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton, Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle.InnerSingleton; +} +// End ScriptStruct FGameplayMessageListenerHandle + +// Begin ScriptStruct FGameplayMessageListenerData +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_GameplayMessageListenerData; +class UScriptStruct* FGameplayMessageListenerData::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FGameplayMessageListenerData, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("GameplayMessageListenerData")); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct() +{ + return FGameplayMessageListenerData::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/** \n * Entry information for a single registered listener\n */" }, +#endif + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Entry information for a single registered listener" }, +#endif + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + &NewStructOps, + "GameplayMessageListenerData", + nullptr, + 0, + sizeof(FGameplayMessageListenerData), + alignof(FGameplayMessageListenerData), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FGameplayMessageListenerData() +{ + if (!Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton, Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_GameplayMessageListenerData.InnerSingleton; +} +// End ScriptStruct FGameplayMessageListenerData + +// Begin Class UGameplayMessageSubsystem Function K2_BroadcastMessage +struct Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics +{ + struct GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms + { + FGameplayTag Channel; + int32 Message; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "AllowAbstract", "false" }, + { "Category", "Messaging" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Broadcast a message on the specified channel\n\x09 *\n\x09 * @param Channel\x09\x09\x09The message channel to broadcast on\n\x09 * @param Message\x09\x09\x09The message to send (must be the same type of UScriptStruct expected by the listeners for this channel, otherwise an error will be logged)\n\x09 */" }, +#endif + { "CustomStructureParam", "Message" }, + { "CustomThunk", "true" }, + { "DisplayName", "Broadcast Message" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Broadcast a message on the specified channel\n\n@param Channel The message channel to broadcast on\n@param Message The message to send (must be the same type of UScriptStruct expected by the listeners for this channel, otherwise an error will be logged)" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Message_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Channel; + static const UECodeGen_Private::FIntPropertyParams NewProp_Message; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Channel = { "Channel", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms, Channel), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Message = { "Message", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms, Message), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Message_MetaData), NewProp_Message_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Channel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::NewProp_Message, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UGameplayMessageSubsystem, nullptr, "K2_BroadcastMessage", nullptr, nullptr, Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::PropPointers), sizeof(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::Function_MetaDataParams), Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::GameplayMessageSubsystem_eventK2_BroadcastMessage_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage_Statics::FuncParams); + } + return ReturnFunction; +} +// End Class UGameplayMessageSubsystem Function K2_BroadcastMessage + +// Begin Class UGameplayMessageSubsystem +void UGameplayMessageSubsystem::StaticRegisterNativesUGameplayMessageSubsystem() +{ + UClass* Class = UGameplayMessageSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "K2_BroadcastMessage", &UGameplayMessageSubsystem::execK2_BroadcastMessage }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UGameplayMessageSubsystem); +UClass* Z_Construct_UClass_UGameplayMessageSubsystem_NoRegister() +{ + return UGameplayMessageSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UGameplayMessageSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * This system allows event raisers and listeners to register for messages without\n * having to know about each other directly, though they must agree on the format\n * of the message (as a USTRUCT() type).\n *\n *\n * You can get to the message router from the game instance:\n * UGameInstance::GetSubsystem(GameInstance)\n * or directly from anything that has a route to a world:\n * UGameplayMessageSubsystem::Get(WorldContextObject)\n *\n * Note that call order when there are multiple listeners for the same channel is\n * not guaranteed and can change over time!\n */" }, +#endif + { "IncludePath", "GameFramework/GameplayMessageSubsystem.h" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "This system allows event raisers and listeners to register for messages without\nhaving to know about each other directly, though they must agree on the format\nof the message (as a USTRUCT() type).\n\n\nYou can get to the message router from the game instance:\n UGameInstance::GetSubsystem(GameInstance)\nor directly from anything that has a route to a world:\n UGameplayMessageSubsystem::Get(WorldContextObject)\n\nNote that call order when there are multiple listeners for the same channel is\nnot guaranteed and can change over time!" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UGameplayMessageSubsystem_K2_BroadcastMessage, "K2_BroadcastMessage" }, // 4235780623 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UGameplayMessageSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UGameInstanceSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UGameplayMessageSubsystem_Statics::ClassParams = { + &UGameplayMessageSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UGameplayMessageSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UGameplayMessageSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UGameplayMessageSubsystem() +{ + if (!Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton, Z_Construct_UClass_UGameplayMessageSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UGameplayMessageSubsystem.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass() +{ + return UGameplayMessageSubsystem::StaticClass(); +} +UGameplayMessageSubsystem::UGameplayMessageSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UGameplayMessageSubsystem); +UGameplayMessageSubsystem::~UGameplayMessageSubsystem() {} +// End Class UGameplayMessageSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics +{ + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FGameplayMessageListenerHandle::StaticStruct, Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics::NewStructOps, TEXT("GameplayMessageListenerHandle"), &Z_Registration_Info_UScriptStruct_GameplayMessageListenerHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayMessageListenerHandle), 2295597265U) }, + { FGameplayMessageListenerData::StaticStruct, Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics::NewStructOps, TEXT("GameplayMessageListenerData"), &Z_Registration_Info_UScriptStruct_GameplayMessageListenerData, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FGameplayMessageListenerData), 1223272090U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UGameplayMessageSubsystem, UGameplayMessageSubsystem::StaticClass, TEXT("UGameplayMessageSubsystem"), &Z_Registration_Info_UClass_UGameplayMessageSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UGameplayMessageSubsystem), 1007149444U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_1523141913(TEXT("/Script/GameplayMessageRuntime"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_Statics::ScriptStructInfo), + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h new file mode 100644 index 00000000..86fcae92 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageSubsystem.generated.h @@ -0,0 +1,71 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/GameplayMessageSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +struct FGameplayTag; +#ifdef GAMEPLAYMESSAGERUNTIME_GameplayMessageSubsystem_generated_h +#error "GameplayMessageSubsystem.generated.h already included, missing '#pragma once' in GameplayMessageSubsystem.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_GameplayMessageSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_27_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayMessageListenerHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_58_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FGameplayMessageListenerData_Statics; \ + GAMEPLAYMESSAGERUNTIME_API static class UScriptStruct* StaticStruct(); + + +template<> GAMEPLAYMESSAGERUNTIME_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUGameplayMessageSubsystem(); \ + friend struct Z_Construct_UClass_UGameplayMessageSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UGameplayMessageSubsystem, UGameInstanceSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/GameplayMessageRuntime"), NO_API) \ + DECLARE_SERIALIZER(UGameplayMessageSubsystem) + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UGameplayMessageSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UGameplayMessageSubsystem(UGameplayMessageSubsystem&&); \ + UGameplayMessageSubsystem(const UGameplayMessageSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UGameplayMessageSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UGameplayMessageSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UGameplayMessageSubsystem) \ + NO_API virtual ~UGameplayMessageSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_85_PROLOG +#define FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h_88_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> GAMEPLAYMESSAGERUNTIME_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp new file mode 100644 index 00000000..87fa81f0 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "GameplayMessageRuntime/Public/GameFramework/GameplayMessageTypes2.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeGameplayMessageTypes2() {} + +// Begin Cross Module References +GAMEPLAYMESSAGERUNTIME_API UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch(); +UPackage* Z_Construct_UPackage__Script_GameplayMessageRuntime(); +// End Cross Module References + +// Begin Enum EGameplayMessageMatch +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EGameplayMessageMatch; +static UEnum* EGameplayMessageMatch_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton) + { + Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch, (UObject*)Z_Construct_UPackage__Script_GameplayMessageRuntime(), TEXT("EGameplayMessageMatch")); + } + return Z_Registration_Info_UEnum_EGameplayMessageMatch.OuterSingleton; +} +template<> GAMEPLAYMESSAGERUNTIME_API UEnum* StaticEnum() +{ + return EGameplayMessageMatch_StaticEnum(); +} +struct Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for message listeners\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive messages with exactly the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EGameplayMessageMatch::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive messages with exactly the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "Public/GameFramework/GameplayMessageTypes2.h" }, + { "PartialMatch.Comment", "// A partial match will receive any messages rooted in the same channel\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EGameplayMessageMatch::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any messages rooted in the same channel\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for message listeners" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EGameplayMessageMatch::ExactMatch", (int64)EGameplayMessageMatch::ExactMatch }, + { "EGameplayMessageMatch::PartialMatch", (int64)EGameplayMessageMatch::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_GameplayMessageRuntime, + nullptr, + "EGameplayMessageMatch", + "EGameplayMessageMatch", + Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enum_MetaDataParams), Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch() +{ + if (!Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton, Z_Construct_UEnum_GameplayMessageRuntime_EGameplayMessageMatch_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EGameplayMessageMatch.InnerSingleton; +} +// End Enum EGameplayMessageMatch + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EGameplayMessageMatch_StaticEnum, TEXT("EGameplayMessageMatch"), &Z_Registration_Info_UEnum_EGameplayMessageMatch, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1992465379U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_2137425532(TEXT("/Script/GameplayMessageRuntime"), + nullptr, 0, + nullptr, 0, + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h new file mode 100644 index 00000000..2e85d9e7 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.generated.h @@ -0,0 +1,30 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "GameFramework/GameplayMessageTypes2.h" +#include "Templates/IsUEnumClass.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ReflectedTypeAccessors.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef GAMEPLAYMESSAGERUNTIME_GameplayMessageTypes2_generated_h +#error "GameplayMessageTypes2.generated.h already included, missing '#pragma once' in GameplayMessageTypes2.h" +#endif +#define GAMEPLAYMESSAGERUNTIME_GameplayMessageTypes2_generated_h + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_GameplayMessageRouter_Source_GameplayMessageRuntime_Public_GameFramework_GameplayMessageTypes2_h + + +#define FOREACH_ENUM_EGAMEPLAYMESSAGEMATCH(op) \ + op(EGameplayMessageMatch::ExactMatch) \ + op(EGameplayMessageMatch::PartialMatch) + +enum class EGameplayMessageMatch : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> GAMEPLAYMESSAGERUNTIME_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/Timestamp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/Timestamp new file mode 100644 index 00000000..707f2e4e --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/Timestamp @@ -0,0 +1,3 @@ +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\GameplayMessageTypes2.h +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\AsyncAction_ListenForGameplayMessage.h +E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public\GameFramework\GameplayMessageSubsystem.h diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Default.rc2.res.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Default.rc2.res.rsp new file mode 100644 index 00000000..a2f39287 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-GameplayMessageNodes.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Definitions.GameplayMessageNodes.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Definitions.GameplayMessageNodes.h new file mode 100644 index 00000000..e6f0ae15 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Definitions.GameplayMessageNodes.h @@ -0,0 +1,21 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameplayMessageNodes +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef GAMEPLAYMESSAGENODES_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "GameplayMessageNodes" +#define UE_PLUGIN_NAME "GameplayMessageRouter" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMEPLAYMESSAGERUNTIME_API DLLIMPORT +#define GAMEPLAYMESSAGENODES_API DLLEXPORT diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/GameplayMessageNodes.Shared.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/GameplayMessageNodes.Shared.rsp new file mode 100644 index 00000000..447ba74d --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/GameplayMessageNodes.Shared.rsp @@ -0,0 +1,304 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageNodes\Private" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayMessageNodes\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageNodes\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/LiveCodingInfo.json b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/LiveCodingInfo.json new file mode 100644 index 00000000..7d2676af --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/LiveCodingInfo.json @@ -0,0 +1,11 @@ +{ + "RemapUnityFiles": + { + "Module.GameplayMessageNodes.cpp.obj": [ + "GameplayMessageNodes.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "GameplayMessageNodesModule.cpp.obj", + "K2Node_AsyncAction_ListenForGameplayMessages.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp new file mode 100644 index 00000000..07a26b3e --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp @@ -0,0 +1,5 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageNodes/UHT/GameplayMessageNodes.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageNodes/Private/GameplayMessageNodesModule.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageNodes/Private/K2Node_AsyncAction_ListenForGameplayMessages.cpp" diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp.obj.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp.obj.rsp new file mode 100644 index 00000000..ee0911ac --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/Module.GameplayMessageNodes.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Definitions.GameplayMessageNodes.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\GameplayMessageNodes.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/PerModuleInline.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.dll.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.dll.rsp new file mode 100644 index 00000000..20477f06 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.dll.rsp @@ -0,0 +1,77 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\KismetCompiler\UnrealEditor-KismetCompiler.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\PropertyEditor\UnrealEditor-PropertyEditor.lib" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\UnrealEditor-GameplayMessageRuntime.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UnrealEd\UnrealEditor-UnrealEd.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\BlueprintGraph\UnrealEditor-BlueprintGraph.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageNodes.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageNodes.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.lib.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.lib.rsp new file mode 100644 index 00000000..4e91bf67 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageNodes/UnrealEditor-GameplayMessageNodes.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-GameplayMessageNodes.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Module.GameplayMessageNodes.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageNodes\UnrealEditor-GameplayMessageNodes.lib" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Default.rc2.res.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Default.rc2.res.rsp new file mode 100644 index 00000000..c9095965 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-GameplayMessageRuntime.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h new file mode 100644 index 00000000..06d89fcc --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameplayMessageRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef GAMEPLAYMESSAGERUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "GameplayMessageRuntime" +#define UE_PLUGIN_NAME "GameplayMessageRouter" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMEPLAYMESSAGERUNTIME_API DLLEXPORT diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp new file mode 100644 index 00000000..3ba03d6d --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp @@ -0,0 +1,302 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/LiveCodingInfo.json b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/LiveCodingInfo.json new file mode 100644 index 00000000..6408585d --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/LiveCodingInfo.json @@ -0,0 +1,13 @@ +{ + "RemapUnityFiles": + { + "Module.GameplayMessageRuntime.cpp.obj": [ + "GameplayMessageRuntime.init.gen.cpp.obj", + "GameplayMessageTypes2.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "AsyncAction_ListenForGameplayMessage.cpp.obj", + "GameplayMessageRuntime.cpp.obj", + "GameplayMessageSubsystem.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp new file mode 100644 index 00000000..3f567707 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp @@ -0,0 +1,7 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealEditor/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/AsyncAction_ListenForGameplayMessage.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/GameplayMessageRuntime.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/GameplayMessageSubsystem.cpp" diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp new file mode 100644 index 00000000..ea4bbe2b --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Definitions.GameplayMessageRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\GameplayMessageRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/PerModuleInline.gen.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.dll.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.dll.rsp new file mode 100644 index 00000000..e52e4d3b --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.dll.rsp @@ -0,0 +1,73 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageRuntime.dll" +/PDB:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Binaries\Win64\UnrealEditor-GameplayMessageRuntime.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.lib.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.lib.rsp new file mode 100644 index 00000000..442ad937 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealEditor/Development/GameplayMessageRuntime/UnrealEditor-GameplayMessageRuntime.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-GameplayMessageRuntime.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.obj" +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayMessageRuntime\UnrealEditor-GameplayMessageRuntime.lib" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h new file mode 100644 index 00000000..6ee42eb4 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Definitions.GameplayMessageRuntime.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for GameplayMessageRuntime +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef GAMEPLAYMESSAGERUNTIME_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "GameplayMessageRuntime" +#define UE_PLUGIN_NAME "GameplayMessageRouter" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define GAMEPLAYMESSAGERUNTIME_API diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp new file mode 100644 index 00000000..5f43a54b --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/GameplayMessageRuntime.Shared.rsp @@ -0,0 +1,132 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Private" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\UnrealGame\Inc\GameplayMessageRuntime\UHT" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source" +/I "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Source\GameplayMessageRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp new file mode 100644 index 00000000..53fdcb5a --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp @@ -0,0 +1,6 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageRuntime.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/UnrealGame/Inc/GameplayMessageRuntime/UHT/GameplayMessageTypes2.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/AsyncAction_ListenForGameplayMessage.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/GameplayMessageRuntime.cpp" +#include "E:/Projects/cross_platform/Plugins/GameplayMessageRouter/Source/GameplayMessageRuntime/Private/GameFramework/GameplayMessageSubsystem.cpp" diff --git a/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp new file mode 100644 index 00000000..da298152 --- /dev/null +++ b/Plugins/GameplayMessageRouter/Intermediate/Build/Win64/x64/UnrealGame/Shipping/GameplayMessageRuntime/Module.GameplayMessageRuntime.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\Definitions.GameplayMessageRuntime.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\Module.GameplayMessageRuntime.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\GameplayMessageRouter\Intermediate\Build\Win64\x64\UnrealGame\Shipping\GameplayMessageRuntime\GameplayMessageRuntime.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.gen.cpp b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.gen.cpp new file mode 100644 index 00000000..e8e79e05 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.gen.cpp @@ -0,0 +1,165 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "LyraExtTool/Public/BPFunctionLibrary.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeBPFunctionLibrary() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInterface_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UStaticMesh_NoRegister(); +LYRAEXTTOOL_API UClass* Z_Construct_UClass_UBPFunctionLibrary(); +LYRAEXTTOOL_API UClass* Z_Construct_UClass_UBPFunctionLibrary_NoRegister(); +UPackage* Z_Construct_UPackage__Script_LyraExtTool(); +// End Cross Module References + +// Begin Class UBPFunctionLibrary Function ChangeMeshMaterials +struct Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics +{ + struct BPFunctionLibrary_eventChangeMeshMaterials_Parms + { + TArray Mesh; + UMaterialInterface* Material; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "LyraExt" }, + { "ModuleRelativePath", "Public/BPFunctionLibrary.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Mesh_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_Mesh; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Material; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Mesh_Inner = { "Mesh", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UStaticMesh_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Mesh = { "Mesh", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(BPFunctionLibrary_eventChangeMeshMaterials_Parms, Mesh), EArrayPropertyFlags::None, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Material = { "Material", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(BPFunctionLibrary_eventChangeMeshMaterials_Parms, Material), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(0, nullptr) }; +void Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((BPFunctionLibrary_eventChangeMeshMaterials_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(BPFunctionLibrary_eventChangeMeshMaterials_Parms), &Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Mesh_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Mesh, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_Material, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UBPFunctionLibrary, nullptr, "ChangeMeshMaterials", nullptr, nullptr, Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::PropPointers), sizeof(Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::BPFunctionLibrary_eventChangeMeshMaterials_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04042401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::Function_MetaDataParams), Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::BPFunctionLibrary_eventChangeMeshMaterials_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UBPFunctionLibrary::execChangeMeshMaterials) +{ + P_GET_TARRAY(UStaticMesh*,Z_Param_Mesh); + P_GET_OBJECT(UMaterialInterface,Z_Param_Material); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UBPFunctionLibrary::ChangeMeshMaterials(Z_Param_Mesh,Z_Param_Material); + P_NATIVE_END; +} +// End Class UBPFunctionLibrary Function ChangeMeshMaterials + +// Begin Class UBPFunctionLibrary +void UBPFunctionLibrary::StaticRegisterNativesUBPFunctionLibrary() +{ + UClass* Class = UBPFunctionLibrary::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "ChangeMeshMaterials", &UBPFunctionLibrary::execChangeMeshMaterials }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UBPFunctionLibrary); +UClass* Z_Construct_UClass_UBPFunctionLibrary_NoRegister() +{ + return UBPFunctionLibrary::StaticClass(); +} +struct Z_Construct_UClass_UBPFunctionLibrary_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "BPFunctionLibrary.h" }, + { "ModuleRelativePath", "Public/BPFunctionLibrary.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UBPFunctionLibrary_ChangeMeshMaterials, "ChangeMeshMaterials" }, // 905578816 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UBPFunctionLibrary_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_LyraExtTool, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UBPFunctionLibrary_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UBPFunctionLibrary_Statics::ClassParams = { + &UBPFunctionLibrary::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x000000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UBPFunctionLibrary_Statics::Class_MetaDataParams), Z_Construct_UClass_UBPFunctionLibrary_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UBPFunctionLibrary() +{ + if (!Z_Registration_Info_UClass_UBPFunctionLibrary.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UBPFunctionLibrary.OuterSingleton, Z_Construct_UClass_UBPFunctionLibrary_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UBPFunctionLibrary.OuterSingleton; +} +template<> LYRAEXTTOOL_API UClass* StaticClass() +{ + return UBPFunctionLibrary::StaticClass(); +} +UBPFunctionLibrary::UBPFunctionLibrary(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UBPFunctionLibrary); +UBPFunctionLibrary::~UBPFunctionLibrary() {} +// End Class UBPFunctionLibrary + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UBPFunctionLibrary, UBPFunctionLibrary::StaticClass, TEXT("UBPFunctionLibrary"), &Z_Registration_Info_UClass_UBPFunctionLibrary, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UBPFunctionLibrary), 474118063U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_2499664406(TEXT("/Script/LyraExtTool"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.generated.h b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.generated.h new file mode 100644 index 00000000..c52d3773 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/BPFunctionLibrary.generated.h @@ -0,0 +1,63 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "BPFunctionLibrary.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UMaterialInterface; +class UStaticMesh; +#ifdef LYRAEXTTOOL_BPFunctionLibrary_generated_h +#error "BPFunctionLibrary.generated.h already included, missing '#pragma once' in BPFunctionLibrary.h" +#endif +#define LYRAEXTTOOL_BPFunctionLibrary_generated_h + +#define FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execChangeMeshMaterials); + + +#define FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUBPFunctionLibrary(); \ + friend struct Z_Construct_UClass_UBPFunctionLibrary_Statics; \ +public: \ + DECLARE_CLASS(UBPFunctionLibrary, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/LyraExtTool"), NO_API) \ + DECLARE_SERIALIZER(UBPFunctionLibrary) + + +#define FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UBPFunctionLibrary(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UBPFunctionLibrary(UBPFunctionLibrary&&); \ + UBPFunctionLibrary(const UBPFunctionLibrary&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UBPFunctionLibrary); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UBPFunctionLibrary); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UBPFunctionLibrary) \ + NO_API virtual ~UBPFunctionLibrary(); + + +#define FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> LYRAEXTTOOL_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_LyraExtTool_Source_LyraExtTool_Public_BPFunctionLibrary_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtTool.init.gen.cpp b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtTool.init.gen.cpp new file mode 100644 index 00000000..2572bd98 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtTool.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeLyraExtTool_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_LyraExtTool; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_LyraExtTool() + { + if (!Z_Registration_Info_UPackage__Script_LyraExtTool.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/LyraExtTool", + nullptr, + 0, + PKG_CompiledIn | 0x00000040, + 0x57C926E5, + 0x6D2712F9, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_LyraExtTool.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_LyraExtTool.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_LyraExtTool(Z_Construct_UPackage__Script_LyraExtTool, TEXT("/Script/LyraExtTool"), Z_Registration_Info_UPackage__Script_LyraExtTool, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x57C926E5, 0x6D2712F9)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtToolClasses.h b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtToolClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtToolClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/Timestamp b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/Timestamp new file mode 100644 index 00000000..d767a69e --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/Timestamp @@ -0,0 +1 @@ +E:\Projects\cross_platform\Plugins\LyraExtTool\Source\LyraExtTool\Public\BPFunctionLibrary.h diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Default.rc2.res.rsp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Default.rc2.res.rsp new file mode 100644 index 00000000..9e81f8fe --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-LyraExtTool.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Definitions.LyraExtTool.h b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Definitions.LyraExtTool.h new file mode 100644 index 00000000..69112fc4 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Definitions.LyraExtTool.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for LyraExtTool +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef LYRAEXTTOOL_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "LyraExtTool" +#define UE_PLUGIN_NAME "LyraExtTool" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define LYRAEXTTOOL_API DLLEXPORT diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LiveCodingInfo.json b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LiveCodingInfo.json new file mode 100644 index 00000000..530309ef --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LiveCodingInfo.json @@ -0,0 +1,11 @@ +{ + "RemapUnityFiles": + { + "Module.LyraExtTool.cpp.obj": [ + "LyraExtTool.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "BPFunctionLibrary.cpp.obj", + "LyraExtTool.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LyraExtTool.Shared.rsp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LyraExtTool.Shared.rsp new file mode 100644 index 00000000..e5f7cdee --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/LyraExtTool.Shared.rsp @@ -0,0 +1,302 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\LyraExtTool\Source\LyraExtTool\Private" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\UnrealEditor\Inc\LyraExtTool\UHT" +/I "E:\Projects\cross_platform\Plugins\LyraExtTool\Source" +/I "E:\Projects\cross_platform\Plugins\LyraExtTool\Source\LyraExtTool\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp new file mode 100644 index 00000000..510bed77 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp @@ -0,0 +1,5 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/LyraExtTool/Intermediate/Build/Win64/UnrealEditor/Inc/LyraExtTool/UHT/LyraExtTool.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/LyraExtTool/Source/LyraExtTool/Private/BPFunctionLibrary.cpp" +#include "E:/Projects/cross_platform/Plugins/LyraExtTool/Source/LyraExtTool/Private/LyraExtTool.cpp" diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp.obj.rsp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp.obj.rsp new file mode 100644 index 00000000..1c1911e2 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/Module.LyraExtTool.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Definitions.LyraExtTool.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\LyraExtTool.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/PerModuleInline.gen.cpp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.dll.rsp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.dll.rsp new file mode 100644 index 00000000..e74bb53b --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.dll.rsp @@ -0,0 +1,74 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp.obj" +"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor-LyraExtTool.dll" +/PDB:"E:\Projects\cross_platform\Plugins\LyraExtTool\Binaries\Win64\UnrealEditor-LyraExtTool.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.lib.rsp b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.lib.rsp new file mode 100644 index 00000000..5944fb72 --- /dev/null +++ b/Plugins/LyraExtTool/Intermediate/Build/Win64/x64/UnrealEditor/Development/LyraExtTool/UnrealEditor-LyraExtTool.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-LyraExtTool.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Module.LyraExtTool.cpp.obj" +"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\LyraExtTool\Intermediate\Build\Win64\x64\UnrealEditor\Development\LyraExtTool\UnrealEditor-LyraExtTool.lib" \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp new file mode 100644 index 00000000..cd8d2538 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularAIController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularAIController() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_AAIController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularAIController +void AModularAIController::StaticRegisterNativesAModularAIController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularAIController); +UClass* Z_Construct_UClass_AModularAIController_NoRegister() +{ + return AModularAIController::StaticClass(); +} +struct Z_Construct_UClass_AModularAIController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "ModularAIController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularAIController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularAIController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AAIController, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularAIController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularAIController_Statics::ClassParams = { + &AModularAIController::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularAIController_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularAIController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularAIController() +{ + if (!Z_Registration_Info_UClass_AModularAIController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularAIController.OuterSingleton, Z_Construct_UClass_AModularAIController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularAIController.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularAIController::StaticClass(); +} +AModularAIController::AModularAIController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularAIController); +AModularAIController::~AModularAIController() {} +// End Class AModularAIController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularAIController, AModularAIController::StaticClass, TEXT("AModularAIController"), &Z_Registration_Info_UClass_AModularAIController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularAIController), 2638154365U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_3186519544(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h new file mode 100644 index 00000000..446d8b48 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularAIController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularAIController_generated_h +#error "ModularAIController.generated.h already included, missing '#pragma once' in ModularAIController.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularAIController_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularAIController(); \ + friend struct Z_Construct_UClass_AModularAIController_Statics; \ +public: \ + DECLARE_CLASS(AModularAIController, AAIController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularAIController) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularAIController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularAIController(AModularAIController&&); \ + AModularAIController(const AModularAIController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularAIController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularAIController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularAIController) \ + NO_API virtual ~AModularAIController(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp new file mode 100644 index 00000000..aabf4bc7 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularCharacter.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularCharacter() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ACharacter(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularCharacter +void AModularCharacter::StaticRegisterNativesAModularCharacter() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularCharacter); +UClass* Z_Construct_UClass_AModularCharacter_NoRegister() +{ + return AModularCharacter::StaticClass(); +} +struct Z_Construct_UClass_AModularCharacter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "ModularCharacter.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularCharacter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ACharacter, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularCharacter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularCharacter_Statics::ClassParams = { + &AModularCharacter::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularCharacter_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularCharacter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularCharacter() +{ + if (!Z_Registration_Info_UClass_AModularCharacter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularCharacter.OuterSingleton, Z_Construct_UClass_AModularCharacter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularCharacter.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularCharacter::StaticClass(); +} +AModularCharacter::AModularCharacter(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularCharacter); +AModularCharacter::~AModularCharacter() {} +// End Class AModularCharacter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularCharacter, AModularCharacter::StaticClass, TEXT("AModularCharacter"), &Z_Registration_Info_UClass_AModularCharacter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularCharacter), 1677820301U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_633514698(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h new file mode 100644 index 00000000..afeb7bd8 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularCharacter.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularCharacter_generated_h +#error "ModularCharacter.generated.h already included, missing '#pragma once' in ModularCharacter.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularCharacter_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularCharacter(); \ + friend struct Z_Construct_UClass_AModularCharacter_Statics; \ +public: \ + DECLARE_CLASS(AModularCharacter, ACharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularCharacter) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularCharacter(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularCharacter(AModularCharacter&&); \ + AModularCharacter(const AModularCharacter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularCharacter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularCharacter); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularCharacter) \ + NO_API virtual ~AModularCharacter(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp new file mode 100644 index 00000000..d7659302 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularGameMode.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameMode() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameMode(); +ENGINE_API UClass* Z_Construct_UClass_AGameModeBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameMode(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameMode_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularGameModeBase +void AModularGameModeBase::StaticRegisterNativesAModularGameModeBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameModeBase); +UClass* Z_Construct_UClass_AModularGameModeBase_NoRegister() +{ + return AModularGameModeBase::StaticClass(); +} +struct Z_Construct_UClass_AModularGameModeBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameStateBase */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameMode.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameStateBase" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameModeBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameModeBase, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameModeBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameModeBase_Statics::ClassParams = { + &AModularGameModeBase::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameModeBase_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameModeBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameModeBase() +{ + if (!Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton, Z_Construct_UClass_AModularGameModeBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameModeBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameModeBase); +AModularGameModeBase::~AModularGameModeBase() {} +// End Class AModularGameModeBase + +// Begin Class AModularGameMode +void AModularGameMode::StaticRegisterNativesAModularGameMode() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameMode); +UClass* Z_Construct_UClass_AModularGameMode_NoRegister() +{ + return AModularGameMode::StaticClass(); +} +struct Z_Construct_UClass_AModularGameMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameState */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameMode.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameState" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameMode, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameMode_Statics::ClassParams = { + &AModularGameMode::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameMode_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameMode() +{ + if (!Z_Registration_Info_UClass_AModularGameMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameMode.OuterSingleton, Z_Construct_UClass_AModularGameMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameMode.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameMode); +AModularGameMode::~AModularGameMode() {} +// End Class AModularGameMode + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularGameModeBase, AModularGameModeBase::StaticClass, TEXT("AModularGameModeBase"), &Z_Registration_Info_UClass_AModularGameModeBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameModeBase), 2794467454U) }, + { Z_Construct_UClass_AModularGameMode, AModularGameMode::StaticClass, TEXT("AModularGameMode"), &Z_Registration_Info_UClass_AModularGameMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameMode), 2403623874U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_1145685220(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h new file mode 100644 index 00000000..da10905c --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h @@ -0,0 +1,87 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularGameMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularGameMode_generated_h +#error "ModularGameMode.generated.h already included, missing '#pragma once' in ModularGameMode.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularGameMode_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameModeBase(); \ + friend struct Z_Construct_UClass_AModularGameModeBase_Statics; \ +public: \ + DECLARE_CLASS(AModularGameModeBase, AGameModeBase, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameModeBase) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameModeBase(AModularGameModeBase&&); \ + AModularGameModeBase(const AModularGameModeBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameModeBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameModeBase); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameModeBase) \ + NO_API virtual ~AModularGameModeBase(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameMode(); \ + friend struct Z_Construct_UClass_AModularGameMode_Statics; \ +public: \ + DECLARE_CLASS(AModularGameMode, AGameMode, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameMode) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameMode(AModularGameMode&&); \ + AModularGameMode(const AModularGameMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameMode); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameMode) \ + NO_API virtual ~AModularGameMode(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp new file mode 100644 index 00000000..ecf52686 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularGameState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameState(); +ENGINE_API UClass* Z_Construct_UClass_AGameStateBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameState_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularGameStateBase +void AModularGameStateBase::StaticRegisterNativesAModularGameStateBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameStateBase); +UClass* Z_Construct_UClass_AModularGameStateBase_NoRegister() +{ + return AModularGameStateBase::StaticClass(); +} +struct Z_Construct_UClass_AModularGameStateBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameModeBase */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameModeBase" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameStateBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameStateBase, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameStateBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameStateBase_Statics::ClassParams = { + &AModularGameStateBase::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameStateBase_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameStateBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameStateBase() +{ + if (!Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton, Z_Construct_UClass_AModularGameStateBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameStateBase::StaticClass(); +} +AModularGameStateBase::AModularGameStateBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameStateBase); +AModularGameStateBase::~AModularGameStateBase() {} +// End Class AModularGameStateBase + +// Begin Class AModularGameState +void AModularGameState::StaticRegisterNativesAModularGameState() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameState); +UClass* Z_Construct_UClass_AModularGameState_NoRegister() +{ + return AModularGameState::StaticClass(); +} +struct Z_Construct_UClass_AModularGameState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameState */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameState" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameState, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameState_Statics::ClassParams = { + &AModularGameState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameState_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameState() +{ + if (!Z_Registration_Info_UClass_AModularGameState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameState.OuterSingleton, Z_Construct_UClass_AModularGameState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameState.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameState::StaticClass(); +} +AModularGameState::AModularGameState(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameState); +AModularGameState::~AModularGameState() {} +// End Class AModularGameState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularGameStateBase, AModularGameStateBase::StaticClass, TEXT("AModularGameStateBase"), &Z_Registration_Info_UClass_AModularGameStateBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameStateBase), 3304092157U) }, + { Z_Construct_UClass_AModularGameState, AModularGameState::StaticClass, TEXT("AModularGameState"), &Z_Registration_Info_UClass_AModularGameState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameState), 413129837U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_55372394(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h new file mode 100644 index 00000000..5564a33f --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularGameState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularGameState_generated_h +#error "ModularGameState.generated.h already included, missing '#pragma once' in ModularGameState.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularGameState_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameStateBase(); \ + friend struct Z_Construct_UClass_AModularGameStateBase_Statics; \ +public: \ + DECLARE_CLASS(AModularGameStateBase, AGameStateBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameStateBase) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularGameStateBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameStateBase(AModularGameStateBase&&); \ + AModularGameStateBase(const AModularGameStateBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameStateBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameStateBase); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameStateBase) \ + NO_API virtual ~AModularGameStateBase(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameState(); \ + friend struct Z_Construct_UClass_AModularGameState_Statics; \ +public: \ + DECLARE_CLASS(AModularGameState, AGameState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameState) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularGameState(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameState(AModularGameState&&); \ + AModularGameState(const AModularGameState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameState) \ + NO_API virtual ~AModularGameState(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_27_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp new file mode 100644 index 00000000..22758719 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameplayActors_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ModularGameplayActors; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ModularGameplayActors() + { + if (!Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ModularGameplayActors", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xD28E8750, + 0xFF05ED5D, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ModularGameplayActors(Z_Construct_UPackage__Script_ModularGameplayActors, TEXT("/Script/ModularGameplayActors"), Z_Registration_Info_UPackage__Script_ModularGameplayActors, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xD28E8750, 0xFF05ED5D)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp new file mode 100644 index 00000000..cd4a5032 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPawn.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPawn() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APawn(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPawn +void AModularPawn::StaticRegisterNativesAModularPawn() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPawn); +UClass* Z_Construct_UClass_AModularPawn_NoRegister() +{ + return AModularPawn::StaticClass(); +} +struct Z_Construct_UClass_AModularPawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "ModularPawn.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPawn.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPawn_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APawn, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPawn_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPawn_Statics::ClassParams = { + &AModularPawn::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPawn_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPawn_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPawn() +{ + if (!Z_Registration_Info_UClass_AModularPawn.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPawn.OuterSingleton, Z_Construct_UClass_AModularPawn_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPawn.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPawn::StaticClass(); +} +AModularPawn::AModularPawn(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPawn); +AModularPawn::~AModularPawn() {} +// End Class AModularPawn + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPawn, AModularPawn::StaticClass, TEXT("AModularPawn"), &Z_Registration_Info_UClass_AModularPawn, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPawn), 474934124U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_1899582909(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h new file mode 100644 index 00000000..ccfb7191 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPawn.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPawn_generated_h +#error "ModularPawn.generated.h already included, missing '#pragma once' in ModularPawn.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPawn_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPawn(); \ + friend struct Z_Construct_UClass_AModularPawn_Statics; \ +public: \ + DECLARE_CLASS(AModularPawn, APawn, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPawn) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPawn(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPawn(AModularPawn&&); \ + AModularPawn(const AModularPawn&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPawn); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPawn); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPawn) \ + NO_API virtual ~AModularPawn(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp new file mode 100644 index 00000000..afb0a7bc --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPlayerController() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPlayerController +void AModularPlayerController::StaticRegisterNativesAModularPlayerController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPlayerController); +UClass* Z_Construct_UClass_AModularPlayerController_NoRegister() +{ + return AModularPlayerController::StaticClass(); +} +struct Z_Construct_UClass_AModularPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "ModularPlayerController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPlayerController_Statics::ClassParams = { + &AModularPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPlayerController() +{ + if (!Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton, Z_Construct_UClass_AModularPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPlayerController::StaticClass(); +} +AModularPlayerController::AModularPlayerController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPlayerController); +AModularPlayerController::~AModularPlayerController() {} +// End Class AModularPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPlayerController, AModularPlayerController::StaticClass, TEXT("AModularPlayerController"), &Z_Registration_Info_UClass_AModularPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPlayerController), 2786124503U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_3981684226(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h new file mode 100644 index 00000000..fd8582ab --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPlayerController_generated_h +#error "ModularPlayerController.generated.h already included, missing '#pragma once' in ModularPlayerController.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPlayerController_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPlayerController(); \ + friend struct Z_Construct_UClass_AModularPlayerController_Statics; \ +public: \ + DECLARE_CLASS(AModularPlayerController, APlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPlayerController) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPlayerController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPlayerController(AModularPlayerController&&); \ + AModularPlayerController(const AModularPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPlayerController) \ + NO_API virtual ~AModularPlayerController(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp new file mode 100644 index 00000000..7a21c657 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp @@ -0,0 +1,101 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPlayerState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPlayerState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPlayerState +void AModularPlayerState::StaticRegisterNativesAModularPlayerState() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPlayerState); +UClass* Z_Construct_UClass_AModularPlayerState_NoRegister() +{ + return AModularPlayerState::StaticClass(); +} +struct Z_Construct_UClass_AModularPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularPlayerState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPlayerState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPlayerState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerState, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPlayerState_Statics::ClassParams = { + &AModularPlayerState::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerState_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPlayerState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPlayerState() +{ + if (!Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton, Z_Construct_UClass_AModularPlayerState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPlayerState::StaticClass(); +} +AModularPlayerState::AModularPlayerState(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPlayerState); +AModularPlayerState::~AModularPlayerState() {} +// End Class AModularPlayerState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPlayerState, AModularPlayerState::StaticClass, TEXT("AModularPlayerState"), &Z_Registration_Info_UClass_AModularPlayerState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPlayerState), 3348002101U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_3452385309(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h new file mode 100644 index 00000000..599ab383 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPlayerState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPlayerState_generated_h +#error "ModularPlayerState.generated.h already included, missing '#pragma once' in ModularPlayerState.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPlayerState_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPlayerState(); \ + friend struct Z_Construct_UClass_AModularPlayerState_Statics; \ +public: \ + DECLARE_CLASS(AModularPlayerState, APlayerState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPlayerState) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPlayerState(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPlayerState(AModularPlayerState&&); \ + AModularPlayerState(const AModularPlayerState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPlayerState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPlayerState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPlayerState) \ + NO_API virtual ~AModularPlayerState(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/Timestamp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/Timestamp new file mode 100644 index 00000000..d7f59db7 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/Timestamp @@ -0,0 +1,7 @@ +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularAIController.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularCharacter.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularGameMode.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularGameState.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPawn.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPlayerController.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPlayerState.h diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp new file mode 100644 index 00000000..cd8d2538 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularAIController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularAIController() {} + +// Begin Cross Module References +AIMODULE_API UClass* Z_Construct_UClass_AAIController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularAIController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularAIController +void AModularAIController::StaticRegisterNativesAModularAIController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularAIController); +UClass* Z_Construct_UClass_AModularAIController_NoRegister() +{ + return AModularAIController::StaticClass(); +} +struct Z_Construct_UClass_AModularAIController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "ModularAIController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularAIController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularAIController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AAIController, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularAIController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularAIController_Statics::ClassParams = { + &AModularAIController::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularAIController_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularAIController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularAIController() +{ + if (!Z_Registration_Info_UClass_AModularAIController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularAIController.OuterSingleton, Z_Construct_UClass_AModularAIController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularAIController.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularAIController::StaticClass(); +} +AModularAIController::AModularAIController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularAIController); +AModularAIController::~AModularAIController() {} +// End Class AModularAIController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularAIController, AModularAIController::StaticClass, TEXT("AModularAIController"), &Z_Registration_Info_UClass_AModularAIController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularAIController), 2638154365U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_3186519544(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h new file mode 100644 index 00000000..446d8b48 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularAIController.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularAIController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularAIController_generated_h +#error "ModularAIController.generated.h already included, missing '#pragma once' in ModularAIController.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularAIController_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularAIController(); \ + friend struct Z_Construct_UClass_AModularAIController_Statics; \ +public: \ + DECLARE_CLASS(AModularAIController, AAIController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularAIController) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularAIController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularAIController(AModularAIController&&); \ + AModularAIController(const AModularAIController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularAIController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularAIController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularAIController) \ + NO_API virtual ~AModularAIController(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularAIController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp new file mode 100644 index 00000000..aabf4bc7 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularCharacter.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularCharacter() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_ACharacter(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularCharacter_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularCharacter +void AModularCharacter::StaticRegisterNativesAModularCharacter() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularCharacter); +UClass* Z_Construct_UClass_AModularCharacter_NoRegister() +{ + return AModularCharacter::StaticClass(); +} +struct Z_Construct_UClass_AModularCharacter_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "ModularCharacter.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularCharacter.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularCharacter_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_ACharacter, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularCharacter_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularCharacter_Statics::ClassParams = { + &AModularCharacter::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularCharacter_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularCharacter_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularCharacter() +{ + if (!Z_Registration_Info_UClass_AModularCharacter.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularCharacter.OuterSingleton, Z_Construct_UClass_AModularCharacter_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularCharacter.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularCharacter::StaticClass(); +} +AModularCharacter::AModularCharacter(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularCharacter); +AModularCharacter::~AModularCharacter() {} +// End Class AModularCharacter + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularCharacter, AModularCharacter::StaticClass, TEXT("AModularCharacter"), &Z_Registration_Info_UClass_AModularCharacter, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularCharacter), 1677820301U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_633514698(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h new file mode 100644 index 00000000..afeb7bd8 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularCharacter.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularCharacter.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularCharacter_generated_h +#error "ModularCharacter.generated.h already included, missing '#pragma once' in ModularCharacter.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularCharacter_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularCharacter(); \ + friend struct Z_Construct_UClass_AModularCharacter_Statics; \ +public: \ + DECLARE_CLASS(AModularCharacter, ACharacter, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularCharacter) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularCharacter(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularCharacter(AModularCharacter&&); \ + AModularCharacter(const AModularCharacter&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularCharacter); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularCharacter); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularCharacter) \ + NO_API virtual ~AModularCharacter(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularCharacter_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp new file mode 100644 index 00000000..d7659302 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularGameMode.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameMode() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameMode(); +ENGINE_API UClass* Z_Construct_UClass_AGameModeBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameMode(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameMode_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameModeBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularGameModeBase +void AModularGameModeBase::StaticRegisterNativesAModularGameModeBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameModeBase); +UClass* Z_Construct_UClass_AModularGameModeBase_NoRegister() +{ + return AModularGameModeBase::StaticClass(); +} +struct Z_Construct_UClass_AModularGameModeBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameStateBase */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameMode.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameStateBase" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameModeBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameModeBase, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameModeBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameModeBase_Statics::ClassParams = { + &AModularGameModeBase::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameModeBase_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameModeBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameModeBase() +{ + if (!Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton, Z_Construct_UClass_AModularGameModeBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameModeBase.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameModeBase::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameModeBase); +AModularGameModeBase::~AModularGameModeBase() {} +// End Class AModularGameModeBase + +// Begin Class AModularGameMode +void AModularGameMode::StaticRegisterNativesAModularGameMode() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameMode); +UClass* Z_Construct_UClass_AModularGameMode_NoRegister() +{ + return AModularGameMode::StaticClass(); +} +struct Z_Construct_UClass_AModularGameMode_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameState */" }, +#endif + { "HideCategories", "Info Rendering MovementReplication Replication Actor Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameMode.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameMode.h" }, + { "ObjectInitializerConstructorDeclared", "" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameState" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameMode_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameMode, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameMode_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameMode_Statics::ClassParams = { + &AModularGameMode::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002ACu, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameMode_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameMode_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameMode() +{ + if (!Z_Registration_Info_UClass_AModularGameMode.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameMode.OuterSingleton, Z_Construct_UClass_AModularGameMode_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameMode.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameMode::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameMode); +AModularGameMode::~AModularGameMode() {} +// End Class AModularGameMode + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularGameModeBase, AModularGameModeBase::StaticClass, TEXT("AModularGameModeBase"), &Z_Registration_Info_UClass_AModularGameModeBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameModeBase), 2794467454U) }, + { Z_Construct_UClass_AModularGameMode, AModularGameMode::StaticClass, TEXT("AModularGameMode"), &Z_Registration_Info_UClass_AModularGameMode, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameMode), 2403623874U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_1145685220(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h new file mode 100644 index 00000000..da10905c --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameMode.generated.h @@ -0,0 +1,87 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularGameMode.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularGameMode_generated_h +#error "ModularGameMode.generated.h already included, missing '#pragma once' in ModularGameMode.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularGameMode_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameModeBase(); \ + friend struct Z_Construct_UClass_AModularGameModeBase_Statics; \ +public: \ + DECLARE_CLASS(AModularGameModeBase, AGameModeBase, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameModeBase) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameModeBase(AModularGameModeBase&&); \ + AModularGameModeBase(const AModularGameModeBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameModeBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameModeBase); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameModeBase) \ + NO_API virtual ~AModularGameModeBase(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameMode(); \ + friend struct Z_Construct_UClass_AModularGameMode_Statics; \ +public: \ + DECLARE_CLASS(AModularGameMode, AGameMode, COMPILED_IN_FLAGS(0 | CLASS_Transient | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameMode) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameMode(AModularGameMode&&); \ + AModularGameMode(const AModularGameMode&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameMode); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameMode); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameMode) \ + NO_API virtual ~AModularGameMode(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_22_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h_25_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameMode_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp new file mode 100644 index 00000000..ecf52686 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.gen.cpp @@ -0,0 +1,175 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularGameState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_AGameState(); +ENGINE_API UClass* Z_Construct_UClass_AGameStateBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameState_NoRegister(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularGameStateBase_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularGameStateBase +void AModularGameStateBase::StaticRegisterNativesAModularGameStateBase() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameStateBase); +UClass* Z_Construct_UClass_AModularGameStateBase_NoRegister() +{ + return AModularGameStateBase::StaticClass(); +} +struct Z_Construct_UClass_AModularGameStateBase_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameModeBase */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameModeBase" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameStateBase_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameStateBase, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameStateBase_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameStateBase_Statics::ClassParams = { + &AModularGameStateBase::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameStateBase_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameStateBase_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameStateBase() +{ + if (!Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton, Z_Construct_UClass_AModularGameStateBase_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameStateBase.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameStateBase::StaticClass(); +} +AModularGameStateBase::AModularGameStateBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameStateBase); +AModularGameStateBase::~AModularGameStateBase() {} +// End Class AModularGameStateBase + +// Begin Class AModularGameState +void AModularGameState::StaticRegisterNativesAModularGameState() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularGameState); +UClass* Z_Construct_UClass_AModularGameState_NoRegister() +{ + return AModularGameState::StaticClass(); +} +struct Z_Construct_UClass_AModularGameState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Pair this with a ModularGameState */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularGameState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularGameState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Pair this with a ModularGameState" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularGameState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_AGameState, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularGameState_Statics::ClassParams = { + &AModularGameState::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularGameState_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularGameState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularGameState() +{ + if (!Z_Registration_Info_UClass_AModularGameState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularGameState.OuterSingleton, Z_Construct_UClass_AModularGameState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularGameState.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularGameState::StaticClass(); +} +AModularGameState::AModularGameState(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularGameState); +AModularGameState::~AModularGameState() {} +// End Class AModularGameState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularGameStateBase, AModularGameStateBase::StaticClass, TEXT("AModularGameStateBase"), &Z_Registration_Info_UClass_AModularGameStateBase, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameStateBase), 3304092157U) }, + { Z_Construct_UClass_AModularGameState, AModularGameState::StaticClass, TEXT("AModularGameState"), &Z_Registration_Info_UClass_AModularGameState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularGameState), 413129837U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_55372394(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h new file mode 100644 index 00000000..5564a33f --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameState.generated.h @@ -0,0 +1,91 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularGameState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularGameState_generated_h +#error "ModularGameState.generated.h already included, missing '#pragma once' in ModularGameState.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularGameState_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameStateBase(); \ + friend struct Z_Construct_UClass_AModularGameStateBase_Statics; \ +public: \ + DECLARE_CLASS(AModularGameStateBase, AGameStateBase, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameStateBase) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularGameStateBase(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameStateBase(AModularGameStateBase&&); \ + AModularGameStateBase(const AModularGameStateBase&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameStateBase); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameStateBase); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameStateBase) \ + NO_API virtual ~AModularGameStateBase(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularGameState(); \ + friend struct Z_Construct_UClass_AModularGameState_Statics; \ +public: \ + DECLARE_CLASS(AModularGameState, AGameState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularGameState) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularGameState(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularGameState(AModularGameState&&); \ + AModularGameState(const AModularGameState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularGameState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularGameState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularGameState) \ + NO_API virtual ~AModularGameState(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_27_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h_30_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularGameState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp new file mode 100644 index 00000000..22758719 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularGameplayActors_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_ModularGameplayActors; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_ModularGameplayActors() + { + if (!Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/ModularGameplayActors", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0xD28E8750, + 0xFF05ED5D, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_ModularGameplayActors.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_ModularGameplayActors(Z_Construct_UPackage__Script_ModularGameplayActors, TEXT("/Script/ModularGameplayActors"), Z_Registration_Info_UPackage__Script_ModularGameplayActors, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xD28E8750, 0xFF05ED5D)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActorsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp new file mode 100644 index 00000000..cd4a5032 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPawn.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPawn() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APawn(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPawn_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPawn +void AModularPawn::StaticRegisterNativesAModularPawn() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPawn); +UClass* Z_Construct_UClass_AModularPawn_NoRegister() +{ + return AModularPawn::StaticClass(); +} +struct Z_Construct_UClass_AModularPawn_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Navigation" }, + { "IncludePath", "ModularPawn.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPawn.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPawn_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APawn, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPawn_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPawn_Statics::ClassParams = { + &AModularPawn::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009000A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPawn_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPawn_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPawn() +{ + if (!Z_Registration_Info_UClass_AModularPawn.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPawn.OuterSingleton, Z_Construct_UClass_AModularPawn_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPawn.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPawn::StaticClass(); +} +AModularPawn::AModularPawn(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPawn); +AModularPawn::~AModularPawn() {} +// End Class AModularPawn + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPawn, AModularPawn::StaticClass, TEXT("AModularPawn"), &Z_Registration_Info_UClass_AModularPawn, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPawn), 474934124U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_1899582909(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h new file mode 100644 index 00000000..ccfb7191 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPawn.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPawn.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPawn_generated_h +#error "ModularPawn.generated.h already included, missing '#pragma once' in ModularPawn.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPawn_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPawn(); \ + friend struct Z_Construct_UClass_AModularPawn_Statics; \ +public: \ + DECLARE_CLASS(AModularPawn, APawn, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPawn) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPawn(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPawn(AModularPawn&&); \ + AModularPawn(const AModularPawn&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPawn); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPawn); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPawn) \ + NO_API virtual ~AModularPawn(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPawn_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp new file mode 100644 index 00000000..afb0a7bc --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.gen.cpp @@ -0,0 +1,100 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPlayerController.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPlayerController() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerController_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPlayerController +void AModularPlayerController::StaticRegisterNativesAModularPlayerController() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPlayerController); +UClass* Z_Construct_UClass_AModularPlayerController_NoRegister() +{ + return AModularPlayerController::StaticClass(); +} +struct Z_Construct_UClass_AModularPlayerController_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Collision Rendering Transformation" }, + { "IncludePath", "ModularPlayerController.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPlayerController.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPlayerController_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerController, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerController_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPlayerController_Statics::ClassParams = { + &AModularPlayerController::StaticClass, + "Game", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerController_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPlayerController_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPlayerController() +{ + if (!Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton, Z_Construct_UClass_AModularPlayerController_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPlayerController.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPlayerController::StaticClass(); +} +AModularPlayerController::AModularPlayerController(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPlayerController); +AModularPlayerController::~AModularPlayerController() {} +// End Class AModularPlayerController + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPlayerController, AModularPlayerController::StaticClass, TEXT("AModularPlayerController"), &Z_Registration_Info_UClass_AModularPlayerController, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPlayerController), 2786124503U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_3981684226(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h new file mode 100644 index 00000000..fd8582ab --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerController.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPlayerController.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPlayerController_generated_h +#error "ModularPlayerController.generated.h already included, missing '#pragma once' in ModularPlayerController.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPlayerController_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPlayerController(); \ + friend struct Z_Construct_UClass_AModularPlayerController_Statics; \ +public: \ + DECLARE_CLASS(AModularPlayerController, APlayerController, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPlayerController) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPlayerController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPlayerController(AModularPlayerController&&); \ + AModularPlayerController(const AModularPlayerController&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPlayerController); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPlayerController); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPlayerController) \ + NO_API virtual ~AModularPlayerController(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_12_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h_15_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerController_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp new file mode 100644 index 00000000..7a21c657 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.gen.cpp @@ -0,0 +1,101 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "ModularGameplayActors/Public/ModularPlayerState.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeModularPlayerState() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_APlayerState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState(); +MODULARGAMEPLAYACTORS_API UClass* Z_Construct_UClass_AModularPlayerState_NoRegister(); +UPackage* Z_Construct_UPackage__Script_ModularGameplayActors(); +// End Cross Module References + +// Begin Class AModularPlayerState +void AModularPlayerState::StaticRegisterNativesAModularPlayerState() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AModularPlayerState); +UClass* Z_Construct_UClass_AModularPlayerState_NoRegister() +{ + return AModularPlayerState::StaticClass(); +} +struct Z_Construct_UClass_AModularPlayerState_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** Minimal class that supports extension by game feature plugins */" }, +#endif + { "HideCategories", "Input Movement Collision Rendering HLOD WorldPartition DataLayers Transformation" }, + { "IncludePath", "ModularPlayerState.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/ModularPlayerState.h" }, + { "ShowCategories", "Input|MouseInput Input|TouchInput" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Minimal class that supports extension by game feature plugins" }, +#endif + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_AModularPlayerState_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_APlayerState, + (UObject* (*)())Z_Construct_UPackage__Script_ModularGameplayActors, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerState_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_AModularPlayerState_Statics::ClassParams = { + &AModularPlayerState::StaticClass, + "Engine", + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + 0, + 0, + 0x009002A4u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_AModularPlayerState_Statics::Class_MetaDataParams), Z_Construct_UClass_AModularPlayerState_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_AModularPlayerState() +{ + if (!Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton, Z_Construct_UClass_AModularPlayerState_Statics::ClassParams); + } + return Z_Registration_Info_UClass_AModularPlayerState.OuterSingleton; +} +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass() +{ + return AModularPlayerState::StaticClass(); +} +AModularPlayerState::AModularPlayerState(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {} +DEFINE_VTABLE_PTR_HELPER_CTOR(AModularPlayerState); +AModularPlayerState::~AModularPlayerState() {} +// End Class AModularPlayerState + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_AModularPlayerState, AModularPlayerState::StaticClass, TEXT("AModularPlayerState"), &Z_Registration_Info_UClass_AModularPlayerState, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AModularPlayerState), 3348002101U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_3452385309(TEXT("/Script/ModularGameplayActors"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h new file mode 100644 index 00000000..599ab383 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularPlayerState.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "ModularPlayerState.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef MODULARGAMEPLAYACTORS_ModularPlayerState_generated_h +#error "ModularPlayerState.generated.h already included, missing '#pragma once' in ModularPlayerState.h" +#endif +#define MODULARGAMEPLAYACTORS_ModularPlayerState_generated_h + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesAModularPlayerState(); \ + friend struct Z_Construct_UClass_AModularPlayerState_Statics; \ +public: \ + DECLARE_CLASS(AModularPlayerState, APlayerState, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/ModularGameplayActors"), NO_API) \ + DECLARE_SERIALIZER(AModularPlayerState) + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API AModularPlayerState(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + AModularPlayerState(AModularPlayerState&&); \ + AModularPlayerState(const AModularPlayerState&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AModularPlayerState); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AModularPlayerState); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AModularPlayerState) \ + NO_API virtual ~AModularPlayerState(); + + +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_14_PROLOG +#define FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h_17_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> MODULARGAMEPLAYACTORS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_ModularGameplayActors_Source_ModularGameplayActors_Public_ModularPlayerState_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/Timestamp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/Timestamp new file mode 100644 index 00000000..7dab23a5 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/Timestamp @@ -0,0 +1,7 @@ +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularAIController.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularCharacter.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularGameState.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularGameMode.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPlayerController.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPawn.h +E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public\ModularPlayerState.h diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Default.rc2.res.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Default.rc2.res.rsp new file mode 100644 index 00000000..5a021279 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-ModularGameplayActors.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Definitions.ModularGameplayActors.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Definitions.ModularGameplayActors.h new file mode 100644 index 00000000..fe4cc785 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Definitions.ModularGameplayActors.h @@ -0,0 +1,25 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for ModularGameplayActors +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef MODULARGAMEPLAYACTORS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "ModularGameplayActors" +#define UE_PLUGIN_NAME "ModularGameplayActors" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define MODULARGAMEPLAYACTORS_API DLLEXPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define AIMODULE_API DLLIMPORT diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/LiveCodingInfo.json b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/LiveCodingInfo.json new file mode 100644 index 00000000..334844bf --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/LiveCodingInfo.json @@ -0,0 +1,17 @@ +{ + "RemapUnityFiles": + { + "Module.ModularGameplayActors.cpp.obj": [ + "ModularGameplayActors.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "ModularAIController.cpp.obj", + "ModularCharacter.cpp.obj", + "ModularGameMode.cpp.obj", + "ModularGameplayActorsModule.cpp.obj", + "ModularGameState.cpp.obj", + "ModularPawn.cpp.obj", + "ModularPlayerController.cpp.obj", + "ModularPlayerState.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/ModularGameplayActors.Shared.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/ModularGameplayActors.Shared.rsp new file mode 100644 index 00000000..04232495 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/ModularGameplayActors.Shared.rsp @@ -0,0 +1,308 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Private" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp new file mode 100644 index 00000000..394d3c11 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp @@ -0,0 +1,11 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealEditor/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularAIController.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularCharacter.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameMode.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameplayActorsModule.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameState.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPawn.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPlayerController.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPlayerState.cpp" diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp new file mode 100644 index 00000000..9fa3eafc --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Definitions.ModularGameplayActors.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\ModularGameplayActors.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/PerModuleInline.gen.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.dll.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.dll.rsp new file mode 100644 index 00000000..db411018 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.dll.rsp @@ -0,0 +1,74 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp.obj" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplay\UnrealEditor-ModularGameplay.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\AIModule\UnrealEditor-AIModule.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor-ModularGameplayActors.dll" +/PDB:"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Binaries\Win64\UnrealEditor-ModularGameplayActors.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.lib.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.lib.rsp new file mode 100644 index 00000000..11642324 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealEditor/Development/ModularGameplayActors/UnrealEditor-ModularGameplayActors.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-ModularGameplayActors.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Module.ModularGameplayActors.cpp.obj" +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealEditor\Development\ModularGameplayActors\UnrealEditor-ModularGameplayActors.lib" \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Definitions.ModularGameplayActors.h b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Definitions.ModularGameplayActors.h new file mode 100644 index 00000000..640cc77d --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Definitions.ModularGameplayActors.h @@ -0,0 +1,36 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for ModularGameplayActors +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef MODULARGAMEPLAYACTORS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "ModularGameplayActors" +#define UE_PLUGIN_NAME "ModularGameplayActors" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define MODULARGAMEPLAYACTORS_API +#define MODULARGAMEPLAY_API +#define WITH_RECAST 1 +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define AIMODULE_API +#define GAMEPLAYTASKS_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/ModularGameplayActors.Shared.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/ModularGameplayActors.Shared.rsp new file mode 100644 index 00000000..fbca5d5e --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/ModularGameplayActors.Shared.rsp @@ -0,0 +1,155 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Private" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp new file mode 100644 index 00000000..ea3e2898 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp @@ -0,0 +1,10 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Intermediate/Build/Win64/UnrealGame/Inc/ModularGameplayActors/UHT/ModularGameplayActors.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularAIController.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularCharacter.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameMode.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameplayActorsModule.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularGameState.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPawn.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPlayerController.cpp" +#include "E:/Projects/cross_platform/Plugins/ModularGameplayActors/Source/ModularGameplayActors/Private/ModularPlayerState.cpp" diff --git a/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp new file mode 100644 index 00000000..2bac3069 --- /dev/null +++ b/Plugins/ModularGameplayActors/Intermediate/Build/Win64/x64/UnrealGame/Shipping/ModularGameplayActors/Module.ModularGameplayActors.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\Module.ModularGameplayActors.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\Definitions.ModularGameplayActors.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\Module.ModularGameplayActors.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\Module.ModularGameplayActors.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\Module.ModularGameplayActors.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\x64\UnrealGame\Shipping\ModularGameplayActors\ModularGameplayActors.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp new file mode 100644 index 00000000..97eab3e6 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp @@ -0,0 +1,665 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketCapture.h" +#include "Public/PocketCaptureSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketCapture() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInterface_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneCaptureComponent2D_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTextureRenderTarget2D_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketCapture Function CaptureAlphaMask +struct Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureAlphaMask", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureAlphaMask) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureAlphaMask(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureAlphaMask + +// Begin Class UPocketCapture Function CaptureDiffuse +struct Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureDiffuse", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureDiffuse() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureDiffuse) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureDiffuse(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureDiffuse + +// Begin Class UPocketCapture Function CaptureEffects +struct Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureEffects(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureEffects + +// Begin Class UPocketCapture Function GetOrCreateAlphaMaskRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateAlphaMaskRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateAlphaMaskRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateAlphaMaskRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateAlphaMaskRenderTarget + +// Begin Class UPocketCapture Function GetOrCreateDiffuseRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateDiffuseRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateDiffuseRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateDiffuseRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateDiffuseRenderTarget + +// Begin Class UPocketCapture Function GetOrCreateEffectsRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateEffectsRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateEffectsRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateEffectsRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateEffectsRenderTarget + +// Begin Class UPocketCapture Function GetRendererIndex +struct Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics +{ + struct PocketCapture_eventGetRendererIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetRendererIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetRendererIndex", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PocketCapture_eventGetRendererIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PocketCapture_eventGetRendererIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetRendererIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetRendererIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetRendererIndex(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetRendererIndex + +// Begin Class UPocketCapture Function ReclaimResources +struct Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "ReclaimResources", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_ReclaimResources() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execReclaimResources) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReclaimResources(); + P_NATIVE_END; +} +// End Class UPocketCapture Function ReclaimResources + +// Begin Class UPocketCapture Function ReleaseResources +struct Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "ReleaseResources", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_ReleaseResources() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execReleaseResources) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReleaseResources(); + P_NATIVE_END; +} +// End Class UPocketCapture Function ReleaseResources + +// Begin Class UPocketCapture Function SetAlphaMaskedActors +struct Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics +{ + struct PocketCapture_eventSetAlphaMaskedActors_Parms + { + TArray InCaptureTarget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InCaptureTarget_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InCaptureTarget_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InCaptureTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget_Inner = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetAlphaMaskedActors_Parms, InCaptureTarget), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InCaptureTarget_MetaData), NewProp_InCaptureTarget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetAlphaMaskedActors", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PocketCapture_eventSetAlphaMaskedActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PocketCapture_eventSetAlphaMaskedActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetAlphaMaskedActors) +{ + P_GET_TARRAY_REF(AActor*,Z_Param_Out_InCaptureTarget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAlphaMaskedActors(Z_Param_Out_InCaptureTarget); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetAlphaMaskedActors + +// Begin Class UPocketCapture Function SetCaptureTarget +struct Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics +{ + struct PocketCapture_eventSetCaptureTarget_Parms + { + AActor* InCaptureTarget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InCaptureTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::NewProp_InCaptureTarget = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetCaptureTarget_Parms, InCaptureTarget), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::NewProp_InCaptureTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetCaptureTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PocketCapture_eventSetCaptureTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PocketCapture_eventSetCaptureTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetCaptureTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetCaptureTarget) +{ + P_GET_OBJECT(AActor,Z_Param_InCaptureTarget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetCaptureTarget(Z_Param_InCaptureTarget); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetCaptureTarget + +// Begin Class UPocketCapture Function SetRenderTargetSize +struct Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics +{ + struct PocketCapture_eventSetRenderTargetSize_Parms + { + int32 Width; + int32 Height; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Width; + static const UECodeGen_Private::FIntPropertyParams NewProp_Height; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Width = { "Width", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetRenderTargetSize_Parms, Width), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Height = { "Height", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetRenderTargetSize_Parms, Height), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Width, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Height, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetRenderTargetSize", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PocketCapture_eventSetRenderTargetSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PocketCapture_eventSetRenderTargetSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetRenderTargetSize) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_Width); + P_GET_PROPERTY(FIntProperty,Z_Param_Height); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetRenderTargetSize(Z_Param_Width,Z_Param_Height); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetRenderTargetSize + +// Begin Class UPocketCapture +void UPocketCapture::StaticRegisterNativesUPocketCapture() +{ + UClass* Class = UPocketCapture::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CaptureAlphaMask", &UPocketCapture::execCaptureAlphaMask }, + { "CaptureDiffuse", &UPocketCapture::execCaptureDiffuse }, + { "CaptureEffects", &UPocketCapture::execCaptureEffects }, + { "GetOrCreateAlphaMaskRenderTarget", &UPocketCapture::execGetOrCreateAlphaMaskRenderTarget }, + { "GetOrCreateDiffuseRenderTarget", &UPocketCapture::execGetOrCreateDiffuseRenderTarget }, + { "GetOrCreateEffectsRenderTarget", &UPocketCapture::execGetOrCreateEffectsRenderTarget }, + { "GetRendererIndex", &UPocketCapture::execGetRendererIndex }, + { "ReclaimResources", &UPocketCapture::execReclaimResources }, + { "ReleaseResources", &UPocketCapture::execReleaseResources }, + { "SetAlphaMaskedActors", &UPocketCapture::execSetAlphaMaskedActors }, + { "SetCaptureTarget", &UPocketCapture::execSetCaptureTarget }, + { "SetRenderTargetSize", &UPocketCapture::execSetRenderTargetSize }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketCapture); +UClass* Z_Construct_UClass_UPocketCapture_NoRegister() +{ + return UPocketCapture::StaticClass(); +} +struct Z_Construct_UClass_UPocketCapture_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "PocketCapture.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskMaterial_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectMaskMaterial_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateWorld_MetaData[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RendererIndex_MetaData[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceWidth_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceHeight_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DiffuseRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectsRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CaptureComponent_MetaData[] = { + { "Category", "PocketCapture" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CaptureTargetPtr_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskActorPtrs_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlphaMaskMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EffectMaskMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PrivateWorld; + static const UECodeGen_Private::FIntPropertyParams NewProp_RendererIndex; + static const UECodeGen_Private::FIntPropertyParams NewProp_SurfaceWidth; + static const UECodeGen_Private::FIntPropertyParams NewProp_SurfaceHeight; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DiffuseRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlphaMaskRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EffectsRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CaptureComponent; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_CaptureTargetPtr; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_AlphaMaskActorPtrs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AlphaMaskActorPtrs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask, "CaptureAlphaMask" }, // 603762348 + { &Z_Construct_UFunction_UPocketCapture_CaptureDiffuse, "CaptureDiffuse" }, // 1238638229 + { &Z_Construct_UFunction_UPocketCapture_CaptureEffects, "CaptureEffects" }, // 887490962 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget, "GetOrCreateAlphaMaskRenderTarget" }, // 4063671220 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget, "GetOrCreateDiffuseRenderTarget" }, // 1117577952 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget, "GetOrCreateEffectsRenderTarget" }, // 83282991 + { &Z_Construct_UFunction_UPocketCapture_GetRendererIndex, "GetRendererIndex" }, // 443678890 + { &Z_Construct_UFunction_UPocketCapture_ReclaimResources, "ReclaimResources" }, // 1706209848 + { &Z_Construct_UFunction_UPocketCapture_ReleaseResources, "ReleaseResources" }, // 2654738113 + { &Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors, "SetAlphaMaskedActors" }, // 4035327545 + { &Z_Construct_UFunction_UPocketCapture_SetCaptureTarget, "SetCaptureTarget" }, // 3819177160 + { &Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize, "SetRenderTargetSize" }, // 2911370819 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskMaterial = { "AlphaMaskMaterial", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskMaterial_MetaData), NewProp_AlphaMaskMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectMaskMaterial = { "EffectMaskMaterial", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, EffectMaskMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectMaskMaterial_MetaData), NewProp_EffectMaskMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_PrivateWorld = { "PrivateWorld", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, PrivateWorld), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateWorld_MetaData), NewProp_PrivateWorld_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_RendererIndex = { "RendererIndex", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, RendererIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RendererIndex_MetaData), NewProp_RendererIndex_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceWidth = { "SurfaceWidth", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, SurfaceWidth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceWidth_MetaData), NewProp_SurfaceWidth_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceHeight = { "SurfaceHeight", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, SurfaceHeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceHeight_MetaData), NewProp_SurfaceHeight_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_DiffuseRT = { "DiffuseRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, DiffuseRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DiffuseRT_MetaData), NewProp_DiffuseRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskRT = { "AlphaMaskRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskRT_MetaData), NewProp_AlphaMaskRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectsRT = { "EffectsRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, EffectsRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectsRT_MetaData), NewProp_EffectsRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureComponent = { "CaptureComponent", nullptr, (EPropertyFlags)0x01240800000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, CaptureComponent), Z_Construct_UClass_USceneCaptureComponent2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CaptureComponent_MetaData), NewProp_CaptureComponent_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureTargetPtr = { "CaptureTargetPtr", nullptr, (EPropertyFlags)0x0024080000020001, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, CaptureTargetPtr), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CaptureTargetPtr_MetaData), NewProp_CaptureTargetPtr_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs_Inner = { "AlphaMaskActorPtrs", nullptr, (EPropertyFlags)0x0004000000020000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs = { "AlphaMaskActorPtrs", nullptr, (EPropertyFlags)0x0024080000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskActorPtrs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskActorPtrs_MetaData), NewProp_AlphaMaskActorPtrs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketCapture_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectMaskMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_PrivateWorld, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_RendererIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_DiffuseRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectsRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureTargetPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketCapture_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketCapture_Statics::ClassParams = { + &UPocketCapture::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPocketCapture_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketCapture_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketCapture() +{ + if (!Z_Registration_Info_UClass_UPocketCapture.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketCapture.OuterSingleton, Z_Construct_UClass_UPocketCapture_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketCapture.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketCapture::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketCapture); +UPocketCapture::~UPocketCapture() {} +// End Class UPocketCapture + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketCapture, UPocketCapture::StaticClass, TEXT("UPocketCapture"), &Z_Registration_Info_UClass_UPocketCapture, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketCapture), 3128879388U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_3857181667(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.generated.h new file mode 100644 index 00000000..7bceca68 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCapture.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketCapture.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UTextureRenderTarget2D; +#ifdef POCKETWORLDS_PocketCapture_generated_h +#error "PocketCapture.generated.h already included, missing '#pragma once' in PocketCapture.h" +#endif +#define POCKETWORLDS_PocketCapture_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetRendererIndex); \ + DECLARE_FUNCTION(execReclaimResources); \ + DECLARE_FUNCTION(execReleaseResources); \ + DECLARE_FUNCTION(execCaptureEffects); \ + DECLARE_FUNCTION(execCaptureAlphaMask); \ + DECLARE_FUNCTION(execCaptureDiffuse); \ + DECLARE_FUNCTION(execSetAlphaMaskedActors); \ + DECLARE_FUNCTION(execSetCaptureTarget); \ + DECLARE_FUNCTION(execGetOrCreateEffectsRenderTarget); \ + DECLARE_FUNCTION(execGetOrCreateAlphaMaskRenderTarget); \ + DECLARE_FUNCTION(execGetOrCreateDiffuseRenderTarget); \ + DECLARE_FUNCTION(execSetRenderTargetSize); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketCapture(); \ + friend struct Z_Construct_UClass_UPocketCapture_Statics; \ +public: \ + DECLARE_CLASS(UPocketCapture, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketCapture) \ + DECLARE_WITHIN(UPocketCaptureSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketCapture(UPocketCapture&&); \ + UPocketCapture(const UPocketCapture&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketCapture); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketCapture); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UPocketCapture) \ + NO_API virtual ~UPocketCapture(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_19_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp new file mode 100644 index 00000000..3000650c --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp @@ -0,0 +1,199 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketCaptureSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketCaptureSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCaptureSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCaptureSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketCaptureSubsystem Function CreateThumbnailRenderer +struct Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics +{ + struct PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms + { + TSubclassOf PocketCaptureClass; + UPocketCapture* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// End USubsystem\n" }, +#endif + { "DeterminesOutputType", "PocketCaptureClass" }, + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "End USubsystem" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PocketCaptureClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_PocketCaptureClass = { "PocketCaptureClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms, PocketCaptureClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms, ReturnValue), Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_PocketCaptureClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCaptureSubsystem, nullptr, "CreateThumbnailRenderer", nullptr, nullptr, Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCaptureSubsystem::execCreateThumbnailRenderer) +{ + P_GET_OBJECT(UClass,Z_Param_PocketCaptureClass); + P_FINISH; + P_NATIVE_BEGIN; + *(UPocketCapture**)Z_Param__Result=P_THIS->CreateThumbnailRenderer(Z_Param_PocketCaptureClass); + P_NATIVE_END; +} +// End Class UPocketCaptureSubsystem Function CreateThumbnailRenderer + +// Begin Class UPocketCaptureSubsystem Function DestroyThumbnailRenderer +struct Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics +{ + struct PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms + { + UPocketCapture* ThumbnailRenderer; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ThumbnailRenderer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::NewProp_ThumbnailRenderer = { "ThumbnailRenderer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms, ThumbnailRenderer), Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::NewProp_ThumbnailRenderer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCaptureSubsystem, nullptr, "DestroyThumbnailRenderer", nullptr, nullptr, Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCaptureSubsystem::execDestroyThumbnailRenderer) +{ + P_GET_OBJECT(UPocketCapture,Z_Param_ThumbnailRenderer); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DestroyThumbnailRenderer(Z_Param_ThumbnailRenderer); + P_NATIVE_END; +} +// End Class UPocketCaptureSubsystem Function DestroyThumbnailRenderer + +// Begin Class UPocketCaptureSubsystem +void UPocketCaptureSubsystem::StaticRegisterNativesUPocketCaptureSubsystem() +{ + UClass* Class = UPocketCaptureSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateThumbnailRenderer", &UPocketCaptureSubsystem::execCreateThumbnailRenderer }, + { "DestroyThumbnailRenderer", &UPocketCaptureSubsystem::execDestroyThumbnailRenderer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketCaptureSubsystem); +UClass* Z_Construct_UClass_UPocketCaptureSubsystem_NoRegister() +{ + return UPocketCaptureSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UPocketCaptureSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "PocketCaptureSubsystem.h" }, + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer, "CreateThumbnailRenderer" }, // 1410377635 + { &Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer, "DestroyThumbnailRenderer" }, // 2149135448 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPocketCaptureSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCaptureSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketCaptureSubsystem_Statics::ClassParams = { + &UPocketCaptureSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCaptureSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketCaptureSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketCaptureSubsystem() +{ + if (!Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton, Z_Construct_UClass_UPocketCaptureSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketCaptureSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketCaptureSubsystem); +UPocketCaptureSubsystem::~UPocketCaptureSubsystem() {} +// End Class UPocketCaptureSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketCaptureSubsystem, UPocketCaptureSubsystem::StaticClass, TEXT("UPocketCaptureSubsystem"), &Z_Registration_Info_UClass_UPocketCaptureSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketCaptureSubsystem), 869153457U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_2069002175(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h new file mode 100644 index 00000000..fb54d31b --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketCaptureSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UPocketCapture; +#ifdef POCKETWORLDS_PocketCaptureSubsystem_generated_h +#error "PocketCaptureSubsystem.generated.h already included, missing '#pragma once' in PocketCaptureSubsystem.h" +#endif +#define POCKETWORLDS_PocketCaptureSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execDestroyThumbnailRenderer); \ + DECLARE_FUNCTION(execCreateThumbnailRenderer); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketCaptureSubsystem(); \ + friend struct Z_Construct_UClass_UPocketCaptureSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UPocketCaptureSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketCaptureSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketCaptureSubsystem(UPocketCaptureSubsystem&&); \ + UPocketCaptureSubsystem(const UPocketCaptureSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketCaptureSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketCaptureSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketCaptureSubsystem) \ + NO_API virtual ~UPocketCaptureSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp new file mode 100644 index 00000000..afd4c4ce --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp @@ -0,0 +1,125 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevel.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevel() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevel +void UPocketLevel::StaticRegisterNativesUPocketLevel() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevel); +UClass* Z_Construct_UClass_UPocketLevel_NoRegister() +{ + return UPocketLevel::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "PocketLevel.h" }, + { "ModuleRelativePath", "Public/PocketLevel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Level_MetaData[] = { + { "Category", "Streaming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The level that will be streamed in for this pocket level.\n" }, +#endif + { "ModuleRelativePath", "Public/PocketLevel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The level that will be streamed in for this pocket level." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bounds_MetaData[] = { + { "Category", "Streaming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The bounds of the pocket level so that we can create multiple instances without overlapping each other.\n" }, +#endif + { "ModuleRelativePath", "Public/PocketLevel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The bounds of the pocket level so that we can create multiple instances without overlapping each other." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Level; + static const UECodeGen_Private::FStructPropertyParams NewProp_Bounds; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_UPocketLevel_Statics::NewProp_Level = { "Level", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevel, Level), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Level_MetaData), NewProp_Level_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPocketLevel_Statics::NewProp_Bounds = { "Bounds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevel, Bounds), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bounds_MetaData), NewProp_Bounds_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevel_Statics::NewProp_Level, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevel_Statics::NewProp_Bounds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevel_Statics::ClassParams = { + &UPocketLevel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPocketLevel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevel() +{ + if (!Z_Registration_Info_UClass_UPocketLevel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevel.OuterSingleton, Z_Construct_UClass_UPocketLevel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevel.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevel); +UPocketLevel::~UPocketLevel() {} +// End Class UPocketLevel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevel, UPocketLevel::StaticClass, TEXT("UPocketLevel"), &Z_Registration_Info_UClass_UPocketLevel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevel), 2537423078U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_3582480902(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.generated.h new file mode 100644 index 00000000..9458bea3 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevel.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevel_generated_h +#error "PocketLevel.generated.h already included, missing '#pragma once' in PocketLevel.h" +#endif +#define POCKETWORLDS_PocketLevel_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevel(); \ + friend struct Z_Construct_UClass_UPocketLevel_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevel, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevel) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevel(UPocketLevel&&); \ + UPocketLevel(const UPocketLevel&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevel); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevel) \ + NO_API virtual ~UPocketLevel(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp new file mode 100644 index 00000000..8b4f45e9 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevelInstance.h" +#include "Public/PocketLevelSystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevelInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULevelStreamingDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevelInstance Function HandlePocketLevelLoaded +struct Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketLevelInstance, nullptr, "HandlePocketLevelLoaded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketLevelInstance::execHandlePocketLevelLoaded) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePocketLevelLoaded(); + P_NATIVE_END; +} +// End Class UPocketLevelInstance Function HandlePocketLevelLoaded + +// Begin Class UPocketLevelInstance Function HandlePocketLevelShown +struct Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketLevelInstance, nullptr, "HandlePocketLevelShown", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketLevelInstance::execHandlePocketLevelShown) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePocketLevelShown(); + P_NATIVE_END; +} +// End Class UPocketLevelInstance Function HandlePocketLevelShown + +// Begin Class UPocketLevelInstance +void UPocketLevelInstance::StaticRegisterNativesUPocketLevelInstance() +{ + UClass* Class = UPocketLevelInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandlePocketLevelLoaded", &UPocketLevelInstance::execHandlePocketLevelLoaded }, + { "HandlePocketLevelShown", &UPocketLevelInstance::execHandlePocketLevelShown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevelInstance); +UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister() +{ + return UPocketLevelInstance::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevelInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "PocketLevelInstance.h" }, + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PocketLevel_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_World_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StreamingPocketLevel_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PocketLevel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_World; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StreamingPocketLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded, "HandlePocketLevelLoaded" }, // 45648365 + { &Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown, "HandlePocketLevelShown" }, // 1482506406 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_PocketLevel = { "PocketLevel", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, PocketLevel), Z_Construct_UClass_UPocketLevel_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PocketLevel_MetaData), NewProp_PocketLevel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_World = { "World", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, World), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_World_MetaData), NewProp_World_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_StreamingPocketLevel = { "StreamingPocketLevel", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, StreamingPocketLevel), Z_Construct_UClass_ULevelStreamingDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StreamingPocketLevel_MetaData), NewProp_StreamingPocketLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_PocketLevel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_World, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_StreamingPocketLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevelInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevelInstance_Statics::ClassParams = { + &UPocketLevelInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevelInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevelInstance() +{ + if (!Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton, Z_Construct_UClass_UPocketLevelInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevelInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevelInstance); +UPocketLevelInstance::~UPocketLevelInstance() {} +// End Class UPocketLevelInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevelInstance, UPocketLevelInstance::StaticClass, TEXT("UPocketLevelInstance"), &Z_Registration_Info_UClass_UPocketLevelInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevelInstance), 330917611U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_4121680069(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h new file mode 100644 index 00000000..d0cc9feb --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevelInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevelInstance_generated_h +#error "PocketLevelInstance.generated.h already included, missing '#pragma once' in PocketLevelInstance.h" +#endif +#define POCKETWORLDS_PocketLevelInstance_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandlePocketLevelShown); \ + DECLARE_FUNCTION(execHandlePocketLevelLoaded); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevelInstance(); \ + friend struct Z_Construct_UClass_UPocketLevelInstance_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevelInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevelInstance) \ + DECLARE_WITHIN(UPocketLevelSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevelInstance(UPocketLevelInstance&&); \ + UPocketLevelInstance(const UPocketLevelInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevelInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevelInstance); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevelInstance) \ + NO_API virtual ~UPocketLevelInstance(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp new file mode 100644 index 00000000..b62b4426 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp @@ -0,0 +1,108 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevelSystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevelSystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevelSubsystem +void UPocketLevelSubsystem::StaticRegisterNativesUPocketLevelSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevelSubsystem); +UClass* Z_Construct_UClass_UPocketLevelSubsystem_NoRegister() +{ + return UPocketLevelSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevelSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "PocketLevelSystem.h" }, + { "ModuleRelativePath", "Public/PocketLevelSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PocketInstances_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PocketInstances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PocketInstances; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances_Inner = { "PocketInstances", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UPocketLevelInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances = { "PocketInstances", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelSubsystem, PocketInstances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PocketInstances_MetaData), NewProp_PocketInstances_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevelSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::ClassParams = { + &UPocketLevelSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevelSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevelSubsystem() +{ + if (!Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton, Z_Construct_UClass_UPocketLevelSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevelSubsystem::StaticClass(); +} +UPocketLevelSubsystem::UPocketLevelSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevelSubsystem); +UPocketLevelSubsystem::~UPocketLevelSubsystem() {} +// End Class UPocketLevelSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevelSubsystem, UPocketLevelSubsystem::StaticClass, TEXT("UPocketLevelSubsystem"), &Z_Registration_Info_UClass_UPocketLevelSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevelSubsystem), 2762088548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_2948742409(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h new file mode 100644 index 00000000..7bec313e --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevelSystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevelSystem_generated_h +#error "PocketLevelSystem.generated.h already included, missing '#pragma once' in PocketLevelSystem.h" +#endif +#define POCKETWORLDS_PocketLevelSystem_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevelSubsystem(); \ + friend struct Z_Construct_UClass_UPocketLevelSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevelSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevelSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UPocketLevelSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevelSubsystem(UPocketLevelSubsystem&&); \ + UPocketLevelSubsystem(const UPocketLevelSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevelSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevelSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevelSubsystem) \ + NO_API virtual ~UPocketLevelSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp new file mode 100644 index 00000000..9730c7f4 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketWorlds_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_PocketWorlds; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_PocketWorlds() + { + if (!Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/PocketWorlds", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x791A09C2, + 0x57C61C77, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_PocketWorlds(Z_Construct_UPackage__Script_PocketWorlds, TEXT("/Script/PocketWorlds"), Z_Registration_Info_UPackage__Script_PocketWorlds, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x791A09C2, 0x57C61C77)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorldsClasses.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorldsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorldsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/Timestamp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/Timestamp new file mode 100644 index 00000000..4c21a9f7 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/Timestamp @@ -0,0 +1,5 @@ +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketCapture.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketCaptureSubsystem.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevel.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevelSystem.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevelInstance.h diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp new file mode 100644 index 00000000..97eab3e6 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.gen.cpp @@ -0,0 +1,665 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketCapture.h" +#include "Public/PocketCaptureSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketCapture() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_AActor_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UMaterialInterface_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_USceneCaptureComponent2D_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UTextureRenderTarget2D_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketCapture Function CaptureAlphaMask +struct Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureAlphaMask", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureAlphaMask) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureAlphaMask(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureAlphaMask + +// Begin Class UPocketCapture Function CaptureDiffuse +struct Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureDiffuse", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureDiffuse() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureDiffuse_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureDiffuse) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureDiffuse(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureDiffuse + +// Begin Class UPocketCapture Function CaptureEffects +struct Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "CaptureEffects", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_CaptureEffects() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_CaptureEffects_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execCaptureEffects) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->CaptureEffects(); + P_NATIVE_END; +} +// End Class UPocketCapture Function CaptureEffects + +// Begin Class UPocketCapture Function GetOrCreateAlphaMaskRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateAlphaMaskRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::PocketCapture_eventGetOrCreateAlphaMaskRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateAlphaMaskRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateAlphaMaskRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateAlphaMaskRenderTarget + +// Begin Class UPocketCapture Function GetOrCreateDiffuseRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateDiffuseRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::PocketCapture_eventGetOrCreateDiffuseRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateDiffuseRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateDiffuseRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateDiffuseRenderTarget + +// Begin Class UPocketCapture Function GetOrCreateEffectsRenderTarget +struct Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics +{ + struct PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms + { + UTextureRenderTarget2D* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms, ReturnValue), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetOrCreateEffectsRenderTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::PocketCapture_eventGetOrCreateEffectsRenderTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetOrCreateEffectsRenderTarget) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(UTextureRenderTarget2D**)Z_Param__Result=P_THIS->GetOrCreateEffectsRenderTarget(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetOrCreateEffectsRenderTarget + +// Begin Class UPocketCapture Function GetRendererIndex +struct Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics +{ + struct PocketCapture_eventGetRendererIndex_Parms + { + int32 ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventGetRendererIndex_Parms, ReturnValue), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "GetRendererIndex", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PocketCapture_eventGetRendererIndex_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x54020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::PocketCapture_eventGetRendererIndex_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_GetRendererIndex() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_GetRendererIndex_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execGetRendererIndex) +{ + P_FINISH; + P_NATIVE_BEGIN; + *(int32*)Z_Param__Result=P_THIS->GetRendererIndex(); + P_NATIVE_END; +} +// End Class UPocketCapture Function GetRendererIndex + +// Begin Class UPocketCapture Function ReclaimResources +struct Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "ReclaimResources", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_ReclaimResources() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_ReclaimResources_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execReclaimResources) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReclaimResources(); + P_NATIVE_END; +} +// End Class UPocketCapture Function ReclaimResources + +// Begin Class UPocketCapture Function ReleaseResources +struct Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "ReleaseResources", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020400, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketCapture_ReleaseResources() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_ReleaseResources_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execReleaseResources) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->ReleaseResources(); + P_NATIVE_END; +} +// End Class UPocketCapture Function ReleaseResources + +// Begin Class UPocketCapture Function SetAlphaMaskedActors +struct Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics +{ + struct PocketCapture_eventSetAlphaMaskedActors_Parms + { + TArray InCaptureTarget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_InCaptureTarget_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InCaptureTarget_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_InCaptureTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget_Inner = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetAlphaMaskedActors_Parms, InCaptureTarget), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_InCaptureTarget_MetaData), NewProp_InCaptureTarget_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::NewProp_InCaptureTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetAlphaMaskedActors", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PocketCapture_eventSetAlphaMaskedActors_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::PocketCapture_eventSetAlphaMaskedActors_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetAlphaMaskedActors) +{ + P_GET_TARRAY_REF(AActor*,Z_Param_Out_InCaptureTarget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetAlphaMaskedActors(Z_Param_Out_InCaptureTarget); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetAlphaMaskedActors + +// Begin Class UPocketCapture Function SetCaptureTarget +struct Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics +{ + struct PocketCapture_eventSetCaptureTarget_Parms + { + AActor* InCaptureTarget; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_InCaptureTarget; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::NewProp_InCaptureTarget = { "InCaptureTarget", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetCaptureTarget_Parms, InCaptureTarget), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::NewProp_InCaptureTarget, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetCaptureTarget", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PocketCapture_eventSetCaptureTarget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::PocketCapture_eventSetCaptureTarget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetCaptureTarget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetCaptureTarget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetCaptureTarget) +{ + P_GET_OBJECT(AActor,Z_Param_InCaptureTarget); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetCaptureTarget(Z_Param_InCaptureTarget); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetCaptureTarget + +// Begin Class UPocketCapture Function SetRenderTargetSize +struct Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics +{ + struct PocketCapture_eventSetRenderTargetSize_Parms + { + int32 Width; + int32 Height; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FIntPropertyParams NewProp_Width; + static const UECodeGen_Private::FIntPropertyParams NewProp_Height; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Width = { "Width", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetRenderTargetSize_Parms, Width), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Height = { "Height", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCapture_eventSetRenderTargetSize_Parms, Height), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Width, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::NewProp_Height, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCapture, nullptr, "SetRenderTargetSize", nullptr, nullptr, Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PocketCapture_eventSetRenderTargetSize_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::PocketCapture_eventSetRenderTargetSize_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCapture::execSetRenderTargetSize) +{ + P_GET_PROPERTY(FIntProperty,Z_Param_Width); + P_GET_PROPERTY(FIntProperty,Z_Param_Height); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->SetRenderTargetSize(Z_Param_Width,Z_Param_Height); + P_NATIVE_END; +} +// End Class UPocketCapture Function SetRenderTargetSize + +// Begin Class UPocketCapture +void UPocketCapture::StaticRegisterNativesUPocketCapture() +{ + UClass* Class = UPocketCapture::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CaptureAlphaMask", &UPocketCapture::execCaptureAlphaMask }, + { "CaptureDiffuse", &UPocketCapture::execCaptureDiffuse }, + { "CaptureEffects", &UPocketCapture::execCaptureEffects }, + { "GetOrCreateAlphaMaskRenderTarget", &UPocketCapture::execGetOrCreateAlphaMaskRenderTarget }, + { "GetOrCreateDiffuseRenderTarget", &UPocketCapture::execGetOrCreateDiffuseRenderTarget }, + { "GetOrCreateEffectsRenderTarget", &UPocketCapture::execGetOrCreateEffectsRenderTarget }, + { "GetRendererIndex", &UPocketCapture::execGetRendererIndex }, + { "ReclaimResources", &UPocketCapture::execReclaimResources }, + { "ReleaseResources", &UPocketCapture::execReleaseResources }, + { "SetAlphaMaskedActors", &UPocketCapture::execSetAlphaMaskedActors }, + { "SetCaptureTarget", &UPocketCapture::execSetCaptureTarget }, + { "SetRenderTargetSize", &UPocketCapture::execSetRenderTargetSize }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketCapture); +UClass* Z_Construct_UClass_UPocketCapture_NoRegister() +{ + return UPocketCapture::StaticClass(); +} +struct Z_Construct_UClass_UPocketCapture_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "PocketCapture.h" }, + { "IsBlueprintBase", "true" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskMaterial_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectMaskMaterial_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PrivateWorld_MetaData[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_RendererIndex_MetaData[] = { + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceWidth_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_SurfaceHeight_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DiffuseRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_EffectsRT_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CaptureComponent_MetaData[] = { + { "Category", "PocketCapture" }, + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_CaptureTargetPtr_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AlphaMaskActorPtrs_MetaData[] = { + { "Category", "PocketCapture" }, + { "ModuleRelativePath", "Public/PocketCapture.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlphaMaskMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EffectMaskMaterial; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PrivateWorld; + static const UECodeGen_Private::FIntPropertyParams NewProp_RendererIndex; + static const UECodeGen_Private::FIntPropertyParams NewProp_SurfaceWidth; + static const UECodeGen_Private::FIntPropertyParams NewProp_SurfaceHeight; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DiffuseRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_AlphaMaskRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_EffectsRT; + static const UECodeGen_Private::FObjectPropertyParams NewProp_CaptureComponent; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_CaptureTargetPtr; + static const UECodeGen_Private::FWeakObjectPropertyParams NewProp_AlphaMaskActorPtrs_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AlphaMaskActorPtrs; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketCapture_CaptureAlphaMask, "CaptureAlphaMask" }, // 603762348 + { &Z_Construct_UFunction_UPocketCapture_CaptureDiffuse, "CaptureDiffuse" }, // 1238638229 + { &Z_Construct_UFunction_UPocketCapture_CaptureEffects, "CaptureEffects" }, // 887490962 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateAlphaMaskRenderTarget, "GetOrCreateAlphaMaskRenderTarget" }, // 4063671220 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateDiffuseRenderTarget, "GetOrCreateDiffuseRenderTarget" }, // 1117577952 + { &Z_Construct_UFunction_UPocketCapture_GetOrCreateEffectsRenderTarget, "GetOrCreateEffectsRenderTarget" }, // 83282991 + { &Z_Construct_UFunction_UPocketCapture_GetRendererIndex, "GetRendererIndex" }, // 443678890 + { &Z_Construct_UFunction_UPocketCapture_ReclaimResources, "ReclaimResources" }, // 1706209848 + { &Z_Construct_UFunction_UPocketCapture_ReleaseResources, "ReleaseResources" }, // 2654738113 + { &Z_Construct_UFunction_UPocketCapture_SetAlphaMaskedActors, "SetAlphaMaskedActors" }, // 4035327545 + { &Z_Construct_UFunction_UPocketCapture_SetCaptureTarget, "SetCaptureTarget" }, // 3819177160 + { &Z_Construct_UFunction_UPocketCapture_SetRenderTargetSize, "SetRenderTargetSize" }, // 2911370819 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskMaterial = { "AlphaMaskMaterial", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskMaterial_MetaData), NewProp_AlphaMaskMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectMaskMaterial = { "EffectMaskMaterial", nullptr, (EPropertyFlags)0x0124080000010001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, EffectMaskMaterial), Z_Construct_UClass_UMaterialInterface_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectMaskMaterial_MetaData), NewProp_EffectMaskMaterial_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_PrivateWorld = { "PrivateWorld", nullptr, (EPropertyFlags)0x0124080000002000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, PrivateWorld), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PrivateWorld_MetaData), NewProp_PrivateWorld_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_RendererIndex = { "RendererIndex", nullptr, (EPropertyFlags)0x0020080000002000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, RendererIndex), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_RendererIndex_MetaData), NewProp_RendererIndex_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceWidth = { "SurfaceWidth", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, SurfaceWidth), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceWidth_MetaData), NewProp_SurfaceWidth_MetaData) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceHeight = { "SurfaceHeight", nullptr, (EPropertyFlags)0x0020080000020001, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, SurfaceHeight), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_SurfaceHeight_MetaData), NewProp_SurfaceHeight_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_DiffuseRT = { "DiffuseRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, DiffuseRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DiffuseRT_MetaData), NewProp_DiffuseRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskRT = { "AlphaMaskRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskRT_MetaData), NewProp_AlphaMaskRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectsRT = { "EffectsRT", nullptr, (EPropertyFlags)0x0124080000020001, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, EffectsRT), Z_Construct_UClass_UTextureRenderTarget2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_EffectsRT_MetaData), NewProp_EffectsRT_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureComponent = { "CaptureComponent", nullptr, (EPropertyFlags)0x01240800000a0009, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, CaptureComponent), Z_Construct_UClass_USceneCaptureComponent2D_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CaptureComponent_MetaData), NewProp_CaptureComponent_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureTargetPtr = { "CaptureTargetPtr", nullptr, (EPropertyFlags)0x0024080000020001, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, CaptureTargetPtr), Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_CaptureTargetPtr_MetaData), NewProp_CaptureTargetPtr_MetaData) }; +const UECodeGen_Private::FWeakObjectPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs_Inner = { "AlphaMaskActorPtrs", nullptr, (EPropertyFlags)0x0004000000020000, UECodeGen_Private::EPropertyGenFlags::WeakObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_AActor_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs = { "AlphaMaskActorPtrs", nullptr, (EPropertyFlags)0x0024080000020001, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketCapture, AlphaMaskActorPtrs), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AlphaMaskActorPtrs_MetaData), NewProp_AlphaMaskActorPtrs_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketCapture_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectMaskMaterial, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_PrivateWorld, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_RendererIndex, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceWidth, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_SurfaceHeight, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_DiffuseRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_EffectsRT, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureComponent, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_CaptureTargetPtr, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketCapture_Statics::NewProp_AlphaMaskActorPtrs, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketCapture_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketCapture_Statics::ClassParams = { + &UPocketCapture::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPocketCapture_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::PropPointers), + 0, + 0x009000A1u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCapture_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketCapture_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketCapture() +{ + if (!Z_Registration_Info_UClass_UPocketCapture.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketCapture.OuterSingleton, Z_Construct_UClass_UPocketCapture_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketCapture.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketCapture::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketCapture); +UPocketCapture::~UPocketCapture() {} +// End Class UPocketCapture + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketCapture, UPocketCapture::StaticClass, TEXT("UPocketCapture"), &Z_Registration_Info_UClass_UPocketCapture, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketCapture), 3128879388U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_3857181667(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.generated.h new file mode 100644 index 00000000..7bceca68 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCapture.generated.h @@ -0,0 +1,73 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketCapture.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class AActor; +class UTextureRenderTarget2D; +#ifdef POCKETWORLDS_PocketCapture_generated_h +#error "PocketCapture.generated.h already included, missing '#pragma once' in PocketCapture.h" +#endif +#define POCKETWORLDS_PocketCapture_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execGetRendererIndex); \ + DECLARE_FUNCTION(execReclaimResources); \ + DECLARE_FUNCTION(execReleaseResources); \ + DECLARE_FUNCTION(execCaptureEffects); \ + DECLARE_FUNCTION(execCaptureAlphaMask); \ + DECLARE_FUNCTION(execCaptureDiffuse); \ + DECLARE_FUNCTION(execSetAlphaMaskedActors); \ + DECLARE_FUNCTION(execSetCaptureTarget); \ + DECLARE_FUNCTION(execGetOrCreateEffectsRenderTarget); \ + DECLARE_FUNCTION(execGetOrCreateAlphaMaskRenderTarget); \ + DECLARE_FUNCTION(execGetOrCreateDiffuseRenderTarget); \ + DECLARE_FUNCTION(execSetRenderTargetSize); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketCapture(); \ + friend struct Z_Construct_UClass_UPocketCapture_Statics; \ +public: \ + DECLARE_CLASS(UPocketCapture, UObject, COMPILED_IN_FLAGS(CLASS_Abstract), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketCapture) \ + DECLARE_WITHIN(UPocketCaptureSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketCapture(UPocketCapture&&); \ + UPocketCapture(const UPocketCapture&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketCapture); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketCapture); \ + DEFINE_ABSTRACT_DEFAULT_CONSTRUCTOR_CALL(UPocketCapture) \ + NO_API virtual ~UPocketCapture(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_19_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h_22_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCapture_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp new file mode 100644 index 00000000..3000650c --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.gen.cpp @@ -0,0 +1,199 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketCaptureSubsystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketCaptureSubsystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCapture_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCaptureSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketCaptureSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketCaptureSubsystem Function CreateThumbnailRenderer +struct Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics +{ + struct PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms + { + TSubclassOf PocketCaptureClass; + UPocketCapture* ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "// End USubsystem\n" }, +#endif + { "DeterminesOutputType", "PocketCaptureClass" }, + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "End USubsystem" }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FClassPropertyParams NewProp_PocketCaptureClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_PocketCaptureClass = { "PocketCaptureClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms, PocketCaptureClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms, ReturnValue), Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_PocketCaptureClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCaptureSubsystem, nullptr, "CreateThumbnailRenderer", nullptr, nullptr, Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::PocketCaptureSubsystem_eventCreateThumbnailRenderer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCaptureSubsystem::execCreateThumbnailRenderer) +{ + P_GET_OBJECT(UClass,Z_Param_PocketCaptureClass); + P_FINISH; + P_NATIVE_BEGIN; + *(UPocketCapture**)Z_Param__Result=P_THIS->CreateThumbnailRenderer(Z_Param_PocketCaptureClass); + P_NATIVE_END; +} +// End Class UPocketCaptureSubsystem Function CreateThumbnailRenderer + +// Begin Class UPocketCaptureSubsystem Function DestroyThumbnailRenderer +struct Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics +{ + struct PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms + { + UPocketCapture* ThumbnailRenderer; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_ThumbnailRenderer; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::NewProp_ThumbnailRenderer = { "ThumbnailRenderer", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms, ThumbnailRenderer), Z_Construct_UClass_UPocketCapture_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::NewProp_ThumbnailRenderer, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketCaptureSubsystem, nullptr, "DestroyThumbnailRenderer", nullptr, nullptr, Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PropPointers), sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04020401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::PocketCaptureSubsystem_eventDestroyThumbnailRenderer_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketCaptureSubsystem::execDestroyThumbnailRenderer) +{ + P_GET_OBJECT(UPocketCapture,Z_Param_ThumbnailRenderer); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->DestroyThumbnailRenderer(Z_Param_ThumbnailRenderer); + P_NATIVE_END; +} +// End Class UPocketCaptureSubsystem Function DestroyThumbnailRenderer + +// Begin Class UPocketCaptureSubsystem +void UPocketCaptureSubsystem::StaticRegisterNativesUPocketCaptureSubsystem() +{ + UClass* Class = UPocketCaptureSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "CreateThumbnailRenderer", &UPocketCaptureSubsystem::execCreateThumbnailRenderer }, + { "DestroyThumbnailRenderer", &UPocketCaptureSubsystem::execDestroyThumbnailRenderer }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketCaptureSubsystem); +UClass* Z_Construct_UClass_UPocketCaptureSubsystem_NoRegister() +{ + return UPocketCaptureSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UPocketCaptureSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, + { "IncludePath", "PocketCaptureSubsystem.h" }, + { "ModuleRelativePath", "Public/PocketCaptureSubsystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketCaptureSubsystem_CreateThumbnailRenderer, "CreateThumbnailRenderer" }, // 1410377635 + { &Z_Construct_UFunction_UPocketCaptureSubsystem_DestroyThumbnailRenderer, "DestroyThumbnailRenderer" }, // 2149135448 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UPocketCaptureSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCaptureSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketCaptureSubsystem_Statics::ClassParams = { + &UPocketCaptureSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketCaptureSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketCaptureSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketCaptureSubsystem() +{ + if (!Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton, Z_Construct_UClass_UPocketCaptureSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketCaptureSubsystem.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketCaptureSubsystem::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketCaptureSubsystem); +UPocketCaptureSubsystem::~UPocketCaptureSubsystem() {} +// End Class UPocketCaptureSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketCaptureSubsystem, UPocketCaptureSubsystem::StaticClass, TEXT("UPocketCaptureSubsystem"), &Z_Registration_Info_UClass_UPocketCaptureSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketCaptureSubsystem), 869153457U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_2069002175(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h new file mode 100644 index 00000000..fb54d31b --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketCaptureSubsystem.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketCaptureSubsystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UPocketCapture; +#ifdef POCKETWORLDS_PocketCaptureSubsystem_generated_h +#error "PocketCaptureSubsystem.generated.h already included, missing '#pragma once' in PocketCaptureSubsystem.h" +#endif +#define POCKETWORLDS_PocketCaptureSubsystem_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execDestroyThumbnailRenderer); \ + DECLARE_FUNCTION(execCreateThumbnailRenderer); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketCaptureSubsystem(); \ + friend struct Z_Construct_UClass_UPocketCaptureSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UPocketCaptureSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketCaptureSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketCaptureSubsystem(UPocketCaptureSubsystem&&); \ + UPocketCaptureSubsystem(const UPocketCaptureSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketCaptureSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketCaptureSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketCaptureSubsystem) \ + NO_API virtual ~UPocketCaptureSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketCaptureSubsystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp new file mode 100644 index 00000000..afd4c4ce --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.gen.cpp @@ -0,0 +1,125 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevel.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevel() {} + +// Begin Cross Module References +COREUOBJECT_API UScriptStruct* Z_Construct_UScriptStruct_FVector(); +ENGINE_API UClass* Z_Construct_UClass_UDataAsset(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevel +void UPocketLevel::StaticRegisterNativesUPocketLevel() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevel); +UClass* Z_Construct_UClass_UPocketLevel_NoRegister() +{ + return UPocketLevel::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevel_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "PocketLevel.h" }, + { "ModuleRelativePath", "Public/PocketLevel.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Level_MetaData[] = { + { "Category", "Streaming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The level that will be streamed in for this pocket level.\n" }, +#endif + { "ModuleRelativePath", "Public/PocketLevel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The level that will be streamed in for this pocket level." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Bounds_MetaData[] = { + { "Category", "Streaming" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// The bounds of the pocket level so that we can create multiple instances without overlapping each other.\n" }, +#endif + { "ModuleRelativePath", "Public/PocketLevel.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The bounds of the pocket level so that we can create multiple instances without overlapping each other." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FSoftObjectPropertyParams NewProp_Level; + static const UECodeGen_Private::FStructPropertyParams NewProp_Bounds; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FSoftObjectPropertyParams Z_Construct_UClass_UPocketLevel_Statics::NewProp_Level = { "Level", nullptr, (EPropertyFlags)0x0014000000000001, UECodeGen_Private::EPropertyGenFlags::SoftObject, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevel, Level), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Level_MetaData), NewProp_Level_MetaData) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UPocketLevel_Statics::NewProp_Bounds = { "Bounds", nullptr, (EPropertyFlags)0x0010000000000001, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevel, Bounds), Z_Construct_UScriptStruct_FVector, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Bounds_MetaData), NewProp_Bounds_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevel_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevel_Statics::NewProp_Level, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevel_Statics::NewProp_Bounds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevel_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDataAsset, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevel_Statics::ClassParams = { + &UPocketLevel::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPocketLevel_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevel_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevel_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevel() +{ + if (!Z_Registration_Info_UClass_UPocketLevel.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevel.OuterSingleton, Z_Construct_UClass_UPocketLevel_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevel.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevel::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevel); +UPocketLevel::~UPocketLevel() {} +// End Class UPocketLevel + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevel, UPocketLevel::StaticClass, TEXT("UPocketLevel"), &Z_Registration_Info_UClass_UPocketLevel, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevel), 2537423078U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_3582480902(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.generated.h new file mode 100644 index 00000000..9458bea3 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevel.generated.h @@ -0,0 +1,54 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevel.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevel_generated_h +#error "PocketLevel.generated.h already included, missing '#pragma once' in PocketLevel.h" +#endif +#define POCKETWORLDS_PocketLevel_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevel(); \ + friend struct Z_Construct_UClass_UPocketLevel_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevel, UDataAsset, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevel) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevel(UPocketLevel&&); \ + UPocketLevel(const UPocketLevel&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevel); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevel); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevel) \ + NO_API virtual ~UPocketLevel(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_15_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h_18_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevel_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp new file mode 100644 index 00000000..8b4f45e9 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.gen.cpp @@ -0,0 +1,196 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevelInstance.h" +#include "Public/PocketLevelSystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevelInstance() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UObject(); +ENGINE_API UClass* Z_Construct_UClass_ULevelStreamingDynamic_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_ULocalPlayer_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UWorld_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevel_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevelInstance Function HandlePocketLevelLoaded +struct Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketLevelInstance, nullptr, "HandlePocketLevelLoaded", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketLevelInstance::execHandlePocketLevelLoaded) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePocketLevelLoaded(); + P_NATIVE_END; +} +// End Class UPocketLevelInstance Function HandlePocketLevelLoaded + +// Begin Class UPocketLevelInstance Function HandlePocketLevelShown +struct Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UPocketLevelInstance, nullptr, "HandlePocketLevelShown", nullptr, nullptr, nullptr, 0, 0, RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00040401, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::Function_MetaDataParams), Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::Function_MetaDataParams) }; +UFunction* Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UPocketLevelInstance::execHandlePocketLevelShown) +{ + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->HandlePocketLevelShown(); + P_NATIVE_END; +} +// End Class UPocketLevelInstance Function HandlePocketLevelShown + +// Begin Class UPocketLevelInstance +void UPocketLevelInstance::StaticRegisterNativesUPocketLevelInstance() +{ + UClass* Class = UPocketLevelInstance::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "HandlePocketLevelLoaded", &UPocketLevelInstance::execHandlePocketLevelLoaded }, + { "HandlePocketLevelShown", &UPocketLevelInstance::execHandlePocketLevelShown }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevelInstance); +UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister() +{ + return UPocketLevelInstance::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevelInstance_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "PocketLevelInstance.h" }, + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LocalPlayer_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PocketLevel_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_World_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StreamingPocketLevel_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelInstance.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_LocalPlayer; + static const UECodeGen_Private::FObjectPropertyParams NewProp_PocketLevel; + static const UECodeGen_Private::FObjectPropertyParams NewProp_World; + static const UECodeGen_Private::FObjectPropertyParams NewProp_StreamingPocketLevel; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelLoaded, "HandlePocketLevelLoaded" }, // 45648365 + { &Z_Construct_UFunction_UPocketLevelInstance_HandlePocketLevelShown, "HandlePocketLevelShown" }, // 1482506406 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_LocalPlayer = { "LocalPlayer", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, LocalPlayer), Z_Construct_UClass_ULocalPlayer_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LocalPlayer_MetaData), NewProp_LocalPlayer_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_PocketLevel = { "PocketLevel", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, PocketLevel), Z_Construct_UClass_UPocketLevel_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PocketLevel_MetaData), NewProp_PocketLevel_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_World = { "World", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, World), Z_Construct_UClass_UWorld_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_World_MetaData), NewProp_World_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_StreamingPocketLevel = { "StreamingPocketLevel", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelInstance, StreamingPocketLevel), Z_Construct_UClass_ULevelStreamingDynamic_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StreamingPocketLevel_MetaData), NewProp_StreamingPocketLevel_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_LocalPlayer, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_PocketLevel, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_World, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelInstance_Statics::NewProp_StreamingPocketLevel, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevelInstance_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UObject, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevelInstance_Statics::ClassParams = { + &UPocketLevelInstance::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelInstance_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevelInstance_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevelInstance() +{ + if (!Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton, Z_Construct_UClass_UPocketLevelInstance_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevelInstance.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevelInstance::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevelInstance); +UPocketLevelInstance::~UPocketLevelInstance() {} +// End Class UPocketLevelInstance + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevelInstance, UPocketLevelInstance::StaticClass, TEXT("UPocketLevelInstance"), &Z_Registration_Info_UClass_UPocketLevelInstance, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevelInstance), 330917611U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_4121680069(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h new file mode 100644 index 00000000..d0cc9feb --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelInstance.generated.h @@ -0,0 +1,61 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevelInstance.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevelInstance_generated_h +#error "PocketLevelInstance.generated.h already included, missing '#pragma once' in PocketLevelInstance.h" +#endif +#define POCKETWORLDS_PocketLevelInstance_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execHandlePocketLevelShown); \ + DECLARE_FUNCTION(execHandlePocketLevelLoaded); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevelInstance(); \ + friend struct Z_Construct_UClass_UPocketLevelInstance_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevelInstance, UObject, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevelInstance) \ + DECLARE_WITHIN(UPocketLevelSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevelInstance(UPocketLevelInstance&&); \ + UPocketLevelInstance(const UPocketLevelInstance&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevelInstance); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevelInstance); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevelInstance) \ + NO_API virtual ~UPocketLevelInstance(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_24_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h_27_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelInstance_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp new file mode 100644 index 00000000..b62b4426 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.gen.cpp @@ -0,0 +1,108 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/PocketLevelSystem.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketLevelSystem() {} + +// Begin Cross Module References +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelInstance_NoRegister(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelSubsystem(); +POCKETWORLDS_API UClass* Z_Construct_UClass_UPocketLevelSubsystem_NoRegister(); +UPackage* Z_Construct_UPackage__Script_PocketWorlds(); +// End Cross Module References + +// Begin Class UPocketLevelSubsystem +void UPocketLevelSubsystem::StaticRegisterNativesUPocketLevelSubsystem() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UPocketLevelSubsystem); +UClass* Z_Construct_UClass_UPocketLevelSubsystem_NoRegister() +{ + return UPocketLevelSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UPocketLevelSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n *\n */" }, +#endif + { "IncludePath", "PocketLevelSystem.h" }, + { "ModuleRelativePath", "Public/PocketLevelSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_PocketInstances_MetaData[] = { + { "ModuleRelativePath", "Public/PocketLevelSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_PocketInstances_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_PocketInstances; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances_Inner = { "PocketInstances", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UPocketLevelInstance_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances = { "PocketInstances", nullptr, (EPropertyFlags)0x0144000000000000, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UPocketLevelSubsystem, PocketInstances), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_PocketInstances_MetaData), NewProp_PocketInstances_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UPocketLevelSubsystem_Statics::NewProp_PocketInstances, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UPocketLevelSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_PocketWorlds, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UPocketLevelSubsystem_Statics::ClassParams = { + &UPocketLevelSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + nullptr, + Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + 0, + UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::PropPointers), + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UPocketLevelSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UPocketLevelSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UPocketLevelSubsystem() +{ + if (!Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton, Z_Construct_UClass_UPocketLevelSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UPocketLevelSubsystem.OuterSingleton; +} +template<> POCKETWORLDS_API UClass* StaticClass() +{ + return UPocketLevelSubsystem::StaticClass(); +} +UPocketLevelSubsystem::UPocketLevelSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UPocketLevelSubsystem); +UPocketLevelSubsystem::~UPocketLevelSubsystem() {} +// End Class UPocketLevelSubsystem + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UPocketLevelSubsystem, UPocketLevelSubsystem::StaticClass, TEXT("UPocketLevelSubsystem"), &Z_Registration_Info_UClass_UPocketLevelSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UPocketLevelSubsystem), 2762088548U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_2948742409(TEXT("/Script/PocketWorlds"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h new file mode 100644 index 00000000..7bec313e --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketLevelSystem.generated.h @@ -0,0 +1,56 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "PocketLevelSystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +#ifdef POCKETWORLDS_PocketLevelSystem_generated_h +#error "PocketLevelSystem.generated.h already included, missing '#pragma once' in PocketLevelSystem.h" +#endif +#define POCKETWORLDS_PocketLevelSystem_generated_h + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUPocketLevelSubsystem(); \ + friend struct Z_Construct_UClass_UPocketLevelSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UPocketLevelSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/PocketWorlds"), NO_API) \ + DECLARE_SERIALIZER(UPocketLevelSubsystem) + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UPocketLevelSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UPocketLevelSubsystem(UPocketLevelSubsystem&&); \ + UPocketLevelSubsystem(const UPocketLevelSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UPocketLevelSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UPocketLevelSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UPocketLevelSubsystem) \ + NO_API virtual ~UPocketLevelSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_17_PROLOG +#define FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h_20_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> POCKETWORLDS_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_PocketWorlds_Source_Public_PocketLevelSystem_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp new file mode 100644 index 00000000..9730c7f4 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp @@ -0,0 +1,29 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodePocketWorlds_init() {} + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_PocketWorlds; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_PocketWorlds() + { + if (!Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton) + { + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/PocketWorlds", + nullptr, + 0, + PKG_CompiledIn | 0x00000000, + 0x791A09C2, + 0x57C61C77, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_PocketWorlds.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_PocketWorlds(Z_Construct_UPackage__Script_PocketWorlds, TEXT("/Script/PocketWorlds"), Z_Registration_Info_UPackage__Script_PocketWorlds, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x791A09C2, 0x57C61C77)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorldsClasses.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorldsClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorldsClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/Timestamp b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/Timestamp new file mode 100644 index 00000000..c1d6539a --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/Timestamp @@ -0,0 +1,5 @@ +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketCapture.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevelInstance.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketCaptureSubsystem.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevel.h +E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public\PocketLevelSystem.h diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Default.rc2.res.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Default.rc2.res.rsp new file mode 100644 index 00000000..4d7419d5 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-PocketWorlds.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Definitions.PocketWorlds.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Definitions.PocketWorlds.h new file mode 100644 index 00000000..a643b07b --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Definitions.PocketWorlds.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for PocketWorlds +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef POCKETWORLDS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "PocketWorlds" +#define UE_PLUGIN_NAME "PocketWorlds" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define POCKETWORLDS_API DLLEXPORT diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/LiveCodingInfo.json b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/LiveCodingInfo.json new file mode 100644 index 00000000..8906fe2b --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/LiveCodingInfo.json @@ -0,0 +1,15 @@ +{ + "RemapUnityFiles": + { + "Module.PocketWorlds.cpp.obj": [ + "PocketWorlds.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "PocketCapture.cpp.obj", + "PocketCaptureSubsystem.cpp.obj", + "PocketLevel.cpp.obj", + "PocketLevelInstance.cpp.obj", + "PocketLevelSystem.cpp.obj", + "PocketWorldsModule.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp new file mode 100644 index 00000000..7424c798 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp @@ -0,0 +1,9 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealEditor/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketCapture.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketCaptureSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevel.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevelInstance.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevelSystem.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketWorldsModule.cpp" diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp new file mode 100644 index 00000000..adcff1ce --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Definitions.PocketWorlds.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\PocketWorlds.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PerModuleInline.gen.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PocketWorlds.Shared.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PocketWorlds.Shared.rsp new file mode 100644 index 00000000..5ce162c1 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/PocketWorlds.Shared.rsp @@ -0,0 +1,302 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Private" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\UnrealEditor\Inc\PocketWorlds\UHT" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.dll.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.dll.rsp new file mode 100644 index 00000000..8512b125 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.dll.rsp @@ -0,0 +1,72 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp.obj" +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor-PocketWorlds.dll" +/PDB:"E:\Projects\cross_platform\Plugins\PocketWorlds\Binaries\Win64\UnrealEditor-PocketWorlds.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.lib.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.lib.rsp new file mode 100644 index 00000000..7a9e50a5 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealEditor/Development/PocketWorlds/UnrealEditor-PocketWorlds.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-PocketWorlds.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Module.PocketWorlds.cpp.obj" +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealEditor\Development\PocketWorlds\UnrealEditor-PocketWorlds.lib" \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Definitions.PocketWorlds.h b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Definitions.PocketWorlds.h new file mode 100644 index 00000000..1cb7ca20 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Definitions.PocketWorlds.h @@ -0,0 +1,20 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for PocketWorlds +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef POCKETWORLDS_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "PocketWorlds" +#define UE_PLUGIN_NAME "PocketWorlds" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define POCKETWORLDS_API diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp new file mode 100644 index 00000000..1b807a86 --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp @@ -0,0 +1,8 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Intermediate/Build/Win64/UnrealGame/Inc/PocketWorlds/UHT/PocketWorlds.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketCapture.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketCaptureSubsystem.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevel.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevelInstance.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketLevelSystem.cpp" +#include "E:/Projects/cross_platform/Plugins/PocketWorlds/Source/Private/PocketWorldsModule.cpp" diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp new file mode 100644 index 00000000..c88173ed --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/Module.PocketWorlds.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\Module.PocketWorlds.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\Definitions.PocketWorlds.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\Module.PocketWorlds.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\Module.PocketWorlds.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\Module.PocketWorlds.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\x64\UnrealGame\Shipping\PocketWorlds\PocketWorlds.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/PocketWorlds.Shared.rsp b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/PocketWorlds.Shared.rsp new file mode 100644 index 00000000..535c643f --- /dev/null +++ b/Plugins/PocketWorlds/Intermediate/Build/Win64/x64/UnrealGame/Shipping/PocketWorlds/PocketWorlds.Shared.rsp @@ -0,0 +1,132 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Private" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Intermediate\Build\Win64\UnrealGame\Inc\PocketWorlds\UHT" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source" +/I "E:\Projects\cross_platform\Plugins\PocketWorlds\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/Timestamp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/Timestamp new file mode 100644 index 00000000..933451e3 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/Timestamp @@ -0,0 +1,2 @@ +E:\Projects\cross_platform\Plugins\UIExtension\Source\Public\Widgets\UIExtensionPointWidget.h +E:\Projects\cross_platform\Plugins\UIExtension\Source\Public\UIExtensionSystem.h diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtension.init.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtension.init.gen.cpp new file mode 100644 index 00000000..f64b75e7 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtension.init.gen.cpp @@ -0,0 +1,37 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtension_init() {} + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature(); + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature(); + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_UIExtension; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_UIExtension() + { + if (!Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/UIExtension", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xD10F3523, + 0xC3D122FE, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_UIExtension(Z_Construct_UPackage__Script_UIExtension, TEXT("/Script/UIExtension"), Z_Registration_Info_UPackage__Script_UIExtension, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xD10F3523, 0xC3D122FE)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionClasses.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp new file mode 100644 index 00000000..8abe53a1 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp @@ -0,0 +1,293 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/UIExtensionPointWidget.h" +#include "Public/UIExtensionSystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtensionPointWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointWidget(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointWidget_NoRegister(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle(); +UMG_API UClass* Z_Construct_UClass_UDynamicEntryBoxBase(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_UIExtension(); +// End Cross Module References + +// Begin Delegate FOnGetWidgetClassForData +struct Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics +{ + struct UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms + { + UObject* DataItem; + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataItem; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_DataItem = { "DataItem", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms, DataItem), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_DataItem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointWidget, nullptr, "OnGetWidgetClassForData__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +TSubclassOf UUIExtensionPointWidget::FOnGetWidgetClassForData_DelegateWrapper(const FScriptDelegate& OnGetWidgetClassForData, UObject* DataItem) +{ + struct UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms + { + UObject* DataItem; + TSubclassOf ReturnValue; + + /** Constructor, initializes return property only **/ + UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms() + : ReturnValue(NULL) + { + } + }; + UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms Parms; + Parms.DataItem=DataItem; + OnGetWidgetClassForData.ProcessDelegate(&Parms); + return Parms.ReturnValue; +} +// End Delegate FOnGetWidgetClassForData + +// Begin Delegate FOnConfigureWidgetForData +struct Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics +{ + struct UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms + { + UUserWidget* Widget; + UObject* DataItem; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Widget; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataItem; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_Widget = { "Widget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms, Widget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widget_MetaData), NewProp_Widget_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_DataItem = { "DataItem", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms, DataItem), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_Widget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_DataItem, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointWidget, nullptr, "OnConfigureWidgetForData__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UUIExtensionPointWidget::FOnConfigureWidgetForData_DelegateWrapper(const FScriptDelegate& OnConfigureWidgetForData, UUserWidget* Widget, UObject* DataItem) +{ + struct UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms + { + UUserWidget* Widget; + UObject* DataItem; + }; + UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms Parms; + Parms.Widget=Widget; + Parms.DataItem=DataItem; + OnConfigureWidgetForData.ProcessDelegate(&Parms); +} +// End Delegate FOnConfigureWidgetForData + +// Begin Class UUIExtensionPointWidget +void UUIExtensionPointWidget::StaticRegisterNativesUUIExtensionPointWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionPointWidget); +UClass* Z_Construct_UClass_UUIExtensionPointWidget_NoRegister() +{ + return UUIExtensionPointWidget::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionPointWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A slot that defines a location in a layout, where content can be added later\n */" }, +#endif + { "IncludePath", "Widgets/UIExtensionPointWidget.h" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A slot that defines a location in a layout, where content can be added later" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTag_MetaData[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tag that defines this extension point */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tag that defines this extension point" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTagMatch_MetaData[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How exactly does the extension need to match the extension point tag. */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How exactly does the extension need to match the extension point tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DataClasses_MetaData[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GetWidgetClassForData_MetaData[] = { + { "Category", "UI Extension" }, + { "IsBindableEvent", "True" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfigureWidgetForData_MetaData[] = { + { "Category", "UI Extension" }, + { "IsBindableEvent", "True" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionMapping_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_ExtensionPointTagMatch_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ExtensionPointTagMatch; + static const UECodeGen_Private::FClassPropertyParams NewProp_DataClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DataClasses; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_GetWidgetClassForData; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_ConfigureWidgetForData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ExtensionMapping_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionMapping_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionMapping; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, "OnConfigureWidgetForData__DelegateSignature" }, // 3893010171 + { &Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, "OnGetWidgetClassForData__DelegateSignature" }, // 3628552894 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTag_MetaData), NewProp_ExtensionPointTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch = { "ExtensionPointTagMatch", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionPointTagMatch), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTagMatch_MetaData), NewProp_ExtensionPointTagMatch_MetaData) }; // 3152702222 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses_Inner = { "DataClasses", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses = { "DataClasses", nullptr, (EPropertyFlags)0x0124080000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, DataClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DataClasses_MetaData), NewProp_DataClasses_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_GetWidgetClassForData = { "GetWidgetClassForData", nullptr, (EPropertyFlags)0x0020080000080015, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, GetWidgetClassForData), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GetWidgetClassForData_MetaData), NewProp_GetWidgetClassForData_MetaData) }; // 3628552894 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ConfigureWidgetForData = { "ConfigureWidgetForData", nullptr, (EPropertyFlags)0x0020080000080015, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ConfigureWidgetForData), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfigureWidgetForData_MetaData), NewProp_ConfigureWidgetForData_MetaData) }; // 3893010171 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_ValueProp = { "ExtensionMapping", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_Key_KeyProp = { "ExtensionMapping_Key", nullptr, (EPropertyFlags)0x0100000000080008, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping = { "ExtensionMapping", nullptr, (EPropertyFlags)0x0124088000002008, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionMapping), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionMapping_MetaData), NewProp_ExtensionMapping_MetaData) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_GetWidgetClassForData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ConfigureWidgetForData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UUIExtensionPointWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDynamicEntryBoxBase, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::ClassParams = { + &UUIExtensionPointWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionPointWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionPointWidget() +{ + if (!Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton, Z_Construct_UClass_UUIExtensionPointWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionPointWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionPointWidget); +UUIExtensionPointWidget::~UUIExtensionPointWidget() {} +// End Class UUIExtensionPointWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UUIExtensionPointWidget, UUIExtensionPointWidget::StaticClass, TEXT("UUIExtensionPointWidget"), &Z_Registration_Info_UClass_UUIExtensionPointWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionPointWidget), 3718431278U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_3633234433(TEXT("/Script/UIExtension"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h new file mode 100644 index 00000000..e7dc5d29 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/UIExtensionPointWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +#ifdef UIEXTENSION_UIExtensionPointWidget_generated_h +#error "UIExtensionPointWidget.generated.h already included, missing '#pragma once' in UIExtensionPointWidget.h" +#endif +#define UIEXTENSION_UIExtensionPointWidget_generated_h + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_25_DELEGATE \ +static TSubclassOf FOnGetWidgetClassForData_DelegateWrapper(const FScriptDelegate& OnGetWidgetClassForData, UObject* DataItem); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_26_DELEGATE \ +static void FOnConfigureWidgetForData_DelegateWrapper(const FScriptDelegate& OnConfigureWidgetForData, UUserWidget* Widget, UObject* DataItem); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionPointWidget(); \ + friend struct Z_Construct_UClass_UUIExtensionPointWidget_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionPointWidget, UDynamicEntryBoxBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionPointWidget) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionPointWidget(UUIExtensionPointWidget&&); \ + UUIExtensionPointWidget(const UUIExtensionPointWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionPointWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionPointWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UUIExtensionPointWidget) \ + NO_API virtual ~UUIExtensionPointWidget(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp new file mode 100644 index 00000000..e3c42b99 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp @@ -0,0 +1,1277 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/UIExtensionSystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtensionSystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionHandleFunctions(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionHandleFunctions_NoRegister(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions_NoRegister(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionSubsystem(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionSubsystem_NoRegister(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionAction(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionPointHandle(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionRequest(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_UIExtension(); +// End Cross Module References + +// Begin Enum EUIExtensionPointMatch +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EUIExtensionPointMatch; +static UEnum* EUIExtensionPointMatch_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton) + { + Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("EUIExtensionPointMatch")); + } + return Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton; +} +template<> UIEXTENSION_API UEnum* StaticEnum() +{ + return EUIExtensionPointMatch_StaticEnum(); +} +struct Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for extension points\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive extensions with exactly the same point\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EUIExtensionPointMatch::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive extensions with exactly the same point\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + { "PartialMatch.Comment", "// A partial match will receive any extensions rooted in the same point\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EUIExtensionPointMatch::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any extensions rooted in the same point\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for extension points" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EUIExtensionPointMatch::ExactMatch", (int64)EUIExtensionPointMatch::ExactMatch }, + { "EUIExtensionPointMatch::PartialMatch", (int64)EUIExtensionPointMatch::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + "EUIExtensionPointMatch", + "EUIExtensionPointMatch", + Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enum_MetaDataParams), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton, Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton; +} +// End Enum EUIExtensionPointMatch + +// Begin Enum EUIExtensionAction +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EUIExtensionAction; +static UEnum* EUIExtensionAction_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton) + { + Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_UIExtension_EUIExtensionAction, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("EUIExtensionAction")); + } + return Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton; +} +template<> UIEXTENSION_API UEnum* StaticEnum() +{ + return EUIExtensionAction_StaticEnum(); +} +struct Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Added.Name", "EUIExtensionAction::Added" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for extension points\n" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + { "Removed.Name", "EUIExtensionAction::Removed" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for extension points" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EUIExtensionAction::Added", (int64)EUIExtensionAction::Added }, + { "EUIExtensionAction::Removed", (int64)EUIExtensionAction::Removed }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + "EUIExtensionAction", + "EUIExtensionAction", + Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enum_MetaDataParams), Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionAction() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton, Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton; +} +// End Enum EUIExtensionAction + +// Begin ScriptStruct FUIExtensionPointHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionPointHandle; +class UScriptStruct* FUIExtensionPointHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionPointHandle, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionPointHandle")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionPointHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionPointHandle", + nullptr, + 0, + sizeof(FUIExtensionPointHandle), + alignof(FUIExtensionPointHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionPointHandle() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton; +} +// End ScriptStruct FUIExtensionPointHandle + +// Begin ScriptStruct FUIExtensionHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionHandle; +class UScriptStruct* FUIExtensionHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionHandle, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionHandle")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionHandle", + nullptr, + 0, + sizeof(FUIExtensionHandle), + alignof(FUIExtensionHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton; +} +// End ScriptStruct FUIExtensionHandle + +// Begin ScriptStruct FUIExtensionRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionRequest; +class UScriptStruct* FUIExtensionRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionRequest, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionRequest")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionHandle_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTag_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Data_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextObject_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionHandle; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionHandle = { "ExtensionHandle", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ExtensionHandle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionHandle_MetaData), NewProp_ExtensionHandle_MetaData) }; // 1179062462 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTag_MetaData), NewProp_ExtensionPointTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Data_MetaData), NewProp_Data_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextObject_MetaData), NewProp_ContextObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ContextObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionRequest", + Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers), + sizeof(FUIExtensionRequest), + alignof(FUIExtensionRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionRequest() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton; +} +// End ScriptStruct FUIExtensionRequest + +// Begin Delegate FExtendExtensionPointDynamicDelegate +struct Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms + { + EUIExtensionAction Action; + FUIExtensionRequest ExtensionRequest; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionRequest_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Action_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Action; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionRequest; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action = { "Action", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms, Action), Z_Construct_UEnum_UIExtension_EUIExtensionAction, METADATA_PARAMS(0, nullptr) }; // 159843821 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_ExtensionRequest = { "ExtensionRequest", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms, ExtensionRequest), Z_Construct_UScriptStruct_FUIExtensionRequest, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionRequest_MetaData), NewProp_ExtensionRequest_MetaData) }; // 3386321888 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_ExtensionRequest, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, nullptr, "ExtendExtensionPointDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FExtendExtensionPointDynamicDelegate_DelegateWrapper(const FScriptDelegate& ExtendExtensionPointDynamicDelegate, EUIExtensionAction Action, FUIExtensionRequest const& ExtensionRequest) +{ + struct _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms + { + EUIExtensionAction Action; + FUIExtensionRequest ExtensionRequest; + }; + _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms Parms; + Parms.Action=Action; + Parms.ExtensionRequest=ExtensionRequest; + ExtendExtensionPointDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FExtendExtensionPointDynamicDelegate + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsData +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms + { + FGameplayTag ExtensionPointTag; + UObject* Data; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the extension as data for any extension point that can make use of it.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Data)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the extension as data for any extension point that can make use of it." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsData", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsData) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UObject,Z_Param_Data); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsData(Z_Param_ExtensionPointTag,Z_Param_Data,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsData + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsDataForContext +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms + { + FGameplayTag ExtensionPointTag; + UObject* ContextObject; + UObject* Data; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the extension as data for any extension point that can make use of it.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Data For Context)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the extension as data for any extension point that can make use of it." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsDataForContext", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsDataForContext) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UObject,Z_Param_ContextObject); + P_GET_OBJECT(UObject,Z_Param_Data); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsDataForContext(Z_Param_ExtensionPointTag,Z_Param_ContextObject,Z_Param_Data,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsDataForContext + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidget +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms + { + FGameplayTag ExtensionPointTag; + TSubclassOf WidgetClass; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Widget)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsWidget", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsWidget) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsWidget(Z_Param_ExtensionPointTag,Z_Param_WidgetClass,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidget + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidgetForContext +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms + { + FGameplayTag ExtensionPointTag; + TSubclassOf WidgetClass; + UObject* ContextObject; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the widget (as data) for a specific player. This means the extension points will receive a UIExtensionForPlayer data object\n\x09 * that they can look at to determine if it's for whatever they consider their player.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Widget For Context)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the widget (as data) for a specific player. This means the extension points will receive a UIExtensionForPlayer data object\nthat they can look at to determine if it's for whatever they consider their player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsWidgetForContext", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsWidgetForContext) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_GET_OBJECT(UObject,Z_Param_ContextObject); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsWidgetForContext(Z_Param_ExtensionPointTag,Z_Param_WidgetClass,Z_Param_ContextObject,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidgetForContext + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionPoint +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms + { + FGameplayTag ExtensionPointTag; + EUIExtensionPointMatch ExtensionPointTagMatchType; + TArray AllowedDataClasses; + FScriptDelegate ExtensionCallback; + FUIExtensionPointHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "DisplayName", "Register Extension Point" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowedDataClasses_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_ExtensionPointTagMatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ExtensionPointTagMatchType; + static const UECodeGen_Private::FClassPropertyParams NewProp_AllowedDataClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AllowedDataClasses; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_ExtensionCallback; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType = { "ExtensionPointTagMatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionPointTagMatchType), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, METADATA_PARAMS(0, nullptr) }; // 3152702222 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses_Inner = { "AllowedDataClasses", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses = { "AllowedDataClasses", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, AllowedDataClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowedDataClasses_MetaData), NewProp_AllowedDataClasses_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionCallback = { "ExtensionCallback", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionCallback), Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 3272378073 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionCallback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionPoint", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionPoint) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_ENUM(EUIExtensionPointMatch,Z_Param_ExtensionPointTagMatchType); + P_GET_TARRAY_REF(UClass*,Z_Param_Out_AllowedDataClasses); + P_GET_PROPERTY(FDelegateProperty,Z_Param_ExtensionCallback); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionPointHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionPoint(Z_Param_ExtensionPointTag,EUIExtensionPointMatch(Z_Param_ExtensionPointTagMatchType),Z_Param_Out_AllowedDataClasses,FExtendExtensionPointDynamicDelegate(Z_Param_ExtensionCallback)); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionPoint + +// Begin Class UUIExtensionSubsystem Function UnregisterExtension +struct Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics +{ + struct UIExtensionSubsystem_eventUnregisterExtension_Parms + { + FUIExtensionHandle ExtensionHandle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionHandle_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::NewProp_ExtensionHandle = { "ExtensionHandle", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventUnregisterExtension_Parms, ExtensionHandle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionHandle_MetaData), NewProp_ExtensionHandle_MetaData) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::NewProp_ExtensionHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "UnregisterExtension", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::UIExtensionSubsystem_eventUnregisterExtension_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::UIExtensionSubsystem_eventUnregisterExtension_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execUnregisterExtension) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_ExtensionHandle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterExtension(Z_Param_Out_ExtensionHandle); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function UnregisterExtension + +// Begin Class UUIExtensionSubsystem Function UnregisterExtensionPoint +struct Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics +{ + struct UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms + { + FUIExtensionPointHandle ExtensionPointHandle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointHandle_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::NewProp_ExtensionPointHandle = { "ExtensionPointHandle", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms, ExtensionPointHandle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointHandle_MetaData), NewProp_ExtensionPointHandle_MetaData) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::NewProp_ExtensionPointHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "UnregisterExtensionPoint", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execUnregisterExtensionPoint) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_ExtensionPointHandle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterExtensionPoint(Z_Param_Out_ExtensionPointHandle); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function UnregisterExtensionPoint + +// Begin Class UUIExtensionSubsystem +void UUIExtensionSubsystem::StaticRegisterNativesUUIExtensionSubsystem() +{ + UClass* Class = UUIExtensionSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "K2_RegisterExtensionAsData", &UUIExtensionSubsystem::execK2_RegisterExtensionAsData }, + { "K2_RegisterExtensionAsDataForContext", &UUIExtensionSubsystem::execK2_RegisterExtensionAsDataForContext }, + { "K2_RegisterExtensionAsWidget", &UUIExtensionSubsystem::execK2_RegisterExtensionAsWidget }, + { "K2_RegisterExtensionAsWidgetForContext", &UUIExtensionSubsystem::execK2_RegisterExtensionAsWidgetForContext }, + { "K2_RegisterExtensionPoint", &UUIExtensionSubsystem::execK2_RegisterExtensionPoint }, + { "UnregisterExtension", &UUIExtensionSubsystem::execUnregisterExtension }, + { "UnregisterExtensionPoint", &UUIExtensionSubsystem::execUnregisterExtensionPoint }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionSubsystem); +UClass* Z_Construct_UClass_UUIExtensionSubsystem_NoRegister() +{ + return UUIExtensionSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData, "K2_RegisterExtensionAsData" }, // 1046889944 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext, "K2_RegisterExtensionAsDataForContext" }, // 3390176288 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget, "K2_RegisterExtensionAsWidget" }, // 229755877 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext, "K2_RegisterExtensionAsWidgetForContext" }, // 2720217043 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint, "K2_RegisterExtensionPoint" }, // 2349192105 + { &Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension, "UnregisterExtension" }, // 3094848389 + { &Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint, "UnregisterExtensionPoint" }, // 2663000289 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionSubsystem_Statics::ClassParams = { + &UUIExtensionSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionSubsystem() +{ + if (!Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton, Z_Construct_UClass_UUIExtensionSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionSubsystem::StaticClass(); +} +UUIExtensionSubsystem::UUIExtensionSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionSubsystem); +UUIExtensionSubsystem::~UUIExtensionSubsystem() {} +// End Class UUIExtensionSubsystem + +// Begin Class UUIExtensionHandleFunctions Function IsValid +struct Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics +{ + struct UIExtensionHandleFunctions_eventIsValid_Parms + { + FUIExtensionHandle Handle; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionHandleFunctions_eventIsValid_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +void Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((UIExtensionHandleFunctions_eventIsValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIExtensionHandleFunctions_eventIsValid_Parms), &Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_Handle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionHandleFunctions, nullptr, "IsValid", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::UIExtensionHandleFunctions_eventIsValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::UIExtensionHandleFunctions_eventIsValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionHandleFunctions::execIsValid) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UUIExtensionHandleFunctions::IsValid(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionHandleFunctions Function IsValid + +// Begin Class UUIExtensionHandleFunctions Function Unregister +struct Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics +{ + struct UIExtensionHandleFunctions_eventUnregister_Parms + { + FUIExtensionHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionHandleFunctions_eventUnregister_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionHandleFunctions, nullptr, "Unregister", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::UIExtensionHandleFunctions_eventUnregister_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::UIExtensionHandleFunctions_eventUnregister_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionHandleFunctions::execUnregister) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + UUIExtensionHandleFunctions::Unregister(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionHandleFunctions Function Unregister + +// Begin Class UUIExtensionHandleFunctions +void UUIExtensionHandleFunctions::StaticRegisterNativesUUIExtensionHandleFunctions() +{ + UClass* Class = UUIExtensionHandleFunctions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsValid", &UUIExtensionHandleFunctions::execIsValid }, + { "Unregister", &UUIExtensionHandleFunctions::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionHandleFunctions); +UClass* Z_Construct_UClass_UUIExtensionHandleFunctions_NoRegister() +{ + return UUIExtensionHandleFunctions::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionHandleFunctions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid, "IsValid" }, // 374517401 + { &Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister, "Unregister" }, // 3772865440 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::ClassParams = { + &UUIExtensionHandleFunctions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionHandleFunctions() +{ + if (!Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton, Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionHandleFunctions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionHandleFunctions); +UUIExtensionHandleFunctions::~UUIExtensionHandleFunctions() {} +// End Class UUIExtensionHandleFunctions + +// Begin Class UUIExtensionPointHandleFunctions Function IsValid +struct Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics +{ + struct UIExtensionPointHandleFunctions_eventIsValid_Parms + { + FUIExtensionPointHandle Handle; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointHandleFunctions_eventIsValid_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +void Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((UIExtensionPointHandleFunctions_eventIsValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIExtensionPointHandleFunctions_eventIsValid_Parms), &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_Handle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointHandleFunctions, nullptr, "IsValid", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::UIExtensionPointHandleFunctions_eventIsValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::UIExtensionPointHandleFunctions_eventIsValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionPointHandleFunctions::execIsValid) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UUIExtensionPointHandleFunctions::IsValid(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionPointHandleFunctions Function IsValid + +// Begin Class UUIExtensionPointHandleFunctions Function Unregister +struct Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics +{ + struct UIExtensionPointHandleFunctions_eventUnregister_Parms + { + FUIExtensionPointHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointHandleFunctions_eventUnregister_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointHandleFunctions, nullptr, "Unregister", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::UIExtensionPointHandleFunctions_eventUnregister_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::UIExtensionPointHandleFunctions_eventUnregister_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionPointHandleFunctions::execUnregister) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + UUIExtensionPointHandleFunctions::Unregister(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionPointHandleFunctions Function Unregister + +// Begin Class UUIExtensionPointHandleFunctions +void UUIExtensionPointHandleFunctions::StaticRegisterNativesUUIExtensionPointHandleFunctions() +{ + UClass* Class = UUIExtensionPointHandleFunctions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsValid", &UUIExtensionPointHandleFunctions::execIsValid }, + { "Unregister", &UUIExtensionPointHandleFunctions::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionPointHandleFunctions); +UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions_NoRegister() +{ + return UUIExtensionPointHandleFunctions::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid, "IsValid" }, // 3775770831 + { &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister, "Unregister" }, // 2272293190 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::ClassParams = { + &UUIExtensionPointHandleFunctions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions() +{ + if (!Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton, Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionPointHandleFunctions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionPointHandleFunctions); +UUIExtensionPointHandleFunctions::~UUIExtensionPointHandleFunctions() {} +// End Class UUIExtensionPointHandleFunctions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EUIExtensionPointMatch_StaticEnum, TEXT("EUIExtensionPointMatch"), &Z_Registration_Info_UEnum_EUIExtensionPointMatch, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3152702222U) }, + { EUIExtensionAction_StaticEnum, TEXT("EUIExtensionAction"), &Z_Registration_Info_UEnum_EUIExtensionAction, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 159843821U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FUIExtensionPointHandle::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::NewStructOps, TEXT("UIExtensionPointHandle"), &Z_Registration_Info_UScriptStruct_UIExtensionPointHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionPointHandle), 1698801720U) }, + { FUIExtensionHandle::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::NewStructOps, TEXT("UIExtensionHandle"), &Z_Registration_Info_UScriptStruct_UIExtensionHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionHandle), 1179062462U) }, + { FUIExtensionRequest::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewStructOps, TEXT("UIExtensionRequest"), &Z_Registration_Info_UScriptStruct_UIExtensionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionRequest), 3386321888U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UUIExtensionSubsystem, UUIExtensionSubsystem::StaticClass, TEXT("UUIExtensionSubsystem"), &Z_Registration_Info_UClass_UUIExtensionSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionSubsystem), 1105519076U) }, + { Z_Construct_UClass_UUIExtensionHandleFunctions, UUIExtensionHandleFunctions::StaticClass, TEXT("UUIExtensionHandleFunctions"), &Z_Registration_Info_UClass_UUIExtensionHandleFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionHandleFunctions), 3862391340U) }, + { Z_Construct_UClass_UUIExtensionPointHandleFunctions, UUIExtensionPointHandleFunctions::StaticClass, TEXT("UUIExtensionPointHandleFunctions"), &Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionPointHandleFunctions), 3372044053U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_616222840(TEXT("/Script/UIExtension"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.generated.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.generated.h new file mode 100644 index 00000000..0e98e614 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtensionSystem.generated.h @@ -0,0 +1,194 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UIExtensionSystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +enum class EUIExtensionAction : uint8; +enum class EUIExtensionPointMatch : uint8; +struct FGameplayTag; +struct FUIExtensionHandle; +struct FUIExtensionPointHandle; +struct FUIExtensionRequest; +#ifdef UIEXTENSION_UIExtensionSystem_generated_h +#error "UIExtensionSystem.generated.h already included, missing '#pragma once' in UIExtensionSystem.h" +#endif +#define UIEXTENSION_UIExtensionSystem_generated_h + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_79_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_122_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_165_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionRequest_Statics; \ + UIEXTENSION_API static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_184_DELEGATE \ +UIEXTENSION_API void FExtendExtensionPointDynamicDelegate_DelegateWrapper(const FScriptDelegate& ExtendExtensionPointDynamicDelegate, EUIExtensionAction Action, FUIExtensionRequest const& ExtensionRequest); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsDataForContext); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsData); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsWidgetForContext); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsWidget); \ + DECLARE_FUNCTION(execK2_RegisterExtensionPoint); \ + DECLARE_FUNCTION(execUnregisterExtensionPoint); \ + DECLARE_FUNCTION(execUnregisterExtension); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionSubsystem(); \ + friend struct Z_Construct_UClass_UUIExtensionSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionSubsystem) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UUIExtensionSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionSubsystem(UUIExtensionSubsystem&&); \ + UUIExtensionSubsystem(const UUIExtensionSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionSubsystem) \ + NO_API virtual ~UUIExtensionSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_189_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsValid); \ + DECLARE_FUNCTION(execUnregister); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionHandleFunctions(); \ + friend struct Z_Construct_UClass_UUIExtensionHandleFunctions_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionHandleFunctions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionHandleFunctions) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionHandleFunctions(UUIExtensionHandleFunctions&&); \ + UUIExtensionHandleFunctions(const UUIExtensionHandleFunctions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionHandleFunctions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionHandleFunctions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionHandleFunctions) \ + NO_API virtual ~UUIExtensionHandleFunctions(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_253_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsValid); \ + DECLARE_FUNCTION(execUnregister); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionPointHandleFunctions(); \ + friend struct Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionPointHandleFunctions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionPointHandleFunctions) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionPointHandleFunctions(UUIExtensionPointHandleFunctions&&); \ + UUIExtensionPointHandleFunctions(const UUIExtensionPointHandleFunctions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionPointHandleFunctions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionPointHandleFunctions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionPointHandleFunctions) \ + NO_API virtual ~UUIExtensionPointHandleFunctions(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_268_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h + + +#define FOREACH_ENUM_EUIEXTENSIONPOINTMATCH(op) \ + op(EUIExtensionPointMatch::ExactMatch) \ + op(EUIExtensionPointMatch::PartialMatch) + +enum class EUIExtensionPointMatch : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> UIEXTENSION_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_EUIEXTENSIONACTION(op) \ + op(EUIExtensionAction::Added) \ + op(EUIExtensionAction::Removed) + +enum class EUIExtensionAction : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> UIEXTENSION_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/Timestamp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/Timestamp new file mode 100644 index 00000000..7eea0416 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/Timestamp @@ -0,0 +1,2 @@ +E:\Projects\cross_platform\Plugins\UIExtension\Source\Public\UIExtensionSystem.h +E:\Projects\cross_platform\Plugins\UIExtension\Source\Public\Widgets\UIExtensionPointWidget.h diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtension.init.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtension.init.gen.cpp new file mode 100644 index 00000000..f64b75e7 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtension.init.gen.cpp @@ -0,0 +1,37 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtension_init() {} + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature(); + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature(); + UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature(); + static FPackageRegistrationInfo Z_Registration_Info_UPackage__Script_UIExtension; + FORCENOINLINE UPackage* Z_Construct_UPackage__Script_UIExtension() + { + if (!Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton) + { + static UObject* (*const SingletonFuncArray[])() = { + (UObject* (*)())Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, + (UObject* (*)())Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, + }; + static const UECodeGen_Private::FPackageParams PackageParams = { + "/Script/UIExtension", + SingletonFuncArray, + UE_ARRAY_COUNT(SingletonFuncArray), + PKG_CompiledIn | 0x00000000, + 0xD10F3523, + 0xC3D122FE, + METADATA_PARAMS(0, nullptr) + }; + UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton, PackageParams); + } + return Z_Registration_Info_UPackage__Script_UIExtension.OuterSingleton; + } + static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_UIExtension(Z_Construct_UPackage__Script_UIExtension, TEXT("/Script/UIExtension"), Z_Registration_Info_UPackage__Script_UIExtension, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0xD10F3523, 0xC3D122FE)); +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionClasses.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionClasses.h new file mode 100644 index 00000000..82953124 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionClasses.h @@ -0,0 +1,10 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#pragma once + + + diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp new file mode 100644 index 00000000..8abe53a1 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.gen.cpp @@ -0,0 +1,293 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/Widgets/UIExtensionPointWidget.h" +#include "Public/UIExtensionSystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtensionPointWidget() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointWidget(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointWidget_NoRegister(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle(); +UMG_API UClass* Z_Construct_UClass_UDynamicEntryBoxBase(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_UIExtension(); +// End Cross Module References + +// Begin Delegate FOnGetWidgetClassForData +struct Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics +{ + struct UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms + { + UObject* DataItem; + TSubclassOf ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataItem; + static const UECodeGen_Private::FClassPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_DataItem = { "DataItem", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms, DataItem), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FClassPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0014000000000580, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms, ReturnValue), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_DataItem, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointWidget, nullptr, "OnGetWidgetClassForData__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +TSubclassOf UUIExtensionPointWidget::FOnGetWidgetClassForData_DelegateWrapper(const FScriptDelegate& OnGetWidgetClassForData, UObject* DataItem) +{ + struct UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms + { + UObject* DataItem; + TSubclassOf ReturnValue; + + /** Constructor, initializes return property only **/ + UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms() + : ReturnValue(NULL) + { + } + }; + UIExtensionPointWidget_eventOnGetWidgetClassForData_Parms Parms; + Parms.DataItem=DataItem; + OnGetWidgetClassForData.ProcessDelegate(&Parms); + return Parms.ReturnValue; +} +// End Delegate FOnGetWidgetClassForData + +// Begin Delegate FOnConfigureWidgetForData +struct Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics +{ + struct UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms + { + UUserWidget* Widget; + UObject* DataItem; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Widget_MetaData[] = { + { "EditInline", "true" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FObjectPropertyParams NewProp_Widget; + static const UECodeGen_Private::FObjectPropertyParams NewProp_DataItem; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_Widget = { "Widget", nullptr, (EPropertyFlags)0x0010000000080080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms, Widget), Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Widget_MetaData), NewProp_Widget_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_DataItem = { "DataItem", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms, DataItem), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_Widget, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::NewProp_DataItem, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointWidget, nullptr, "OnConfigureWidgetForData__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void UUIExtensionPointWidget::FOnConfigureWidgetForData_DelegateWrapper(const FScriptDelegate& OnConfigureWidgetForData, UUserWidget* Widget, UObject* DataItem) +{ + struct UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms + { + UUserWidget* Widget; + UObject* DataItem; + }; + UIExtensionPointWidget_eventOnConfigureWidgetForData_Parms Parms; + Parms.Widget=Widget; + Parms.DataItem=DataItem; + OnConfigureWidgetForData.ProcessDelegate(&Parms); +} +// End Delegate FOnConfigureWidgetForData + +// Begin Class UUIExtensionPointWidget +void UUIExtensionPointWidget::StaticRegisterNativesUUIExtensionPointWidget() +{ +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionPointWidget); +UClass* Z_Construct_UClass_UUIExtensionPointWidget_NoRegister() +{ + return UUIExtensionPointWidget::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionPointWidget_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * A slot that defines a location in a layout, where content can be added later\n */" }, +#endif + { "IncludePath", "Widgets/UIExtensionPointWidget.h" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + { "ObjectInitializerConstructorDeclared", "" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "A slot that defines a location in a layout, where content can be added later" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTag_MetaData[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** The tag that defines this extension point */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "The tag that defines this extension point" }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTagMatch_MetaData[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/** How exactly does the extension need to match the extension point tag. */" }, +#endif + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "How exactly does the extension need to match the extension point tag." }, +#endif + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_DataClasses_MetaData[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_GetWidgetClassForData_MetaData[] = { + { "Category", "UI Extension" }, + { "IsBindableEvent", "True" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ConfigureWidgetForData_MetaData[] = { + { "Category", "UI Extension" }, + { "IsBindableEvent", "True" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionMapping_MetaData[] = { + { "EditInline", "true" }, + { "ModuleRelativePath", "Public/Widgets/UIExtensionPointWidget.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_ExtensionPointTagMatch_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ExtensionPointTagMatch; + static const UECodeGen_Private::FClassPropertyParams NewProp_DataClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_DataClasses; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_GetWidgetClassForData; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_ConfigureWidgetForData; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ExtensionMapping_ValueProp; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionMapping_Key_KeyProp; + static const UECodeGen_Private::FMapPropertyParams NewProp_ExtensionMapping; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, "OnConfigureWidgetForData__DelegateSignature" }, // 3893010171 + { &Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, "OnGetWidgetClassForData__DelegateSignature" }, // 3628552894 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTag_MetaData), NewProp_ExtensionPointTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch = { "ExtensionPointTagMatch", nullptr, (EPropertyFlags)0x0020080000000015, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionPointTagMatch), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTagMatch_MetaData), NewProp_ExtensionPointTagMatch_MetaData) }; // 3152702222 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses_Inner = { "DataClasses", nullptr, (EPropertyFlags)0x0104000000000000, UECodeGen_Private::EPropertyGenFlags::Class | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses = { "DataClasses", nullptr, (EPropertyFlags)0x0124080000000015, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, DataClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_DataClasses_MetaData), NewProp_DataClasses_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_GetWidgetClassForData = { "GetWidgetClassForData", nullptr, (EPropertyFlags)0x0020080000080015, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, GetWidgetClassForData), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnGetWidgetClassForData__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_GetWidgetClassForData_MetaData), NewProp_GetWidgetClassForData_MetaData) }; // 3628552894 +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ConfigureWidgetForData = { "ConfigureWidgetForData", nullptr, (EPropertyFlags)0x0020080000080015, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ConfigureWidgetForData), Z_Construct_UDelegateFunction_UUIExtensionPointWidget_OnConfigureWidgetForData__DelegateSignature, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ConfigureWidgetForData_MetaData), NewProp_ConfigureWidgetForData_MetaData) }; // 3893010171 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_ValueProp = { "ExtensionMapping", nullptr, (EPropertyFlags)0x0104000000080008, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 1, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_Key_KeyProp = { "ExtensionMapping_Key", nullptr, (EPropertyFlags)0x0100000000080008, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FMapPropertyParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping = { "ExtensionMapping", nullptr, (EPropertyFlags)0x0124088000002008, UECodeGen_Private::EPropertyGenFlags::Map, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UUIExtensionPointWidget, ExtensionMapping), EMapPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionMapping_MetaData), NewProp_ExtensionMapping_MetaData) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionPointTagMatch, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_DataClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_GetWidgetClassForData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ConfigureWidgetForData, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_ValueProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping_Key_KeyProp, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UUIExtensionPointWidget_Statics::NewProp_ExtensionMapping, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers) < 2048); +UObject* (*const Z_Construct_UClass_UUIExtensionPointWidget_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UDynamicEntryBoxBase, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionPointWidget_Statics::ClassParams = { + &UUIExtensionPointWidget::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::PropPointers), + 0, + 0x00B000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointWidget_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionPointWidget_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionPointWidget() +{ + if (!Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton, Z_Construct_UClass_UUIExtensionPointWidget_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionPointWidget.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionPointWidget::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionPointWidget); +UUIExtensionPointWidget::~UUIExtensionPointWidget() {} +// End Class UUIExtensionPointWidget + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics +{ + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UUIExtensionPointWidget, UUIExtensionPointWidget::StaticClass, TEXT("UUIExtensionPointWidget"), &Z_Registration_Info_UClass_UUIExtensionPointWidget, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionPointWidget), 3718431278U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_3633234433(TEXT("/Script/UIExtension"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_Statics::ClassInfo), + nullptr, 0, + nullptr, 0); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h new file mode 100644 index 00000000..e7dc5d29 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionPointWidget.generated.h @@ -0,0 +1,64 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "Widgets/UIExtensionPointWidget.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +#ifdef UIEXTENSION_UIExtensionPointWidget_generated_h +#error "UIExtensionPointWidget.generated.h already included, missing '#pragma once' in UIExtensionPointWidget.h" +#endif +#define UIEXTENSION_UIExtensionPointWidget_generated_h + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_25_DELEGATE \ +static TSubclassOf FOnGetWidgetClassForData_DelegateWrapper(const FScriptDelegate& OnGetWidgetClassForData, UObject* DataItem); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_26_DELEGATE \ +static void FOnConfigureWidgetForData_DelegateWrapper(const FScriptDelegate& OnConfigureWidgetForData, UUserWidget* Widget, UObject* DataItem); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionPointWidget(); \ + friend struct Z_Construct_UClass_UUIExtensionPointWidget_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionPointWidget, UDynamicEntryBoxBase, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionPointWidget) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionPointWidget(UUIExtensionPointWidget&&); \ + UUIExtensionPointWidget(const UUIExtensionPointWidget&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionPointWidget); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionPointWidget); \ + DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(UUIExtensionPointWidget) \ + NO_API virtual ~UUIExtensionPointWidget(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_18_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h_21_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_Widgets_UIExtensionPointWidget_h + + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp new file mode 100644 index 00000000..e3c42b99 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.gen.cpp @@ -0,0 +1,1277 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +#include "UObject/GeneratedCppIncludes.h" +#include "Public/UIExtensionSystem.h" +#include "Runtime/GameplayTags/Classes/GameplayTagContainer.h" +PRAGMA_DISABLE_DEPRECATION_WARNINGS +void EmptyLinkFunctionForGeneratedCodeUIExtensionSystem() {} + +// Begin Cross Module References +COREUOBJECT_API UClass* Z_Construct_UClass_UClass(); +COREUOBJECT_API UClass* Z_Construct_UClass_UObject_NoRegister(); +ENGINE_API UClass* Z_Construct_UClass_UBlueprintFunctionLibrary(); +ENGINE_API UClass* Z_Construct_UClass_UWorldSubsystem(); +GAMEPLAYTAGS_API UScriptStruct* Z_Construct_UScriptStruct_FGameplayTag(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionHandleFunctions(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionHandleFunctions_NoRegister(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions_NoRegister(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionSubsystem(); +UIEXTENSION_API UClass* Z_Construct_UClass_UUIExtensionSubsystem_NoRegister(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionAction(); +UIEXTENSION_API UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch(); +UIEXTENSION_API UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionPointHandle(); +UIEXTENSION_API UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionRequest(); +UMG_API UClass* Z_Construct_UClass_UUserWidget_NoRegister(); +UPackage* Z_Construct_UPackage__Script_UIExtension(); +// End Cross Module References + +// Begin Enum EUIExtensionPointMatch +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EUIExtensionPointMatch; +static UEnum* EUIExtensionPointMatch_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton) + { + Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("EUIExtensionPointMatch")); + } + return Z_Registration_Info_UEnum_EUIExtensionPointMatch.OuterSingleton; +} +template<> UIEXTENSION_API UEnum* StaticEnum() +{ + return EUIExtensionPointMatch_StaticEnum(); +} +struct Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for extension points\n" }, +#endif + { "ExactMatch.Comment", "// An exact match will only receive extensions with exactly the same point\n// (e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)\n" }, + { "ExactMatch.Name", "EUIExtensionPointMatch::ExactMatch" }, + { "ExactMatch.ToolTip", "An exact match will only receive extensions with exactly the same point\n(e.g., registering for \"A.B\" will match a broadcast of A.B but not A.B.C)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + { "PartialMatch.Comment", "// A partial match will receive any extensions rooted in the same point\n// (e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)\n" }, + { "PartialMatch.Name", "EUIExtensionPointMatch::PartialMatch" }, + { "PartialMatch.ToolTip", "A partial match will receive any extensions rooted in the same point\n(e.g., registering for \"A.B\" will match a broadcast of A.B as well as A.B.C)" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for extension points" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EUIExtensionPointMatch::ExactMatch", (int64)EUIExtensionPointMatch::ExactMatch }, + { "EUIExtensionPointMatch::PartialMatch", (int64)EUIExtensionPointMatch::PartialMatch }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + "EUIExtensionPointMatch", + "EUIExtensionPointMatch", + Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enum_MetaDataParams), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton, Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EUIExtensionPointMatch.InnerSingleton; +} +// End Enum EUIExtensionPointMatch + +// Begin Enum EUIExtensionAction +static FEnumRegistrationInfo Z_Registration_Info_UEnum_EUIExtensionAction; +static UEnum* EUIExtensionAction_StaticEnum() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton) + { + Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_UIExtension_EUIExtensionAction, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("EUIExtensionAction")); + } + return Z_Registration_Info_UEnum_EUIExtensionAction.OuterSingleton; +} +template<> UIEXTENSION_API UEnum* StaticEnum() +{ + return EUIExtensionAction_StaticEnum(); +} +struct Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { + { "Added.Name", "EUIExtensionAction::Added" }, + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "// Match rule for extension points\n" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + { "Removed.Name", "EUIExtensionAction::Removed" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Match rule for extension points" }, +#endif + }; +#endif // WITH_METADATA + static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { + { "EUIExtensionAction::Added", (int64)EUIExtensionAction::Added }, + { "EUIExtensionAction::Removed", (int64)EUIExtensionAction::Removed }, + }; + static const UECodeGen_Private::FEnumParams EnumParams; +}; +const UECodeGen_Private::FEnumParams Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::EnumParams = { + (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + "EUIExtensionAction", + "EUIExtensionAction", + Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enumerators, + RF_Public|RF_Transient|RF_MarkAsNative, + UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enumerators), + EEnumFlags::None, + (uint8)UEnum::ECppForm::EnumClass, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enum_MetaDataParams), Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::Enum_MetaDataParams) +}; +UEnum* Z_Construct_UEnum_UIExtension_EUIExtensionAction() +{ + if (!Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton) + { + UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton, Z_Construct_UEnum_UIExtension_EUIExtensionAction_Statics::EnumParams); + } + return Z_Registration_Info_UEnum_EUIExtensionAction.InnerSingleton; +} +// End Enum EUIExtensionAction + +// Begin ScriptStruct FUIExtensionPointHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionPointHandle; +class UScriptStruct* FUIExtensionPointHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionPointHandle, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionPointHandle")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionPointHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionPointHandle", + nullptr, + 0, + sizeof(FUIExtensionPointHandle), + alignof(FUIExtensionPointHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionPointHandle() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionPointHandle.InnerSingleton; +} +// End ScriptStruct FUIExtensionPointHandle + +// Begin ScriptStruct FUIExtensionHandle +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionHandle; +class UScriptStruct* FUIExtensionHandle::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionHandle, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionHandle")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionHandle.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionHandle::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionHandle_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionHandle", + nullptr, + 0, + sizeof(FUIExtensionHandle), + alignof(FUIExtensionHandle), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000201), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionHandle() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionHandle.InnerSingleton; +} +// End ScriptStruct FUIExtensionHandle + +// Begin ScriptStruct FUIExtensionRequest +static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_UIExtensionRequest; +class UScriptStruct* FUIExtensionRequest::StaticStruct() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton) + { + Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FUIExtensionRequest, (UObject*)Z_Construct_UPackage__Script_UIExtension(), TEXT("UIExtensionRequest")); + } + return Z_Registration_Info_UScriptStruct_UIExtensionRequest.OuterSingleton; +} +template<> UIEXTENSION_API UScriptStruct* StaticStruct() +{ + return FUIExtensionRequest::StaticStruct(); +} +struct Z_Construct_UScriptStruct_FUIExtensionRequest_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = { + { "BlueprintType", "true" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionHandle_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointTag_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Priority_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Data_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ContextObject_MetaData[] = { + { "Category", "UIExtensionRequest" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionHandle; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static void* NewStructOps() + { + return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps(); + } + static const UECodeGen_Private::FStructParams StructParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionHandle = { "ExtensionHandle", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ExtensionHandle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionHandle_MetaData), NewProp_ExtensionHandle_MetaData) }; // 1179062462 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointTag_MetaData), NewProp_ExtensionPointTag_MetaData) }; // 1298103297 +const UECodeGen_Private::FIntPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000015, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, Priority), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Priority_MetaData), NewProp_Priority_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Data_MetaData), NewProp_Data_MetaData) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0114000000000015, UECodeGen_Private::EPropertyGenFlags::Object | UECodeGen_Private::EPropertyGenFlags::ObjectPtr, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FUIExtensionRequest, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ContextObject_MetaData), NewProp_ContextObject_MetaData) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionHandle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewProp_ContextObject, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers) < 2048); +const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::StructParams = { + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, + nullptr, + &NewStructOps, + "UIExtensionRequest", + Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers, + UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::PropPointers), + sizeof(FUIExtensionRequest), + alignof(FUIExtensionRequest), + RF_Public|RF_Transient|RF_MarkAsNative, + EStructFlags(0x00000001), + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::Struct_MetaDataParams) +}; +UScriptStruct* Z_Construct_UScriptStruct_FUIExtensionRequest() +{ + if (!Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton) + { + UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton, Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::StructParams); + } + return Z_Registration_Info_UScriptStruct_UIExtensionRequest.InnerSingleton; +} +// End ScriptStruct FUIExtensionRequest + +// Begin Delegate FExtendExtensionPointDynamicDelegate +struct Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics +{ + struct _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms + { + EUIExtensionAction Action; + FUIExtensionRequest ExtensionRequest; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionRequest_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FBytePropertyParams NewProp_Action_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_Action; + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionRequest; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FBytePropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action = { "Action", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms, Action), Z_Construct_UEnum_UIExtension_EUIExtensionAction, METADATA_PARAMS(0, nullptr) }; // 159843821 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_ExtensionRequest = { "ExtensionRequest", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms, ExtensionRequest), Z_Construct_UScriptStruct_FUIExtensionRequest, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionRequest_MetaData), NewProp_ExtensionRequest_MetaData) }; // 3386321888 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_Action, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::NewProp_ExtensionRequest, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::FuncParams = { (UObject*(*)())Z_Construct_UPackage__Script_UIExtension, nullptr, "ExtendExtensionPointDynamicDelegate__DelegateSignature", nullptr, nullptr, Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::PropPointers), sizeof(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x00120000, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams), Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::_Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms) < MAX_uint16); +UFunction* Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature_Statics::FuncParams); + } + return ReturnFunction; +} +void FExtendExtensionPointDynamicDelegate_DelegateWrapper(const FScriptDelegate& ExtendExtensionPointDynamicDelegate, EUIExtensionAction Action, FUIExtensionRequest const& ExtensionRequest) +{ + struct _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms + { + EUIExtensionAction Action; + FUIExtensionRequest ExtensionRequest; + }; + _Script_UIExtension_eventExtendExtensionPointDynamicDelegate_Parms Parms; + Parms.Action=Action; + Parms.ExtensionRequest=ExtensionRequest; + ExtendExtensionPointDynamicDelegate.ProcessDelegate(&Parms); +} +// End Delegate FExtendExtensionPointDynamicDelegate + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsData +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms + { + FGameplayTag ExtensionPointTag; + UObject* Data; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the extension as data for any extension point that can make use of it.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Data)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the extension as data for any extension point that can make use of it." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsData", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsData_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsData) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UObject,Z_Param_Data); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsData(Z_Param_ExtensionPointTag,Z_Param_Data,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsData + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsDataForContext +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms + { + FGameplayTag ExtensionPointTag; + UObject* ContextObject; + UObject* Data; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the extension as data for any extension point that can make use of it.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Data For Context)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the extension as data for any extension point that can make use of it." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FObjectPropertyParams NewProp_Data; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Data = { "Data", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, Data), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Data, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsDataForContext", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsDataForContext_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsDataForContext) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UObject,Z_Param_ContextObject); + P_GET_OBJECT(UObject,Z_Param_Data); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsDataForContext(Z_Param_ExtensionPointTag,Z_Param_ContextObject,Z_Param_Data,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsDataForContext + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidget +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms + { + FGameplayTag ExtensionPointTag; + TSubclassOf WidgetClass; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Widget)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsWidget", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidget_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsWidget) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsWidget(Z_Param_ExtensionPointTag,Z_Param_WidgetClass,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidget + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidgetForContext +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms + { + FGameplayTag ExtensionPointTag; + TSubclassOf WidgetClass; + UObject* ContextObject; + int32 Priority; + FUIExtensionHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n\x09 * Registers the widget (as data) for a specific player. This means the extension points will receive a UIExtensionForPlayer data object\n\x09 * that they can look at to determine if it's for whatever they consider their player.\n\x09 */" }, +#endif + { "CPP_Default_Priority", "-1" }, + { "DisplayName", "Register Extension (Widget For Context)" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, +#if !UE_BUILD_SHIPPING + { "ToolTip", "Registers the widget (as data) for a specific player. This means the extension points will receive a UIExtensionForPlayer data object\nthat they can look at to determine if it's for whatever they consider their player." }, +#endif + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FClassPropertyParams NewProp_WidgetClass; + static const UECodeGen_Private::FObjectPropertyParams NewProp_ContextObject; + static const UECodeGen_Private::FIntPropertyParams NewProp_Priority; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_WidgetClass = { "WidgetClass", nullptr, (EPropertyFlags)0x0014000000000080, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, WidgetClass), Z_Construct_UClass_UClass, Z_Construct_UClass_UUserWidget_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FObjectPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ContextObject = { "ContextObject", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Object, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ContextObject), Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FIntPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_Priority = { "Priority", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, Priority), METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_WidgetClass, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ContextObject, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_Priority, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionAsWidgetForContext", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04080409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionAsWidgetForContext_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionAsWidgetForContext) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_OBJECT(UClass,Z_Param_WidgetClass); + P_GET_OBJECT(UObject,Z_Param_ContextObject); + P_GET_PROPERTY(FIntProperty,Z_Param_Priority); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionAsWidgetForContext(Z_Param_ExtensionPointTag,Z_Param_WidgetClass,Z_Param_ContextObject,Z_Param_Priority); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionAsWidgetForContext + +// Begin Class UUIExtensionSubsystem Function K2_RegisterExtensionPoint +struct Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics +{ + struct UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms + { + FGameplayTag ExtensionPointTag; + EUIExtensionPointMatch ExtensionPointTagMatchType; + TArray AllowedDataClasses; + FScriptDelegate ExtensionCallback; + FUIExtensionPointHandle ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "DisplayName", "Register Extension Point" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowedDataClasses_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointTag; + static const UECodeGen_Private::FBytePropertyParams NewProp_ExtensionPointTagMatchType_Underlying; + static const UECodeGen_Private::FEnumPropertyParams NewProp_ExtensionPointTagMatchType; + static const UECodeGen_Private::FClassPropertyParams NewProp_AllowedDataClasses_Inner; + static const UECodeGen_Private::FArrayPropertyParams NewProp_AllowedDataClasses; + static const UECodeGen_Private::FDelegatePropertyParams NewProp_ExtensionCallback; + static const UECodeGen_Private::FStructPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTag = { "ExtensionPointTag", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionPointTag), Z_Construct_UScriptStruct_FGameplayTag, METADATA_PARAMS(0, nullptr) }; // 1298103297 +const UECodeGen_Private::FBytePropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType_Underlying = { "UnderlyingType", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, nullptr, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FEnumPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType = { "ExtensionPointTagMatchType", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Enum, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionPointTagMatchType), Z_Construct_UEnum_UIExtension_EUIExtensionPointMatch, METADATA_PARAMS(0, nullptr) }; // 3152702222 +const UECodeGen_Private::FClassPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses_Inner = { "AllowedDataClasses", nullptr, (EPropertyFlags)0x0000000000000000, UECodeGen_Private::EPropertyGenFlags::Class, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, 0, Z_Construct_UClass_UClass, Z_Construct_UClass_UObject_NoRegister, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FArrayPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses = { "AllowedDataClasses", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Array, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, AllowedDataClasses), EArrayPropertyFlags::None, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowedDataClasses_MetaData), NewProp_AllowedDataClasses_MetaData) }; +const UECodeGen_Private::FDelegatePropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionCallback = { "ExtensionCallback", nullptr, (EPropertyFlags)0x0010000000000080, UECodeGen_Private::EPropertyGenFlags::Delegate, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ExtensionCallback), Z_Construct_UDelegateFunction_UIExtension_ExtendExtensionPointDynamicDelegate__DelegateSignature, METADATA_PARAMS(0, nullptr) }; // 3272378073 +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms, ReturnValue), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTag, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType_Underlying, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionPointTagMatchType, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses_Inner, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_AllowedDataClasses, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ExtensionCallback, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "K2_RegisterExtensionPoint", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04480409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::UIExtensionSubsystem_eventK2_RegisterExtensionPoint_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execK2_RegisterExtensionPoint) +{ + P_GET_STRUCT(FGameplayTag,Z_Param_ExtensionPointTag); + P_GET_ENUM(EUIExtensionPointMatch,Z_Param_ExtensionPointTagMatchType); + P_GET_TARRAY_REF(UClass*,Z_Param_Out_AllowedDataClasses); + P_GET_PROPERTY(FDelegateProperty,Z_Param_ExtensionCallback); + P_FINISH; + P_NATIVE_BEGIN; + *(FUIExtensionPointHandle*)Z_Param__Result=P_THIS->K2_RegisterExtensionPoint(Z_Param_ExtensionPointTag,EUIExtensionPointMatch(Z_Param_ExtensionPointTagMatchType),Z_Param_Out_AllowedDataClasses,FExtendExtensionPointDynamicDelegate(Z_Param_ExtensionCallback)); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function K2_RegisterExtensionPoint + +// Begin Class UUIExtensionSubsystem Function UnregisterExtension +struct Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics +{ + struct UIExtensionSubsystem_eventUnregisterExtension_Parms + { + FUIExtensionHandle ExtensionHandle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionHandle_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::NewProp_ExtensionHandle = { "ExtensionHandle", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventUnregisterExtension_Parms, ExtensionHandle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionHandle_MetaData), NewProp_ExtensionHandle_MetaData) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::NewProp_ExtensionHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "UnregisterExtension", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::UIExtensionSubsystem_eventUnregisterExtension_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::UIExtensionSubsystem_eventUnregisterExtension_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execUnregisterExtension) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_ExtensionHandle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterExtension(Z_Param_Out_ExtensionHandle); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function UnregisterExtension + +// Begin Class UUIExtensionSubsystem Function UnregisterExtensionPoint +struct Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics +{ + struct UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms + { + FUIExtensionPointHandle ExtensionPointHandle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; + static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ExtensionPointHandle_MetaData[] = { + { "NativeConst", "" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_ExtensionPointHandle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::NewProp_ExtensionPointHandle = { "ExtensionPointHandle", nullptr, (EPropertyFlags)0x0010000008000182, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms, ExtensionPointHandle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ExtensionPointHandle_MetaData), NewProp_ExtensionPointHandle_MetaData) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::NewProp_ExtensionPointHandle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionSubsystem, nullptr, "UnregisterExtensionPoint", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04420409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::UIExtensionSubsystem_eventUnregisterExtensionPoint_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionSubsystem::execUnregisterExtensionPoint) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_ExtensionPointHandle); + P_FINISH; + P_NATIVE_BEGIN; + P_THIS->UnregisterExtensionPoint(Z_Param_Out_ExtensionPointHandle); + P_NATIVE_END; +} +// End Class UUIExtensionSubsystem Function UnregisterExtensionPoint + +// Begin Class UUIExtensionSubsystem +void UUIExtensionSubsystem::StaticRegisterNativesUUIExtensionSubsystem() +{ + UClass* Class = UUIExtensionSubsystem::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "K2_RegisterExtensionAsData", &UUIExtensionSubsystem::execK2_RegisterExtensionAsData }, + { "K2_RegisterExtensionAsDataForContext", &UUIExtensionSubsystem::execK2_RegisterExtensionAsDataForContext }, + { "K2_RegisterExtensionAsWidget", &UUIExtensionSubsystem::execK2_RegisterExtensionAsWidget }, + { "K2_RegisterExtensionAsWidgetForContext", &UUIExtensionSubsystem::execK2_RegisterExtensionAsWidgetForContext }, + { "K2_RegisterExtensionPoint", &UUIExtensionSubsystem::execK2_RegisterExtensionPoint }, + { "UnregisterExtension", &UUIExtensionSubsystem::execUnregisterExtension }, + { "UnregisterExtensionPoint", &UUIExtensionSubsystem::execUnregisterExtensionPoint }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionSubsystem); +UClass* Z_Construct_UClass_UUIExtensionSubsystem_NoRegister() +{ + return UUIExtensionSubsystem::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionSubsystem_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { +#if !UE_BUILD_SHIPPING + { "Comment", "/**\n * \n */" }, +#endif + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsData, "K2_RegisterExtensionAsData" }, // 1046889944 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsDataForContext, "K2_RegisterExtensionAsDataForContext" }, // 3390176288 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidget, "K2_RegisterExtensionAsWidget" }, // 229755877 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionAsWidgetForContext, "K2_RegisterExtensionAsWidgetForContext" }, // 2720217043 + { &Z_Construct_UFunction_UUIExtensionSubsystem_K2_RegisterExtensionPoint, "K2_RegisterExtensionPoint" }, // 2349192105 + { &Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtension, "UnregisterExtension" }, // 3094848389 + { &Z_Construct_UFunction_UUIExtensionSubsystem_UnregisterExtensionPoint, "UnregisterExtensionPoint" }, // 2663000289 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionSubsystem_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UWorldSubsystem, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionSubsystem_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionSubsystem_Statics::ClassParams = { + &UUIExtensionSubsystem::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionSubsystem_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionSubsystem_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionSubsystem() +{ + if (!Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton, Z_Construct_UClass_UUIExtensionSubsystem_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionSubsystem.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionSubsystem::StaticClass(); +} +UUIExtensionSubsystem::UUIExtensionSubsystem() {} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionSubsystem); +UUIExtensionSubsystem::~UUIExtensionSubsystem() {} +// End Class UUIExtensionSubsystem + +// Begin Class UUIExtensionHandleFunctions Function IsValid +struct Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics +{ + struct UIExtensionHandleFunctions_eventIsValid_Parms + { + FUIExtensionHandle Handle; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionHandleFunctions_eventIsValid_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +void Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((UIExtensionHandleFunctions_eventIsValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIExtensionHandleFunctions_eventIsValid_Parms), &Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_Handle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionHandleFunctions, nullptr, "IsValid", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::UIExtensionHandleFunctions_eventIsValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::UIExtensionHandleFunctions_eventIsValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionHandleFunctions::execIsValid) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UUIExtensionHandleFunctions::IsValid(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionHandleFunctions Function IsValid + +// Begin Class UUIExtensionHandleFunctions Function Unregister +struct Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics +{ + struct UIExtensionHandleFunctions_eventUnregister_Parms + { + FUIExtensionHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionHandleFunctions_eventUnregister_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionHandle, METADATA_PARAMS(0, nullptr) }; // 1179062462 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionHandleFunctions, nullptr, "Unregister", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::UIExtensionHandleFunctions_eventUnregister_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::UIExtensionHandleFunctions_eventUnregister_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionHandleFunctions::execUnregister) +{ + P_GET_STRUCT_REF(FUIExtensionHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + UUIExtensionHandleFunctions::Unregister(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionHandleFunctions Function Unregister + +// Begin Class UUIExtensionHandleFunctions +void UUIExtensionHandleFunctions::StaticRegisterNativesUUIExtensionHandleFunctions() +{ + UClass* Class = UUIExtensionHandleFunctions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsValid", &UUIExtensionHandleFunctions::execIsValid }, + { "Unregister", &UUIExtensionHandleFunctions::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionHandleFunctions); +UClass* Z_Construct_UClass_UUIExtensionHandleFunctions_NoRegister() +{ + return UUIExtensionHandleFunctions::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionHandleFunctions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionHandleFunctions_IsValid, "IsValid" }, // 374517401 + { &Z_Construct_UFunction_UUIExtensionHandleFunctions_Unregister, "Unregister" }, // 3772865440 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::ClassParams = { + &UUIExtensionHandleFunctions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionHandleFunctions() +{ + if (!Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton, Z_Construct_UClass_UUIExtensionHandleFunctions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionHandleFunctions.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionHandleFunctions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionHandleFunctions); +UUIExtensionHandleFunctions::~UUIExtensionHandleFunctions() {} +// End Class UUIExtensionHandleFunctions + +// Begin Class UUIExtensionPointHandleFunctions Function IsValid +struct Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics +{ + struct UIExtensionPointHandleFunctions_eventIsValid_Parms + { + FUIExtensionPointHandle Handle; + bool ReturnValue; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static void NewProp_ReturnValue_SetBit(void* Obj); + static const UECodeGen_Private::FBoolPropertyParams NewProp_ReturnValue; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointHandleFunctions_eventIsValid_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +void Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit(void* Obj) +{ + ((UIExtensionPointHandleFunctions_eventIsValid_Parms*)Obj)->ReturnValue = 1; +} +const UECodeGen_Private::FBoolPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue = { "ReturnValue", nullptr, (EPropertyFlags)0x0010000000000580, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(bool), sizeof(UIExtensionPointHandleFunctions_eventIsValid_Parms), &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue_SetBit, METADATA_PARAMS(0, nullptr) }; +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_Handle, + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::NewProp_ReturnValue, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointHandleFunctions, nullptr, "IsValid", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::UIExtensionPointHandleFunctions_eventIsValid_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::UIExtensionPointHandleFunctions_eventIsValid_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionPointHandleFunctions::execIsValid) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + *(bool*)Z_Param__Result=UUIExtensionPointHandleFunctions::IsValid(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionPointHandleFunctions Function IsValid + +// Begin Class UUIExtensionPointHandleFunctions Function Unregister +struct Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics +{ + struct UIExtensionPointHandleFunctions_eventUnregister_Parms + { + FUIExtensionPointHandle Handle; + }; +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Function_MetaDataParams[] = { + { "Category", "UI Extension" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static const UECodeGen_Private::FStructPropertyParams NewProp_Handle; + static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[]; + static const UECodeGen_Private::FFunctionParams FuncParams; +}; +const UECodeGen_Private::FStructPropertyParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::NewProp_Handle = { "Handle", nullptr, (EPropertyFlags)0x0010000008000180, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIExtensionPointHandleFunctions_eventUnregister_Parms, Handle), Z_Construct_UScriptStruct_FUIExtensionPointHandle, METADATA_PARAMS(0, nullptr) }; // 1698801720 +const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers[] = { + (const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::NewProp_Handle, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers) < 2048); +const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_UUIExtensionPointHandleFunctions, nullptr, "Unregister", nullptr, nullptr, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::PropPointers), sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::UIExtensionPointHandleFunctions_eventUnregister_Parms), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x04422409, 0, 0, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::Function_MetaDataParams), Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::Function_MetaDataParams) }; +static_assert(sizeof(Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::UIExtensionPointHandleFunctions_eventUnregister_Parms) < MAX_uint16); +UFunction* Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister() +{ + static UFunction* ReturnFunction = nullptr; + if (!ReturnFunction) + { + UECodeGen_Private::ConstructUFunction(&ReturnFunction, Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister_Statics::FuncParams); + } + return ReturnFunction; +} +DEFINE_FUNCTION(UUIExtensionPointHandleFunctions::execUnregister) +{ + P_GET_STRUCT_REF(FUIExtensionPointHandle,Z_Param_Out_Handle); + P_FINISH; + P_NATIVE_BEGIN; + UUIExtensionPointHandleFunctions::Unregister(Z_Param_Out_Handle); + P_NATIVE_END; +} +// End Class UUIExtensionPointHandleFunctions Function Unregister + +// Begin Class UUIExtensionPointHandleFunctions +void UUIExtensionPointHandleFunctions::StaticRegisterNativesUUIExtensionPointHandleFunctions() +{ + UClass* Class = UUIExtensionPointHandleFunctions::StaticClass(); + static const FNameNativePtrPair Funcs[] = { + { "IsValid", &UUIExtensionPointHandleFunctions::execIsValid }, + { "Unregister", &UUIExtensionPointHandleFunctions::execUnregister }, + }; + FNativeFunctionRegistrar::RegisterFunctions(Class, Funcs, UE_ARRAY_COUNT(Funcs)); +} +IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(UUIExtensionPointHandleFunctions); +UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions_NoRegister() +{ + return UUIExtensionPointHandleFunctions::StaticClass(); +} +struct Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics +{ +#if WITH_METADATA + static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = { + { "IncludePath", "UIExtensionSystem.h" }, + { "ModuleRelativePath", "Public/UIExtensionSystem.h" }, + }; +#endif // WITH_METADATA + static UObject* (*const DependentSingletons[])(); + static constexpr FClassFunctionLinkInfo FuncInfo[] = { + { &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_IsValid, "IsValid" }, // 3775770831 + { &Z_Construct_UFunction_UUIExtensionPointHandleFunctions_Unregister, "Unregister" }, // 2272293190 + }; + static_assert(UE_ARRAY_COUNT(FuncInfo) < 2048); + static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = { + TCppClassTypeTraits::IsAbstract, + }; + static const UECodeGen_Private::FClassParams ClassParams; +}; +UObject* (*const Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::DependentSingletons[])() = { + (UObject* (*)())Z_Construct_UClass_UBlueprintFunctionLibrary, + (UObject* (*)())Z_Construct_UPackage__Script_UIExtension, +}; +static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::DependentSingletons) < 16); +const UECodeGen_Private::FClassParams Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::ClassParams = { + &UUIExtensionPointHandleFunctions::StaticClass, + nullptr, + &StaticCppClassTypeInfo, + DependentSingletons, + FuncInfo, + nullptr, + nullptr, + UE_ARRAY_COUNT(DependentSingletons), + UE_ARRAY_COUNT(FuncInfo), + 0, + 0, + 0x001000A0u, + METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::Class_MetaDataParams), Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::Class_MetaDataParams) +}; +UClass* Z_Construct_UClass_UUIExtensionPointHandleFunctions() +{ + if (!Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton) + { + UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton, Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics::ClassParams); + } + return Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions.OuterSingleton; +} +template<> UIEXTENSION_API UClass* StaticClass() +{ + return UUIExtensionPointHandleFunctions::StaticClass(); +} +DEFINE_VTABLE_PTR_HELPER_CTOR(UUIExtensionPointHandleFunctions); +UUIExtensionPointHandleFunctions::~UUIExtensionPointHandleFunctions() {} +// End Class UUIExtensionPointHandleFunctions + +// Begin Registration +struct Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics +{ + static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { + { EUIExtensionPointMatch_StaticEnum, TEXT("EUIExtensionPointMatch"), &Z_Registration_Info_UEnum_EUIExtensionPointMatch, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 3152702222U) }, + { EUIExtensionAction_StaticEnum, TEXT("EUIExtensionAction"), &Z_Registration_Info_UEnum_EUIExtensionAction, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 159843821U) }, + }; + static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = { + { FUIExtensionPointHandle::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics::NewStructOps, TEXT("UIExtensionPointHandle"), &Z_Registration_Info_UScriptStruct_UIExtensionPointHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionPointHandle), 1698801720U) }, + { FUIExtensionHandle::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionHandle_Statics::NewStructOps, TEXT("UIExtensionHandle"), &Z_Registration_Info_UScriptStruct_UIExtensionHandle, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionHandle), 1179062462U) }, + { FUIExtensionRequest::StaticStruct, Z_Construct_UScriptStruct_FUIExtensionRequest_Statics::NewStructOps, TEXT("UIExtensionRequest"), &Z_Registration_Info_UScriptStruct_UIExtensionRequest, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FUIExtensionRequest), 3386321888U) }, + }; + static constexpr FClassRegisterCompiledInInfo ClassInfo[] = { + { Z_Construct_UClass_UUIExtensionSubsystem, UUIExtensionSubsystem::StaticClass, TEXT("UUIExtensionSubsystem"), &Z_Registration_Info_UClass_UUIExtensionSubsystem, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionSubsystem), 1105519076U) }, + { Z_Construct_UClass_UUIExtensionHandleFunctions, UUIExtensionHandleFunctions::StaticClass, TEXT("UUIExtensionHandleFunctions"), &Z_Registration_Info_UClass_UUIExtensionHandleFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionHandleFunctions), 3862391340U) }, + { Z_Construct_UClass_UUIExtensionPointHandleFunctions, UUIExtensionPointHandleFunctions::StaticClass, TEXT("UUIExtensionPointHandleFunctions"), &Z_Registration_Info_UClass_UUIExtensionPointHandleFunctions, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UUIExtensionPointHandleFunctions), 3372044053U) }, + }; +}; +static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_616222840(TEXT("/Script/UIExtension"), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ClassInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::ScriptStructInfo), + Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_Statics::EnumInfo)); +// End Registration +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.generated.h b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.generated.h new file mode 100644 index 00000000..0e98e614 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtensionSystem.generated.h @@ -0,0 +1,194 @@ +// Copyright Epic Games, Inc. All Rights Reserved. +/*=========================================================================== + Generated code exported from UnrealHeaderTool. + DO NOT modify this manually! Edit the corresponding .h files instead! +===========================================================================*/ + +// IWYU pragma: private, include "UIExtensionSystem.h" +#include "UObject/ObjectMacros.h" +#include "UObject/ScriptMacros.h" + +PRAGMA_DISABLE_DEPRECATION_WARNINGS +class UObject; +class UUserWidget; +enum class EUIExtensionAction : uint8; +enum class EUIExtensionPointMatch : uint8; +struct FGameplayTag; +struct FUIExtensionHandle; +struct FUIExtensionPointHandle; +struct FUIExtensionRequest; +#ifdef UIEXTENSION_UIExtensionSystem_generated_h +#error "UIExtensionSystem.generated.h already included, missing '#pragma once' in UIExtensionSystem.h" +#endif +#define UIEXTENSION_UIExtensionSystem_generated_h + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_79_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionPointHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_122_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionHandle_Statics; \ + static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_165_GENERATED_BODY \ + friend struct Z_Construct_UScriptStruct_FUIExtensionRequest_Statics; \ + UIEXTENSION_API static class UScriptStruct* StaticStruct(); + + +template<> UIEXTENSION_API UScriptStruct* StaticStruct(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_184_DELEGATE \ +UIEXTENSION_API void FExtendExtensionPointDynamicDelegate_DelegateWrapper(const FScriptDelegate& ExtendExtensionPointDynamicDelegate, EUIExtensionAction Action, FUIExtensionRequest const& ExtensionRequest); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsDataForContext); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsData); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsWidgetForContext); \ + DECLARE_FUNCTION(execK2_RegisterExtensionAsWidget); \ + DECLARE_FUNCTION(execK2_RegisterExtensionPoint); \ + DECLARE_FUNCTION(execUnregisterExtensionPoint); \ + DECLARE_FUNCTION(execUnregisterExtension); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionSubsystem(); \ + friend struct Z_Construct_UClass_UUIExtensionSubsystem_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionSubsystem, UWorldSubsystem, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionSubsystem) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_ENHANCED_CONSTRUCTORS \ + /** Standard constructor, called after all reflected properties have been initialized */ \ + NO_API UUIExtensionSubsystem(); \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionSubsystem(UUIExtensionSubsystem&&); \ + UUIExtensionSubsystem(const UUIExtensionSubsystem&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionSubsystem); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionSubsystem); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionSubsystem) \ + NO_API virtual ~UUIExtensionSubsystem(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_189_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_192_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsValid); \ + DECLARE_FUNCTION(execUnregister); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionHandleFunctions(); \ + friend struct Z_Construct_UClass_UUIExtensionHandleFunctions_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionHandleFunctions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionHandleFunctions) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionHandleFunctions(UUIExtensionHandleFunctions&&); \ + UUIExtensionHandleFunctions(const UUIExtensionHandleFunctions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionHandleFunctions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionHandleFunctions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionHandleFunctions) \ + NO_API virtual ~UUIExtensionHandleFunctions(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_253_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_256_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_RPC_WRAPPERS_NO_PURE_DECLS \ + DECLARE_FUNCTION(execIsValid); \ + DECLARE_FUNCTION(execUnregister); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_INCLASS_NO_PURE_DECLS \ +private: \ + static void StaticRegisterNativesUUIExtensionPointHandleFunctions(); \ + friend struct Z_Construct_UClass_UUIExtensionPointHandleFunctions_Statics; \ +public: \ + DECLARE_CLASS(UUIExtensionPointHandleFunctions, UBlueprintFunctionLibrary, COMPILED_IN_FLAGS(0), CASTCLASS_None, TEXT("/Script/UIExtension"), NO_API) \ + DECLARE_SERIALIZER(UUIExtensionPointHandleFunctions) + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_ENHANCED_CONSTRUCTORS \ +private: \ + /** Private move- and copy-constructors, should never be used */ \ + UUIExtensionPointHandleFunctions(UUIExtensionPointHandleFunctions&&); \ + UUIExtensionPointHandleFunctions(const UUIExtensionPointHandleFunctions&); \ +public: \ + DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, UUIExtensionPointHandleFunctions); \ + DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(UUIExtensionPointHandleFunctions); \ + DEFINE_DEFAULT_CONSTRUCTOR_CALL(UUIExtensionPointHandleFunctions) \ + NO_API virtual ~UUIExtensionPointHandleFunctions(); + + +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_268_PROLOG +#define FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_GENERATED_BODY \ +PRAGMA_DISABLE_DEPRECATION_WARNINGS \ +public: \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_RPC_WRAPPERS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_INCLASS_NO_PURE_DECLS \ + FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h_271_ENHANCED_CONSTRUCTORS \ +private: \ +PRAGMA_ENABLE_DEPRECATION_WARNINGS + + +template<> UIEXTENSION_API UClass* StaticClass(); + +#undef CURRENT_FILE_ID +#define CURRENT_FILE_ID FID_Projects_cross_platform_Plugins_UIExtension_Source_Public_UIExtensionSystem_h + + +#define FOREACH_ENUM_EUIEXTENSIONPOINTMATCH(op) \ + op(EUIExtensionPointMatch::ExactMatch) \ + op(EUIExtensionPointMatch::PartialMatch) + +enum class EUIExtensionPointMatch : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> UIEXTENSION_API UEnum* StaticEnum(); + +#define FOREACH_ENUM_EUIEXTENSIONACTION(op) \ + op(EUIExtensionAction::Added) \ + op(EUIExtensionAction::Removed) + +enum class EUIExtensionAction : uint8; +template<> struct TIsUEnumClass { enum { Value = true }; }; +template<> UIEXTENSION_API UEnum* StaticEnum(); + +PRAGMA_ENABLE_DEPRECATION_WARNINGS diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Default.rc2.res.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Default.rc2.res.rsp new file mode 100644 index 00000000..5427e739 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Default.rc2.res.rsp @@ -0,0 +1,88 @@ +/nologo +/D_WIN64 +/l 0x409 +/I "." +/I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" +/DIS_PROGRAM=0 +/DUE_EDITOR=1 +/DUSE_SHADER_COMPILER_WORKER_TRACE=0 +/DUE_REFERENCE_COLLECTOR_REQUIRE_OBJECTPTR=1 +/DWITH_VERSE_VM=0 +/DENABLE_PGO_PROFILE=0 +/DUSE_VORBIS_FOR_STREAMING=1 +/DUSE_XMA2_FOR_STREAMING=1 +/DWITH_DEV_AUTOMATION_TESTS=1 +/DWITH_PERF_AUTOMATION_TESTS=1 +/DWITH_LOW_LEVEL_TESTS=0 +/DEXPLICIT_TESTS_TARGET=0 +/DWITH_TESTS=1 +/DUNICODE +/D_UNICODE +/D__UNREAL__ +/DIS_MONOLITHIC=0 +/DIS_MERGEDMODULES=0 +/DWITH_ENGINE=1 +/DWITH_UNREAL_DEVELOPER_TOOLS=1 +/DWITH_UNREAL_TARGET_DEVELOPER_TOOLS=1 +/DWITH_APPLICATION_CORE=1 +/DWITH_COREUOBJECT=1 +/DUE_TRACE_ENABLED=1 +/DUE_TRACE_FORCE_ENABLED=0 +/DWITH_VERSE=1 +/DUE_USE_VERSE_PATHS=1 +/DWITH_VERSE_BPVM=1 +/DUSE_STATS_WITHOUT_ENGINE=0 +/DWITH_PLUGIN_SUPPORT=0 +/DWITH_ACCESSIBILITY=1 +/DWITH_PERFCOUNTERS=1 +/DWITH_FIXED_TIME_STEP_SUPPORT=1 +/DUSE_LOGGING_IN_SHIPPING=0 +/DALLOW_CONSOLE_IN_SHIPPING=0 +/DALLOW_PROFILEGPU_IN_TEST=0 +/DALLOW_PROFILEGPU_IN_SHIPPING=0 +/DWITH_LOGGING_TO_MEMORY=0 +/DUSE_CACHE_FREED_OS_ALLOCS=1 +/DUSE_CHECKS_IN_SHIPPING=0 +/DUSE_UTF8_TCHARS=0 +/DUSE_ESTIMATED_UTCNOW=0 +/DUE_ALLOW_EXEC_COMMANDS_IN_SHIPPING=1 +/DWITH_EDITOR=1 +/DWITH_IOSTORE_IN_EDITOR=1 +/DWITH_CLIENT_CODE=1 +/DWITH_SERVER_CODE=1 +/DUE_FNAME_OUTLINE_NUMBER=0 +/DWITH_PUSH_MODEL=1 +/DWITH_CEF3=1 +/DWITH_LIVE_CODING=1 +/DWITH_CPP_MODULES=0 +/DWITH_CPP_COROUTINES=0 +/DWITH_PROCESS_PRIORITY_CONTROL=0 +/DUBT_MODULE_MANIFEST="UnrealEditor.modules" +/DUBT_MODULE_MANIFEST_DEBUGGAME="UnrealEditor-Win64-DebugGame.modules" +/DUBT_COMPILED_PLATFORM=Win64 +/DUBT_COMPILED_TARGET=Editor +/DUE_APP_NAME="UnrealEditor" +/DUE_WARNINGS_AS_ERRORS=0 +/DNDIS_MINIPORT_MAJOR_VERSION=0 +/DWIN32=1 +/D_WIN32_WINNT=0x0601 +/DWINVER=0x0601 +/DPLATFORM_WINDOWS=1 +/DPLATFORM_MICROSOFT=1 +/DOVERRIDE_PLATFORM_HEADER_NAME=Windows +/DRHI_RAYTRACING=1 +/DWINDOWS_MAX_NUM_TLS_SLOTS=2048 +/DWINDOWS_MAX_NUM_THREADS_WITH_TLS_SLOTS=512 +/DNDEBUG=1 +/DUE_BUILD_DEVELOPMENT=1 +/DORIGINAL_FILE_NAME="UnrealEditor-UIExtension.dll" +/DBUILD_ICON_FILE_NAME="\"E:\\Projects\\cross_platform\\Build\\Windows\\Application.ico\"" +/DPROJECT_COPYRIGHT_STRING="Fill out your copyright notice in the Description page of Project Settings." +/DPROJECT_PRODUCT_NAME=Lyra +/DPROJECT_PRODUCT_IDENTIFIER=LyraStarterGame +/fo "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Default.rc2.res" +"..\Build\Windows\Resources\Default.rc2" \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Definitions.UIExtension.h b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Definitions.UIExtension.h new file mode 100644 index 00000000..4a63fd8b --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Definitions.UIExtension.h @@ -0,0 +1,43 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for UIExtension +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraEditor/Development/UnrealEd/SharedDefinitions.UnrealEd.Project.ValApi.Cpp20.h" +#undef UIEXTENSION_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraEditor +#define UE_MODULE_NAME "UIExtension" +#define UE_PLUGIN_NAME "UIExtension" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define UIEXTENSION_API DLLEXPORT +#define COMMONUI_API DLLIMPORT +#define WIDGETCAROUSEL_API DLLIMPORT +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API DLLIMPORT +#define ENHANCEDINPUT_API DLLIMPORT +#define MEDIAASSETS_API DLLIMPORT +#define MEDIA_API DLLIMPORT +#define MEDIAUTILS_API DLLIMPORT +#define COMMONGAME_API DLLIMPORT +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API DLLIMPORT +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API DLLIMPORT +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API DLLIMPORT +#define ONLINEBASE_API DLLIMPORT +#define MODULARGAMEPLAYACTORS_API DLLIMPORT +#define MODULARGAMEPLAY_API DLLIMPORT +#define WITH_GAMEPLAY_DEBUGGER_CORE 1 +#define WITH_GAMEPLAY_DEBUGGER 1 +#define WITH_GAMEPLAY_DEBUGGER_MENU 1 +#define AIMODULE_API DLLIMPORT diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/LiveCodingInfo.json b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/LiveCodingInfo.json new file mode 100644 index 00000000..062b5644 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/LiveCodingInfo.json @@ -0,0 +1,13 @@ +{ + "RemapUnityFiles": + { + "Module.UIExtension.cpp.obj": [ + "UIExtension.init.gen.cpp.obj", + "PerModuleInline.gen.cpp.obj", + "LogUIExtension.cpp.obj", + "UIExtensionModule.cpp.obj", + "UIExtensionSystem.cpp.obj", + "UIExtensionPointWidget.cpp.obj" + ] + } +} \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp new file mode 100644 index 00000000..34b3bb3c --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp @@ -0,0 +1,7 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/UIExtension/Intermediate/Build/Win64/UnrealEditor/Inc/UIExtension/UHT/UIExtension.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/PerModuleInline.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/LogUIExtension.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/UIExtensionModule.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/UIExtensionSystem.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/Widgets/UIExtensionPointWidget.cpp" diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp.obj.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp.obj.rsp new file mode 100644 index 00000000..99e0b764 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/Module.UIExtension.cpp.obj.rsp @@ -0,0 +1,53 @@ +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Definitions.UIExtension.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\UIExtension.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_WINDLL +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/EHsc +/DPLATFORM_EXCEPTIONS_DISABLED=0 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/PerModuleInline.gen.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/PerModuleInline.gen.cpp new file mode 100644 index 00000000..6c08adea --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/PerModuleInline.gen.cpp @@ -0,0 +1,6 @@ +#if !defined(PER_MODULE_INLINE_FILE) && defined(CORE_API) +#define PER_MODULE_INLINE_FILE "HAL/PerModuleInline.inl" +#endif +#if defined(PER_MODULE_INLINE_FILE) && !defined(SUPPRESS_PER_MODULE_INLINE_FILE) +#include PER_MODULE_INLINE_FILE +#endif \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UIExtension.Shared.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UIExtension.Shared.rsp new file mode 100644 index 00000000..bfa49dbb --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UIExtension.Shared.rsp @@ -0,0 +1,342 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Private" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\UnrealEditor\Inc\UIExtension\UHT" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosVDRuntime\UHT" +/I "Runtime\Experimental\ChaosVisualDebugger\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "Developer\TextureBuildUtilities\Public" +/I "Developer\Horde\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationDataController\UHT" +/I "Developer\AnimationDataController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationBlueprintEditor\UHT" +/I "Editor\AnimationBlueprintEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Kismet\UHT" +/I "Editor\Kismet\Classes" +/I "Editor\Kismet\Public" +/I "Editor\Kismet\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Persona\UHT" +/I "Editor\Persona\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SkeletonEditor\UHT" +/I "Editor\SkeletonEditor\Public" +/I "Developer\AnimationWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolWidgets\UHT" +/I "Developer\ToolWidgets\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenus\UHT" +/I "Developer\ToolMenus\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditor\UHT" +/I "Editor\AnimationEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AdvancedPreviewScene\UHT" +/I "Editor\AdvancedPreviewScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyEditor\UHT" +/I "Editor\PropertyEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorConfig\UHT" +/I "Editor\EditorConfig\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorFramework\UHT" +/I "Editor\EditorFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\EditorSubsystem\UHT" +/I "Editor\EditorSubsystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InteractiveToolsFramework\UHT" +/I "Runtime\InteractiveToolsFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEd\UHT" +/I "Programs\UnrealLightmass\Public" +/I "Editor\UnrealEd\Classes" +/I "Editor\UnrealEd\Public" +/I "Editor\AssetTagsEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\CollectionManager\UHT" +/I "Developer\CollectionManager\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowser\UHT" +/I "Editor\ContentBrowser\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetTools\UHT" +/I "Developer\AssetTools\Public" +/I "Developer\AssetTools\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AssetDefinition\UHT" +/I "Editor\AssetDefinition\Public" +/I "Developer\Merge\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ContentBrowserData\UHT" +/I "Editor\ContentBrowserData\Public" +/I "Runtime\Projects\Public" +/I "Runtime\Projects\Internal" +/I "Developer\MeshUtilities\Public" +/I "Developer\MeshMergeUtilities\Public" +/I "Developer\MeshReductionInterface\Public" +/I "Runtime\RawMesh\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MaterialUtilities\UHT" +/I "Developer\MaterialUtilities\Public" +/I "Editor\KismetCompiler\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ClassViewer\UHT" +/I "Editor\ClassViewer\Public" +/I "Developer\DirectoryWatcher\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Documentation\UHT" +/I "Editor\Documentation\Public" +/I "Editor\MainFrame\Public" +/I "Runtime\SandboxFile\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SourceControl\UHT" +/I "Developer\SourceControl\Public" +/I "Developer\UncontrolledChangelists\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UnrealEdMessages\UHT" +/I "Editor\UnrealEdMessages\Classes" +/I "Editor\UnrealEdMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\BlueprintGraph\UHT" +/I "Editor\BlueprintGraph\Classes" +/I "Editor\BlueprintGraph\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FunctionalTesting\UHT" +/I "Developer\FunctionalTesting\Classes" +/I "Developer\FunctionalTesting\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationController\UHT" +/I "Developer\AutomationController\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AutomationTest\UHT" +/I "Runtime\AutomationTest\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Localization\UHT" +/I "Developer\Localization\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AudioEditor\UHT" +/I "Editor\AudioEditor\Classes" +/I "Editor\AudioEditor\Public" +/I "ThirdParty\libSampleRate\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\LevelEditor\UHT" +/I "Editor\LevelEditor\Public" +/I "Editor\CommonMenuExtensions\Public" +/I "Developer\Settings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\VREditor\UHT" +/I "Editor\VREditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ViewportInteraction\UHT" +/I "Editor\ViewportInteraction\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\HeadMountedDisplay\UHT" +/I "Runtime\HeadMountedDisplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Landscape\UHT" +/I "Runtime\Landscape\Classes" +/I "Runtime\Landscape\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DetailCustomizations\UHT" +/I "Editor\DetailCustomizations\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GraphEditor\UHT" +/I "Editor\GraphEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StructViewer\UHT" +/I "Editor\StructViewer\Public" +/I "Runtime\NetworkFileSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/I "Developer\MeshBuilder\Public" +/I "Runtime\MeshUtilitiesCommon\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MSQS\UHT" +/I "Runtime\MaterialShaderQualitySettings\Classes" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\ToolMenusEditor\UHT" +/I "Editor\ToolMenusEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\StatusBar\UHT" +/I "Editor\StatusBar\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeCore\UHT" +/I "Runtime\Interchange\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\InterchangeEngine\UHT" +/I "Runtime\Interchange\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\DeveloperToolSettings\UHT" +/I "Developer\DeveloperToolSettings\Classes" +/I "Developer\DeveloperToolSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectDataInterface\UHT" +/I "Editor\SubobjectDataInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\SubobjectEditor\UHT" +/I "Editor\SubobjectEditor\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\PhysicsUtilities\UHT" +/I "Developer\PhysicsUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetRegistration\UHT" +/I "Developer\WidgetRegistration\Public" +/I "Editor\ActorPickerMode\Public" +/I "Editor\SceneDepthPickerMode\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AnimationEditMode\UHT" +/I "Editor\AnimationEditMode\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealEditor\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealEditor\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealEditor\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealEditor\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealEditor\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealEditor\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealEditor\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.dll.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.dll.rsp new file mode 100644 index 00000000..3a7e563a --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.dll.rsp @@ -0,0 +1,78 @@ +/MANIFEST:EMBED +/MANIFESTINPUT:"..\Build\Windows\Resources\Default-Win64.manifest" +/NOLOGO +/DEBUG:FULL +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/FIXED:No +/NXCOMPAT +/STACK:12000000 +/DELAY:UNLOAD +/DLL +/PDBALTPATH:%_PDB% +/d2:-ExtendedWarningInfo +/OPT:NOREF +/OPT:NOICF +/INCREMENTAL:NO +/ignore:4199 +/ignore:4099 +/ALTERNATENAME:__imp___std_init_once_begin_initialize=__imp_InitOnceBeginInitialize +/ALTERNATENAME:__imp___std_init_once_complete=__imp_InitOnceComplete +/DELAYLOAD:"d3d12.dll" +/DELAYLOAD:"DBGHELP.DLL" +/LIBPATH:"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\lib\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" +/LIBPATH:"C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\um\x64" +/NODEFAULTLIB:"LIBCMT" +/NODEFAULTLIB:"LIBCPMT" +/NODEFAULTLIB:"LIBCMTD" +/NODEFAULTLIB:"LIBCPMTD" +/NODEFAULTLIB:"MSVCRTD" +/NODEFAULTLIB:"MSVCPRTD" +/NODEFAULTLIB:"LIBC" +/NODEFAULTLIB:"LIBCP" +/NODEFAULTLIB:"LIBCD" +/NODEFAULTLIB:"LIBCPD" +/FUNCTIONPADMIN:6 +/NOIMPLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp.obj" +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Default.rc2.res" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Core\UnrealEditor-Core.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\CoreUObject\UnrealEditor-CoreUObject.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Engine\UnrealEditor-Engine.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\SlateCore\UnrealEditor-SlateCore.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\Slate\UnrealEditor-Slate.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\UMG\UnrealEditor-UMG.lib" +"..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonUI\UnrealEditor-CommonUI.lib" +"E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\x64\UnrealEditor\Development\CommonGame\UnrealEditor-CommonGame.lib" +"..\Intermediate\Build\Win64\x64\UnrealEditor\Development\GameplayTags\UnrealEditor-GameplayTags.lib" +"delayimp.lib" +"wininet.lib" +"rpcrt4.lib" +"ws2_32.lib" +"dbghelp.lib" +"comctl32.lib" +"Winmm.lib" +"kernel32.lib" +"user32.lib" +"gdi32.lib" +"winspool.lib" +"comdlg32.lib" +"advapi32.lib" +"shell32.lib" +"ole32.lib" +"oleaut32.lib" +"uuid.lib" +"odbc32.lib" +"odbccp32.lib" +"netapi32.lib" +"iphlpapi.lib" +"setupapi.lib" +"synchronization.lib" +"dwmapi.lib" +"imm32.lib" +/OUT:"E:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor-UIExtension.dll" +/PDB:"E:\Projects\cross_platform\Plugins\UIExtension\Binaries\Win64\UnrealEditor-UIExtension.pdb" +/ignore:4078 \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.lib.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.lib.rsp new file mode 100644 index 00000000..7803bb85 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealEditor/Development/UIExtension/UnrealEditor-UIExtension.lib.rsp @@ -0,0 +1,12 @@ +/NOLOGO +/errorReport:prompt +/MACHINE:x64 +/SUBSYSTEM:WINDOWS +/DEF +/NAME:"UnrealEditor-UIExtension.dll" +/IGNORE:4221 +/NODEFAULTLIB +"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraEditor\Development\UnrealEd\SharedPCH.UnrealEd.Project.ValApi.Cpp20.h.obj" +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Module.UIExtension.cpp.obj" +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\Default.rc2.res" +/OUT:"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealEditor\Development\UIExtension\UnrealEditor-UIExtension.lib" \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Definitions.UIExtension.h b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Definitions.UIExtension.h new file mode 100644 index 00000000..40b5ba7d --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Definitions.UIExtension.h @@ -0,0 +1,70 @@ +// Generated by UnrealBuildTool (UEBuildModuleCPP.cs) : Shared PCH Definitions for UIExtension +#pragma once +#include "E:/Projects/cross_platform/Intermediate/Build/Win64/x64/LyraGame/Shipping/Engine/SharedDefinitions.Engine.Project.ValApi.Cpp20.h" +#undef UIEXTENSION_API +#define UE_IS_ENGINE_MODULE 0 +#define UE_DEPRECATED_FORGAME UE_DEPRECATED +#define UE_DEPRECATED_FORENGINE UE_DEPRECATED +#define UE_VALIDATE_FORMAT_STRINGS 1 +#define UE_VALIDATE_INTERNAL_API 1 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_2 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_3 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_4 0 +#define UE_ENABLE_INCLUDE_ORDER_DEPRECATED_IN_5_5 0 +#define UE_PROJECT_NAME LyraStarterGame +#define UE_TARGET_NAME LyraGame +#define UE_MODULE_NAME "UIExtension" +#define UE_PLUGIN_NAME "UIExtension" +#define IMPLEMENT_ENCRYPTION_KEY_REGISTRATION() +#define IMPLEMENT_SIGNING_KEY_REGISTRATION() +#define UIEXTENSION_API +#define UMG_API +#define HTTP_PACKAGE 1 +#define CURL_ENABLE_DEBUG_CALLBACK 1 +#define WITH_WINHTTP 1 +#define UE_HTTP_CONNECTION_TIMEOUT_MAX_DEVIATION 0.5 +#define UE_HTTP_CONNECTION_TIMEOUT_SUPPORT_RETRY 1 +#define UE_HTTP_ACTIVITY_TIMER_START_AFTER_RECEIVED_DATA 0 +#define UE_HTTP_SUPPORT_LOCAL_SERVER 1 +#define UE_HTTP_SUPPORT_UNIX_SOCKET 1 +#define HTTP_API +#define MOVIESCENE_API +#define TIMEMANAGEMENT_API +#define UNIVERSALOBJECTLOCATOR_API +#define MOVIESCENETRACKS_API +#define CONSTRAINTS_API +#define PROPERTYPATH_API +#define COMMONUI_API +#define WIDGETCAROUSEL_API +#define UE_COMMONINPUT_PLATFORM_TYPE PC +#define COMMONINPUT_API +#define ENHANCEDINPUT_API +#define MEDIAASSETS_API +#define MEDIA_API +#define MEDIAUTILS_API +#define COMMONGAME_API +#define COMMONUSER_OSSV1 1 +#define COMMONUSER_API +#define ONLINESUBSYSTEMUTILS_PACKAGE 1 +#define ONLINESUBSYSTEMUTILS_API +#define ONLINESUBSYSTEM_PACKAGE 1 +#define DEBUG_LAN_BEACON 0 +#define ONLINESUBSYSTEM_API +#define ONLINEBASE_API +#define MODULARGAMEPLAYACTORS_API +#define MODULARGAMEPLAY_API +#define WITH_RECAST 1 +#define WITH_GAMEPLAY_DEBUGGER_CORE 0 +#define WITH_GAMEPLAY_DEBUGGER 0 +#define WITH_GAMEPLAY_DEBUGGER_MENU 0 +#define AIMODULE_API +#define GAMEPLAYTASKS_API +#define WITH_NAVMESH_SEGMENT_LINKS 1 +#define WITH_NAVMESH_CLUSTER_LINKS 1 +#define NAVIGATIONSYSTEM_API +#define GEOMETRYCOLLECTIONENGINE_API +#define FIELDSYSTEMENGINE_API +#define CHAOSSOLVERENGINE_API +#define DATAFLOWCORE_API +#define DATAFLOWENGINE_API +#define DATAFLOWSIMULATION_API diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp new file mode 100644 index 00000000..46ab9133 --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp @@ -0,0 +1,6 @@ +// This file is automatically generated at compile-time to include some subset of the user-created cpp files. +#include "E:/Projects/cross_platform/Plugins/UIExtension/Intermediate/Build/Win64/UnrealGame/Inc/UIExtension/UHT/UIExtension.init.gen.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/LogUIExtension.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/UIExtensionModule.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/UIExtensionSystem.cpp" +#include "E:/Projects/cross_platform/Plugins/UIExtension/Source/Private/Widgets/UIExtensionPointWidget.cpp" diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp.obj.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp.obj.rsp new file mode 100644 index 00000000..bcb3e52d --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/Module.UIExtension.cpp.obj.rsp @@ -0,0 +1,54 @@ +"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\Module.UIExtension.cpp" +/FI"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/FI"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\Definitions.UIExtension.h" +/Yu"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h" +/Fp"E:\Projects\cross_platform\Intermediate\Build\Win64\x64\LyraGame\Shipping\Engine\SharedPCH.Engine.Project.ValApi.Cpp20.h.pch" +/Fo"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\Module.UIExtension.cpp.obj" +/experimental:log "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\Module.UIExtension.cpp.sarif" +/sourceDependencies "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\Module.UIExtension.cpp.dep.json" +@"E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\x64\UnrealGame\Shipping\UIExtension\UIExtension.Shared.rsp" +/d2ssa-cfg-question- +/Zc:inline +/nologo +/Oi +/FC +/c +/Gw +/Gy +/utf-8 +/wd4819 +/DSAL_NO_ATTRIBUTE_DECLARATIONS=1 +/permissive- +/Zc:strictStrings- +/Zc:__cplusplus +/D_CRT_STDIO_LEGACY_WIDE_SPECIFIERS=1 +/D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS=1 +/D_DISABLE_EXTENDED_ALIGNED_STORAGE +/Ob2 +/experimental:deterministic +/wd5049 +/d2ExtendedWarningInfo +/Ox +/Ot +/GF +/errorReport:prompt +/D_HAS_EXCEPTIONS=0 +/DPLATFORM_EXCEPTIONS_DISABLED=1 +/Z7 +/MD +/bigobj +/fp:fast +/Zo +/Zp8 +/we4456 +/we4458 +/we4459 +/we4668 +/wd4244 +/wd4838 +/TP +/GR- +/W4 +/std:c++20 +/Zc:preprocessor +/wd5054 \ No newline at end of file diff --git a/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/UIExtension.Shared.rsp b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/UIExtension.Shared.rsp new file mode 100644 index 00000000..4489efdd --- /dev/null +++ b/Plugins/UIExtension/Intermediate/Build/Win64/x64/UnrealGame/Shipping/UIExtension/UIExtension.Shared.rsp @@ -0,0 +1,205 @@ +/I "." +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Private" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Intermediate\Build\Win64\UnrealGame\Inc\UIExtension\UHT" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source" +/I "E:\Projects\cross_platform\Plugins\UIExtension\Source\Public" +/I "Runtime\Core\Public" +/I "Runtime\Core\Internal" +/I "Runtime\TraceLog\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\UHT" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreUObject\VerseVMBytecode" +/I "Runtime\CoreUObject\Public" +/I "Runtime\CoreUObject\Internal" +/I "Runtime\CorePreciseFP\Public" +/I "Runtime\CorePreciseFP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Engine\UHT" +/I "Runtime\Engine\Classes" +/I "Runtime\Engine\Public" +/I "Runtime\Engine\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\CoreOnline\UHT" +/I "Runtime\CoreOnline\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldNotification\UHT" +/I "Runtime\FieldNotification\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NetCore\UHT" +/I "Runtime\Net\Core\Classes" +/I "Runtime\Net\Core\Public" +/I "Runtime\Net\Common\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ImageCore\UHT" +/I "Runtime\ImageCore\Public" +/I "Runtime\Json\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\JsonUtilities\UHT" +/I "Runtime\JsonUtilities\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SlateCore\UHT" +/I "Runtime\SlateCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DeveloperSettings\UHT" +/I "Runtime\DeveloperSettings\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\InputCore\UHT" +/I "Runtime\InputCore\Classes" +/I "Runtime\InputCore\Public" +/I "Runtime\ApplicationCore\Public" +/I "Runtime\RHI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Slate\UHT" +/I "Runtime\Slate\Public" +/I "Runtime\ImageWrapper\Public" +/I "Runtime\Messaging\Public" +/I "Runtime\MessagingCommon\Public" +/I "Runtime\RenderCore\Public" +/I "Runtime\RenderCore\Internal" +/I "Runtime\OpenGLDrv\Public" +/I "Runtime\Analytics\AnalyticsET\Public" +/I "Runtime\Analytics\Analytics\Public" +/I "Runtime\Sockets\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AssetRegistry\UHT" +/I "Runtime\AssetRegistry\Public" +/I "Runtime\AssetRegistry\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineMessages\UHT" +/I "Runtime\EngineMessages\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\EngineSettings\UHT" +/I "Runtime\EngineSettings\Classes" +/I "Runtime\EngineSettings\Public" +/I "Runtime\SynthBenchmark\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTags\UHT" +/I "Runtime\GameplayTags\Classes" +/I "Runtime\GameplayTags\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PacketHandler\UHT" +/I "Runtime\PacketHandlers\PacketHandler\Classes" +/I "Runtime\PacketHandlers\PacketHandler\Public" +/I "Runtime\PacketHandlers\ReliabilityHandlerComponent\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioPlatformConfiguration\UHT" +/I "Runtime\AudioPlatformConfiguration\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MeshDescription\UHT" +/I "Runtime\MeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\StaticMeshDescription\UHT" +/I "Runtime\StaticMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\SkeletalMeshDescription\UHT" +/I "Runtime\SkeletalMeshDescription\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AnimationCore\UHT" +/I "Runtime\AnimationCore\Public" +/I "Runtime\PakFile\Public" +/I "Runtime\PakFile\Internal" +/I "Runtime\RSA\Public" +/I "Runtime\NetworkReplayStreaming\NetworkReplayStreaming\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PhysicsCore\UHT" +/I "Runtime\PhysicsCore\Public" +/I "Runtime\Experimental\ChaosCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Chaos\UHT" +/I "Runtime\Experimental\Chaos\Public" +/I "Runtime\Experimental\Voronoi\Public" +/I "Runtime\GeometryCore\Public" +/I "Runtime\SignalProcessing\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioExtensions\UHT" +/I "Runtime\AudioExtensions\Public" +/I "Runtime\AudioMixerCore\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioMixer\UHT" +/I "Runtime\AudioMixer\Classes" +/I "Runtime\AudioMixer\Public" +/I "Developer\TargetPlatform\Public" +/I "Developer\TextureFormat\Public" +/I "Developer\DesktopPlatform\Public" +/I "Developer\DesktopPlatform\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkEngine\UHT" +/I "Runtime\AudioLink\AudioLinkEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AudioLinkCore\UHT" +/I "Runtime\AudioLink\AudioLinkCore\Public" +/I "Runtime\CookOnTheFly\Internal" +/I "Runtime\Networking\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ClothSysRuntimeIntrfc\UHT" +/I "Runtime\ClothingSystemRuntimeInterface\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\IrisCore\UHT" +/I "Runtime\Experimental\Iris\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneCapture\UHT" +/I "Runtime\MovieSceneCapture\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Renderer\UHT" +/I "Runtime\Renderer\Public" +/I "Runtime\Renderer\Internal" +/I "..\Shaders\Public" +/I "..\Shaders\Shared" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementFramework\UHT" +/I "Runtime\TypedElementFramework\Tests" +/I "Runtime\TypedElementFramework\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TypedElementRuntime\UHT" +/I "Runtime\TypedElementRuntime\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UMG\UHT" +/I "Runtime\UMG\Public" +/I "Runtime\Online\HTTP\Public" +/I "Runtime\Online\HTTP\Internal" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieScene\UHT" +/I "Runtime\MovieScene\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\TimeManagement\UHT" +/I "Runtime\TimeManagement\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\UniversalObjectLocator\UHT" +/I "Runtime\UniversalObjectLocator\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MovieSceneTracks\UHT" +/I "Runtime\MovieSceneTracks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\Constraints\UHT" +/I "Runtime\Experimental\Animation\Constraints\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\PropertyPath\UHT" +/I "Runtime\PropertyPath\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonUI\UHT" +/I "..\Plugins\Runtime\CommonUI\Source" +/I "..\Plugins\Runtime\CommonUI\Source\CommonUI\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\WidgetCarousel\UHT" +/I "Runtime\WidgetCarousel\Public" +/I "..\Plugins\Runtime\CommonUI\Intermediate\Build\Win64\UnrealGame\Inc\CommonInput\UHT" +/I "..\Plugins\Runtime\CommonUI\Source\CommonInput\Public" +/I "..\Plugins\EnhancedInput\Intermediate\Build\Win64\UnrealGame\Inc\EnhancedInput\UHT" +/I "..\Plugins\EnhancedInput\Source" +/I "..\Plugins\EnhancedInput\Source\EnhancedInput\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaAssets\UHT" +/I "Runtime\MediaAssets\Public" +/I "Runtime\Media\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\MediaUtils\UHT" +/I "Runtime\MediaUtils\Public" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Intermediate\Build\Win64\UnrealGame\Inc\CommonGame\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source" +/I "E:\Projects\cross_platform\Plugins\CommonGame\Source\Public" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Intermediate\Build\Win64\UnrealGame\Inc\CommonUser\UHT" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source" +/I "E:\Projects\cross_platform\Plugins\CommonUser\Source\CommonUser\Public" +/I "..\Plugins\Online\OnlineSubsystemUtils\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystemUtils\UHT" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Classes" +/I "..\Plugins\Online\OnlineSubsystemUtils\Source\OnlineSubsystemUtils\Public" +/I "..\Plugins\Online\OnlineSubsystem\Intermediate\Build\Win64\UnrealGame\Inc\OnlineSubsystem\UHT" +/I "..\Plugins\Online\OnlineSubsystem\Source\Test" +/I "..\Plugins\Online\OnlineSubsystem\Source" +/I "..\Plugins\Online\OnlineSubsystem\Source\Public" +/I "..\Plugins\Online\OnlineBase\Source" +/I "..\Plugins\Online\OnlineBase\Source\Public" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplayActors\UHT" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source" +/I "E:\Projects\cross_platform\Plugins\ModularGameplayActors\Source\ModularGameplayActors\Public" +/I "..\Plugins\Runtime\ModularGameplay\Intermediate\Build\Win64\UnrealGame\Inc\ModularGameplay\UHT" +/I "..\Plugins\Runtime\ModularGameplay\Source" +/I "..\Plugins\Runtime\ModularGameplay\Source\ModularGameplay\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\AIModule\UHT" +/I "Runtime\AIModule\Classes" +/I "Runtime\AIModule\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GameplayTasks\UHT" +/I "Runtime\GameplayTasks\Classes" +/I "Runtime\GameplayTasks\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\NavigationSystem\UHT" +/I "Runtime\NavigationSystem\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\GeometryCollectionEngine\UHT" +/I "Runtime\Experimental\GeometryCollectionEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\FieldSystemEngine\UHT" +/I "Runtime\Experimental\FieldSystem\Source\FieldSystemEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\ChaosSolverEngine\UHT" +/I "Runtime\Experimental\ChaosSolverEngine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowCore\UHT" +/I "Runtime\Experimental\Dataflow\Core\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowEngine\UHT" +/I "Runtime\Experimental\Dataflow\Engine\Public" +/I "..\Intermediate\Build\Win64\UnrealGame\Inc\DataflowSimulation\UHT" +/I "Runtime\Experimental\Dataflow\Simulation\Public" +/external:W0 +/external:I "ThirdParty\GuidelinesSupportLibrary\GSL-1144\include" +/external:I "ThirdParty\RapidJSON\1.1.0" +/external:I "ThirdParty\LibTiff\Source\Win64" +/external:I "ThirdParty\LibTiff\Source" +/external:I "ThirdParty\OpenGL" +/external:I "D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\INCLUDE" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\ucrt" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\um" +/external:I "C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\winrt" \ No newline at end of file diff --git a/linux_build.sh b/linux_build.sh index 45327ee5..3cc17e35 100644 --- a/linux_build.sh +++ b/linux_build.sh @@ -1,93 +1,27 @@ #!/bin/bash set -e -echo "======================= Linux Build Script =======================" -echo "Running on OS: $OSTYPE" +echo "Starting Linux build of LyraGame via Gitea Runner..." -# Optional: Check for a Gitea runner-specific environment variable. -if [ -z "$GITEA_RUNNER" ]; then - echo "Warning: This script does not appear to be running in a Gitea runner environment." -fi +# Get absolute paths +WORKSPACE_DIR=$(pwd) +PROJECT_FILE="$WORKSPACE_DIR/LyraStarterGame.uproject" +BUILD_DIR="$WORKSPACE_DIR/Builds/Linux" +UE_ROOT="${UE_ROOT:-E:/Games/UE_5.5}" -# Get the user's home directory -USER_HOME="$HOME" +# Ensure build directory exists +mkdir -p "$BUILD_DIR" -# Detect operating system -if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" || "$OSTYPE" == "win32" ]]; then - echo "Running on Windows - cross-compiling for Linux" - IS_WINDOWS=1 - - # Set up Unreal Engine paths for Windows (but targeting Linux) - UE_ROOT="E:/Games/UE_5.5" - UE_EDITOR="$UE_ROOT/Engine/Binaries/Win64/UnrealEditor.exe" - UE_UAT="$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat" - - # Set the Linux toolchain path - this is where it was installed by Chocolatey - TOOLCHAIN_PATH="/c/UnrealToolchains/v23_clang-18.1.0-rockylinux8" - - if [ -d "$TOOLCHAIN_PATH" ]; then - export LINUX_MULTIARCH_ROOT="$TOOLCHAIN_PATH" - echo "Using Linux toolchain at: $LINUX_MULTIARCH_ROOT" - else - echo "ERROR: Linux toolchain not found at $TOOLCHAIN_PATH!" - echo "Please verify the toolchain installation path." - exit 1 - fi -else - echo "Running on Linux - native compilation" - IS_WINDOWS=0 - - # Set up Unreal Engine paths for Linux - UE_ROOT="/home/runner/UnrealEngine/UE_5.5" - UE_EDITOR="$UE_ROOT/Engine/Binaries/Linux/UnrealEditor" - UE_UAT="$UE_ROOT/Engine/Build/BatchFiles/RunUAT.sh" - - # Make sure the UAT script is executable (only needed on Linux) - chmod +x "$UE_UAT" -fi - -# Set up project paths based on the current working directory -PROJECT_ROOT="$(pwd)" -PROJECT_FILE="$PROJECT_ROOT/LyraStarterGame.uproject" -ARCHIVE_DIR="$PROJECT_ROOT/Builds/Linux" - -# Create the archive directory if it does not exist -mkdir -p "$ARCHIVE_DIR" - -echo "Starting Linux build of LyraStarterGame..." -echo "Linux toolchain path: $LINUX_MULTIARCH_ROOT" - -# Run the build command using Unreal's Automation Tool (UAT) -"$UE_UAT" -ScriptsForProject="$PROJECT_FILE" Turnkey \ - -command=VerifySdk \ - -platform=Linux \ - -UpdateIfNeeded \ - -EditorIO \ - -EditorIOPort=59484 \ +# Run the Unreal Automation Tool with the correct target name +"$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat" BuildCookRun \ -project="$PROJECT_FILE" \ - BuildCookRun \ - -nop4 \ - -utf8output \ - -cook \ - -project="$PROJECT_FILE" \ - -target=LyraStarterGame \ - -unrealexe="$UE_EDITOR" \ + -noP4 \ -platform=Linux \ - -installed \ - -stage \ - -archive \ - -package \ - -build \ - -iterativecooking \ - -pak \ - -iostore \ - -compressed \ - -prereqs \ - -archivedirectory="$ARCHIVE_DIR" \ - -CrashReporter \ - -clientconfig=Shipping - # Uncomment the following lines if you wish to test the build without pak and iostore: - # -skipiostore \ - # -skippak \ + -clientconfig=Shipping \ + -cook -allmaps \ + -build -stage -pak -archive \ + -archivedirectory="$BUILD_DIR" \ + -target=LyraGame \ + -unrealexe="$UE_ROOT/Engine/Binaries/Win64/UnrealEditor.exe" -echo "Linux build completed. Output is in $ARCHIVE_DIR" \ No newline at end of file +echo "Linux build completed successfully" \ No newline at end of file diff --git a/mac_build.sh b/mac_build.sh index 9471862c..a5b9e120 100644 --- a/mac_build.sh +++ b/mac_build.sh @@ -26,7 +26,7 @@ ARCHIVE_DIR="$PROJECT_ROOT/Builds" -utf8output \ -cook \ -project="$PROJECT_FILE" \ - -target=LyraStarterGame \ + -target=LyraGame \ -unrealexe="$UE_EDITOR" \ -platform=Mac \ -installed \ diff --git a/win_build.sh b/win_build.sh index 45d3d989..2c253040 100644 --- a/win_build.sh +++ b/win_build.sh @@ -12,49 +12,30 @@ USER_HOME="$HOME" # Set up Unreal Engine paths for Windows # Adjust the UE_ROOT path if your installation differs. -UE_ROOT="E:/Games/UE_5.5/" +UE_ROOT="${UE_ROOT:-E:/Games/UE_5.5}" UE_EDITOR="$UE_ROOT/Engine/Binaries/Win64/UnrealEditor.exe" UE_UAT="$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat" # Set up project paths based on the current working directory -PROJECT_ROOT="$(pwd)" -PROJECT_FILE="$PROJECT_ROOT/LyraStarterGame.uproject" -ARCHIVE_DIR="$PROJECT_ROOT/Builds/Windows" +WORKSPACE_DIR=$(pwd) +PROJECT_FILE="$WORKSPACE_DIR/LyraStarterGame.uproject" +BUILD_DIR="$WORKSPACE_DIR/Builds/Windows" # Create the archive directory if it does not exist -mkdir -p "$ARCHIVE_DIR" +mkdir -p "$BUILD_DIR" -echo "Starting Windows build of LyraStarterGame via Gitea Runner..." +echo "Starting Windows build of LyraGame via Gitea Runner..." # Run the build command using Unreal's Automation Tool (UAT) -"$UE_UAT" -ScriptsForProject="$PROJECT_FILE" Turnkey \ - -command=VerifySdk \ - -platform=Win64 \ - -UpdateIfNeeded \ - -EditorIO \ - -EditorIOPort=59484 \ +"$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat" BuildCookRun \ -project="$PROJECT_FILE" \ - BuildCookRun \ - -nop4 \ - -utf8output \ - -cook \ - -project="$PROJECT_FILE" \ - -target=LyraStarterGame \ - -unrealexe="$UE_EDITOR" \ + -noP4 \ -platform=Win64 \ - -installed \ - -stage \ - -archive \ - -package \ - -build \ - -iterativecooking \ - -pak \ - -iostore \ - -compressed \ - -prereqs \ - -archivedirectory="$ARCHIVE_DIR" \ - -CrashReporter \ - -clientconfig=Shipping - # Uncomment the following lines if you wish to test the build without pak and iostore: - # -skipiostore \ - # -skippak + -clientconfig=Shipping \ + -cook -allmaps \ + -build -stage -pak -archive \ + -archivedirectory="$BUILD_DIR" \ + -target=LyraGame \ + -unrealexe="$UE_EDITOR" + +echo "Windows build completed successfully"